Many small fixes and beautifications
This commit is contained in:
@@ -131,9 +131,8 @@ p {
|
|||||||
|
|
||||||
.installsec label {
|
.installsec label {
|
||||||
float:left;
|
float:left;
|
||||||
width:26em;
|
margin-right:0;
|
||||||
margin-right:1em;
|
margin-top:8px;
|
||||||
margin-top:6px;
|
|
||||||
text-align:left;
|
text-align:left;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -420,6 +419,7 @@ input {
|
|||||||
height:22px;
|
height:22px;
|
||||||
border: 1px solid #d9d9d9;
|
border: 1px solid #d9d9d9;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
@@ -427,70 +427,73 @@ textarea {
|
|||||||
padding:4px 4px 2px 24px;
|
padding:4px 4px 2px 24px;
|
||||||
border:1px solid #d9d9d9;
|
border:1px solid #d9d9d9;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="password"] {
|
input[type="password"] {
|
||||||
background:#fff url(../img/password.png) no-repeat 5px 4px;
|
background:#fff url(../img/password.png) no-repeat 5px 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* BUTTONS
|
||||||
|
*/
|
||||||
input[type="button"],input[type="submit"],input[type="reset"] {
|
input[type="button"],input[type="submit"],input[type="reset"] {
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #79bbff), color-stop(1, #378de5) );
|
margin: 0 5px;
|
||||||
background:-moz-linear-gradient( center top, #79bbff 5%, #378de5 100% );
|
padding: 5px 14px;
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#378de5');
|
outline: 0;
|
||||||
background-color:#79bbff;
|
border: 0;
|
||||||
-moz-border-radius:5px;
|
background-color: #eee;
|
||||||
-webkit-border-radius:5px;
|
min-width: 80px;
|
||||||
border-radius:5px;
|
|
||||||
display:inline-block;
|
|
||||||
color:#ffffff;
|
|
||||||
padding:2px 24px 2px 24px;
|
|
||||||
text-decoration:none;
|
|
||||||
text-shadow:1px 1px 0px #528ecc;
|
|
||||||
height: 26px;
|
height: 26px;
|
||||||
margin: 0 3px 0 3px;
|
background-image: none;
|
||||||
|
border-width: 0px;
|
||||||
|
}
|
||||||
|
.loginsec input[type="button"], .loginsec input[type="submit"], .loginsec input[type="reset"] {
|
||||||
|
margin: 0 1px;
|
||||||
}
|
}
|
||||||
input[type="button"]:hover,input[type="submit"]:hover,input[type="reset"]:hover {
|
input[type="button"]:hover,input[type="submit"]:hover,input[type="reset"]:hover {
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #378de5), color-stop(1, #79bbff) );
|
color: #333;
|
||||||
background:-moz-linear-gradient( center top, #378de5 5%, #79bbff 100% );
|
background-color: #dcdcdc;
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#378de5', endColorstr='#79bbff');
|
}
|
||||||
background-color:#378de5;
|
input[type="button"]:active,input[type="submit"]:active,input[type="reset"]:active {
|
||||||
|
-webkit-box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.25);
|
||||||
|
-moz-box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.25);
|
||||||
|
box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.25);
|
||||||
|
color: white !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="submit"],input[class="yesbutton"] {
|
input[type="submit"],input[class="yesbutton"] {
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9dce2c), color-stop(1, #8cb82b) );
|
color: white;
|
||||||
background:-moz-linear-gradient( center top, #9dce2c 5%, #8cb82b 100% );
|
background-color: #35aa47;
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dce2c', endColorstr='#8cb82b');
|
|
||||||
background-color:#9dce2c;
|
|
||||||
text-shadow:1px 1px 0px #aade7c;
|
|
||||||
}
|
}
|
||||||
input[type="submit"]:hover,input[class="yesbutton"]:hover {
|
input[type="submit"]:hover,input[class="yesbutton"]:hover {
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #8cb82b), color-stop(1, #9dce2c) );
|
color: white;
|
||||||
background:-moz-linear-gradient( center top, #8cb82b 5%, #9dce2c 100% );
|
background-color: #1d943b;
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cb82b', endColorstr='#9dce2c');
|
}
|
||||||
background-color:#8cb82b;
|
input[class="submit"]:active,input[class="yesbutton"]:active {
|
||||||
|
background-color: #35aa47;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[class="nobutton"],input[type="reset"] {
|
input[class="nobutton"],input[type="reset"] {
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100) );
|
color: white;
|
||||||
background:-moz-linear-gradient( center top, #fe1a00 5%, #ce0100 100% );
|
background-color: #d84a38;
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100');
|
|
||||||
background-color:#fe1a00;
|
|
||||||
text-shadow:1px 1px 0px #b23e35;
|
|
||||||
}
|
}
|
||||||
input[class="nobutton"]:hover,input[type="reset"]:hover {
|
input[class="nobutton"]:hover,input[type="reset"]:hover {
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ce0100), color-stop(1, #fe1a00) );
|
color: white;
|
||||||
background:-moz-linear-gradient( center top, #ce0100 5%, #fe1a00 100% );
|
background-color: #c53727;
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ce0100', endColorstr='#fe1a00');
|
|
||||||
background-color:#ce0100;
|
|
||||||
}
|
}
|
||||||
|
input[class="nobutton"]:active,input[type="reset"]:active {
|
||||||
|
background-color: #dd4b39;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
input[type="checkbox"] {
|
input[type="checkbox"] {
|
||||||
background:#dae7ee;
|
background:#dae7ee;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0 20px 0 0;
|
margin: 0 5px 0 0;
|
||||||
|
vertical-align: middle;
|
||||||
|
height: 26px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="radio"] { /*the span element that immediately follow the radio button */
|
input[type="radio"] {
|
||||||
margin: 0 10px 0 10px;
|
margin: 0 10px 0 10px;
|
||||||
height:22px;
|
height:22px;
|
||||||
}
|
}
|
||||||
@@ -500,6 +503,18 @@ select {
|
|||||||
padding:4px;
|
padding:4px;
|
||||||
border:1px solid #d9d9d9;
|
border:1px solid #d9d9d9;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
min-width: 100px;
|
||||||
|
}
|
||||||
|
select.dropdown {
|
||||||
|
padding: 2px 4px 2px 24px;
|
||||||
|
height: 26px;
|
||||||
|
border: 1px solid #d9d9d9;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
border-radius: 3px;
|
||||||
|
background: url(../../../../templates/Sparkle/assets/img/icons/down.png) no-repeat 9px;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
appearance: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.maintable {
|
.maintable {
|
||||||
@@ -528,4 +543,14 @@ select {
|
|||||||
display:block;
|
display:block;
|
||||||
margin-bottom:.5em;
|
margin-bottom:.5em;
|
||||||
font-size:120%;
|
font-size:120%;
|
||||||
|
}
|
||||||
|
.installprogress {
|
||||||
|
width: 100%;
|
||||||
|
background-color:#e4e4e4;
|
||||||
|
height:5px;
|
||||||
|
border-bottom:1px solid #d1d5d8;
|
||||||
|
}
|
||||||
|
.installprogress .bar {
|
||||||
|
background-color: #35aa47;
|
||||||
|
height:5px;
|
||||||
}
|
}
|
||||||
@@ -1,14 +1,20 @@
|
|||||||
<form action="{$formaction}" method="get">
|
<form action="{$formaction}" method="get">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>{$this->_lng['install']['lngtitle']}</legend>
|
<legend>{$this->_lng['install']['lngtitle']}</legend>
|
||||||
<p>
|
<table class="noborder">
|
||||||
<label for="language">{$this->_lng['install']['language']}:</label>
|
<tr>
|
||||||
<select name="language" id="language">
|
<td>
|
||||||
{$language_options}
|
<label for="language">{$this->_lng['install']['language']}:</label>
|
||||||
</select>
|
</td>
|
||||||
<input type="hidden" name="check" value="1" />
|
<td align="right">
|
||||||
<input type="submit" name="chooselang" value="{$this->_lng['install']['lngbtn_go']}" />
|
<select name="language" id="language" class="dropdown">
|
||||||
</p>
|
{$language_options}
|
||||||
|
</select>
|
||||||
|
<input type="hidden" name="check" value="1" />
|
||||||
|
<input type="submit" name="chooselang" value="{$this->_lng['install']['lngbtn_go']}" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
<hr class="line">
|
<hr class="line">
|
||||||
12
templates/Sparkle/admin/admins/admins_admin.tpl
vendored
12
templates/Sparkle/admin/admins/admins_admin.tpl
vendored
@@ -19,16 +19,16 @@
|
|||||||
<span>Webspace:</span>
|
<span>Webspace:</span>
|
||||||
<if $row['diskspace'] != 'UL'>
|
<if $row['diskspace'] != 'UL'>
|
||||||
<if (($row['diskspace']/100)*(int)$settings['system']['report_webmax']) < $row['diskspace_used']>
|
<if (($row['diskspace']/100)*(int)$settings['system']['report_webmax']) < $row['diskspace_used']>
|
||||||
<div class="progress progress-danger progress-striped">
|
<div class="progress progress-danger">
|
||||||
<div class="bar" style="width: {$disk_percent}%"></div>
|
<div class="bar" style="width: {$disk_percent}%"></div>
|
||||||
</div>
|
</div>
|
||||||
<else>
|
<else>
|
||||||
<div class="progress progress-striped">
|
<div class="progress">
|
||||||
<div class="bar" style="width: {$disk_percent}%"></div>
|
<div class="bar" style="width: {$disk_percent}%"></div>
|
||||||
</div>
|
</div>
|
||||||
</if>
|
</if>
|
||||||
<else>
|
<else>
|
||||||
<div class="progress progress-striped">
|
<div class="progress">
|
||||||
<div class="bar" style="width: 0%"></div>
|
<div class="bar" style="width: 0%"></div>
|
||||||
</div>
|
</div>
|
||||||
</if>
|
</if>
|
||||||
@@ -37,16 +37,16 @@
|
|||||||
<span>Traffic:</span>
|
<span>Traffic:</span>
|
||||||
<if $row['traffic'] != 'UL'>
|
<if $row['traffic'] != 'UL'>
|
||||||
<if (($row['traffic']/100)*(int)$settings['system']['report_trafficmax']) < $row['traffic_used']>
|
<if (($row['traffic']/100)*(int)$settings['system']['report_trafficmax']) < $row['traffic_used']>
|
||||||
<div class="progress progress-danger progress-striped">
|
<div class="progress progress-danger">
|
||||||
<div class="bar" style="width: {$traffic_percent}%"></div>
|
<div class="bar" style="width: {$traffic_percent}%"></div>
|
||||||
</div>
|
</div>
|
||||||
<else>
|
<else>
|
||||||
<div class="progress progress-striped">
|
<div class="progress">
|
||||||
<div class="bar" style="width: {$traffic_percent}%"></div>
|
<div class="bar" style="width: {$traffic_percent}%"></div>
|
||||||
</div>
|
</div>
|
||||||
</if>
|
</if>
|
||||||
<else>
|
<else>
|
||||||
<div class="progress progress-striped">
|
<div class="progress">
|
||||||
<div class="bar" style="width: 0%"></div>
|
<div class="bar" style="width: 0%"></div>
|
||||||
</div>
|
</div>
|
||||||
</if>
|
</if>
|
||||||
|
|||||||
@@ -26,17 +26,17 @@
|
|||||||
<span>Webspace:</span>
|
<span>Webspace:</span>
|
||||||
<if $row['diskspace'] != 'UL'>
|
<if $row['diskspace'] != 'UL'>
|
||||||
<if (($row['diskspace']/100)*(int)$settings['system']['report_webmax']) < $row['diskspace_used']>
|
<if (($row['diskspace']/100)*(int)$settings['system']['report_webmax']) < $row['diskspace_used']>
|
||||||
<div class="progress progress-danger progress-striped">
|
<div class="progress progress-danger">
|
||||||
<div class="bar" style="width: {$disk_percent}%"></div>
|
<div class="bar" style="width: {$disk_percent}%"></div>
|
||||||
</div>
|
</div>
|
||||||
<else>
|
<else>
|
||||||
<div class="progress progress-striped">
|
<div class="progress">
|
||||||
<div class="bar" style="width: {$disk_percent}%"></div>
|
<div class="bar" style="width: {$disk_percent}%"></div>
|
||||||
</div>
|
</div>
|
||||||
</if>
|
</if>
|
||||||
<else>
|
<else>
|
||||||
<div class="progress progress-striped">
|
<div class="progress">
|
||||||
<div class="bar" style="width: 0%"></div>
|
<div class="bar" style="width: 0px"></div>
|
||||||
</div>
|
</div>
|
||||||
</if>
|
</if>
|
||||||
</span>
|
</span>
|
||||||
@@ -44,16 +44,16 @@
|
|||||||
<span>Traffic:</span>
|
<span>Traffic:</span>
|
||||||
<if $row['traffic'] != 'UL'>
|
<if $row['traffic'] != 'UL'>
|
||||||
<if (($row['traffic']/100)*(int)$settings['system']['report_trafficmax']) < $row['traffic_used']>
|
<if (($row['traffic']/100)*(int)$settings['system']['report_trafficmax']) < $row['traffic_used']>
|
||||||
<div class="progress progress-danger progress-striped">
|
<div class="progress progress-danger">
|
||||||
<div class="bar" style="width: {$traffic_percent}%"></div>
|
<div class="bar" style="width: {$traffic_percent}%"></div>
|
||||||
</div>
|
</div>
|
||||||
<else>
|
<else>
|
||||||
<div class="progress progress-striped">
|
<div class="progress">
|
||||||
<div class="bar" style="width: {$traffic_percent}%"></div>
|
<div class="bar" style="width: {$traffic_percent}%"></div>
|
||||||
</div>
|
</div>
|
||||||
</if>
|
</if>
|
||||||
<else>
|
<else>
|
||||||
<div class="progress progress-striped">
|
<div class="progress">
|
||||||
<div class="bar" style="width: 0%"></div>
|
<div class="bar" style="width: 0%"></div>
|
||||||
</div>
|
</div>
|
||||||
</if>
|
</if>
|
||||||
|
|||||||
@@ -9,12 +9,23 @@
|
|||||||
|
|
||||||
<section class="fullform bradius">
|
<section class="fullform bradius">
|
||||||
<table class="formtable">
|
<table class="formtable">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th class="maintitle_apply_right" nowrap="nowrap" colspan="3" style="text-align: right !important;">
|
||||||
|
<input class="bottom" type="reset" value="{$lng['panel']['reset']}" /><input class="bottom" type="submit" value="{$lng['panel']['save']}" />
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
$fields
|
$fields
|
||||||
<tr>
|
</tbody>
|
||||||
<td class="maintitle_apply_right" nowrap="nowrap" colspan="2">
|
<tfoot>
|
||||||
<input class="bottom" type="reset" value="{$lng['panel']['reset']}" /><input class="bottom" type="submit" value="{$lng['panel']['save']}" />
|
<tr>
|
||||||
</td>
|
<td class="maintitle_apply_right" nowrap="nowrap" colspan="3" style="text-align: right !important;">
|
||||||
</tr>
|
<input class="bottom" type="reset" value="{$lng['panel']['reset']}" /><input class="bottom" type="submit" value="{$lng['panel']['save']}" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
</section>
|
</section>
|
||||||
</article>
|
</article>
|
||||||
|
|||||||
183
templates/Sparkle/assets/css/main.css
vendored
183
templates/Sparkle/assets/css/main.css
vendored
@@ -79,7 +79,7 @@ td a {
|
|||||||
}
|
}
|
||||||
.topheader_navigation {
|
.topheader_navigation {
|
||||||
float: right;
|
float: right;
|
||||||
margin: 15px 50px 0 0;
|
margin: 14px 50px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TOPHEADER NAV */
|
/* TOPHEADER NAV */
|
||||||
@@ -106,6 +106,7 @@ ul.topheadernav li ul {
|
|||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
|
||||||
margin-left: -10px;
|
margin-left: -10px;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
ul.topheadernav li:hover ul {
|
ul.topheadernav li:hover ul {
|
||||||
display: block;
|
display: block;
|
||||||
@@ -140,6 +141,10 @@ footer {
|
|||||||
footer a,footer a:active,footer a:visited {
|
footer a,footer a:active,footer a:visited {
|
||||||
color: #888;
|
color: #888;
|
||||||
}
|
}
|
||||||
|
footer img {
|
||||||
|
margin: 0 2px 3px 0;
|
||||||
|
height: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
.login, .install {
|
.login, .install {
|
||||||
background-color:#fff;
|
background-color:#fff;
|
||||||
@@ -609,6 +614,7 @@ input {
|
|||||||
height:22px;
|
height:22px;
|
||||||
border: 1px solid #d9d9d9;
|
border: 1px solid #d9d9d9;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
@@ -616,74 +622,89 @@ textarea {
|
|||||||
padding:4px 4px 2px 24px;
|
padding:4px 4px 2px 24px;
|
||||||
border:1px solid #d9d9d9;
|
border:1px solid #d9d9d9;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="password"] {
|
input[type="password"] {
|
||||||
background:#fff url(../img/icons/password.png) no-repeat 5px 4px;
|
background:#fff url(../img/icons/password.png) no-repeat 5px 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* BUTTONS
|
||||||
|
*/
|
||||||
input[type="button"],input[type="submit"],input[type="reset"] {
|
input[type="button"],input[type="submit"],input[type="reset"] {
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #79bbff), color-stop(1, #378de5) );
|
margin: 0 5px;
|
||||||
background:-moz-linear-gradient( center top, #79bbff 5%, #378de5 100% );
|
padding: 5px 14px;
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#378de5');
|
outline: 0;
|
||||||
background-color:#79bbff;
|
border: 0;
|
||||||
-moz-border-radius:5px;
|
background-color: #eee;
|
||||||
-webkit-border-radius:5px;
|
min-width: 80px;
|
||||||
border-radius:5px;
|
|
||||||
display:inline-block;
|
|
||||||
color:#ffffff;
|
|
||||||
padding:2px 24px 2px 24px;
|
|
||||||
text-decoration:none;
|
|
||||||
text-shadow:1px 1px 0px #528ecc;
|
|
||||||
height: 26px;
|
height: 26px;
|
||||||
margin: 0 3px 0 3px;
|
background-image: none;
|
||||||
|
border-width: 0px;
|
||||||
|
}
|
||||||
|
.loginsec input[type="button"], .loginsec input[type="submit"], .loginsec input[type="reset"] {
|
||||||
|
margin: 0 1px;
|
||||||
}
|
}
|
||||||
input[type="button"]:hover,input[type="submit"]:hover,input[type="reset"]:hover {
|
input[type="button"]:hover,input[type="submit"]:hover,input[type="reset"]:hover {
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #378de5), color-stop(1, #79bbff) );
|
color: #333;
|
||||||
background:-moz-linear-gradient( center top, #378de5 5%, #79bbff 100% );
|
background-color: #dcdcdc;
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#378de5', endColorstr='#79bbff');
|
}
|
||||||
background-color:#378de5;
|
input[type="button"]:active,input[type="submit"]:active,input[type="reset"]:active {
|
||||||
|
-webkit-box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.25);
|
||||||
|
-moz-box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.25);
|
||||||
|
box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.25);
|
||||||
|
color: white !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="submit"],input[class="yesbutton"] {
|
input[type="submit"],input[class="yesbutton"] {
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9dce2c), color-stop(1, #8cb82b) );
|
color: white;
|
||||||
background:-moz-linear-gradient( center top, #9dce2c 5%, #8cb82b 100% );
|
background-color: #35aa47;
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dce2c', endColorstr='#8cb82b');
|
|
||||||
background-color:#9dce2c;
|
|
||||||
text-shadow:1px 1px 0px #aade7c;
|
|
||||||
}
|
}
|
||||||
input[type="submit"]:hover,input[class="yesbutton"]:hover {
|
input[type="submit"]:hover,input[class="yesbutton"]:hover {
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #8cb82b), color-stop(1, #9dce2c) );
|
color: white;
|
||||||
background:-moz-linear-gradient( center top, #8cb82b 5%, #9dce2c 100% );
|
background-color: #1d943b;
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cb82b', endColorstr='#9dce2c');
|
}
|
||||||
background-color:#8cb82b;
|
input[class="submit"]:active,input[class="yesbutton"]:active {
|
||||||
|
background-color: #35aa47;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[class="nobutton"],input[type="reset"] {
|
input[class="nobutton"],input[type="reset"] {
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100) );
|
color: white;
|
||||||
background:-moz-linear-gradient( center top, #fe1a00 5%, #ce0100 100% );
|
background-color: #d84a38;
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100');
|
|
||||||
background-color:#fe1a00;
|
|
||||||
text-shadow:1px 1px 0px #b23e35;
|
|
||||||
}
|
}
|
||||||
input[class="nobutton"]:hover,input[type="reset"]:hover {
|
input[class="nobutton"]:hover,input[type="reset"]:hover {
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ce0100), color-stop(1, #fe1a00) );
|
color: white;
|
||||||
background:-moz-linear-gradient( center top, #ce0100 5%, #fe1a00 100% );
|
background-color: #c53727;
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ce0100', endColorstr='#fe1a00');
|
}
|
||||||
background-color:#ce0100;
|
input[class="nobutton"]:active,input[type="reset"]:active {
|
||||||
|
background-color: #dd4b39;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="checkbox"] {
|
input[type="checkbox"] {
|
||||||
background:#dae7ee;
|
background:#dae7ee;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0 5px 0 0;
|
margin: 0 5px 0 0;
|
||||||
|
vertical-align: middle;
|
||||||
|
height: 26px;
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
background:#fff;
|
padding: 2px 4px 2px 24px;
|
||||||
padding:4px;
|
height: 28px;
|
||||||
border:1px solid #d9d9d9;
|
border: 1px solid #d9d9d9;
|
||||||
margin-bottom: 5px;
|
margin: 0 5px 5px 0 !important;
|
||||||
|
border-radius: 3px;
|
||||||
|
background: url(../img/icons/down.png) no-repeat 9px;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
appearance: none;
|
||||||
|
min-width: 170px;
|
||||||
|
text-indent: 0.01px; /* Removes default arrow from firefox*/
|
||||||
|
text-overflow: "";
|
||||||
|
}
|
||||||
|
select[multiple="multiple"] {
|
||||||
|
height: auto;
|
||||||
|
background-image: none;
|
||||||
|
padding: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.customer_add {
|
.customer_add {
|
||||||
@@ -732,10 +753,12 @@ select {
|
|||||||
padding: 4px 0px 4px 8px;
|
padding: 4px 0px 4px 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cronjobtask {
|
.cronjobtask li {
|
||||||
list-style:url(../img/icons/clock.png) inside;
|
background-image: url(../img/icons/clock.png);
|
||||||
margin:0;
|
background-repeat: no-repeat;
|
||||||
padding:0;
|
background-position: 0px center;
|
||||||
|
padding-left: 18px;
|
||||||
|
height: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.overviewheading {
|
.overviewheading {
|
||||||
@@ -756,82 +779,32 @@ select {
|
|||||||
margin:2px 0 2px 0;
|
margin:2px 0 2px 0;
|
||||||
overflow:hidden;
|
overflow:hidden;
|
||||||
background-color:#f7f7f7;
|
background-color:#f7f7f7;
|
||||||
background-image:-moz-linear-gradient(top,#f5f5f5,#f9f9f9);
|
-webkit-border-radius:3px;
|
||||||
background-image:-ms-linear-gradient(top,#f5f5f5,#f9f9f9);
|
-moz-border-radius:3px;
|
||||||
background-image:-webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9));
|
border-radius:3px;
|
||||||
background-image:-webkit-linear-gradient(top,#f5f5f5,#f9f9f9);
|
|
||||||
background-image:-o-linear-gradient(top,#f5f5f5,#f9f9f9);
|
|
||||||
background-image:linear-gradient(top,#f5f5f5,#f9f9f9);
|
|
||||||
background-repeat:repeat-x;
|
|
||||||
-webkit-border-radius:4px;
|
|
||||||
-moz-border-radius:4px;
|
|
||||||
border-radius:4px;
|
|
||||||
filter:progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5',endColorstr='#f9f9f9',GradientType=0);
|
|
||||||
-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);
|
-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);
|
||||||
-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);
|
-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);
|
||||||
box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);
|
box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);
|
||||||
}
|
}
|
||||||
.progress .bar {
|
.progress .bar {
|
||||||
width:0;
|
width:1px;
|
||||||
height:18px;
|
height:18px;
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
color:#fff;
|
color:#fff;
|
||||||
text-align:center;
|
text-align:center;
|
||||||
text-shadow:0 -1px 0 rgba(0,0,0,0.25);
|
text-shadow:0 -1px 0 rgba(0,0,0,0.25);
|
||||||
background-color:#0e90d2;
|
background-color:#0e90d2;
|
||||||
background-image:-moz-linear-gradient(top,#149bdf,#0480be);
|
|
||||||
background-image:-webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be));
|
|
||||||
background-image:-webkit-linear-gradient(top,#149bdf,#0480be);
|
|
||||||
background-image:-o-linear-gradient(top,#149bdf,#0480be);
|
|
||||||
background-image:linear-gradient(top,#149bdf,#0480be);
|
|
||||||
background-image:-ms-linear-gradient(top,#149bdf,#0480be);
|
|
||||||
background-repeat:repeat-x;
|
|
||||||
filter:progid:dximagetransform.microsoft.gradient(startColorstr='#149bdf',endColorstr='#0480be',GradientType=0);
|
|
||||||
-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);
|
-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);
|
||||||
-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);
|
-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);
|
||||||
box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);
|
box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);
|
||||||
-webkit-box-sizing:border-box;
|
-webkit-transition: width 6s ease;
|
||||||
-moz-box-sizing:border-box;
|
-moz-transition: width 6s ease;
|
||||||
-ms-box-sizing:border-box;
|
-ms-transition: width 6s ease;
|
||||||
box-sizing:border-box;
|
-o-transition: width 6s ease;
|
||||||
-webkit-transition:width .6s ease;
|
transition: width 6s ease;
|
||||||
-moz-transition:width .6s ease;
|
|
||||||
-ms-transition:width .6s ease;
|
|
||||||
-o-transition:width .6s ease;
|
|
||||||
transition:width .6s ease;
|
|
||||||
}
|
|
||||||
.progress-striped .bar {
|
|
||||||
background-color:#149bdf;
|
|
||||||
background-image:-o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
|
|
||||||
background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
|
|
||||||
background-image:-moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
|
|
||||||
background-image:-ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
|
|
||||||
background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));
|
|
||||||
background-image:linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
|
|
||||||
-webkit-background-size:40px 40px;
|
|
||||||
-moz-background-size:40px 40px;
|
|
||||||
-o-background-size:40px 40px;
|
|
||||||
background-size:40px 40px;
|
|
||||||
}
|
}
|
||||||
.progress-danger .bar {
|
.progress-danger .bar {
|
||||||
background-color:#dd514c;
|
background-color:#dd514c;
|
||||||
background-image:-moz-linear-gradient(top,#ee5f5b,#c43c35);
|
|
||||||
background-image:-ms-linear-gradient(top,#ee5f5b,#c43c35);
|
|
||||||
background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#c43c35));
|
|
||||||
background-image:-webkit-linear-gradient(top,#ee5f5b,#c43c35);
|
|
||||||
background-image:-o-linear-gradient(top,#ee5f5b,#c43c35);
|
|
||||||
background-image:linear-gradient(top,#ee5f5b,#c43c35);
|
|
||||||
background-repeat:repeat-x;
|
|
||||||
filter:progid:dximagetransform.microsoft.gradient(startColorstr='#ee5f5b',endColorstr='#c43c35',GradientType=0);
|
|
||||||
}
|
|
||||||
.progress-danger.progress-striped .bar {
|
|
||||||
background-color:#ee5f5b;
|
|
||||||
background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));
|
|
||||||
background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
|
|
||||||
background-image:-moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
|
|
||||||
background-image:-ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
|
|
||||||
background-image:-o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
|
|
||||||
background-image:linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.maintable {
|
.maintable {
|
||||||
|
|||||||
BIN
templates/Sparkle/assets/img/logo_grey.png
vendored
Normal file
BIN
templates/Sparkle/assets/img/logo_grey.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.5 KiB |
2
templates/Sparkle/footer.tpl
vendored
2
templates/Sparkle/footer.tpl
vendored
@@ -2,7 +2,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</if>
|
</if>
|
||||||
<footer>
|
<footer>
|
||||||
<span>Froxlor
|
<span><img src="templates/{$theme}/assets/img/logo_grey.png" alt="Froxlor" />
|
||||||
<if ($settings['admin']['show_version_login'] == '1' && $filename == 'index.php') || ($filename != 'index.php' && $settings['admin']['show_version_footer'] == '1')>
|
<if ($settings['admin']['show_version_login'] == '1' && $filename == 'index.php') || ($filename != 'index.php' && $settings['admin']['show_version_footer'] == '1')>
|
||||||
{$version}{$branding}
|
{$version}{$branding}
|
||||||
</if>
|
</if>
|
||||||
|
|||||||
14
templates/Sparkle/misc/form/table_end.tpl
vendored
14
templates/Sparkle/misc/form/table_end.tpl
vendored
@@ -1,6 +1,8 @@
|
|||||||
<tr>
|
<tfoot>
|
||||||
<td colspan="2" style="text-align:right;">
|
<tr>
|
||||||
<input type="reset" value="{$lng['panel']['reset']}" />
|
<td colspan="2" style="text-align:right;">
|
||||||
<input type="submit" value="{$lng['panel']['save']}" />
|
<input type="reset" value="{$lng['panel']['reset']}" />
|
||||||
</td>
|
<input type="submit" value="{$lng['panel']['save']}" />
|
||||||
</tr>
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tfoot>
|
||||||
|
|||||||
Reference in New Issue
Block a user