Skip to content

Commit a326960

Browse files
committed
more contrast color scheme
1 parent db426ff commit a326960

File tree

7 files changed

+70
-71
lines changed

7 files changed

+70
-71
lines changed

web/images/logo.png

-939 Bytes
Loading

web/templates/admin/list_rrd.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
<tr>
44
<td style="padding: 12px 0 0 16px">
55
<div style="float:left">
6-
<a class="vst" <?php if ((empty($_GET['period'])) || ($_GET['period'] == 'daily')) echo "style='color: #34536A'" ?> href="?period=daily">Daily</a>
7-
<a class="vst" <?php if ($_GET['period'] == 'weekly') echo "style='color: #34536A'" ?> href="?period=weekly">Weekly</a>
8-
<a class="vst" <?php if ($_GET['period'] == 'monthly') echo "style='color: #34536A'" ?> href="?period=monthly">Monthly</a>
9-
<a class="vst" <?php if ($_GET['period'] == 'yearly') echo "style='color: #34536A'" ?> href="?period=yearly">Yearly</a>
6+
<a class="vst" <?php if ((empty($_GET['period'])) || ($_GET['period'] == 'daily')) echo "style='color: #174f82'" ?> href="?period=daily">Daily</a>
7+
<a class="vst" <?php if ($_GET['period'] == 'weekly') echo "style='color: #174f82'" ?> href="?period=weekly">Weekly</a>
8+
<a class="vst" <?php if ($_GET['period'] == 'monthly') echo "style='color: #174f82'" ?> href="?period=monthly">Monthly</a>
9+
<a class="vst" <?php if ($_GET['period'] == 'yearly') echo "style='color: #174f82'" ?> href="?period=yearly">Yearly</a>
1010
</div>
1111
<div style="text-align: right; float: right;">
1212
<form action="/search/" method="get" >

web/templates/admin/list_stats.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<td style="padding: 12px 0 0 16px">
55
<div style="float:left">
66
<form action="/list/stats/" method="get" id="objects">
7-
<a class="vst" <?php if (empty($_GET['user'])) echo "style='color: #34536A'"; ?> href='/list/stats/'>Overall Statistics</a>
7+
<a class="vst" <?php if (empty($_GET['user'])) echo "style='color: #174f82'"; ?> href='/list/stats/'>Overall Statistics</a>
88
<span style="padding: 0 8px;"></span>
99
<select style="margin:0 2px 0 0px;" name="user">
1010
<option value=''>show per user</option>

