forked from bartvdbraak/blender
f3c0743b41
- multires cache files and image .tex cache support in dependency list - Compare md5 of files before using a local copy (not one transfered by netrender). Could be changed to a simpler CRC if speed is an issue. The goal is not to have a strong crypto signature but just to detect outdated local files. - Reduce slave timeout to 5 minutes (down from 30). Slaves should report at most every 30s, there's no reason for a value to be that high. - Reorder the presentation tables on the main web page (job list is more important) - Collapse dependency list by default on job page (only show main file and headers for other files, point cache and fluid cache) - Slave option (default: True) to also output render log to the console (as well as the usual copy to the master)
89 lines
1.1 KiB
CSS
89 lines
1.1 KiB
CSS
body {
|
|
background-color:#eee;
|
|
font-size:12px;
|
|
font-family: "Lucida Sans","Lucida Sans Unicode","Lucida Grande",Lucida,sans-serif;
|
|
|
|
}
|
|
a {
|
|
/*text-decoration:none;*/
|
|
color:#666;
|
|
}
|
|
a:hover {
|
|
color:#000;
|
|
}
|
|
h2 {
|
|
background-color:#ddd;
|
|
font-size:120%;
|
|
padding:5px;
|
|
}
|
|
|
|
h2 {
|
|
background-color:#ddd;
|
|
font-size:110%;
|
|
padding:5px;
|
|
}
|
|
|
|
table {
|
|
text-align:center;
|
|
border:0;
|
|
background-color:#ddd;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
thead{
|
|
font-size:90%;
|
|
color:#555;
|
|
background-color:#ccc;
|
|
}
|
|
td {
|
|
border:0;
|
|
padding:2px;
|
|
padding-left:10px;
|
|
padding-right:10px;
|
|
margin-left:20px;
|
|
background-color:#ddd;
|
|
}
|
|
td:hover {
|
|
background-color:#ccc;
|
|
}
|
|
tr {
|
|
border:0;
|
|
}
|
|
button {
|
|
color: #111;
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
|
|
.toggle {
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.cache {
|
|
display: none;
|
|
}
|
|
|
|
.fluid {
|
|
display: none;
|
|
}
|
|
|
|
.other {
|
|
display: none;
|
|
}
|
|
|
|
.rules {
|
|
width: 60em;
|
|
text-align: left;
|
|
}
|
|
|
|
img.thumb {
|
|
display: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
span.thumb {
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|