Skip to content

Commit bd91554

Browse files
committed
synchronized static templates with dropbox verion
1 parent d864791 commit bd91554

File tree

82 files changed

+16086
-3337
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+16086
-3337
lines changed

web/static-templates/backups.html

Lines changed: 403 additions & 0 deletions
Large diffs are not rendered by default.

web/static-templates/cron.html

Lines changed: 466 additions & 0 deletions
Large diffs are not rendered by default.

web/static-templates/css/popup.css

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
/* Styles for popups */
2+
.d-popup{
3+
position:absolute;
4+
top:100px;
5+
left:0;
6+
z-index:100;
7+
background-color:#ccc;
8+
background:url(../i/info-popup-bg-2.png) repeat;
9+
10+
width:250px;
11+
12+
border-radius: 10px;
13+
-moz-border-radius: 10px;
14+
-webkit-border-radius: 10px;
15+
}
16+
.d-popup-inner{
17+
padding:20px;
18+
color:#fff;
19+
}
20+
.d-popup .close{
21+
position:absolute;
22+
top:10px;
23+
right:10px;
24+
25+
display:block;
26+
width:14px;
27+
height:14px;
28+
/*background:url(../i/info-popup-sprite.png) no-repeat;*/
29+
background:url(../i/info-popup-sprite-2011-12-14.png) no-repeat 0 -1px;
30+
cursor:pointer;
31+
font-size:0;
32+
line-height:0;
33+
text-indent:-9999px;
34+
}
35+
.d-popup span.close:hover{
36+
background-position:0 -17px;
37+
}
38+
.d-popup span.close:active{
39+
background-position:0 -33px;
40+
}
41+
42+
.d-popup-title{
43+
font-size:11px;
44+
text-transform:uppercase;
45+
text-align:center;
46+
color:#fffdd4;
47+
margin:0 0 9px;
48+
}
49+
.d-popup-items{
50+
font-size:12px;
51+
color:#fff;
52+
}
53+
.d-popup-items .item{
54+
margin:0 0 9px;
55+
}
56+
.d-popup-items a{
57+
color:#aaa;
58+
padding-right:5px;
59+
}
60+
.d-popup .prop-box{
61+
display:block;
62+
}
63+
.d-popup .prop-title{
64+
color:#bbb;
65+
}
66+
.d-popup .prop-value{
67+
color:#fff;
68+
}
Lines changed: 205 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,205 @@
1+
/* Page specific styles */
2+
.page-auth{
3+
background:url(../i/auth/auth-bg.png) repeat;
4+
}
5+
.cc:after{
6+
content: ".";
7+
display: block;
8+
height: 0;
9+
clear: both;
10+
visibility: hidden;
11+
}
12+
*html .cc{
13+
zoom:1;
14+
}
15+
+html .cc{
16+
zoom:1;
17+
}
18+
.page-auth .b-auth-form{}
19+
20+
.page-auth .b-auth-form{
21+
width:525px;
22+
margin:7% auto 0;
23+
padding:20px 20px 0;
24+
background:url(../i/auth/form-bg.png) repeat;
25+
26+
-webkit-border-radius:15px;
27+
-moz-border-radius:15px;
28+
border-radius:15px;
29+
behavior: url(js/PIE.htc);
30+
font-family:Arial, Helvetica, sans-serif;
31+
}
32+
.page-auth .b-auth-form-wrap{
33+
position:relative;
34+
padding-top:30px;
35+
}
36+
.page-auth .vesta-logo{
37+
position:absolute;
38+
top:0;
39+
left:0;
40+
display:block;
41+
}
42+
.page-auth .b-client-title{
43+
margin:0 0 45px;
44+
padding-left:130px;
45+
font-size:35px;
46+
background:url(../i/auth/planet-1.png) no-repeat 95px 17px;
47+
color:#fff;
48+
}
49+
.client-title-wrap{
50+
position:relative;
51+
}
52+
.client-title-wrap .planets{
53+
display:block;
54+
width:91px;
55+
height:7px;
56+
position:absolute;
57+
top:45%;
58+
right:-100px;
59+
background:url(../i/auth/planet-2.png) no-repeat;
60+
}
61+
.page-auth .form-row{
62+
margin:0 0 15px;
63+
}
64+
.page-auth .last-row{
65+
padding:27px 90px 0 133px;
66+
}
67+
.page-auth .field-label{
68+
float:left;
69+
width:87px;
70+
padding-left:45px;
71+
color:#e3d785;
72+
font-size:12px;
73+
line-height:34px;
74+
font-family:Arial, Helvetica, sans-serif;
75+
text-transform:uppercase;
76+
letter-spacing:-.5px;
77+
}
78+
.page-auth .field-text{
79+
width:290px;
80+
padding:4px 5px;
81+
font-size:20px;
82+
border:2px solid #0c6c9c;
83+
background:#2d2c28;
84+
color:#fff;
85+
}
86+
.page-auth .field-text:focus{
87+
-moz-box-shadow:0 0 8px rgba(76, 147, 189, 0.7);
88+
-webkit-box-shadow:0 0 8px rgba(76, 147, 189, 0.7);
89+
border-color:rgba(76, 147, 189, 0.85) !important;
90+
}
91+
92+
.page-auth .b-remember{
93+
float:left;
94+
padding-top:5px;
95+
}
96+
.page-auth .remember-label{
97+
cursor:pointer;
98+
padding:2px 2px 2px 8px;
99+
color:#747975;
100+
font-size:12px;
101+
font-family:Arial, Helvetica, sans-serif;
102+
}
103+
span.ui-checkbox{
104+
display: block;
105+
float: left;
106+
width: 14px;
107+
height: 15px;
108+
/* background:url(icon_checkbox.png) 0 -40px no-repeat;*/
109+
background:url(../i/auth/checkboxes.png) no-repeat;
110+
}
111+
.ui-helper-hidden-accessible{
112+
display: none;
113+
}
114+
span.ui-checkbox-state-hover{
115+
background-position: 0 -15px;
116+
}
117+
span.ui-checkbox-state-checked,
118+
span.ui-checkbox-state-checked-hover{
119+
background-position: 0 -30px;
120+
}
121+
122+
.page-auth .sumbit-btn{
123+
float:right;
124+
overflow:visible;
125+
height:30px;
126+
padding:0 40px;
127+
-webkit-border-radius:9px;
128+
-moz-border-radius:9px;
129+
border-radius:9px;
130+
behavior: url(js/PIE.htc);
131+
132+
border:2px solid #292929;
133+
background-color:#b8be44;
134+
color:#ffffdf;
135+
font-size:13px;
136+
font-family:Arial, Helvetica, sans-serif;
137+
font-weight:bold;
138+
line-height:27px;
139+
text-transform:uppercase;
140+
cursor:pointer;
141+
}
142+
.page-auth .sumbit-btn:focus{
143+
position:relative;
144+
top:1px;
145+
}
146+
.page-auth .sumbit-btn:hover{
147+
background-color:#ffcc00;
148+
color:#483600;
149+
border-color:#000;
150+
}
151+
.page-auth .sumbit-btn:active{
152+
top:0;
153+
background-color:#483600;
154+
color:#ffcc00;
155+
border-color:#000;
156+
}
157+
158+
.page-auth .forgot-pwd{
159+
padding:60px 0 10px 137px;
160+
font-size:13px;
161+
}
162+
.page-auth .forgot-pwd-url{
163+
color:#6f7571;
164+
}
165+
.page-auth a.forgot-pwd-url:hover{
166+
color:#849e54;
167+
}
168+
.page-auth a.forgot-pwd-url:active{
169+
color:#edca38;
170+
}
171+
172+
.page-auth .error-box{
173+
border-top:1px dashed #f16d6b;
174+
padding:10px 0 0 131px;
175+
font-size:14px;
176+
font-weight:bold;
177+
color:#f16d6b;
178+
}
179+
180+
.page-auth .footnotes{
181+
margin:0 -20px;
182+
padding:15px 20px;
183+
font-size:14px;
184+
border-top:2px solid #34352f;
185+
color:#5a5e5d;
186+
}
187+
.page-auth .footnotes .additional-info{
188+
float:left;
189+
font-size:12px;
190+
font-family:Georgia, "Times New Roman", Times, serif;
191+
font-style:italic;
192+
}
193+
.page-auth .footnotes .questions-url{
194+
color:#5a5e5d;
195+
}
196+
.page-auth .footnotes a.questions-url:hover{
197+
color:#849e54;
198+
}
199+
.page-auth .footnotes a.questions-url:active{
200+
color:#edca38;
201+
}
202+
.page-auth .footnotes .imprint{
203+
float:right;
204+
font-style:normal;
205+
}

0 commit comments

Comments
 (0)