web/templates/admin/panel.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
<td>
88
<table class="top">
99
<tr>
10-
<td width="179px" style="border-bottom: 2px solid white; height: 24px;"></td>
11-
<td width="120px" style="border-bottom: 2px solid white; height: 24px;"><a class="top-<?php if($TAB == 'PACKAGE' ) echo 'selected-' ?>link" href="/list/package/"><b>Packages</a></b></td>
12-
<td width="120px" style="border-bottom: 2px solid white; height: 24px;"><a class="top-<?php if($TAB == 'IP' ) echo 'selected-' ?>link" href="/list/ip/"><b>IP Adresses</a></b></td>
13-
<td width="120px" style="border-bottom: 2px solid white; height: 24px;"><a class="top-<?php if($TAB == 'RRD' ) echo 'selected-' ?>link" href="/list/rrd/"><b>RRD Graphics</a></b></td>
14-
<td width="120px" style="border-bottom: 2px solid white; height: 24px;"><a class="top-<?php if($TAB == 'STATS' ) echo 'selected-' ?>link" href="/list/stats/"><b>Statistics</a></b></td>
15-
<td width="120px" style="border-bottom: 2px solid white; height: 24px;"><a class="top-<?php if($TAB == 'LOG' ) echo 'selected-' ?>link" href="/list/log/"><b>History Log</a></b></td>
16-
<td width="227px" style="border-bottom: 2px solid white; height: 24px; padding: 0 24px 0 0; text-align: right;"><b><?php if($user != $_SESSION['user']) echo 'admin / ' ?><?php echo $user ?></b><a class="top-link" style="padding: 0 0 0 6" href="/logout/">Log out</a></td>
10+
<td width="179px" style="border-bottom: 1px solid #d6d6d6; height: 26px;"></td>
11+
<td width="120px" style="border-bottom: 1px solid #d6d6d6; height: 26px;"><a class="top-<?php if($TAB == 'PACKAGE' ) echo 'selected-' ?>link" href="/list/package/"><b>Packages</a></b></td>
12+
<td width="120px" style="border-bottom: 1px solid #d6d6d6; height: 26px;"><a class="top-<?php if($TAB == 'IP' ) echo 'selected-' ?>link" href="/list/ip/"><b>IP Adresses</a></b></td>
13+
<td width="120px" style="border-bottom: 1px solid #d6d6d6; height: 26px;"><a class="top-<?php if($TAB == 'RRD' ) echo 'selected-' ?>link" href="/list/rrd/"><b>RRD Graphics</a></b></td>
14+
<td width="120px" style="border-bottom: 1px solid #d6d6d6; height: 26px;"><a class="top-<?php if($TAB == 'STATS' ) echo 'selected-' ?>link" href="/list/stats/"><b>Statistics</a></b></td>
15+
<td width="120px" style="border-bottom: 1px solid #d6d6d6; height: 26px;"><a class="top-<?php if($TAB == 'LOG' ) echo 'selected-' ?>link" href="/list/log/"><b>History Log</a></b></td>
16+
<td width="227px" style="border-bottom: 1px solid #d6d6d6; height: 26px; padding: 0 24px 0 0; text-align: right;"><b><?php if($user != $_SESSION['user']) echo 'admin / ' ?><?php echo $user ?></b><a class="top-link" style="padding: 0 0 0 6" href="/logout/">Log out</a></td>
1717
</tr>
1818
<tr>
19-
<td colspan="7" style="background: #ebe9dc; border-bottom: 8px solid #f7f6ed;">
19+
<td colspan="7" style="background: #fff;">
2020

2121
<span class="nav-logo">
2222
<img style="margin: 22px 0 0 4px;" src="/images/logo.png">

web/templates/footer.html

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
11

2-
<table class="bottom">
3-
<tr>
4-
<td>Powered by Vesta Control Panel</td>
5-
</tr>
6-
<tr>
7-
<td><a href="http://vestacp.com">vestacp.com</a></td>
8-
</tr>
9-
</table>
102
</td>
113
</tr>
124
</table>
@@ -16,7 +8,7 @@
168
VE.core.register($('.main'));
179
});
1810
</script>
19-
2011
</center>
12+
<br>
2113
</body>
2214
</html>

web/templates/header.html

Lines changed: 48 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222

