mirror of
https://github.com/unraid/webgui.git
synced 2026-01-24 10:28:39 -06:00
Merge pull request #386 from bergware/master
Docker: cap cpu+memory load at 100%
This commit is contained in:
@@ -25,7 +25,7 @@ src:url('/webGui/styles/bitstream.eot');src:url('/webGui/styles/bitstream.eot?#i
|
||||
}
|
||||
.logLine{font-family:bitstream;font-size:12px;color:#808080;margin:0 8px;padding:0}
|
||||
.logLine.spacing{margin:10px}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:13px;text-transform:uppercase;margin:0;padding:10px 28px;text-decoration:none;white-space:nowrap;cursor:pointer;outline:none;border-radius:.125rem;border:0;color:#f15a2c;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#e22828),to(#e22828)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#ff8c2f),to(#ff8c2f)) 100% 100% no-repeat;background:linear-gradient(90deg,#e22828 0,#ff8c2f) 0 0 no-repeat,linear-gradient(90deg,#e22828 0,#ff8c2f) 0 100% no-repeat,linear-gradient(0deg,#e22828 0,#e22828) 0 100% no-repeat,linear-gradient(0deg,#ff8c2f 0,#ff8c2f) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:12px;text-transform:uppercase;margin:0;padding:9px 18px;text-decoration:none;white-space:nowrap;cursor:pointer;outline:none;border-radius:.125rem;border:0;color:#f15a2c;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#e22828),to(#e22828)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#ff8c2f),to(#ff8c2f)) 100% 100% no-repeat;background:linear-gradient(90deg,#e22828 0,#ff8c2f) 0 0 no-repeat,linear-gradient(90deg,#e22828 0,#ff8c2f) 0 100% no-repeat,linear-gradient(0deg,#e22828 0,#e22828) 0 100% no-repeat,linear-gradient(0deg,#ff8c2f 0,#ff8c2f) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
input:hover[type=button],input:hover[type=reset],input:hover[type=submit],button:hover,button:hover[type=button],a.button:hover{color:#f2f2f2;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f));background:linear-gradient(90deg,#e22828 0,#ff8c2f)}
|
||||
input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled],button[disabled],button[type=button][disabled],a.button[disabled]
|
||||
input:hover[type=button][disabled],input:hover[type=reset][disabled],input:hover[type=submit][disabled],button:hover[disabled],button:hover[type=button][disabled],a.button:hover[disabled]
|
||||
|
||||
@@ -65,7 +65,7 @@ input.wait{width:24px;margin:0 4px;padding:0 5px;border:none;box-shadow:none;bac
|
||||
<?if (!$tabbed):?>
|
||||
$('#title').append("<span id='busy' class='red-text strong' style='display:none;margin-left:40px'><?=$busy?></span>");
|
||||
<?else:?>
|
||||
$('.tabs').append("<span id='busy' class='red-text strong' style='display:none;position:relative;top:<?=$top?>px;left:40px;font-size:16px;letter-spacing:2px'><?=$busy?></span>");
|
||||
$('.tabs').append("<span id='busy' class='red-text strong' style='display:none;position:relative;top:<?=$top?>px;left:40px;font-size:15px;letter-spacing:2px'><?=$busy?></span>");
|
||||
<?endif;?>
|
||||
<?if ($display['resize']):?>
|
||||
function resize(bind) {
|
||||
@@ -147,8 +147,10 @@ watchDocker.on('message', function(data){
|
||||
data = data.split('\n');
|
||||
for (var i=0,row; row=data[i]; i++) {
|
||||
var id = row.split(' ');
|
||||
$('#cpu-'+id[0]).css('width',id[1]).text(id[1].replace('.','<?=$display['number'][0]?>'));
|
||||
$('#mem-'+id[0]).css('width',id[2]).text(id[2].replace('.','<?=$display['number'][0]?>'));
|
||||
var w1 = Math.min(id[1].substr(0,id[1].length-1),100)+'%';
|
||||
var w2 = Math.min(id[2].substr(0,id[2].length-1),100)+'%';
|
||||
$('#cpu-'+id[0]).css('width',w1).text(w1.replace('.','<?=$display['number'][0]?>'));
|
||||
$('#mem-'+id[0]).css('width',w2).text(w2.replace('.','<?=$display['number'][0]?>'));
|
||||
}
|
||||
});
|
||||
$(function() {
|
||||
|
||||
@@ -18,9 +18,9 @@ src:url('/webGui/styles/clear-sans-bold-italic.eot');src:url('/webGui/styles/cle
|
||||
@font-face{
|
||||
font-family:'bitstream';font-weight:normal;font-style:normal;
|
||||
src:url('/webGui/styles/bitstream.eot');src:url('/webGui/styles/bitstream.eot?#iefix') format('embedded-opentype'),url('/webGui/styles/bitstream.woff') format('woff'),url('/webGui/styles/bitstream.ttf') format('truetype'),url('/webGui/styles/bitstream.svg#bitstream') format('svg')}
|
||||
.logLine{font-family:bitstream;font-size:12px;color:#505050;margin:0 8px;padding:0;text-align:left}
|
||||
.logLine{font-family:bitstream;font-size:11px;color:#505050;margin:0 8px;padding:0;text-align:left}
|
||||
.logLine.spacing{margin:10px}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:13px;text-transform:uppercase;margin:0;padding:10px 28px;text-decoration:none;white-space:nowrap;cursor:pointer;outline:none;border-radius:.125rem;border:0;color:#f15a2c;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#e22828),to(#e22828)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#ff8c2f),to(#ff8c2f)) 100% 100% no-repeat;background:linear-gradient(90deg,#e22828 0,#ff8c2f) 0 0 no-repeat,linear-gradient(90deg,#e22828 0,#ff8c2f) 0 100% no-repeat,linear-gradient(0deg,#e22828 0,#e22828) 0 100% no-repeat,linear-gradient(0deg,#ff8c2f 0,#ff8c2f) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:12px;text-transform:uppercase;margin:0;padding:9px 18px;text-decoration:none;white-space:nowrap;cursor:pointer;outline:none;border-radius:.125rem;border:0;color:#f15a2c;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#e22828),to(#e22828)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#ff8c2f),to(#ff8c2f)) 100% 100% no-repeat;background:linear-gradient(90deg,#e22828 0,#ff8c2f) 0 0 no-repeat,linear-gradient(90deg,#e22828 0,#ff8c2f) 0 100% no-repeat,linear-gradient(0deg,#e22828 0,#e22828) 0 100% no-repeat,linear-gradient(0deg,#ff8c2f 0,#ff8c2f) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
input:hover[type=button],input:hover[type=reset],input:hover[type=submit],button:hover,button:hover[type=button],a.button:hover{color:#f2f2f2;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f));background:linear-gradient(90deg,#e22828 0,#ff8c2f)}
|
||||
input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled],button[disabled],button[type=button][disabled],a.button[disabled]
|
||||
input:hover[type=button][disabled],input:hover[type=reset][disabled],input:hover[type=submit][disabled],button:hover[disabled],button:hover[type=button][disabled],a.button:hover[disabled]
|
||||
@@ -33,7 +33,7 @@ span.system{color:#00529B;background-color:#BDE5F8;display:block;width:100%}
|
||||
span.array{color:#4F8A10;background-color:#DFF2BF;display:block;width:100%}
|
||||
span.login{color:#D63301;background-color:#FFCCBA;display:block;width:100%}
|
||||
span.label{padding:4px 8px;margin-right:10px;border-radius:4px;display:inline;width:auto}
|
||||
legend{font-size:12px;font-weight:bold}
|
||||
legend{font-size:11px;font-weight:bold}
|
||||
#content{margin:10;padding:0}
|
||||
</style>
|
||||
<script>
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
}
|
||||
.ui-dropdownchecklist-text{
|
||||
color:#1c1c1c;
|
||||
font-size:14px;
|
||||
font-size:13px;
|
||||
}
|
||||
.ui-dropdownchecklist .ui-widget-content .ui-state-default{
|
||||
background:#f2f2f2;
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
}
|
||||
.ui-dropdownchecklist-text{
|
||||
color:#f2f2f2;
|
||||
font-size:14px;
|
||||
font-size:13px;
|
||||
}
|
||||
.ui-dropdownchecklist .ui-widget-content .ui-state-default{
|
||||
background:#1c1c1c;
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
}
|
||||
.ui-dropdownchecklist-text{
|
||||
color:#f2f2f2;
|
||||
font-size:14px;
|
||||
font-size:13px;
|
||||
}
|
||||
.ui-dropdownchecklist .ui-widget-content .ui-state-default{
|
||||
background:#1c1c1c;
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
}
|
||||
.ui-dropdownchecklist-text{
|
||||
color:#1c1c1c;
|
||||
font-size:14px;
|
||||
font-size:13px;
|
||||
}
|
||||
.ui-dropdownchecklist .ui-widget-content .ui-state-default{
|
||||
background:#f2f2f2;
|
||||
|
||||
@@ -35,7 +35,7 @@ if (file_exists('/boot/previous/changes.txt')) {
|
||||
<style>
|
||||
input[value='Install'],input[value='Update'],input[value='Restore']{margin:0}
|
||||
<?if (strstr('white,black',$display['theme'])):?>
|
||||
span.vhshift{margin-top:10px!important}
|
||||
span.vhshift{margin-top:11px!important}
|
||||
<?endif;?>
|
||||
</style>
|
||||
<script>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/usr/bin/php -q
|
||||
<?PHP
|
||||
/* Copyright 2005-2017, Lime Technology
|
||||
* Copyright 2012-2017, Bergware International.
|
||||
/* Copyright 2005-2018, Lime Technology
|
||||
* Copyright 2012-2018, Bergware International.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License version 2,
|
||||
@@ -31,7 +31,7 @@ foreach ($builtin as $name) {
|
||||
$old = plugin('version', "/var/log/plugins/$plg");
|
||||
$new = plugin('version', $file);
|
||||
// silently suppress bad download of PLG file
|
||||
if (strcmp($new, $old) > 0) {
|
||||
if (version_compare($new,$old,'>')) {
|
||||
exec("$notify -e ".escapeshellarg("System - $name [$new]")." -s ".escapeshellarg("Notice [$server] - Version update $new")." -d ".escapeshellarg("A new version of $name is available")." -i ".escapeshellarg("normal $output")." -x");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -100,7 +100,7 @@ if (empty($vms)) {
|
||||
<style type="text/css">
|
||||
body{-webkit-overflow-scrolling:touch;}
|
||||
.fileTree{width:305px;max-height:150px;overflow-y:scroll;position:absolute;z-index:100;display:none;}
|
||||
div.four{font-size:12px;width:300px}
|
||||
div.four{font-size:11px;width:300px}
|
||||
div.four label{float:left;display:table-cell;width:25%}
|
||||
div.four label:nth-child(4n+4){float:none;clear:both}
|
||||
div.four label.cpu1{width:32%}
|
||||
|
||||
@@ -18,7 +18,7 @@ Markdown="false"
|
||||
<style type="text/css">
|
||||
.vmheader {
|
||||
padding: 10px;
|
||||
font-size: 16px;
|
||||
font-size: 15px;
|
||||
text-align: left;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
@@ -93,7 +93,7 @@ body{-webkit-overflow-scrolling:touch}
|
||||
#vmform table tr td:nth-child(even){width:100px}
|
||||
#vmform table tr td:last-child{width:inherit}
|
||||
#vmform .multiple{position:relative}
|
||||
#vmform .sectionbutton{position:absolute;left:2px;cursor:pointer;opacity:0.4;font-size:15px;line-height:17px;z-index:10;transition-property:opacity,left;transition-duration:0.1s;transition-timing-function:linear}
|
||||
#vmform .sectionbutton{position:absolute;left:2px;cursor:pointer;opacity:0.4;font-size:14px;line-height:17px;z-index:10;transition-property:opacity,left;transition-duration:0.1s;transition-timing-function:linear}
|
||||
#vmform .sectionbutton.remove{top:0;opacity:0.3}
|
||||
#vmform .sectionbutton.add{bottom:0}
|
||||
#vmform .sectionbutton:hover{opacity:1.0}
|
||||
|
||||
@@ -519,7 +519,7 @@
|
||||
return $abbreviation;
|
||||
}
|
||||
|
||||
function renderVMContentIcon($uuid, $name, $icon, $state) {
|
||||
function renderVMContentIcon($uuid, $name, $icon, $state, $text=false) {
|
||||
switch ($state) {
|
||||
case 'running':
|
||||
$shape = 'play';
|
||||
@@ -536,14 +536,11 @@
|
||||
break;
|
||||
}
|
||||
|
||||
return "<div class=\"Panel $status\">
|
||||
<div id=\"vm-".htmlspecialchars($uuid)."\" style=\"display:block; cursor:pointer\">
|
||||
<div style=\"position:relative; width:48px; height:48px; margin:0px auto;\">
|
||||
<img src=\"$icon\" class=\"$status\" style=\"position:absolute; z-index:1; top:0; bottom:0; left:0; right:0; width:48px; height:48px;\"/>
|
||||
<i class=\"fa iconstatus fa-$shape $status\" title=\"$status\"></i>
|
||||
</div></div>
|
||||
<div class=\"PanelText\"><span class=\"PanelText $status\">$name</span></div>
|
||||
</div>";
|
||||
return "<div id=\"vm-".htmlspecialchars($uuid)."\" class=\"Panel $status\" style=\"cursor:pointer\">
|
||||
<div style=\"display:block\"><div style=\"position:relative; width:48px; height:48px; margin:0px auto;\">
|
||||
<img src=\"$icon\" class=\"$status\" style=\"position:absolute; z-index:1; top:0; bottom:0; left:0; right:0; width:48px; height:48px;\"/>
|
||||
<i class=\"fa iconstatus fa-$shape $status\" title=\"$status\"></i>
|
||||
</div></div>".($text?"<div class=\"PanelText\"><span class=\"PanelText $status\">$name</span></div>":"")."</div>";
|
||||
}
|
||||
|
||||
function sanitizeVendor($strVendor) {
|
||||
|
||||
@@ -35,7 +35,7 @@ textarea {
|
||||
border: 1px solid transparent;
|
||||
white-space: nowrap;
|
||||
padding: 6px 12px;
|
||||
font-size: 14px;
|
||||
font-size: 13px;
|
||||
line-height: 1.42857143;
|
||||
border-radius: 4px;
|
||||
-webkit-user-select: none;
|
||||
@@ -402,7 +402,7 @@ fieldset[disabled] .btn-link:focus {
|
||||
.btn-sm,
|
||||
.btn-group-sm > .btn {
|
||||
padding: 5px 10px;
|
||||
font-size: 12px;
|
||||
font-size: 11px;
|
||||
line-height: 1.5;
|
||||
border-radius: 3px;
|
||||
min-width: 13px;
|
||||
@@ -410,7 +410,7 @@ fieldset[disabled] .btn-link:focus {
|
||||
.btn-xs,
|
||||
.btn-group-xs > .btn {
|
||||
padding: 1px 5px;
|
||||
font-size: 12px;
|
||||
font-size: 11px;
|
||||
line-height: 1.5;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ img.paused{opacity:0.6}
|
||||
.show{display:block}
|
||||
div.Panel{float:none;display:inline-block;margin:0 18px 15px 0;height:90px;overflow:hidden;vertical-align:top;width:94px;word-wrap:break-word;border:none}
|
||||
div.Panel:hover{overflow:visible;z-index:10;background-color:unset}
|
||||
#noapps{display:none;font-style:italic;font-size:16px;opacity:0.5;padding:5px}
|
||||
#noapps{display:none;font-style:italic;font-size:15px;opacity:0.5;padding:5px}
|
||||
.switch-button-label.off{color:inherit}
|
||||
.switch-button-label.on{color:#009900}
|
||||
</style>
|
||||
|
||||
@@ -82,5 +82,5 @@ Interface <?=$eth?>:
|
||||
> Deleting the file *network-rules.cfg* from the flash device will restore automatic interface assignment after a system reboot.
|
||||
|
||||
<?if (file_exists('/tmp/network-rules.tmp')):?>
|
||||
<br><span class="error" style="font-size:13px;text-align:center;padding:12px 0">Please <span class="strong big">Reboot</span> system to make new rules active</span>
|
||||
<br><span class="error" style="text-align:center;padding:12px 0">Please <span class="strong big">Reboot</span> system to make new rules active</span>
|
||||
<?endif;?>
|
||||
|
||||
@@ -186,5 +186,5 @@ Password:
|
||||
|
||||
|
||||
: <input type="submit" name="#apply" value="Apply" disabled><input type="button" value="Done" onclick="done()">
|
||||
<span id="testresult" style="font-size:13px"><input type="button" id="testbutton" value="Test"<?if ($incomplete):?> disabled<?endif;?>></span>
|
||||
<span id="testresult"><input type="button" id="testbutton" value="Test"<?if ($incomplete):?> disabled<?endif;?>></span>
|
||||
</form>
|
||||
|
||||
@@ -50,9 +50,8 @@ if (pgrep('dockerd')!==false && ($display=='icons' || $display=='docker')) {
|
||||
$shape = $running ? ($paused ? 'pause' : 'play') : 'square';
|
||||
$status = $running ? ($paused ? 'paused' : 'started') : 'stopped';
|
||||
$icon = $info['icon'] ?: '/plugins/dynamix.docker.manager/images/question.png';
|
||||
echo "<div class='Panel $status'>";
|
||||
echo "<div id='$id' style='display:block; cursor:pointer'>";
|
||||
echo "<div style='position:relative;width:48px;height:48px;margin:0px auto;'>";
|
||||
echo "<div id='$id' class='Panel $status' style='cursor:pointer'>";
|
||||
echo "<div style='display:block'><div style='position:relative;width:48px;height:48px;margin:0px auto;'>";
|
||||
echo "<img src='$icon' class='$status' style='position:absolute;top:0;bottom:0;left:0;right:0;width:48px;height:48px;'><i class='fa iconstatus fa-$shape $status' title='$status'></i></div></div>";
|
||||
echo "<div class='PanelText'><span class='PanelText ".($updateStatus=='false'?'update':$status)."'>$name</span></div></div>";
|
||||
}
|
||||
@@ -87,7 +86,7 @@ if (pgrep('libvirtd')!==false && ($display=='icons' || $display=='vms')) {
|
||||
$log = (is_file("/var/log/libvirt/qemu/$vm.log") ? "libvirt/qemu/$vm.log" : '');
|
||||
$menu[] = sprintf("addVMContext('%s','%s','%s','%s','%s','%s');", addslashes($vm), addslashes($uuid), addslashes($template), $state, addslashes($vnc), addslashes($log));
|
||||
$vmicon = $lv->domain_get_icon_url($res);
|
||||
echo renderVMContentIcon($uuid, $vm, $vmicon, $state);
|
||||
echo renderVMContentIcon($uuid, $vm, $vmicon, $state, true);
|
||||
}
|
||||
}
|
||||
echo "\0".implode($menu);
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
<style>
|
||||
.inline_help{display:none}
|
||||
.upgrade_notice{position:fixed;top:1px;left:0;width:100%;height:40px;line-height:40px;color:#E68A00;background:#FEEFB3;border-bottom:#E68A00 1px solid;text-align:center;font-size:15px;z-index:999}
|
||||
.upgrade_notice{position:fixed;top:1px;left:0;width:100%;height:40px;line-height:40px;color:#E68A00;background:#FEEFB3;border-bottom:#E68A00 1px solid;text-align:center;font-size:14px;z-index:999}
|
||||
.upgrade_notice i{margin:14px;float:right;cursor:pointer}
|
||||
.back_to_top{display:none;position:fixed;bottom:30px;right:12px;color:#e22828;font-size:25px}
|
||||
<?
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
*/
|
||||
.nav-header{display:block;padding:3px 11px;font-size:11px;font-weight:bold;line-height:20px;color:#333;background:linear-gradient(to bottom, #c1c1c1 0%, #c3c3c3 100%);text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;}
|
||||
.nav-header img{width:24px;height:24px;margin:-3px 4px 0 -5px;}
|
||||
.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:2px 0;margin:2px 0 0;list-style:none;background-color:#FFF;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);font-size:14px;*border-right-width:2px;*border-bottom-width:2px;border-radius:3px;box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;text-align:left;}
|
||||
.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:2px 0;margin:2px 0 0;list-style:none;background-color:#FFF;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);font-size:13px;*border-right-width:2px;*border-bottom-width:2px;border-radius:3px;box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;text-align:left;}
|
||||
.dropdown-menu.pull-right{right:0;left:auto;}
|
||||
.dropdown-menu .divider{*width:100%;height:1px;margin:3px 0px 0px 0px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;}
|
||||
.dropdown-menu a{display:block;padding:2px 20px 2px 6px;clear:both;font-weight:normal;line-height:24px;color:#303030;white-space:nowrap;text-decoration:none;}
|
||||
@@ -36,6 +36,6 @@
|
||||
.dropdown-context-sub:before, .dropdown-context-sub:after{display:none;}
|
||||
.dropdown-context .dropdown-submenu:hover .dropdown-menu{display:none;}
|
||||
.dropdown-context .dropdown-submenu:hover > .dropdown-menu{display:block;}
|
||||
.compressed-context a{padding-left:7px;padding-top:0;padding-bottom:0;font-size:13px;}
|
||||
.compressed-context a{padding-left:7px;padding-top:0;padding-bottom:0;font-size:12px;}
|
||||
.compressed-context .divider{ margin:5px 1px;}
|
||||
.compressed-context .nav-header{padding:1px 13px;}
|
||||
@@ -1,5 +1,5 @@
|
||||
html{font-family:clear-sans;height:100%}
|
||||
body{font-size:14px;color:#606e7f;background-color:#e4e2e4;padding:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
||||
body{font-size:13px;color:#606e7f;background-color:#e4e2e4;padding:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
||||
@media (max-width:1280px){#template{min-width:1280px;margin:0}}
|
||||
@media (min-width:1281px){#template{min-width:1280px;margin:0}}
|
||||
@media (min-width:1921px){#template{min-width:1280px;max-width:1920px;margin:0 auto}}
|
||||
@@ -12,7 +12,7 @@ a{color:#486dba;text-decoration:none}
|
||||
a.none{color:#606e7f}
|
||||
a.img{text-decoration:none;border:none}
|
||||
a.info{position:relative}
|
||||
a.info span{display:none;white-space:nowrap;font-variant:small-caps;position:absolute;top:16px;left:12px;color:#4f4f4f;font-size:13px;line-height:20px;padding:5px 8px;border:1px solid #42453e;border-radius:3px;background-color:#edeaef}
|
||||
a.info span{display:none;white-space:nowrap;font-variant:small-caps;position:absolute;top:16px;left:12px;color:#4f4f4f;font-size:12px;line-height:20px;padding:5px 8px;border:1px solid #42453e;border-radius:3px;background-color:#edeaef}
|
||||
a.info:hover span{display:block;z-index:1}
|
||||
a.nohand{cursor:default}
|
||||
i.spacing{margin-left:0;margin-right:10px}
|
||||
@@ -20,10 +20,10 @@ i.icon{margin-right:4px}
|
||||
i.title{display:none}
|
||||
pre ul{margin:0;padding-top:0;padding-bottom:0;padding-left:28px}
|
||||
pre li{margin:0;padding-top:0;padding-bottom:0;padding-left:18px}
|
||||
big{font-size:15px;font-weight:bold;text-transform:uppercase}
|
||||
big{font-size:14px;font-weight:bold;text-transform:uppercase}
|
||||
hr{border:none;height:1px!important;color:#606e7f;background-color:#606e7f}
|
||||
input[type=text],input[type=password],input[type=number],input[type=url],input[type=email],input[type=date],input[type=file],textarea,.textarea{font-family:clear-sans;font-size:14px;background:transparent;border:1px solid #606e7f;padding:5px 10px;min-height:20px;line-height:20px;outline:none;width:304px;margin:0 20px 0 0;box-shadow:none;color:#606e7f}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:13px;border:1px solid #9F9180;border-radius:5px;margin:10px 20px 10px 0;padding:8px 12px;cursor:pointer;outline:none;color:#9F9180;background:#edeaef}
|
||||
input[type=text],input[type=password],input[type=number],input[type=url],input[type=email],input[type=date],input[type=file],textarea,.textarea{font-family:clear-sans;font-size:13px;background:transparent;border:1px solid #606e7f;padding:5px 10px;min-height:20px;line-height:20px;outline:none;width:304px;margin:0 20px 0 0;box-shadow:none;color:#606e7f}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:12px;border:1px solid #9F9180;border-radius:5px;margin:10px 20px 10px 0;padding:8px 12px;cursor:pointer;outline:none;color:#9F9180;background:#edeaef}
|
||||
input[type=checkbox]{vertical-align:middle;margin-right:6px}
|
||||
input[type=number]::-webkit-outer-spin-button,input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none}
|
||||
input[type=number]{-moz-appearance:textfield}
|
||||
@@ -32,7 +32,7 @@ input:hover[type=button],input:hover[type=reset],input:hover[type=submit],button
|
||||
input:active[type=button],input:active[type=reset],input:active[type=submit],button:active,button:active[type=button],a.button:active{border-color:#0072C6;box-shadow:none}
|
||||
input[disabled],button[disabled],input:hover[type=button][disabled],input:hover[type=reset][disabled],input:hover[type=submit][disabled],button:hover[disabled],button:hover[type=button][disabled],input:active[type=button][disabled],input:active[type=reset][disabled],input:active[type=submit][disabled],button:active[disabled],button:active[type=button][disabled],textarea[disabled]{color:#808080;border-color:#808080;background:#c7c5cb;opacity:0.5;cursor:default}
|
||||
input::-webkit-input-placeholder{color:#00529b}
|
||||
select{font-family:clear-sans;font-size:14px;min-width:188px;max-width:326px;padding:6px 6px;margin:0 10px 0 0;border:#606e7f 1px solid;box-shadow:none;color:#606e7f;background:transparent;outline:none;display:inline-block;cursor:pointer}
|
||||
select{font-family:clear-sans;font-size:13px;min-width:188px;max-width:326px;padding:6px 6px;margin:0 10px 0 0;border:#606e7f 1px solid;box-shadow:none;color:#606e7f;background:transparent;outline:none;display:inline-block;cursor:pointer}
|
||||
select option{color:#606e7f;background-color:#edeaef}
|
||||
select:focus{border-color:#0072C6}
|
||||
select[disabled]{color:#808080;border-color:#808080;background:#c7c5cb;opacity:0.5;cursor:default}
|
||||
@@ -47,7 +47,7 @@ form+p{display:none}
|
||||
#header{position:fixed;top:0;left:0;width:100%;height:90px;z-index:100;margin:0;background-color:#edeaef;background-size:100% 90px;background-repeat:no-repeat;border-bottom:#9794a0 1px solid}
|
||||
#header .logo{float:left;margin-left:75px;color:#e22828;width:160px;text-align:center}
|
||||
#header .logo svg{width:160px;display:block;margin:25px 50px 8px 0}
|
||||
#header .block{margin:0;float:right;text-align:right;background-color:rgba(237,234,239,0.7);padding:6px 12px 7px 12px}
|
||||
#header .block{margin:0;float:right;text-align:right;background-color:rgba(237,234,239,0.7);padding:10px 12px}
|
||||
#header .text-left{float:left;text-align:right;padding-right:5px;border-right:solid medium #f15a2c}
|
||||
#header .text-right{float:right;text-align:left;padding-left:5px}
|
||||
#header .text-right a{color:#606e7f}
|
||||
@@ -84,7 +84,7 @@ span.tub span[id^='txt-tub']{margin-top:7px}
|
||||
#footer{position:fixed;bottom:0;left:0;color:#808080;background:#121510;padding:5px 0;width:100%;height:16px;line-height:16px;text-align:center;z-index:100}
|
||||
#statusraid{float:left;padding-left:10px}
|
||||
#countdown{margin:0 auto}
|
||||
#copyright{font-family:bitstream;font-size:12px;float:right;padding-right:10px}
|
||||
#copyright{font-family:bitstream;font-size:11px;float:right;padding-right:10px}
|
||||
.green{color:#4F8A10;padding-left:5px;padding-right:5px}
|
||||
.red{color:#F0000C;padding-left:5px;padding-right:5px}
|
||||
.orange{color:#E68A00;padding-left:5px;padding-right:5px}
|
||||
@@ -99,12 +99,12 @@ span.tub span[id^='txt-tub']{margin-top:7px}
|
||||
.usage-bar>span>span{padding-left:4px;color:#606e7f}
|
||||
.usage-disk{height:25px;line-height:25px;background-color:rgba(237,234,239,0.4)}
|
||||
.usage-disk>span{display:block;height:3px;background-color:#606e7f;text-align:left}
|
||||
.usage-disk>span>span{font-size:13px;color:#606e7f}
|
||||
.usage-disk>span>span{font-size:12px;color:#606e7f}
|
||||
.usage-disk.sys{background-color:transparent}
|
||||
.usage-disk.sys>span{font-size:13px}
|
||||
.usage-disk.sys>span{font-size:12px}
|
||||
.usage-disk.all{background-color:transparent}
|
||||
.usage-disk.all>span{font-size:12px}
|
||||
.notice{background:#FFF6BF url(../images/notice.png) no-repeat;background-position:60px 50%;font-size:16px;text-align:left;padding:15px 0 15px 130px;display:block;height:70px;line-height:70px;vertical-align:middle;border-top:1px solid #FFD324;border-bottom:1px solid #FFD324}
|
||||
.usage-disk.all>span{font-size:11px}
|
||||
.notice{background:#FFF6BF url(../images/notice.png) no-repeat;background-position:60px 50%;font-size:15px;text-align:left;padding:15px 0 15px 130px;display:block;height:70px;line-height:70px;vertical-align:middle;border-top:1px solid #FFD324;border-bottom:1px solid #FFD324}
|
||||
.greenbar{background:-webkit-radial-gradient(#127A05,#17BF0B);background:linear-gradient(#127A05,#17BF0B)}
|
||||
.orangebar{background:-webkit-radial-gradient(#CE7C10,#F0B400);background:linear-gradient(#CE7C10,#F0B400)}
|
||||
.redbar{background:-webkit-radial-gradient(#941C00,#DE1100);background:linear-gradient(#941C00,#DE1100)}
|
||||
@@ -121,9 +121,9 @@ table.disk_status tr>td+td{width:auto}
|
||||
table.disk_status tr>td+td+td{width:6.5%;text-align:center;padding-left:4px;padding-right:8px}
|
||||
table.disk_status tr>td+td+td+td{text-align:right;padding-left:0;padding-right:12px}
|
||||
table.disk_status tr td:last-child{width:4%;padding-right:10px}
|
||||
table.disk_status tbody tr{border-bottom:#F3F0F4 1px solid;line-height:30px}
|
||||
table.disk_status tbody tr{border-bottom:#F3F0F4 1px solid;line-height:24px}
|
||||
table.disk_status.stats tr>td+td{text-align:left;padding-left:0;padding-right:12px}
|
||||
table.array_status{line-height:30px}
|
||||
table.array_status{line-height:24px}
|
||||
table.array_status td{padding:4px 0}
|
||||
table.array_status td:first-child{text-transform:uppercase}
|
||||
table.array_status tr>td{text-align:left;white-space:nowrap;padding-left:12px;width:30%}
|
||||
@@ -141,7 +141,7 @@ table.share_status tr>td{text-align:left;padding-left:12px}
|
||||
table.share_status tr>td+td{padding-left:0}
|
||||
table.share_status tr.share_status_size>td{padding-left:40px}
|
||||
table.share_status tr.share_status_size>td+td{padding-left:15px}
|
||||
table.share_status tbody tr{border-bottom:#F3F0F4 1px solid;line-height:30px}
|
||||
table.share_status tbody tr{border-bottom:#F3F0F4 1px solid;line-height:24px}
|
||||
table.share_status tbody tr:last-child td{border-bottom:#606e7f 1px solid}
|
||||
table.share_status tbody tr.alert{color:#F0000C;background-color:#FF9E9E}
|
||||
table.share_status tbody tr.warn{color:#E68A00;background-color:#FEEFB3}
|
||||
@@ -154,7 +154,7 @@ table.share_status.fixed tbody tr td:first-child{padding-right:10px}
|
||||
table.share_status.table{margin-top:36px}
|
||||
table.share_status.table tr>td{width:50%}
|
||||
table.share_status.dash{float:left;width:35%;margin-top:36px;margin-right:6px;border:none}
|
||||
table.share_status.dash thead tr:first-child td{line-height:30px}
|
||||
table.share_status.dash thead tr:first-child td{line-height:24px}
|
||||
table.share_status.dash thead tr:last-child>td{border-bottom:1px solid #606e7f;text-align:left;color:#606e7f}
|
||||
table.share_status.dash tbody td.blue{color:#606e7f}
|
||||
table.share_status.dash.line tbody tr.wide{height:40px;line-height:40px}
|
||||
@@ -190,20 +190,20 @@ span.system{color:#00529b;background-color:#BDE5F8;display:block;width:100%}
|
||||
span.array{color:#4F8A10;background-color:#DFF2BF;display:block;width:100%}
|
||||
span.login{color:#D63301;background-color:#FFDDD1;display:block;width:100%}
|
||||
span.lite{background-color:#edeaef}
|
||||
span.label{font-size:12px;padding:2px 0 2px 6px;margin-right:6px;border-radius:4px;display:inline;width:auto;vertical-align:middle}
|
||||
span.temp-text{font-size:12px;color:#4F8A10}
|
||||
span.heat-text{font-size:12px;color:#F0000C}
|
||||
span.label{font-size:11px;padding:2px 0 2px 6px;margin-right:6px;border-radius:4px;display:inline;width:auto;vertical-align:middle}
|
||||
span.temp-text{font-size:11px;color:#4F8A10}
|
||||
span.heat-text{font-size:11px;color:#F0000C}
|
||||
span.cpu-speed{display:block;color:#3B5998}
|
||||
span.status{float:right;font-size:15px;letter-spacing:2px}
|
||||
span.status{float:right;font-size:14px;letter-spacing:2px}
|
||||
span.status.vhshift{margin-top:0;margin-right:0}
|
||||
span.status.vshift{margin-top:-16px}
|
||||
span.status.hshift{margin-right:-20px}
|
||||
span.diskinfo{float:left;clear:both;margin-top:5px;padding-left:10px}
|
||||
span.bitstream{font-family:bitstream;font-size:12px}
|
||||
span.bitstream{font-family:bitstream;font-size:11px}
|
||||
span.p0{padding-left:0}
|
||||
span.strong{font-weight:bold}
|
||||
span.big{font-size:15px}
|
||||
span.small{font-size:12px}
|
||||
span.big{font-size:14px}
|
||||
span.small{font-size:11px}
|
||||
span.one{margin-left:-16px}
|
||||
span.two{margin-left:-20px}
|
||||
span.three{margin-left:-23px}
|
||||
@@ -233,7 +233,7 @@ div.Panel:hover .PanelText{text-decoration:underline}
|
||||
div.Panel br,.vmtemplate br{display:none}
|
||||
div.Panel img.PanelImg{float:left;width:auto;max-width:32px;height:32px;margin:10px}
|
||||
div.Panel i.PanelIcon{float:left;font-size:32px;margin:10px}
|
||||
div.Panel .PanelText{font-size:15px;padding-top:16px;text-align:center}
|
||||
div.Panel .PanelText{font-size:14px;padding-top:16px;text-align:center}
|
||||
div.user-list{float:left;padding:10px;margin-right:10px;margin-bottom:24px;border:1px solid #F3F0F4;border-radius:5px;line-height:20px;height:100px;width:100px}
|
||||
div.user-list img{width:auto;max-width:48px;height:48px;margin-bottom:16px}
|
||||
div.user-list:hover{background-color:#edeaef}
|
||||
@@ -255,7 +255,7 @@ div.spinner .unraid_mark_7{animation:mark_7 1.5s ease infinite}
|
||||
@keyframes mark_7{50% {transform:translateY(62px)} 100% {transform: translateY(0px)}}
|
||||
pre.up{margin-top:0}
|
||||
pre{border:1px solid #F3F0F4;font-family:bitstream;font-size:12px;padding:0;overflow:auto;margin-bottom:10px;padding:10px}
|
||||
iframe#progressFrame{position:fixed;bottom:32px;left:60px;margin:0;padding:8px 8px 0 8px;width:100%;height:12px;line-height:12px;border-style:none;overflow:hidden;font-family:bitstream;font-size:12px;color:#808080;white-space:nowrap;z-index:-2}
|
||||
iframe#progressFrame{position:fixed;bottom:32px;left:60px;margin:0;padding:8px 8px 0 8px;width:100%;height:12px;line-height:12px;border-style:none;overflow:hidden;font-family:bitstream;font-size:11px;color:#808080;white-space:nowrap;z-index:-2}
|
||||
dl{margin-top:0;padding-left:12px;line-height:26px}
|
||||
dt{clear:left;float:left;width:35%}
|
||||
dd{margin-bottom:12px;white-space:nowrap}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
html{font-family:clear-sans;height:100%}
|
||||
body{font-size:14px;color:#f2f2f2;background:#1c1b1b;padding:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
||||
body{font-size:13px;color:#f2f2f2;background:#1c1b1b;padding:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
||||
@media (max-width:1280px){#template{min-width:1280px;margin:0}}
|
||||
@media (min-width:1281px){#template{min-width:1280px;margin:0 10px}}
|
||||
@media (min-width:1921px){#template{min-width:1280px;max-width:1920px;margin:0 auto}}
|
||||
@@ -13,15 +13,15 @@ a.none{color:#f2f2f2}
|
||||
a.header{color:#1c1c1c}
|
||||
a.img{text-decoration:none;border:none}
|
||||
a.info{position:relative}
|
||||
a.info span{display:none;white-space:nowrap;font-variant:small-caps;position:absolute;top:16px;left:12px;font-size:14px;line-height:20px;color:#f2f2f2;padding:5px 8px;border:1px solid rgba(255,255,255,0.25);border-radius:3px;background-color:rgba(25,25,25,0.95);box-shadow:0 0 3px #303030}
|
||||
a.info span{display:none;white-space:nowrap;font-variant:small-caps;position:absolute;top:16px;left:12px;font-size:13px;line-height:20px;color:#f2f2f2;padding:5px 8px;border:1px solid rgba(255,255,255,0.25);border-radius:3px;background-color:rgba(25,25,25,0.95);box-shadow:0 0 3px #303030}
|
||||
a.info:hover span{display:block;z-index:1}
|
||||
a.nohand{cursor:default}
|
||||
i.spacing{margin-left:-6px}
|
||||
i.icon{margin-right:4px}
|
||||
i.title{margin-right:8px}
|
||||
hr{border:none;height:1px!important;color:#2b2b2b;background-color:#2b2b2b}
|
||||
input[type=text],input[type=password],input[type=number],input[type=url],input[type=email],input[type=date],input[type=file],textarea,.textarea{font-family:clear-sans;font-size:14px;background:transparent;border:1px solid #e5e5e5;padding:5px 10px;min-height:20px;line-height:20px;outline:none;width:304px;margin:0 20px 0 0;box-shadow:none;color:#f2f2f2}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:13px;font-weight:bold;letter-spacing:2px;text-transform:uppercase;margin:10px 12px 10px 0;padding:10px 20px;text-decoration:none;white-space:nowrap;cursor:pointer;outline:none;border-radius:.125rem;border:0;color:#ff8c2f;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#e22828),to(#e22828)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#ff8c2f),to(#ff8c2f)) 100% 100% no-repeat;background:linear-gradient(90deg,#e22828 0,#ff8c2f) 0 0 no-repeat,linear-gradient(90deg,#e22828 0,#ff8c2f) 0 100% no-repeat,linear-gradient(0deg,#e22828 0,#e22828) 0 100% no-repeat,linear-gradient(0deg,#ff8c2f 0,#ff8c2f) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
input[type=text],input[type=password],input[type=number],input[type=url],input[type=email],input[type=date],input[type=file],textarea,.textarea{font-family:clear-sans;font-size:13px;background:transparent;border:1px solid #e5e5e5;padding:5px 10px;min-height:20px;line-height:20px;outline:none;width:304px;margin:0 20px 0 0;box-shadow:none;color:#f2f2f2}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:12px;font-weight:bold;letter-spacing:2px;text-transform:uppercase;margin:10px 12px 10px 0;padding:9px 18px;text-decoration:none;white-space:nowrap;cursor:pointer;outline:none;border-radius:.125rem;border:0;color:#ff8c2f;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#e22828),to(#e22828)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#ff8c2f),to(#ff8c2f)) 100% 100% no-repeat;background:linear-gradient(90deg,#e22828 0,#ff8c2f) 0 0 no-repeat,linear-gradient(90deg,#e22828 0,#ff8c2f) 0 100% no-repeat,linear-gradient(0deg,#e22828 0,#e22828) 0 100% no-repeat,linear-gradient(0deg,#ff8c2f 0,#ff8c2f) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
input[type=checkbox]{vertical-align:middle;margin-right:6px}
|
||||
input[type=number]::-webkit-outer-spin-button,input[type=number]::-webkit-inner-spin-button{-webkit-appearance: none}
|
||||
input[type=number]{-moz-appearance:textfield}
|
||||
@@ -33,7 +33,7 @@ input:hover[type=button][disabled],input:hover[type=reset][disabled],input:hover
|
||||
input:active[type=button][disabled],input:active[type=reset][disabled],input:active[type=submit][disabled],button:active[disabled],button:active[type=button][disabled],a.button:active[disabled]
|
||||
{cursor:default;color:#808080;background:-webkit-gradient(linear,left top,right top,from(#404040),to(#808080)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#404040),to(#808080)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#404040),to(#404040)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#808080),to(#808080)) 100% 100% no-repeat;background:linear-gradient(90deg,#404040 0,#808080) 0 0 no-repeat,linear-gradient(90deg,#404040 0,#808080) 0 100% no-repeat,linear-gradient(0deg,#404040 0,#404040) 0 100% no-repeat,linear-gradient(0deg,#808080 0,#808080) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
input::-webkit-input-placeholder{color:#486dba}
|
||||
select{font-family:clear-sans;font-size:14px;min-width:188px;max-width:326px;padding:6px 6px;margin:0 10px 0 0;border:#e5e5e5 1px solid;box-shadow:none;color:#f2f2f2;background:transparent;outline:none;display:inline-block;cursor:pointer}
|
||||
select{font-family:clear-sans;font-size:13px;min-width:188px;max-width:326px;padding:6px 6px;margin:0 10px 0 0;border:#e5e5e5 1px solid;box-shadow:none;color:#f2f2f2;background:transparent;outline:none;display:inline-block;cursor:pointer}
|
||||
select option{color:#f2f2f2;background-color:#262626}
|
||||
select:focus{border-color:#ff8c2f}
|
||||
select[disabled]{color:#f2f2f2;border-color:#6c6c6c;background:#262626;opacity:0.5;cursor:default}
|
||||
@@ -47,17 +47,17 @@ input.trim{width:50px}
|
||||
#header{position:fixed;top:0;left:0;width:100%;height:91px;z-index:100;margin:0;color:#1c1b1b;background:#f2f2f2;background-size:100% 90px;background-repeat:no-repeat}
|
||||
#header .logo{float:left;margin-left:10px;color:#e22828;width:160px;text-align:center}
|
||||
#header .logo svg{width:160px;display:block;margin:25px 50px 8px 0}
|
||||
#header .block{margin:0;float:right;text-align:right;background-color:rgba(242,242,242,0.3);padding:7px 12px}
|
||||
#header .block{margin:0;float:right;text-align:right;background-color:rgba(242,242,242,0.3);padding:10px 12px}
|
||||
#header .text-left{float:left;text-align:right;padding-right:5px;border-right:solid medium #f15a2c}
|
||||
#header .text-right{float:right;text-align:left;padding-left:5px}
|
||||
#header .text-right a{color:#1c1b1b}
|
||||
#header .text-right #licensetype{font-weight:bold;font-style:italic;margin-right:4px}
|
||||
#title{margin:20px 0 32px 0;padding:8px 10px;clear:both;border-bottom:#2b2b2b 1px solid;background:#262626;letter-spacing:2px}
|
||||
#title span.left{font-size:15px}
|
||||
#title span.right{font-size:13px;padding-top:2px;padding-right:10px;float:right}
|
||||
#title span.left{font-size:14px}
|
||||
#title span.right{font-size:12px;padding-top:2px;padding-right:10px;float:right}
|
||||
#title span img{padding-right:4px}
|
||||
#title.shift{margin-top:-30px}
|
||||
#menu{position:fixed;top:90px;left:0;width:100%;height:40px;line-height:40px;padding:0;margin:0;font-size:13px;background:#f2f2f2;z-index:101}
|
||||
#menu{position:fixed;top:90px;left:0;width:100%;height:40px;line-height:40px;padding:0;margin:0;font-size:12px;background:#f2f2f2;z-index:101}
|
||||
#nav-block{overflow:hidden;height:40px;letter-spacing:2px}
|
||||
#nav-left{float:left}
|
||||
#nav-right{float:right}
|
||||
@@ -75,7 +75,7 @@ input.trim{width:50px}
|
||||
#footer{position:fixed;bottom:0;left:0;color:#d4d5d6;background:#2b2a29;padding:5px 0;width:100%;height:16px;line-height:16px;text-align:center;z-index:100}
|
||||
#statusraid{float:left;padding-left:10px}
|
||||
#countdown{margin:0 auto}
|
||||
#copyright{font-family:bitstream;font-size:12px;float:right;padding-right:10px}
|
||||
#copyright{font-family:bitstream;font-size:11px;float:right;padding-right:10px}
|
||||
.green{color:#4F8A10;padding-left:5px;padding-right:5px}
|
||||
.red{color:#F0000C;padding-left:5px;padding-right:5px}
|
||||
.orange{color:#E68A00;padding-left:5px;padding-right:5px}
|
||||
@@ -87,15 +87,15 @@ input.trim{width:50px}
|
||||
.grey-text{color:#404040}
|
||||
.usage-bar{float:left;height:20px;line-height:20px;width:130px;padding:1px 1px 1px 2px;margin:8px 12px;border-radius:3px;background-color:#585858;box-shadow:0 1px 0 #989898,inset 0 1px 0 #202020}
|
||||
.usage-bar>span{display:block;height:100%;text-align:right;border-radius:2px;background-color:#808080;box-shadow:inset 0 1px 0 rgba(255,255,255,.5)}
|
||||
.usage-bar>span>span{padding:0 4px;font-size:13px;color:#f2f2f2}
|
||||
.usage-bar>span>span{padding:0 4px;font-size:12px;color:#f2f2f2}
|
||||
.usage-disk{height:20px;line-height:20px;padding:0;margin:0;border-radius:3px;background-color:#585858}
|
||||
.usage-disk>span{display:block;height:100%;border-radius:2px;background-color:#808080;box-shadow:inset 0 1px 0 rgba(255,255,255,.5);text-align:left;font-size:13px}
|
||||
.usage-disk>span>span{padding:0 6px;font-size:13px;color:#f2f2f2}
|
||||
.usage-disk>span{display:block;height:100%;border-radius:2px;background-color:#808080;box-shadow:inset 0 1px 0 rgba(255,255,255,.5);text-align:left;font-size:12px}
|
||||
.usage-disk>span>span{padding:0 6px;font-size:12px;color:#f2f2f2}
|
||||
.usage-disk.sys{height:20px;line-height:20px;margin-right:8px;padding:1px 0 1px 1px}
|
||||
.usage-disk.sys>span{color:#f2f2f2;font-size:14px}
|
||||
.usage-disk.sys>span{color:#f2f2f2;font-size:13px}
|
||||
.usage-disk.all{margin-right:2px}
|
||||
.usage-disk.all>span{color:#f2f2f2;font-size:12px}
|
||||
.notice{background:#FFF6BF url(../images/notice.png) no-repeat;background-position:60px 50%;color:#1c1c1c;font-size:16px;text-align:left;padding:15px 0 15px 130px;display:block;height:70px;line-height:70px;vertical-align:middle;border-top:2px solid #FFD324;border-bottom:2px solid #FFD324}
|
||||
.usage-disk.all>span{color:#f2f2f2;font-size:11px}
|
||||
.notice{background:#FFF6BF url(../images/notice.png) no-repeat;background-position:60px 50%;color:#1c1c1c;font-size:15px;text-align:left;padding:15px 0 15px 130px;display:block;height:70px;line-height:70px;vertical-align:middle;border-top:2px solid #FFD324;border-bottom:2px solid #FFD324}
|
||||
.notice.shift{margin-top:160px}
|
||||
.whitebar{background:-webkit-gradient(linear,left top,right top,from(#C7C7C7),to(#EEEEEE));background:linear-gradient(90deg,#C7C7C7 0,#EEEEEE)}
|
||||
.greenbar{background:-webkit-gradient(linear,left top,right top,from(#127A05),to(#17BF0B));background:linear-gradient(90deg,#127A05 0,#17BF0B)}
|
||||
@@ -110,7 +110,7 @@ table tbody tr.tr_last{background:#212121;border-top:1px solid #2b2b2b;border-bo
|
||||
table td.cpu-info{border:1px solid #2b2b2b}
|
||||
table.disk_status{white-space:nowrap}
|
||||
table.disk_status td span{margin-left:10px}
|
||||
table.disk_status thead tr:first-child td{font-size:15px;background:#262626}
|
||||
table.disk_status thead tr:first-child td{font-size:14px;background:#262626}
|
||||
table.disk_status thead tr:last-child{border-bottom:1px solid #2b2b2b}
|
||||
table.disk_status tr>td{width:8%;padding-left:12px;padding-right:0;white-space:nowrap}
|
||||
table.disk_status tr>td+td{width:auto}
|
||||
@@ -131,12 +131,12 @@ table.settings td:first-child{width:35%;padding-left:12px}
|
||||
table.settings.shifted{padding:0;margin-left:0;margin-top:0}
|
||||
table.settings.shifted td:first-child{padding-left:0}
|
||||
table.access_list{border-spacing:0;margin-top:10px;border:0}
|
||||
table.access_list tr:first-child td{font-size:15px;vertical-align:middle;text-align:left;border:1px solid #2b2b2b;border-bottom:1px solid #2b2b2b;background:#262626}
|
||||
table.access_list tr:first-child td{font-size:14px;vertical-align:middle;text-align:left;border:1px solid #2b2b2b;border-bottom:1px solid #2b2b2b;background:#262626}
|
||||
table.access_list td:first-child{font-weight:normal;width:35%;padding-left:12px}
|
||||
table.access_list tr:first-child td:first-child{font-weight:normal}
|
||||
table.access_list tr>td+td{white-space:nowrap}
|
||||
table.share_status{white-space:nowrap}
|
||||
table.share_status thead tr:first-child td{font-size:15px;background:#262626}
|
||||
table.share_status thead tr:first-child td{font-size:14px;background:#262626}
|
||||
table.share_status thead tr:last-child{border-bottom:1px solid #2b2b2b}
|
||||
table.share_status tr>td{text-align:left;padding-left:12px}
|
||||
table.share_status tr>td+td{padding-left:0}
|
||||
@@ -147,7 +147,7 @@ table.share_status tbody tr.alert{color:#F0000C;background-color:#FF9E9E}
|
||||
table.share_status tbody tr.warn{color:#E68A00;background-color:#FEEFB3}
|
||||
table.share_status.share tr td:last-child{width:4%;text-align:right;padding-right:10px}
|
||||
table.share_status.fixed tr td:first-child{width:100px}
|
||||
table.share_status.fixed thead tr>td+td{font-size:13px}
|
||||
table.share_status.fixed thead tr>td+td{font-size:12px}
|
||||
table.share_status.fixed tr>td+td{min-width:30px;text-align:center;padding:0}
|
||||
table.share_status.fixed tbody tr{border-bottom:1px #2b2b2b dotted}
|
||||
table.share_status.table{margin-top:36px}
|
||||
@@ -187,25 +187,25 @@ span.system{color:#0099FF;background-color:#BDE5F8;display:block;width:100%}
|
||||
span.array{color:#4F8A10;background-color:#DFF2BF;display:block;width:100%}
|
||||
span.login{color:#D63301;background-color:#FFDDD1;display:block;width:100%}
|
||||
span.lite{background-color:#212121}
|
||||
span.label{font-size:13px;padding:2px 0 2px 6px;margin-right:6px;border-radius:4px;display:inline;width:auto;vertical-align:middle}
|
||||
span.temp-text{font-size:13px;color:#4F8A10}
|
||||
span.heat-text{font-size:13px;color:#F0000C}
|
||||
span.label{font-size:12px;padding:2px 0 2px 6px;margin-right:6px;border-radius:4px;display:inline;width:auto;vertical-align:middle}
|
||||
span.temp-text{font-size:12px;color:#4F8A10}
|
||||
span.heat-text{font-size:12px;color:#F0000C}
|
||||
span.cpu-speed{display:block;color:#3B5998}
|
||||
span.status{float:right;font-size:16px;margin-top:30px;padding-right:8px;letter-spacing:2px}
|
||||
span.status{float:right;font-size:14px;margin-top:30px;padding-right:8px;letter-spacing:2px}
|
||||
span.status.vhshift{margin-top:0;margin-right:0}
|
||||
span.status.vshift{margin-top:-19px}
|
||||
span.status.vshift{margin-top:-18px}
|
||||
span.status.hshift{margin-right:-20px}
|
||||
span.diskinfo{float:left;clear:both;margin-top:5px;padding-left:10px}
|
||||
span.bitstream{font-family:bitstream;font-size:12px}
|
||||
span.bitstream{font-family:bitstream;font-size:11px}
|
||||
span.p0{padding-left:0}
|
||||
span.strong{font-weight:bold}
|
||||
span.big{font-size:15px}
|
||||
span.small{font-size:13px}
|
||||
span.big{font-size:14px}
|
||||
span.small{font-size:12px}
|
||||
span.one{margin-left:-16px}
|
||||
span.two{margin-left:-20px}
|
||||
span.three{margin-left:-23px}
|
||||
span.tub{margin-right:8px;font-size:24px;cursor:pointer}
|
||||
span.score{font-size:13px;color:#1c1c1c;position:absolute}
|
||||
span.score{font-size:12px;color:#1c1c1c;position:absolute}
|
||||
i.padlock{margin-right:8px;cursor:default}
|
||||
i.nolock{visibility:hidden;margin-right:8px}
|
||||
i.lock{margin-left:8px;cursor:default}
|
||||
@@ -221,7 +221,7 @@ div.tab [type=radio]+label:hover{background:transparent;border:1px solid #ff8c2f
|
||||
div.tab [type=radio]:checked+label{cursor:default;background:transparent;border:1px solid #ff8c2f;border-bottom:none;opacity:1}
|
||||
div.tab [type=radio]+label~.content{display:none}
|
||||
div.tab [type=radio]:checked+label~.content{display:inline}
|
||||
div.tab [type=radio]+label{position:relative;font-size:15px;letter-spacing:2px;padding:4px 10px;margin-right:2px;border-top-left-radius:6px;border-top-right-radius:6px;border:1px solid #6c6c6c;border-bottom:none;background:#3c3c3c;opacity:0.5}
|
||||
div.tab [type=radio]+label{position:relative;font-size:14px;letter-spacing:2px;padding:4px 10px;margin-right:2px;border-top-left-radius:6px;border-top-right-radius:6px;border:1px solid #6c6c6c;border-bottom:none;background:#3c3c3c;opacity:0.5}
|
||||
div.tab [type=radio]+label img{padding-right:4px}
|
||||
div.Panel{text-align:center;float:left;margin:0 30px 30px 12px;height:80px}
|
||||
div.Panel .PanelText{padding-top:6px}
|
||||
@@ -243,8 +243,8 @@ div.domain{margin-top:-20px}
|
||||
@keyframes mark_6{50% {transform:translateY(40px)} 100% {transform:translateY(0px)}}
|
||||
@keyframes mark_7{50% {transform:translateY(62px)} 100% {transform: translateY(0px)}}
|
||||
pre.up{margin-top:-30px}
|
||||
pre{border:1px solid #2b2b2b;font-family:bitstream;padding:4px 6px;overflow:auto}
|
||||
iframe#progressFrame{position:fixed;bottom:32px;left:0;margin:0;padding:8px 8px 0 8px;width:100%;height:12px;line-height:12px;border-style:none;overflow:hidden;font-family:bitstream;font-size:12px;color:#808080;white-space:nowrap;z-index:-10}
|
||||
pre{border:1px solid #2b2b2b;font-family:bitstream;font-size:12px;padding:4px 6px;overflow:auto}
|
||||
iframe#progressFrame{position:fixed;bottom:32px;left:0;margin:0;padding:8px 8px 0 8px;width:100%;height:12px;line-height:12px;border-style:none;overflow:hidden;font-family:bitstream;font-size:11px;color:#808080;white-space:nowrap;z-index:-10}
|
||||
dl{margin:0;padding-left:12px;line-height:26px}
|
||||
dt{clear:left;float:left;width:35%;font-weight:normal}
|
||||
dd{margin-bottom:12px;white-space:nowrap}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
html{font-family:clear-sans;height:100%}
|
||||
body{font-size:14px;color:#606e7f;background-color:#1b1d1b;padding:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
||||
body{font-size:13px;color:#606e7f;background-color:#1b1d1b;padding:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
||||
@media (max-width:1280px){#template{min-width:1280px;margin:0}}
|
||||
@media (min-width:1281px){#template{min-width:1280px;margin:0}}
|
||||
@media (min-width:1921px){#template{min-width:1280px;max-width:1920px;margin:0 auto}}
|
||||
@@ -12,7 +12,7 @@ a{color:#486dba;text-decoration:none}
|
||||
a.none{color:#606e7f}
|
||||
a.img{text-decoration:none;border:none}
|
||||
a.info{position:relative}
|
||||
a.info span{display:none;white-space:nowrap;font-variant:small-caps;position:absolute;top:16px;left:10px;color:#b0b0b0;font-size:13px;line-height:20px;padding:5px 8px;border:1px solid #42453e;border-radius:3px;background-color:#121510}
|
||||
a.info span{display:none;white-space:nowrap;font-variant:small-caps;position:absolute;top:16px;left:10px;color:#b0b0b0;font-size:12px;line-height:20px;padding:5px 8px;border:1px solid #42453e;border-radius:3px;background-color:#121510}
|
||||
a.info:hover span{display:block;z-index:1}
|
||||
a.nohand{cursor:default}
|
||||
i.spacing{margin-left:0;margin-right:10px}
|
||||
@@ -20,10 +20,10 @@ i.icon{margin-right:4px}
|
||||
i.title{display:none}
|
||||
pre ul{margin:0;padding-top:0;padding-bottom:0;padding-left:28px}
|
||||
pre li{margin:0;padding-top:0;padding-bottom:0;padding-left:18px}
|
||||
big{font-size:15px;font-weight:bold;text-transform:uppercase}
|
||||
big{font-size:14px;font-weight:bold;text-transform:uppercase}
|
||||
hr{border:none;height:1px!important;color:#606e7f;background-color:#606e7f}
|
||||
input[type=text],input[type=password],input[type=number],input[type=url],input[type=email],input[type=date],input[type=file],textarea,.textarea{font-family:clear-sans;font-size:14px;background:transparent;border:1px solid #606e7f;padding:5px 10px;min-height:20px;line-height:20px;outline:none;width:304px;margin:0 20px 0 0;box-shadow:none;color:#606e7f}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:13px;border:1px solid #606e7f;border-radius:5px;margin:10px 20px 10px 0;padding:8px 12px;cursor:pointer;outline:none;color:#606e7f;background:#121510}
|
||||
input[type=text],input[type=password],input[type=number],input[type=url],input[type=email],input[type=date],input[type=file],textarea,.textarea{font-family:clear-sans;font-size:13px;background:transparent;border:1px solid #606e7f;padding:5px 10px;min-height:20px;line-height:20px;outline:none;width:304px;margin:0 20px 0 0;box-shadow:none;color:#606e7f}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:12px;border:1px solid #606e7f;border-radius:5px;margin:10px 20px 10px 0;padding:8px 12px;cursor:pointer;outline:none;color:#606e7f;background:#121510}
|
||||
input[type=checkbox]{vertical-align:middle;margin-right:6px}
|
||||
input[type=number]::-webkit-outer-spin-button,input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none}
|
||||
input[type=number]{-moz-appearance:textfield}
|
||||
@@ -32,7 +32,7 @@ input:hover[type=button],input:hover[type=reset],input:hover[type=submit],button
|
||||
input:active[type=button],input:active[type=reset],input:active[type=submit],button:active,button:active[type=button],a.button:active{border-color:#0072c6;box-shadow:none}
|
||||
input[disabled],button[disabled],input:hover[type=button][disabled],input:hover[type=reset][disabled],input:hover[type=submit][disabled],button:hover[disabled],button:hover[type=button][disabled],input:active[type=button][disabled],input:active[type=reset][disabled],input:active[type=submit][disabled],button:active[disabled],button:active[type=button][disabled],textarea[disabled]{color:#808080;border-color:#808080;background:#383a34;opacity:0.3;cursor:default}
|
||||
input::-webkit-input-placeholder{color:#00529b}
|
||||
select{font-family:clear-sans;font-size:14px;min-width:188px;max-width:326px;padding:6px 6px;margin:0 10px 0 0;border:#606e7f 1px solid;box-shadow:none;color:#606e7f;background:transparent;outline:none;display:inline-block;cursor:pointer}
|
||||
select{font-family:clear-sans;font-size:13px;min-width:188px;max-width:326px;padding:6px 6px;margin:0 10px 0 0;border:#606e7f 1px solid;box-shadow:none;color:#606e7f;background:transparent;outline:none;display:inline-block;cursor:pointer}
|
||||
select option{color:#606e7f;background-color:#121510}
|
||||
select:focus{border-color:#0072c6}
|
||||
select[disabled]{color:#808080;border-color:#808080;background:#383a34;opacity:0.3;cursor:default}
|
||||
@@ -47,7 +47,7 @@ form+p{display:none}
|
||||
#header{position:fixed;top:0;left:0;width:100%;height:90px;z-index:100;margin:0;background-color:#121510;background-size:100% 90px;background-repeat:no-repeat;border-bottom:#42453e 1px solid}
|
||||
#header .logo{float:left;margin-left:75px;color:#e22828;width:160px;text-align:center}
|
||||
#header .logo svg{width:160px;display:block;margin:25px 50px 8px 0}
|
||||
#header .block{margin:0;float:right;text-align:right;background-color:rgba(18,21,16,0.7);padding:6px 12px 7px 12px}
|
||||
#header .block{margin:0;float:right;text-align:right;background-color:rgba(18,21,16,0.7);padding:10px 12px}
|
||||
#header .text-left{float:left;text-align:right;padding-right:5px;border-right:solid medium #f15a2c}
|
||||
#header .text-right{float:right;text-align:left;padding-left:5px}
|
||||
#header .text-right a{color:#606e7f}
|
||||
@@ -84,7 +84,7 @@ span.tub span[id^='txt-tub']{margin-top:7px}
|
||||
#footer{position:fixed;bottom:0;left:0;color:#808080;background:#121510;padding:5px 0;width:100%;height:16px;line-height:16px;text-align:center;z-index:100}
|
||||
#statusraid{float:left;padding-left:10px}
|
||||
#countdown{margin:0 auto}
|
||||
#copyright{font-family:bitstream;font-size:12px;float:right;padding-right:10px}
|
||||
#copyright{font-family:bitstream;font-size:11px;float:right;padding-right:10px}
|
||||
.green{color:#4F8A10;padding-left:5px;padding-right:5px}
|
||||
.red{color:#F0000C;padding-left:5px;padding-right:5px}
|
||||
.orange{color:#E68A00;padding-left:5px;padding-right:5px}
|
||||
@@ -99,12 +99,12 @@ span.tub span[id^='txt-tub']{margin-top:7px}
|
||||
.usage-bar>span>span{padding-left:4px;color:#606e7f}
|
||||
.usage-disk{height:25px;line-height:25px;background-color:rgba(18,21,16,0.3)}
|
||||
.usage-disk>span{display:block;height:3px;background-color:#606e7f;text-align:left}
|
||||
.usage-disk>span>span{font-size:13px;color:#606e7f}
|
||||
.usage-disk>span>span{font-size:12px;color:#606e7f}
|
||||
.usage-disk.sys{background-color:transparent}
|
||||
.usage-disk.sys>span{font-size:13px}
|
||||
.usage-disk.sys>span{font-size:12px}
|
||||
.usage-disk.all{background-color:transparent}
|
||||
.usage-disk.all>span{font-size:12px}
|
||||
.notice{background:#FFF6BF url(../images/notice.png) no-repeat;background-position:60px 50%;font-size:16px;text-align:left;padding:15px 0 15px 130px;display:block;height:70px;line-height:70px;vertical-align:middle;border-top:1px solid #FFD324;border-bottom:1px solid #FFD324}
|
||||
.usage-disk.all>span{font-size:11px}
|
||||
.notice{background:#FFF6BF url(../images/notice.png) no-repeat;background-position:60px 50%;font-size:15px;text-align:left;padding:15px 0 15px 130px;display:block;height:70px;line-height:70px;vertical-align:middle;border-top:1px solid #FFD324;border-bottom:1px solid #FFD324}
|
||||
.whitebar{background:-webkit-radial-gradient(#C7C7C7,#EEEEEE);background:linear-gradient(#C7C7C7,#EEEEEE)}
|
||||
.greenbar{background:-webkit-radial-gradient(#127A05,#17BF0B);background:linear-gradient(#127A05,#17BF0B)}
|
||||
.orangebar{background:-webkit-radial-gradient(#CE7C10,#F0B400);background:linear-gradient(#CE7C10,#F0B400)}
|
||||
@@ -122,9 +122,9 @@ table.disk_status tr>td+td{width:auto}
|
||||
table.disk_status tr>td+td+td{width:6.5%;text-align:center;padding-left:4px;padding-right:8px}
|
||||
table.disk_status tr>td+td+td+td{text-align:right;padding-left:0;padding-right:12px}
|
||||
table.disk_status tr td:last-child{width:4%;padding-right:10px}
|
||||
table.disk_status tbody tr{border-bottom:#0C0F0B 1px solid;line-height:30px}
|
||||
table.disk_status tbody tr{border-bottom:#0C0F0B 1px solid;line-height:24px}
|
||||
table.disk_status.stats tr>td+td{text-align:left;padding-left:0;padding-right:12px}
|
||||
table.array_status{line-height:30px}
|
||||
table.array_status{line-height:24px}
|
||||
table.array_status td{padding:4px 0}
|
||||
table.array_status td:first-child{text-transform:uppercase}
|
||||
table.array_status tr>td{text-align:left;white-space:nowrap;padding-left:12px;width:30%}
|
||||
@@ -142,7 +142,7 @@ table.share_status tr>td{text-align:left;padding-left:12px}
|
||||
table.share_status tr>td+td{padding-left:0}
|
||||
table.share_status tr.share_status_size>td{padding-left:40px}
|
||||
table.share_status tr.share_status_size>td+td{padding-left:15px}
|
||||
table.share_status tbody tr{border-bottom:#0C0F0B 1px solid;line-height:30px}
|
||||
table.share_status tbody tr{border-bottom:#0C0F0B 1px solid;line-height:24px}
|
||||
table.share_status tbody tr:last-child td{border-bottom:#606e7f 1px solid}
|
||||
table.share_status tbody tr.alert{color:#F0000C;background-color:#FF9E9E}
|
||||
table.share_status tbody tr.warn{color:#E68A00;background-color:#FEEFB3}
|
||||
@@ -155,7 +155,7 @@ table.share_status.fixed tbody tr td:first-child{padding-right:10px}
|
||||
table.share_status.table{margin-top:36px}
|
||||
table.share_status.table tr>td{width:50%}
|
||||
table.share_status.dash{float:left;width:35%;margin-top:36px;margin-right:6px;border:none}
|
||||
table.share_status.dash thead tr:first-child td{line-height:30px}
|
||||
table.share_status.dash thead tr:first-child td{line-height:24px}
|
||||
table.share_status.dash thead tr:last-child>td{border-bottom:1px solid #606e7f;text-align:left;color:#606e7f}
|
||||
table.share_status.dash tbody td.blue{color:#606e7f}
|
||||
table.share_status.dash.line tbody tr.wide{height:40px;line-height:40px}
|
||||
@@ -191,20 +191,20 @@ span.system{color:#00529b;background-color:#BDE5F8;display:block;width:100%}
|
||||
span.array{color:#4F8A10;background-color:#DFF2BF;display:block;width:100%}
|
||||
span.login{color:#D63301;background-color:#FFDDD1;display:block;width:100%}
|
||||
span.lite{background-color:#121510}
|
||||
span.label{font-size:12px;padding:2px 0 2px 6px;margin-right:6px;border-radius:4px;display:inline;width:auto;vertical-align:middle}
|
||||
span.temp-text{font-size:12px;color:#4F8A10}
|
||||
span.heat-text{font-size:12px;color:#F0000C}
|
||||
span.label{font-size:11px;padding:2px 0 2px 6px;margin-right:6px;border-radius:4px;display:inline;width:auto;vertical-align:middle}
|
||||
span.temp-text{font-size:11px;color:#4F8A10}
|
||||
span.heat-text{font-size:11px;color:#F0000C}
|
||||
span.cpu-speed{display:block;color:#3B5998}
|
||||
span.status{float:right;font-size:15px;letter-spacing:2px}
|
||||
span.status{float:right;font-size:14px;letter-spacing:2px}
|
||||
span.status.vhshift{margin-top:0;margin-right:0}
|
||||
span.status.vshift{margin-top:-16px}
|
||||
span.status.hshift{margin-right:-20px}
|
||||
span.diskinfo{float:left;clear:both;margin-top:5px;padding-left:10px}
|
||||
span.bitstream{font-family:bitstream;font-size:12px}
|
||||
span.bitstream{font-family:bitstream;font-size:11px}
|
||||
span.p0{padding-left:0}
|
||||
span.strong{font-weight:bold}
|
||||
span.big{font-size:15px}
|
||||
span.small{font-size:12px}
|
||||
span.big{font-size:14px}
|
||||
span.small{font-size:11px}
|
||||
span.one{margin-left:-16px}
|
||||
span.two{margin-left:-20px}
|
||||
span.three{margin-left:-23px}
|
||||
@@ -234,7 +234,7 @@ div.Panel:hover .PanelText{text-decoration:underline}
|
||||
div.Panel br,.vmtemplate br{display:none}
|
||||
div.Panel img.PanelImg{float:left;width:auto;max-width:32px;height:32px;margin:10px}
|
||||
div.Panel i.PanelIcon{float:left;font-size:32px;margin:10px}
|
||||
div.Panel .PanelText{font-size:15px;padding-top:16px;text-align:center}
|
||||
div.Panel .PanelText{font-size:14px;padding-top:16px;text-align:center}
|
||||
div.user-list{float:left;padding:10px;margin-right:10px;margin-bottom:24px;border:1px solid #0C0F0B;border-radius:5px;line-height:20px;height:100px;width:100px}
|
||||
div.user-list img{width:auto;max-width:48px;height:48px;margin-bottom:16px}
|
||||
div.user-list:hover{background-color:#121510}
|
||||
@@ -256,7 +256,7 @@ div.spinner .unraid_mark_7{animation:mark_7 1.5s ease infinite}
|
||||
@keyframes mark_7{50% {transform:translateY(62px)} 100% {transform: translateY(0px)}}
|
||||
pre.up{margin-top:0}
|
||||
pre{border:1px solid #0C0F0B;font-family:bitstream;font-size:12px;padding:0;overflow:auto;margin-bottom:10px;padding:10px}
|
||||
iframe#progressFrame{position:fixed;bottom:32px;left:60px;margin:0;padding:8px 8px 0 8px;width:100%;height:12px;line-height:12px;border-style:none;overflow:hidden;font-family:bitstream;font-size:12px;color:#808080;white-space:nowrap;z-index:-2}
|
||||
iframe#progressFrame{position:fixed;bottom:32px;left:60px;margin:0;padding:8px 8px 0 8px;width:100%;height:12px;line-height:12px;border-style:none;overflow:hidden;font-family:bitstream;font-size:11px;color:#808080;white-space:nowrap;z-index:-2}
|
||||
dl{margin-top:0;padding-left:12px;line-height:26px}
|
||||
dt{clear:left;float:left;width:35%}
|
||||
dd{margin-bottom:12px;white-space:nowrap}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
html{font-family:clear-sans;height:100%}
|
||||
body{font-size:14px;color:#1c1c1c;background:#f2f2f2;padding:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
||||
input[type=text],input[type=password],input[type=number],input[type=url],input[type=email],input[type=date],input[type=file],textarea,.textarea{font-family:clear-sans;font-size:14px;background:transparent;border:1px solid #1c1c1c;padding:5px 10px;min-height:20px;line-height:20px;outline:none;width:304px;margin:0 20px 0 0;box-shadow:none;color:#1c1c1c}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:13px;font-weight:bold;letter-spacing:2px;text-transform:uppercase;margin:0 12px 0 0;padding:10px 20px;text-decoration:none;white-space:nowrap;cursor:pointer;outline:none;border-radius:.125rem;border:0;color:#ff8c2f;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#e22828),to(#e22828)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#ff8c2f),to(#ff8c2f)) 100% 100% no-repeat;background:linear-gradient(90deg,#e22828 0,#ff8c2f) 0 0 no-repeat,linear-gradient(90deg,#e22828 0,#ff8c2f) 0 100% no-repeat,linear-gradient(0deg,#e22828 0,#e22828) 0 100% no-repeat,linear-gradient(0deg,#ff8c2f 0,#ff8c2f) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
body{font-size:13px;color:#1c1c1c;background:#f2f2f2;padding:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
||||
input[type=text],input[type=password],input[type=number],input[type=url],input[type=email],input[type=date],input[type=file],textarea,.textarea{font-family:clear-sans;font-size:13px;background:transparent;border:1px solid #1c1c1c;padding:5px 10px;min-height:20px;line-height:20px;outline:none;width:304px;margin:0 20px 0 0;box-shadow:none;color:#1c1c1c}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:12px;font-weight:bold;letter-spacing:2px;text-transform:uppercase;margin:0 12px 0 0;padding:9px 18px;text-decoration:none;white-space:nowrap;cursor:pointer;outline:none;border-radius:.125rem;border:0;color:#ff8c2f;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#e22828),to(#e22828)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#ff8c2f),to(#ff8c2f)) 100% 100% no-repeat;background:linear-gradient(90deg,#e22828 0,#ff8c2f) 0 0 no-repeat,linear-gradient(90deg,#e22828 0,#ff8c2f) 0 100% no-repeat,linear-gradient(0deg,#e22828 0,#e22828) 0 100% no-repeat,linear-gradient(0deg,#ff8c2f 0,#ff8c2f) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
input:hover[type=button],input:hover[type=reset],input:hover[type=submit],button:hover,button:hover[type=button],a.button:hover{color:#f2f2f2;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f));background:linear-gradient(90deg,#e22828 0,#ff8c2f)}
|
||||
input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled],button[disabled],button[type=button][disabled],a.button[disabled]
|
||||
input:hover[type=button][disabled],input:hover[type=reset][disabled],input:hover[type=submit][disabled],button:hover[disabled],button:hover[type=button][disabled],a.button:hover[disabled]
|
||||
@@ -11,7 +11,7 @@ table{border-collapse:collapse;border-spacing:0;margin:0;width:100%}
|
||||
table thead td{padding:6px 0}
|
||||
table tbody td{padding:4px 0}
|
||||
table.share_status{white-space:nowrap}
|
||||
table.share_status thead tr:first-child td{font-size:15px;background:#e8e8e8}
|
||||
table.share_status thead tr:first-child td{font-size:14px;background:#e8e8e8}
|
||||
table.share_status thead tr:last-child{border-bottom:1px solid #e3e3e3}
|
||||
table.share_status tbody tr:nth-child(even){background-color:#ededed}
|
||||
table.share_status tr>td{text-align:left;padding-left:12px}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
html{font-family:clear-sans;height:100%}
|
||||
body{font-size:14px;color:#1c1c1c;background:#f2f2f2;padding:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
||||
body{font-size:13px;color:#1c1c1c;background:#f2f2f2;padding:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
||||
@media (max-width:1280px){#template{min-width:1280px;margin:0}}
|
||||
@media (min-width:1281px){#template{min-width:1280px;margin:0 10px}}
|
||||
@media (min-width:1921px){#template{min-width:1280px;max-width:1920px;margin:0 auto}}
|
||||
@@ -13,15 +13,15 @@ a.none{color:#1c1c1c}
|
||||
a.header{color:#f2f2f2}
|
||||
a.img{text-decoration:none;border:none}
|
||||
a.info{position:relative}
|
||||
a.info span{display:none;white-space:nowrap;font-variant:small-caps;position:absolute;top:16px;left:12px;font-size:14px;line-height:20px;color:#f2f2f2;padding:5px 8px;border:1px solid rgba(255,255,255,0.25);border-radius:3px;background-color:rgba(25,25,25,0.95);box-shadow:0 0 3px #303030}
|
||||
a.info span{display:none;white-space:nowrap;font-variant:small-caps;position:absolute;top:16px;left:12px;font-size:13px;line-height:20px;color:#f2f2f2;padding:5px 8px;border:1px solid rgba(255,255,255,0.25);border-radius:3px;background-color:rgba(25,25,25,0.95);box-shadow:0 0 3px #303030}
|
||||
a.info:hover span{display:block;z-index:1}
|
||||
a.nohand{cursor:default}
|
||||
i.spacing{margin-left:-6px}
|
||||
i.icon{margin-right:4px}
|
||||
i.title{margin-right:8px}
|
||||
hr{border:none;height:1px!important;color:#e3e3e3;background-color:#e3e3e3}
|
||||
input[type=text],input[type=password],input[type=number],input[type=url],input[type=email],input[type=date],input[type=file],textarea,.textarea{font-family:clear-sans;font-size:14px;background:transparent;border:1px solid #1c1c1c;padding:5px 10px;min-height:20px;line-height:20px;outline:none;width:304px;margin:0 20px 0 0;box-shadow:none;color:#1c1c1c}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:13px;font-weight:bold;letter-spacing:2px;text-transform:uppercase;margin:10px 12px 10px 0;padding:10px 20px;text-decoration:none;white-space:nowrap;cursor:pointer;outline:none;border-radius:.125rem;border:0;color:#ff8c2f;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#e22828),to(#e22828)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#ff8c2f),to(#ff8c2f)) 100% 100% no-repeat;background:linear-gradient(90deg,#e22828 0,#ff8c2f) 0 0 no-repeat,linear-gradient(90deg,#e22828 0,#ff8c2f) 0 100% no-repeat,linear-gradient(0deg,#e22828 0,#e22828) 0 100% no-repeat,linear-gradient(0deg,#ff8c2f 0,#ff8c2f) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
input[type=text],input[type=password],input[type=number],input[type=url],input[type=email],input[type=date],input[type=file],textarea,.textarea{font-family:clear-sans;font-size:13px;background:transparent;border:1px solid #1c1c1c;padding:5px 10px;min-height:20px;line-height:20px;outline:none;width:304px;margin:0 20px 0 0;box-shadow:none;color:#1c1c1c}
|
||||
input[type=button],input[type=reset],input[type=submit],button,button[type=button],a.button{font-family:clear-sans;font-size:12px;font-weight:bold;letter-spacing:2px;text-transform:uppercase;margin:10px 12px 10px 0;padding:9px 18px;text-decoration:none;white-space:nowrap;cursor:pointer;outline:none;border-radius:.125rem;border:0;color:#ff8c2f;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#e22828),to(#e22828)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#ff8c2f),to(#ff8c2f)) 100% 100% no-repeat;background:linear-gradient(90deg,#e22828 0,#ff8c2f) 0 0 no-repeat,linear-gradient(90deg,#e22828 0,#ff8c2f) 0 100% no-repeat,linear-gradient(0deg,#e22828 0,#e22828) 0 100% no-repeat,linear-gradient(0deg,#ff8c2f 0,#ff8c2f) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
input[type=checkbox]{vertical-align:middle;margin-right:6px}
|
||||
input[type=number]::-webkit-outer-spin-button,input[type=number]::-webkit-inner-spin-button{-webkit-appearance: none}
|
||||
input[type=number]{-moz-appearance:textfield}
|
||||
@@ -33,7 +33,7 @@ input:hover[type=button][disabled],input:hover[type=reset][disabled],input:hover
|
||||
input:active[type=button][disabled],input:active[type=reset][disabled],input:active[type=submit][disabled],button:active[disabled],button:active[type=button][disabled],a.button:active[disabled]
|
||||
{cursor:default;color:#808080;background:-webkit-gradient(linear,left top,right top,from(#404040),to(#808080)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#404040),to(#808080)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#404040),to(#404040)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#808080),to(#808080)) 100% 100% no-repeat;background:linear-gradient(90deg,#404040 0,#808080) 0 0 no-repeat,linear-gradient(90deg,#404040 0,#808080) 0 100% no-repeat,linear-gradient(0deg,#404040 0,#404040) 0 100% no-repeat,linear-gradient(0deg,#808080 0,#808080) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
input::-webkit-input-placeholder{color:#486dba}
|
||||
select{font-family:clear-sans;font-size:14px;min-width:188px;max-width:326px;padding:6px 6px;margin:0 10px 0 0;border:#1c1c1c 1px solid;box-shadow:none;color:#1c1c1c;background:transparent;outline:none;display:inline-block;cursor:pointer}
|
||||
select{font-family:clear-sans;font-size:13px;min-width:188px;max-width:326px;padding:6px 6px;margin:0 10px 0 0;border:#1c1c1c 1px solid;box-shadow:none;color:#1c1c1c;background:transparent;outline:none;display:inline-block;cursor:pointer}
|
||||
select option{color:#1c1c1c;background-color:#e8e8e8}
|
||||
select:focus{border-color:#ff8c2f}
|
||||
select[disabled]{color:#1c1c1c;border-color:#a2a2a2;background:#e8e8e8;opacity:0.5;cursor:default}
|
||||
@@ -47,17 +47,17 @@ input.trim{width:50px}
|
||||
#header{position:fixed;top:0;left:0;width:100%;height:91px;z-index:100;margin:0;color:#f2f2f2;background:#1c1b1b;background-size:100% 90px;background-repeat:no-repeat}
|
||||
#header .logo{float:left;margin-left:10px;color:#e22828;width:160px;text-align:center}
|
||||
#header .logo svg{width:160px;display:block;margin:25px 50px 8px 0}
|
||||
#header .block{margin:0;float:right;text-align:right;background-color:rgba(28,27,27,0.3);padding:7px 12px}
|
||||
#header .block{margin:0;float:right;text-align:right;background-color:rgba(28,27,27,0.3);padding:10px 12px}
|
||||
#header .text-left{float:left;text-align:right;padding-right:5px;border-right:solid medium #f15a2c}
|
||||
#header .text-right{float:right;text-align:left;padding-left:5px}
|
||||
#header .text-right a{color:#f2f2f2}
|
||||
#header .text-right #licensetype{font-weight:bold;font-style:italic;margin-right:4px}
|
||||
#title{margin:20px 0 32px 0;padding:8px 10px;clear:both;border-bottom:#e3e3e3 1px solid;background:#e8e8e8;letter-spacing:2px}
|
||||
#title span.left{font-size:15px}
|
||||
#title span.right{font-size:13px;padding-top:2px;padding-right:10px;float:right}
|
||||
#title span.left{font-size:14px}
|
||||
#title span.right{font-size:12px;padding-top:2px;padding-right:10px;float:right}
|
||||
#title span img{padding-right:4px}
|
||||
#title.shift{margin-top:-30px}
|
||||
#menu{position:fixed;top:90px;left:0;width:100%;height:40px;line-height:40px;padding:0;margin:0;font-size:13px;background:#1c1b1b;z-index:101}
|
||||
#menu{position:fixed;top:90px;left:0;width:100%;height:40px;line-height:40px;padding:0;margin:0;font-size:12px;background:#1c1b1b;z-index:101}
|
||||
#nav-block{overflow:hidden;height:40px;letter-spacing:2px}
|
||||
#nav-left{float:left}
|
||||
#nav-right{float:right}
|
||||
@@ -75,7 +75,7 @@ input.trim{width:50px}
|
||||
#footer{position:fixed;bottom:0;left:0;color:#2b2a29;background:#d4d5d6;padding:5px 0;width:100%;height:16px;line-height:16px;text-align:center;z-index:100}
|
||||
#statusraid{float:left;padding-left:10px}
|
||||
#countdown{margin:0 auto}
|
||||
#copyright{font-family:bitstream;font-size:12px;float:right;padding-right:10px}
|
||||
#copyright{font-family:bitstream;font-size:11px;float:right;padding-right:10px}
|
||||
.green{color:#4F8A10;padding-left:5px;padding-right:5px}
|
||||
.red{color:#F0000C;padding-left:5px;padding-right:5px}
|
||||
.orange{color:#E68A00;padding-left:5px;padding-right:5px}
|
||||
@@ -87,15 +87,15 @@ input.trim{width:50px}
|
||||
.grey-text{color:#404040}
|
||||
.usage-bar{float:left;height:20px;line-height:20px;width:130px;padding:1px 1px 1px 2px;margin:8px 12px;border-radius:3px;background-color:#585858;box-shadow:0 1px 0 #989898,inset 0 1px 0 #202020}
|
||||
.usage-bar>span{display:block;height:100%;text-align:right;border-radius:2px;background-color:#808080;box-shadow:inset 0 1px 0 rgba(255,255,255,.5)}
|
||||
.usage-bar>span>span{padding:0 4px;font-size:13px;color:#f2f2f2}
|
||||
.usage-bar>span>span{padding:0 4px;font-size:12px;color:#f2f2f2}
|
||||
.usage-disk{height:20px;line-height:20px;padding:0;margin:0;border-radius:3px;background-color:#585858}
|
||||
.usage-disk>span{display:block;height:100%;border-radius:2px;background-color:#808080;box-shadow:inset 0 1px 0 rgba(255,255,255,.5);text-align:left;font-size:13px}
|
||||
.usage-disk>span>span{padding:0 6px;font-size:13px;color:#f2f2f2}
|
||||
.usage-disk>span{display:block;height:100%;border-radius:2px;background-color:#808080;box-shadow:inset 0 1px 0 rgba(255,255,255,.5);text-align:left;font-size:12px}
|
||||
.usage-disk>span>span{padding:0 6px;font-size:12px;color:#f2f2f2}
|
||||
.usage-disk.sys{height:20px;line-height:20px;margin-right:8px;padding:1px 0 1px 1px}
|
||||
.usage-disk.sys>span{color:#f2f2f2;font-size:14px}
|
||||
.usage-disk.sys>span{color:#f2f2f2;font-size:13px}
|
||||
.usage-disk.all{margin-right:2px}
|
||||
.usage-disk.all>span{color:#f2f2f2;font-size:12px}
|
||||
.notice{background:#FFF6BF url(../images/notice.png) no-repeat;background-position:60px 50%;font-size:16px;text-align:left;padding:15px 0 15px 130px;display:block;height:70px;line-height:70px;vertical-align:middle;border-top:2px solid #FFD324;border-bottom:2px solid #FFD324}
|
||||
.usage-disk.all>span{color:#f2f2f2;font-size:11px}
|
||||
.notice{background:#FFF6BF url(../images/notice.png) no-repeat;background-position:60px 50%;font-size:15px;text-align:left;padding:15px 0 15px 130px;display:block;height:70px;line-height:70px;vertical-align:middle;border-top:2px solid #FFD324;border-bottom:2px solid #FFD324}
|
||||
.notice.shift{margin-top:160px}
|
||||
.whitebar{background:-webkit-gradient(linear,left top,right top,from(#C7C7C7),to(#EEEEEE));background:linear-gradient(90deg,#C7C7C7 0,#EEEEEE)}
|
||||
.greenbar{background:-webkit-gradient(linear,left top,right top,from(#127A05),to(#17BF0B));background:linear-gradient(90deg,#127A05 0,#17BF0B)}
|
||||
@@ -110,7 +110,7 @@ table tbody tr.tr_last{background:#ededed;border-top:1px solid #e3e3e3;border-bo
|
||||
table td.cpu-info{border:1px solid #e3e3e3}
|
||||
table.disk_status{white-space:nowrap}
|
||||
table.disk_status td span{margin-left:10px}
|
||||
table.disk_status thead tr:first-child td{font-size:15px;background:#e8e8e8}
|
||||
table.disk_status thead tr:first-child td{font-size:14px;background:#e8e8e8}
|
||||
table.disk_status thead tr:last-child{border-bottom:1px solid #e3e3e3}
|
||||
table.disk_status tr>td{width:8%;padding-left:12px;padding-right:0;white-space:nowrap}
|
||||
table.disk_status tr>td+td{width:auto}
|
||||
@@ -131,12 +131,12 @@ table.settings td:first-child{width:35%;padding-left:12px}
|
||||
table.settings.shifted{padding:0;margin-left:0;margin-top:0}
|
||||
table.settings.shifted td:first-child{padding-left:0}
|
||||
table.access_list{border-spacing:0;margin-top:10px;border:0}
|
||||
table.access_list tr:first-child td{font-size:15px;vertical-align:middle;text-align:left;border:1px solid #e3e3e3;border-bottom:1px solid #e3e3e3;background:#e8e8e8}
|
||||
table.access_list tr:first-child td{font-size:14px;vertical-align:middle;text-align:left;border:1px solid #e3e3e3;border-bottom:1px solid #e3e3e3;background:#e8e8e8}
|
||||
table.access_list td:first-child{font-weight:normal;width:35%;padding-left:12px}
|
||||
table.access_list tr:first-child td:first-child{font-weight:normal}
|
||||
table.access_list tr>td+td{white-space:nowrap}
|
||||
table.share_status{white-space:nowrap}
|
||||
table.share_status thead tr:first-child td{font-size:15px;background:#e8e8e8}
|
||||
table.share_status thead tr:first-child td{font-size:14px;background:#e8e8e8}
|
||||
table.share_status thead tr:last-child{border-bottom:1px solid #e3e3e3}
|
||||
table.share_status tr>td{text-align:left;padding-left:12px}
|
||||
table.share_status tr>td+td{padding-left:0}
|
||||
@@ -147,7 +147,7 @@ table.share_status tbody tr.alert{color:#F0000C;background-color:#FF9E9E}
|
||||
table.share_status tbody tr.warn{color:#E68A00;background-color:#FEEFB3}
|
||||
table.share_status.share tr td:last-child{width:4%;text-align:right;padding-right:10px}
|
||||
table.share_status.fixed tr td:first-child{width:100px}
|
||||
table.share_status.fixed thead tr>td+td{font-size:13px}
|
||||
table.share_status.fixed thead tr>td+td{font-size:12px}
|
||||
table.share_status.fixed tr>td+td{min-width:30px;text-align:center;padding:0}
|
||||
table.share_status.fixed tbody tr{border-bottom:1px #e3e3e3 dotted}
|
||||
table.share_status.table{margin-top:36px}
|
||||
@@ -187,25 +187,25 @@ span.system{color:#0099FF;background-color:#BDE5F8;display:block;width:100%}
|
||||
span.array{color:#4F8A10;background-color:#DFF2BF;display:block;width:100%}
|
||||
span.login{color:#D63301;background-color:#FFDDD1;display:block;width:100%}
|
||||
span.lite{background-color:#ededed}
|
||||
span.label{font-size:13px;padding:2px 0 2px 6px;margin-right:6px;border-radius:4px;display:inline;width:auto;vertical-align:middle}
|
||||
span.temp-text{font-size:13px;color:#4F8A10}
|
||||
span.heat-text{font-size:13px;color:#F0000C}
|
||||
span.label{font-size:12px;padding:2px 0 2px 6px;margin-right:6px;border-radius:4px;display:inline;width:auto;vertical-align:middle}
|
||||
span.temp-text{font-size:12px;color:#4F8A10}
|
||||
span.heat-text{font-size:12px;color:#F0000C}
|
||||
span.cpu-speed{display:block;color:#3B5998}
|
||||
span.status{float:right;font-size:16px;margin-top:30px;padding-right:8px;letter-spacing:2px}
|
||||
span.status{float:right;font-size:14px;margin-top:30px;padding-right:8px;letter-spacing:2px}
|
||||
span.status.vhshift{margin-top:0;margin-right:0}
|
||||
span.status.vshift{margin-top:-19px}
|
||||
span.status.vshift{margin-top:-18px}
|
||||
span.status.hshift{margin-right:-20px}
|
||||
span.diskinfo{float:left;clear:both;margin-top:5px;padding-left:10px}
|
||||
span.bitstream{font-family:bitstream;font-size:12px}
|
||||
span.bitstream{font-family:bitstream;font-size:11px}
|
||||
span.p0{padding-left:0}
|
||||
span.strong{font-weight:bold}
|
||||
span.big{font-size:15px}
|
||||
span.small{font-size:13px}
|
||||
span.big{font-size:14px}
|
||||
span.small{font-size:12px}
|
||||
span.one{margin-left:-16px}
|
||||
span.two{margin-left:-20px}
|
||||
span.three{margin-left:-23px}
|
||||
span.tub{margin-right:8px;font-size:24px;cursor:pointer}
|
||||
span.score{font-size:13px;color:#1c1c1c;position:absolute}
|
||||
span.score{font-size:12px;color:#1c1c1c;position:absolute}
|
||||
i.padlock{margin-right:8px;cursor:default}
|
||||
i.nolock{visibility:hidden;margin-right:8px}
|
||||
i.lock{margin-left:8px;cursor:default}
|
||||
@@ -221,7 +221,7 @@ div.tab [type=radio]+label:hover{background:transparent;border:1px solid #ff8c2f
|
||||
div.tab [type=radio]:checked+label{cursor:default;background:transparent;border:1px solid #ff8c2f;border-bottom:none;opacity:1}
|
||||
div.tab [type=radio]+label~.content{display:none}
|
||||
div.tab [type=radio]:checked+label~.content{display:inline}
|
||||
div.tab [type=radio]+label{position:relative;font-size:15px;letter-spacing:2px;padding:4px 10px;margin-right:2px;border-top-left-radius:6px;border-top-right-radius:6px;border:1px solid #b2b2b2;border-bottom:none;background:#e2e2e2;opacity:0.5}
|
||||
div.tab [type=radio]+label{position:relative;font-size:14px;letter-spacing:2px;padding:4px 10px;margin-right:2px;border-top-left-radius:6px;border-top-right-radius:6px;border:1px solid #b2b2b2;border-bottom:none;background:#e2e2e2;opacity:0.5}
|
||||
div.tab [type=radio]+label img{padding-right:4px}
|
||||
div.Panel{text-align:center;float:left;margin:0 30px 30px 12px;height:80px}
|
||||
div.Panel .PanelText{padding-top:6px}
|
||||
@@ -243,8 +243,8 @@ div.domain{margin-top:-20px}
|
||||
@keyframes mark_6{50% {transform:translateY(40px)} 100% {transform:translateY(0px)}}
|
||||
@keyframes mark_7{50% {transform:translateY(62px)} 100% {transform: translateY(0px)}}
|
||||
pre.up{margin-top:-30px}
|
||||
pre{border:1px solid #e3e3e3;font-family:bitstream;padding:4px 6px;overflow:auto}
|
||||
iframe#progressFrame{position:fixed;bottom:32px;left:0;margin:0;padding:8px 8px 0 8px;width:100%;height:12px;line-height:12px;border-style:none;overflow:hidden;font-family:bitstream;font-size:12px;color:#808080;white-space:nowrap;z-index:-10}
|
||||
pre{border:1px solid #e3e3e3;font-family:bitstream;font-size:12px;padding:4px 6px;overflow:auto}
|
||||
iframe#progressFrame{position:fixed;bottom:32px;left:0;margin:0;padding:8px 8px 0 8px;width:100%;height:12px;line-height:12px;border-style:none;overflow:hidden;font-family:bitstream;font-size:11px;color:#808080;white-space:nowrap;z-index:-10}
|
||||
dl{margin:0;padding-left:12px;line-height:26px}
|
||||
dt{clear:left;float:left;width:35%;font-weight:normal}
|
||||
dd{margin-bottom:12px;white-space:nowrap}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
body>div.jGrowl{position:fixed}
|
||||
div.jGrowl{font-size:14px}
|
||||
div.jGrowl{font-size:13px}
|
||||
div.jGrowl.top-left{left:70px;top:59px}
|
||||
div.jGrowl.top-right{right:10px;top:59px}
|
||||
div.jGrowl.bottom-left{left:70px;bottom:24px}
|
||||
@@ -15,7 +15,7 @@ div.jGrowl div.jGrowl-notify div.jGrowl-close{float:right;cursor:pointer}
|
||||
div.jGrowl div.jGrowl-closer{width:400px;color:#808080;background-color:#121510;opacity:0.96;border:2px solid #B0B0B0;margin:5px 0;padding:4px 0;cursor:pointer;font-weight:bold;text-align:center;border-radius:6px}
|
||||
div.jGrowl div.jGrowl-closer.top{position:fixed;top:91px}
|
||||
@media print{div.jGrowl{display:none}}
|
||||
.ui-dropdownchecklist{background:transparent;border:none;box-shadow:0 1px 0 #606E7F;outline:none;height:30px;line-height:30px;cursor:pointer}
|
||||
.ui-dropdownchecklist{background:transparent;border:none;box-shadow:0 1px 0 #606E7F;outline:none;height:24px;line-height:24px;cursor:pointer}
|
||||
.ui-dropdownchecklist-selector{border:1px solid #606E7F;display:inline-block;cursor:pointer;padding:1px 9px 1px 11px}
|
||||
.ui-dropdownchecklist-group{font-weight:normal;font-style:italic;padding:1px 9px 1px 11px}
|
||||
.ui-dropdownchecklist-selector-wrapper{vertical-align:middle;font-size:0}
|
||||
@@ -23,7 +23,7 @@ div.jGrowl div.jGrowl-closer.top{position:fixed;top:91px}
|
||||
.ui-dropdownchecklist-dropcontainer{color:#606E7F;background-color:#EDEAEF;border:#0072C6 1px solid}
|
||||
.ui-state-disabled{border-color:#808080;background:#C7C5CB;opacity:0.5}
|
||||
.ui-dropdownchecklist-indent{padding-left:7px}
|
||||
.ui-dropdownchecklist-text{font-family:clear-sans;font-size:13px;color:#606E7F}
|
||||
.ui-dropdownchecklist-text{font-family:clear-sans;font-size:12px;color:#606E7F}
|
||||
.ui-dropdownchecklist-item{height:22px;line-height:22px}
|
||||
.ui-dropdownchecklist-item input{vertical-align:top}
|
||||
#sb-info-inner,#sb-loading-inner,div.sb-message{color:#808080}
|
||||
@@ -41,7 +41,7 @@ div.jGrowl div.jGrowl-closer.top{position:fixed;top:91px}
|
||||
#sb-loading-inner span{background:url(../images/loading.gif) no-repeat;padding-left:22px;display:inline-block}
|
||||
#sb-body,#sb-loading{color:#1c1c1c;background-color:#f2f2f2}
|
||||
#sb-info,#sb-info-inner{height:20px;line-height:20px}
|
||||
#sb-info-inner{font-size:14px}
|
||||
#sb-info-inner{font-size:13px}
|
||||
#sb-nav{float:right;height:16px;padding:2px 0;width:45%}
|
||||
#sb-nav a{display:block;float:right;height:16px;width:16px;margin-left:3px;cursor:pointer;background-repeat:no-repeat}
|
||||
#sb-nav-close{background-image:url(../images/close.png);position:absolute;display:block;z-index:999;width:32px;height:32px;top:-16px;right:-16px;cursor:pointer}
|
||||
@@ -63,7 +63,7 @@ table.tablesorter tbody tr td{padding:4px 20px 4px 6px;vertical-align:middle;tex
|
||||
table.tablesorter.plugins td:first-child{width:64px;text-align:center}
|
||||
table.tablesorter.plugins tr>td+td+td{width:9%;white-space:nowrap}
|
||||
table.tablesorter.plugins td:last-child{width:96px;padding:0}
|
||||
table.tablesorter .desc_readmore strong,table.tablesorter .desc_readmore h4{font-size:14px}
|
||||
table.tablesorter .desc_readmore strong,table.tablesorter .desc_readmore h4{font-size:13px}
|
||||
table.tablesorter .desc_readmore h4,table.tablesorter .desc_readmore p:first-child{margin:0}
|
||||
table.tablesorter.left th,table.tablesorter.left td{text-align:left;width:20%}
|
||||
table.tablesorter.left th:first-child,table.tablesorter.left td:first-child{width:8%}
|
||||
@@ -77,7 +77,7 @@ table.tablesorter.indexer thead th:first-child{width:4%}
|
||||
table.tablesorter.indexer thead th,table.tablesorter.indexer tbody td,table.tablesorter.indexer tfoot td{padding-left:10px}
|
||||
table.tablesorter.indexer thead tr>th+th{width:auto;text-align:left}
|
||||
table.tablesorter.indexer thead tr>th+th+th{width:14%}
|
||||
table.tablesorter.indexer tfoot td{padding-top:10px;font-size:12px}
|
||||
table.tablesorter.indexer tfoot td{padding-top:10px;font-size:11px}
|
||||
table.tablesorter.indexer tfoot tr{border-bottom:none}
|
||||
span.select ul{display:none;list-style-type:none;margin:0 0 2px 0;padding:0}
|
||||
span.select ul.unused{display:block}
|
||||
@@ -88,7 +88,7 @@ span.select{padding:3px 6px;margin:0 10px 0 0;border:none;border-radius:4px;box-
|
||||
span.select[disabled]{color:#808080;background:#C7C5CB;opacity:0.5;cursor:default}
|
||||
div.sb-message{padding:10px;text-align:center}
|
||||
div.sb-message a:link,div.sb-message a:visited{color:#486DBA;text-decoration:underline}
|
||||
div.box{margin-top:0;line-height:30px;color:#606E7F;margin-left:0}
|
||||
div.box{margin-top:0;line-height:24px;color:#606E7F;margin-left:0}
|
||||
div.box div{padding:10px;border-bottom:rgba(0,0,0,0.1) 1px solid}
|
||||
div.icon-file{background:url('../images/file-types.png') -112px -112px;width:16px;height:16px}
|
||||
div.icon-ogg{background:url('../images/file-types.png') 0 0;width:16px;height:16px}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
body>div.jGrowl{position:fixed}
|
||||
div.jGrowl{font-size:14px}
|
||||
div.jGrowl{font-size:13px}
|
||||
div.jGrowl.top-left{left:10px;top:100px}
|
||||
div.jGrowl.top-right{right:10px;top:100px}
|
||||
div.jGrowl.bottom-left{left:10px;bottom:24px}
|
||||
@@ -23,7 +23,7 @@ div.jGrowl div.jGrowl-closer.top{position:fixed;top:130px}
|
||||
.ui-dropdownchecklist-dropcontainer{color:#f2f2f2;background-color:#262626;border:#ff8c2f 1px solid}
|
||||
.ui-state-disabled{color:#f2f2f2;border-color:#6c6c6c;background:#262626;opacity:0.5;cursor:default}
|
||||
.ui-dropdownchecklist-indent{padding-left:7px}
|
||||
.ui-dropdownchecklist-text{font-family:clear-sans;font-size:14px;color:#f2f2f2}
|
||||
.ui-dropdownchecklist-text{font-family:clear-sans;font-size:13px;color:#f2f2f2}
|
||||
.ui-dropdownchecklist-item{height:24px;line-height:24px}
|
||||
.ui-dropdownchecklist-item input{vertical-align:top}
|
||||
#sb-info-inner,#sb-loading-inner,div.sb-message{color:#808080}
|
||||
@@ -41,7 +41,7 @@ div.jGrowl div.jGrowl-closer.top{position:fixed;top:130px}
|
||||
#sb-loading-inner span{background:url(../images/loading.gif) no-repeat;padding-left:22px;display:inline-block}
|
||||
#sb-body,#sb-loading{color:#1b1b1b;background-color:#f2f2f2}
|
||||
#sb-info,#sb-info-inner{height:20px;line-height:20px}
|
||||
#sb-info-inner{font-size:14px}
|
||||
#sb-info-inner{font-size:13px}
|
||||
#sb-nav{float:right;height:16px;padding:2px 0;width:45%}
|
||||
#sb-nav a{display:block;float:right;height:16px;width:16px;margin-left:3px;cursor:pointer;background-repeat:no-repeat}
|
||||
#sb-nav-close{background-image:url(../images/close.png);position:absolute;display:block;z-index:999;width:32px;height:32px;top:-16px;right:-16px;cursor:pointer}
|
||||
@@ -63,7 +63,7 @@ table.tablesorter tbody tr td{padding:4px 20px 4px 6px;vertical-align:middle;tex
|
||||
table.tablesorter.plugins td:first-child{width:64px;text-align:center}
|
||||
table.tablesorter.plugins tr>td+td+td{width:9%;white-space:nowrap}
|
||||
table.tablesorter.plugins td:last-child{width:96px;padding:0}
|
||||
table.tablesorter .desc_readmore strong,table.tablesorter .desc_readmore h4{font-size:14px}
|
||||
table.tablesorter .desc_readmore strong,table.tablesorter .desc_readmore h4{font-size:13px}
|
||||
table.tablesorter .desc_readmore h4,table.tablesorter .desc_readmore p:first-child{margin:0}
|
||||
table.tablesorter.left th,table.tablesorter.left td{text-align:left;width:20%}
|
||||
table.tablesorter.left th:first-child,table.tablesorter.left td:first-child{width:8%}
|
||||
@@ -77,7 +77,7 @@ table.tablesorter.indexer thead th:first-child{width:4%}
|
||||
table.tablesorter.indexer thead th,table.tablesorter.indexer tbody td,table.tablesorter.indexer tfoot td{padding-left:10px}
|
||||
table.tablesorter.indexer thead tr>th+th{width:auto;text-align:left}
|
||||
table.tablesorter.indexer thead tr>th+th+th{width:14%}
|
||||
table.tablesorter.indexer tfoot td{padding-top:10px;font-size:12px}
|
||||
table.tablesorter.indexer tfoot td{padding-top:10px;font-size:11px}
|
||||
span.select ul{display:none;list-style-type:none;margin:0 0 2px 0;padding:0}
|
||||
span.select ul.unused{display:block}
|
||||
span.select ul li.nosort{font-weight:bold}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
body>div.jGrowl{position:fixed}
|
||||
div.jGrowl{font-size:14px}
|
||||
div.jGrowl{font-size:13px}
|
||||
div.jGrowl.top-left{left:70px;top:59px}
|
||||
div.jGrowl.top-right{right:10px;top:59px}
|
||||
div.jGrowl.bottom-left{left:70px;bottom:24px}
|
||||
@@ -15,7 +15,7 @@ div.jGrowl div.jGrowl-notify div.jGrowl-close{float:right;cursor:pointer}
|
||||
div.jGrowl div.jGrowl-closer{width:400px;color:#808080;background-color:#121510;opacity:0.96;border:2px solid #383A34;margin:5px 0;padding:4px 0;cursor:pointer;font-weight:bold;text-align:center;border-radius:6px}
|
||||
div.jGrowl div.jGrowl-closer.top{position:fixed;top:91px}
|
||||
@media print{div.jGrowl{display:none}}
|
||||
.ui-dropdownchecklist{background:transparent;border:none;box-shadow:0 1px 0 #606E7F;outline:none;height:30px;line-height:30px;cursor:pointer}
|
||||
.ui-dropdownchecklist{background:transparent;border:none;box-shadow:0 1px 0 #606E7F;outline:none;height:24px;line-height:24px;cursor:pointer}
|
||||
.ui-dropdownchecklist-selector{border:1px solid #606E7F;display:inline-block;cursor:pointer;padding:1px 9px 1px 11px}
|
||||
.ui-dropdownchecklist-group{font-weight:normal;font-style:italic;padding:1px 9px 1px 11px}
|
||||
.ui-dropdownchecklist-selector-wrapper{vertical-align:middle;font-size:0}
|
||||
@@ -23,7 +23,7 @@ div.jGrowl div.jGrowl-closer.top{position:fixed;top:91px}
|
||||
.ui-dropdownchecklist-dropcontainer{color:#606E7F;background-color:#121510;border:#0072C6 1px solid}
|
||||
.ui-state-disabled{border-color:#808080;background:#383A34;opacity:0.3}
|
||||
.ui-dropdownchecklist-indent{padding-left:7px}
|
||||
.ui-dropdownchecklist-text{font-family:clear-sans;font-size:13px;color:#606E7F}
|
||||
.ui-dropdownchecklist-text{font-family:clear-sans;font-size:12px;color:#606E7F}
|
||||
.ui-dropdownchecklist-item{height:22px;line-height:22px}
|
||||
.ui-dropdownchecklist-item input{vertical-align:top}
|
||||
#sb-info-inner,#sb-loading-inner,div.sb-message{color:#808080}
|
||||
@@ -41,7 +41,7 @@ div.jGrowl div.jGrowl-closer.top{position:fixed;top:91px}
|
||||
#sb-loading-inner span{background:url(../images/loading.gif) no-repeat;padding-left:22px;display:inline-block}
|
||||
#sb-body,#sb-loading{color:#1c1c1c;background-color:#f2f2f2}
|
||||
#sb-info,#sb-info-inner{height:20px;line-height:20px}
|
||||
#sb-info-inner{font-size:14px}
|
||||
#sb-info-inner{font-size:13px}
|
||||
#sb-nav{float:right;height:16px;padding:2px 0;width:45%}
|
||||
#sb-nav a{display:block;float:right;height:16px;width:16px;margin-left:3px;cursor:pointer;background-repeat:no-repeat}
|
||||
#sb-nav-close{background-image:url(../images/close.png);position:absolute;display:block;z-index:999;width:32px;height:32px;top:-16px;right:-16px;cursor:pointer}
|
||||
@@ -63,7 +63,7 @@ table.tablesorter tbody tr td{padding:4px 20px 4px 6px;vertical-align:middle;tex
|
||||
table.tablesorter.plugins td:first-child{width:64px;text-align:center}
|
||||
table.tablesorter.plugins tr>td+td+td{width:9%;white-space:nowrap}
|
||||
table.tablesorter.plugins td:last-child{width:96px;padding:0}
|
||||
table.tablesorter .desc_readmore strong,table.tablesorter .desc_readmore h4{font-size:14px}
|
||||
table.tablesorter .desc_readmore strong,table.tablesorter .desc_readmore h4{font-size:13px}
|
||||
table.tablesorter .desc_readmore h4,table.tablesorter .desc_readmore p:first-child{margin:0}
|
||||
table.tablesorter.left th,table.tablesorter.left td{text-align:left;width:20%}
|
||||
table.tablesorter.left th:first-child,table.tablesorter.left td:first-child{width:8%}
|
||||
@@ -77,7 +77,7 @@ table.tablesorter.indexer thead th:first-child{width:4%}
|
||||
table.tablesorter.indexer thead th,table.tablesorter.indexer tbody td,table.tablesorter.indexer tfoot td{padding-left:10px}
|
||||
table.tablesorter.indexer thead tr>th+th{width:auto;text-align:left}
|
||||
table.tablesorter.indexer thead tr>th+th+th{width:14%}
|
||||
table.tablesorter.indexer tfoot td{padding-top:10px;font-size:12px}
|
||||
table.tablesorter.indexer tfoot td{padding-top:10px;font-size:11px}
|
||||
table.tablesorter.indexer tfoot tr{border-bottom:none}
|
||||
span.select ul{display:none;list-style-type:none;margin:0 0 2px 0;padding:0}
|
||||
span.select ul.unused{display:block}
|
||||
@@ -88,7 +88,7 @@ span.select{padding:3px 6px;margin:0 10px 0 0;border:none;border-radius:4px;box-
|
||||
span.select[disabled]{color:#808080;background:#383A34;opacity:0.3;cursor:default}
|
||||
div.sb-message{padding:10px;text-align:center}
|
||||
div.sb-message a:link,div.sb-message a:visited{color:#486DBA;text-decoration:underline}
|
||||
div.box{margin-top:0;line-height:30px;color:#606E7F;margin-left:0}
|
||||
div.box{margin-top:0;line-height:24px;color:#606E7F;margin-left:0}
|
||||
div.box div{padding:10px;border-bottom:rgba(0,0,0,0.1) 1px solid}
|
||||
div.icon-file{background:url('../images/file-types.png') -112px -112px;width:16px;height:16px}
|
||||
div.icon-ogg{background:url('../images/file-types.png') 0 0;width:16px;height:16px}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
body>div.jGrowl{position:fixed}
|
||||
div.jGrowl{font-size:14px}
|
||||
div.jGrowl{font-size:13px}
|
||||
div.jGrowl.top-left{left:10px;top:100px}
|
||||
div.jGrowl.top-right{right:10px;top:100px}
|
||||
div.jGrowl.bottom-left{left:10px;bottom:24px}
|
||||
@@ -23,7 +23,7 @@ div.jGrowl div.jGrowl-closer.top{position:fixed;top:130px}
|
||||
.ui-dropdownchecklist-dropcontainer{color:#1c1c1c;background-color:#e8e8e8;border:#ff8c2f 1px solid}
|
||||
.ui-state-disabled{color:#1c1c1c;border-color:#a2a2a2;background:#e8e8e8;opacity:0.5;cursor:default}
|
||||
.ui-dropdownchecklist-indent{padding-left:7px}
|
||||
.ui-dropdownchecklist-text{font-family:clear-sans;font-size:14px;color:#1c1c1c}
|
||||
.ui-dropdownchecklist-text{font-family:clear-sans;font-size:13px;color:#1c1c1c}
|
||||
.ui-dropdownchecklist-item{height:24px;line-height:24px}
|
||||
.ui-dropdownchecklist-item input{vertical-align:top}
|
||||
#sb-info-inner,#sb-loading-inner,div.sb-message{color:#808080}
|
||||
@@ -41,7 +41,7 @@ div.jGrowl div.jGrowl-closer.top{position:fixed;top:130px}
|
||||
#sb-loading-inner span{background:url(../images/loading.gif) no-repeat;padding-left:22px;display:inline-block}
|
||||
#sb-body,#sb-loading{color:#1c1c1c;background-color:#f2f2f2}
|
||||
#sb-info,#sb-info-inner{height:20px;line-height:20px}
|
||||
#sb-info-inner{font-size:14px}
|
||||
#sb-info-inner{font-size:13px}
|
||||
#sb-nav{float:right;height:16px;padding:2px 0;width:45%}
|
||||
#sb-nav a{display:block;float:right;height:16px;width:16px;margin-left:3px;cursor:pointer;background-repeat:no-repeat}
|
||||
#sb-nav-close{background-image:url(../images/close.png);position:absolute;display:block;z-index:999;width:32px;height:32px;top:-16px;right:-16px;cursor:pointer}
|
||||
@@ -63,7 +63,7 @@ table.tablesorter tbody tr td{padding:4px 20px 4px 6px;vertical-align:middle;tex
|
||||
table.tablesorter.plugins td:first-child{width:64px;text-align:center}
|
||||
table.tablesorter.plugins tr>td+td+td{width:9%;white-space:nowrap}
|
||||
table.tablesorter.plugins td:last-child{width:96px;padding:0}
|
||||
table.tablesorter .desc_readmore strong,table.tablesorter .desc_readmore h4{font-size:14px}
|
||||
table.tablesorter .desc_readmore strong,table.tablesorter .desc_readmore h4{font-size:13px}
|
||||
table.tablesorter .desc_readmore h4,table.tablesorter .desc_readmore p:first-child{margin:0}
|
||||
table.tablesorter.left th,table.tablesorter.left td{text-align:left;width:20%}
|
||||
table.tablesorter.left th:first-child,table.tablesorter.left td:first-child{width:8%}
|
||||
@@ -77,7 +77,7 @@ table.tablesorter.indexer thead th:first-child{width:4%}
|
||||
table.tablesorter.indexer thead th,table.tablesorter.indexer tbody td,table.tablesorter.indexer tfoot td{padding-left:10px}
|
||||
table.tablesorter.indexer thead tr>th+th{width:auto;text-align:left}
|
||||
table.tablesorter.indexer thead tr>th+th+th{width:14%}
|
||||
table.tablesorter.indexer tfoot td{padding-top:10px;font-size:12px}
|
||||
table.tablesorter.indexer tfoot td{padding-top:10px;font-size:11px}
|
||||
span.select ul{display:none;list-style-type:none;margin:0 0 2px 0;padding:0}
|
||||
span.select ul.unused{display:block}
|
||||
span.select ul li.nosort{font-weight:bold}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
UL.jqueryFileTree{font-family:clear-sans;font-size:13px;line-height:18px;padding:0px;margin:0px;display:none;}
|
||||
UL.jqueryFileTree{font-family:clear-sans;font-size:12px;line-height:18px;padding:0px;margin:0px;display:none;}
|
||||
UL.jqueryFileTree LI{ list-style:none;padding:0px;padding-left:20px;margin:0px;white-space:nowrap;}
|
||||
UL.jqueryFileTree A{color:inherit;text-decoration:none;display:inline-block;padding:0px 2px;}
|
||||
UL.jqueryFileTree A:hover{background:#BDF;}
|
||||
|
||||
@@ -5,7 +5,7 @@ background-color:rgba(0, 0, 0, 0.4);position:fixed;left:0;right:0;top:0;bottom:0
|
||||
.sweet-alert{background-color:white;font-family:clear-sans;width:478px;padding:17px;border-radius:5px;text-align:center;position:fixed;left:50%;top:50%;margin-left:-256px;margin-top:-200px;overflow:hidden;display:none;z-index:99999}
|
||||
@media all and (max-width:540px){.sweet-alert{width:auto;margin-left:0;margin-right:0;left:15px;right:15px}}
|
||||
.sweet-alert h2{color:#575757;font-size:30px;text-align:center;font-weight:600;text-transform:none;position:relative;margin:25px 0;padding:0;line-height:40px;display:block}
|
||||
.sweet-alert p{color:#797979;font-size:16px;text-align:center;font-weight:300;position:relative;text-align:inherit;float:none;margin:0;padding:0;line-height:normal}
|
||||
.sweet-alert p{color:#797979;font-size:15px;text-align:center;font-weight:300;position:relative;text-align:inherit;float:none;margin:0;padding:0;line-height:normal}
|
||||
.sweet-alert fieldset{border:none;position:relative}
|
||||
.sweet-alert .sa-error-container{background-color:#f1f1f1;margin-left:-17px;margin-right:-17px;overflow:hidden;padding:0 10px;max-height:0;webkit-transition:padding 0.15s, max-height 0.15s;transition:padding 0.15s, max-height 0.15s}
|
||||
.sweet-alert .sa-error-container.show{padding:10px 0;max-height:100px;webkit-transition:padding 0.2s, max-height 0.2s;transition:padding 0.25s, max-height 0.25s}
|
||||
@@ -27,7 +27,7 @@ background-color:rgba(0, 0, 0, 0.4);position:fixed;left:0;right:0;top:0;bottom:0
|
||||
.sweet-alert.show-input input{display:block}
|
||||
.sweet-alert .sa-confirm-button-container{display:inline-block;position:relative}
|
||||
.sweet-alert .la-ball-fall{position:absolute;left:50%;top:50%;margin-left:-27px;margin-top:4px;opacity:0;visibility:hidden}
|
||||
.sweet-alert button{font-family:clear-sans;font-size:13px;font-weight:bold;letter-spacing:2px;text-transform:uppercase;margin:26px 5px 0 5px;padding:10px 20px;text-decoration:none;white-space:nowrap;cursor:pointer;outline:none;border-radius:.125rem;border:0;color:#ff8c2f;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#e22828),to(#e22828)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#ff8c2f),to(#ff8c2f)) 100% 100% no-repeat;background:linear-gradient(90deg,#e22828 0,#ff8c2f) 0 0 no-repeat,linear-gradient(90deg,#e22828 0,#ff8c2f) 0 100% no-repeat,linear-gradient(0deg,#e22828 0,#e22828) 0 100% no-repeat,linear-gradient(0deg,#ff8c2f 0,#ff8c2f) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
.sweet-alert button{font-family:clear-sans;font-size:12px;font-weight:bold;letter-spacing:2px;text-transform:uppercase;margin:26px 5px 0 5px;padding:9px 18px;text-decoration:none;white-space:nowrap;cursor:pointer;outline:none;border-radius:.125rem;border:0;color:#ff8c2f;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#e22828),to(#e22828)) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(#ff8c2f),to(#ff8c2f)) 100% 100% no-repeat;background:linear-gradient(90deg,#e22828 0,#ff8c2f) 0 0 no-repeat,linear-gradient(90deg,#e22828 0,#ff8c2f) 0 100% no-repeat,linear-gradient(0deg,#e22828 0,#e22828) 0 100% no-repeat,linear-gradient(0deg,#ff8c2f 0,#ff8c2f) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}
|
||||
.sweet-alert button:focus{}
|
||||
.sweet-alert button:hover{color:#f2f2f2;background:-webkit-gradient(linear,left top,right top,from(#e22828),to(#ff8c2f));background:linear-gradient(90deg,#e22828 0,#ff8c2f)}
|
||||
.sweet-alert button:active{}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
.switch-button-label{float:left;font-size:10pt;cursor:pointer;}
|
||||
.switch-button-label{float:left;font-size:11pt;cursor:pointer;}
|
||||
.switch-button-label.off{color:#adadad;}
|
||||
.switch-button-label.on{color:#0088CC;}
|
||||
.switch-button-background{float:left;position:relative;background:#ccc;border:1px solid #aaa;margin:1px 10px;border-radius:4px;cursor:pointer;}
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user