2323
.main {
2424
background: #ffffff;
25+
padding: 0 0 12px 0;
2526
box-shadow: 0 0 2px 2px #d7d7d7;
27+
border-bottom: 1px solid #cccccc;
28+
border-left: 1px solid #cccccc;
2629
border-right: 1px solid #cccccc;
2730
<?php
2831
if (!empty($_SESSION['look'])) {
@@ -34,8 +37,8 @@
3437

3538

3639
.top {
37-
background: #444;
38-
color: #cce4f0;
40+
background: #ebe9dc;
41+
color: #825117;
3942
padding: 0;
4043
margin-left: auto;
4144
margin-right: auto;
@@ -49,20 +52,20 @@
4952

5053
.top-link {
5154
text-decoration: none;
52-
color: #e0e0e0;
55+
color: #323232;
5356
}
5457

5558
.top-link:hover {
56-
color: white;
59+
color: #174f82;
5760
}
5861

5962
.top-link:active{
60-
color: #f5edb6;
63+
color: #ccc;
6164
}
6265

6366
.top-selected-link {
6467
text-decoration: none;
65-
color: #f5edb6;
68+
color: #174f82;
6669
}
6770

6871
.top-logout {
@@ -78,14 +81,15 @@
7881

7982
.nav-logo {
8083
float:left;
81-
height:100px;
82-
width:159px;
83-
background: #ebe9dc;
84+
height:104px;
85+
width:161px;
86+
margin: 0 0px 0 0;
87+
border-bottom: 3px solid #d6d6d6;
8488
}
8589

8690
.nav-lnk {
8791
text-decoration: none;
88-
color: #444;
92+
color: #323232;
8993
float:left;
9094
}
9195

@@ -94,41 +98,44 @@
9498
}
9599

96100
.nav-block {
97-
margin: 0 2px 0 0;
98-
height:100px;
99-
width: 116px;
101+
margin: 0 0px 0 0;
102+
height:104px;
103+
width: 118px;
100104
float:left;
101105
cursor: pointer;
106+
border-bottom: 3px solid #d6d6d6;
107+
102108
}
103109

104110
.nav-block:hover {
105-
background: #fafafa;
111+
border-bottom: 3px solid #f79b44;
106112
}
107113

108114
.nav-selected-block {
109-
margin: 0 2px 0 0;
110-
color: #80a7cc;
111-
height: 100px;
112-
width: 116px;
115+
margin: 0;
116+
color: #174f82;
117+
height: 104px;
118+
width: 118px;
113119
float: left;
114-
background: #fafafa;
120+
background: #fff;
121+
border-bottom: 3px solid #777;
115122
cursor: pointer;
116123
}
117124

118125
.nav-selected-block:hover {
119-
background: #fafafa;
126+
border-bottom: 3px solid #f79b44;
120127
}
121128

122129
.nav-header {
123-
padding: 13px 0 0 6px;
130+
padding: 16px 0 0 6px;
124131
margin: 0;
125132
letter-spacing: -1.0px;
126133
font-size: 16pt;
127134
font-weight: bold;
128135
}
129136

130137
.nav-selected-header {
131-
padding: 13px 0 0 6px;
138+
padding: 16px 0 0 6px;
132139
margin: 0;
133140
letter-spacing: -1.0px;
134141
font-size: 16pt;
@@ -203,7 +210,7 @@
203210
padding: 0 8px 0 0;
204211
margin: 0;
205212
text-decoration: none;
206-
color: #8B99A2;
213+
color: #777;
207214
font-size: 12pt;
208215
}
209216

@@ -212,7 +219,7 @@
212219
}
213220

214221
.vst:active {
215-
color: #34536A;
222+
color: #174f82;
216223
}
217224

218225
.data {
@@ -242,7 +249,7 @@
242249
margin: 0;
243250
width: 990px;
244251
height: 10px;
245-
border-top:1px dotted #dce8f5;
252+
border-top:1px dotted #ccc;
246253
}
247254

248255
.data-spacer {
@@ -258,7 +265,7 @@
258265
.data-dotted {
259266
text-align: left;
260267
vertical-align:top;
261-
border-top:1px dotted #dce8f5;
268+
border-top:1px dotted #ccc;
262269
padding: 0 0 26px 0;
263270
margin: 0;
264271
}
@@ -296,7 +303,7 @@
296303
.data-active {
297304
font-size: 8pt;
298305
letter-spacing: 0.1em;
299-
color: #9ba68c;
306+
color: #81a64f;
300307
padding: 0 0 13 18;
301308
}
302309

@@ -308,11 +315,11 @@
308315
}
309316

310317
.data-controls {
311-
border-left: 1px solid #E6E6E6;
318+
border-left: 1px solid #ccc;
312319
font-size: 8pt;
313320
padding: 2 5 0 5;
314321
letter-spacing: 0.1em;
315-
color: #34536A;
322+
color: #174f82;
316323
text-decoration: none;
317324
cursor: pointer;
318325
}
@@ -328,12 +335,12 @@
328335
}
329336

330337
.data-controls a:link {
331-
color: #34536A;
338+
color: #174f82;
332339
text-decoration: none;
333340
}
334341

335342
.data-controls a:visited {
336-
color: #34536A;
343+
color: #174f82;
337344
}
338345

339346
.data-controls a:hover {
@@ -368,24 +375,24 @@
368375
}
369376

370377
.username {
371-
color: #555;
378+
color: #323232;
372379
font-size: 16pt;
373380
line-height: 1.2em;
374381
}
375382

376383
.domain {
377-
color: #555;
384+
color: #323232;
378385
font-size: 16pt;
379386
line-height: 0.8em;
380387
}
381388

382389
.cron {
383-
color: #555;
390+
color: #323232;
384391
font-size: 18px;
385392
}
386393

387394
.log {
388-
color: #555;
395+
color: #323232;
389396
font-size: 12pt;
390397
}
391398

@@ -489,7 +496,7 @@
489496
}
490497

491498
.vst-textinput:hover {
492-
border: 1px solid #e5a907;
499+
border: 1px solid #f79b44;
493500
}
494501

495502
.vst-textinput:disabled {
@@ -508,7 +515,7 @@
508515
}
509516

510517
.vst-input:hover {
511-
border: 1px solid #e5a907;
518+
border: 1px solid #f79b44;
512519
}
513520

514521
.vst-input:disabled {
@@ -524,7 +531,7 @@
524531
}
525532

526533
.vst-list:hover {
527-
border: 1px solid #e5a907;
534+
border: 1px solid #f79b44;
528535
}
529536

530537
.vst-checkbox {
@@ -533,7 +540,7 @@
533540
}
534541

535542
.vst-checkbox:hover {
536-
border: 1px solid #e5a907;
543+
border: 1px solid #f79b44;
537544
}
538545

539546
button {
@@ -607,7 +614,7 @@
607614
position: fixed;
608615
border: none;
609616
top: -3px;
610-
border-bottom: 2px solid #ebe9dc;
617+
border-bottom: 1px solid #ccc;
611618
background-color: #fff;
612619
}
613620

@@ -686,7 +693,7 @@
686693
}
687694
688695
#vstobjects{
689-
padding-top: 188px;
696+
padding-top: 187px;
690697
min-height: 370px;
691698
height: auto !important;
692699
height: 370px;

web/templates/user/panel.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
<td>
88
<table class="top">
99
<tr>
10-
<td width="174px" style="border-bottom: 2px solid white; height: 24px;"></td>
11-
<td width="118px" style="border-bottom: 2px solid white; height: 24px;"><a class="top-<?php if($TAB == 'STATS' ) echo 'selected-' ?>link" href="/list/stats/"><b>Statistics</a></b></td>
12-
<td width="120px" style="border-bottom: 2px solid white; height: 24px;"><a class="top-<?php if($TAB == 'LOG' ) echo 'selected-' ?>link" href="/list/log/"><b>History Log</a></b></td>
13-
<td width="120px" style="border-bottom: 2px solid white; height: 24px;"></td>
14-
<td width="120px" style="border-bottom: 2px solid white; height: 24px;"></td>
15-
<td width="120px" style="border-bottom: 2px solid white; height: 24px;"></td>
16-
<td width="228px" style="border-bottom: 2px solid white; height: 24px; padding: 0 24px 0 0; text-align: right;"><b><?php if($user != $_SESSION['user']) echo 'admin / ' ?><?php echo $user ?></b><a class="top-link" style="padding: 0 0 0 6" href="/logout/">Log out</a></td>
10+
<td width="174px" style="border-bottom: 1px solid #d6d6d6; height: 26px;"></td>
11+
<td width="118px" style="border-bottom: 1px solid #d6d6d6; height: 26px;"><a class="top-<?php if($TAB == 'STATS' ) echo 'selected-' ?>link" href="/list/stats/"><b>Statistics</a></b></td>
12+
<td width="120px" style="border-bottom: 1px solid #d6d6d6; height: 26px;"><a class="top-<?php if($TAB == 'LOG' ) echo 'selected-' ?>link" href="/list/log/"><b>History Log</a></b></td>
13+
<td width="120px" style="border-bottom: 1px solid #d6d6d6; height: 26px;"></td>
14+
<td width="120px" style="border-bottom: 1px solid #d6d6d6; height: 26px;"></td>
15+
<td width="120px" style="border-bottom: 1px solid #d6d6d6; height: 26px;"></td>
16+
<td width="228px" style="border-bottom: 1px solid #d6d6d6; height: 26px; padding: 0 24px 0 0; text-align: right;"><b><?php if($user != $_SESSION['user']) echo 'admin / ' ?><?php echo $user ?></b><a class="top-link" style="padding: 0 0 0 6" href="/logout/">Log out</a></td>
1717
</tr>
1818
<tr>
19-
<td colspan="7" style="background: #ebe9dc; border-bottom: 8px solid #f7f6ed;">
19+
<td colspan="7" style="background: #fff;">
2020

2121
<span class="nav-logo">
2222
<img style="margin: 22px 0 0 4px;" src="/images/logo.png">

0 commit comments

Comments
 (0)