bzr branch
http://gegoxaren.bato24.eu/bzr/lenasys/trunk
83.2.7
by elof.bigestans at gmail
Started work on normalizing popups. Lots to go. |
1 |
/* Fart */
|
2 |
||
3 |
.popup > form > ul { |
|
4 |
margin: 0 10px; |
|
83.2.12
by elof.bigestans at gmail
* Merged trunk |
5 |
padding: 0; |
6 |
}
|
|
7 |
||
8 |
.popup { |
|
9 |
width: 500px; |
|
83.2.7
by elof.bigestans at gmail
Started work on normalizing popups. Lots to go. |
10 |
height: 250px; |
11 |
position: fixed; |
|
12 |
z-index: 9999; |
|
57.3.2
by Simon Bergöö
added some files for the popups |
13 |
/* negative margins equal to half of width and half of height centers the element in conjunction with top/left: 50%; */ |
83.2.7
by elof.bigestans at gmail
Started work on normalizing popups. Lots to go. |
14 |
margin-left: -250px; |
15 |
margin-top: -125px; |
|
16 |
top: 50%; |
|
17 |
left: 50%; |
|
18 |
border: 1px solid #d3d3d3; |
|
19 |
font: normal 1.3em/100% sans-serif; |
|
20 |
background: #f5f5f5; |
|
21 |
}
|
|
22 |
||
23 |
.popup form { |
|
24 |
margin-left: 10px; |
|
25 |
margin-top: 10px; |
|
26 |
}
|
|
27 |
||
28 |
.popup .popupHeader{ |
|
29 |
margin: 0; |
|
30 |
padding: 5px 10px; |
|
83.2.12
by elof.bigestans at gmail
* Merged trunk |
31 |
color:#FFF; |
83.2.7
by elof.bigestans at gmail
Started work on normalizing popups. Lots to go. |
32 |
background-color:#353535; |
57.3.2
by Simon Bergöö
added some files for the popups |
33 |
font-size: 100%; |
83.2.7
by elof.bigestans at gmail
Started work on normalizing popups. Lots to go. |
34 |
font-weight: normal; |
35 |
line-height: 1.5em; |
|
36 |
border-bottom: 1px solid #d3d3d3; |
|
37 |
}
|
|
38 |
||
39 |
||
40 |
.popup form ul li { |
|
41 |
list-style: none; |
|
42 |
height: 40px; |
|
43 |
}
|
|
44 |
||
45 |
.popup form ul li label { |
|
46 |
float: left; |
|
47 |
width: 10em; |
|
48 |
clear: left; |
|
49 |
line-height: 30px; |
|
50 |
}
|
|
51 |
||
52 |
.popup input.text { |
|
53 |
background-color:white; |
|
54 |
width:230px; |
|
57.3.2
by Simon Bergöö
added some files for the popups |
55 |
font-size:16px; |
83.2.7
by elof.bigestans at gmail
Started work on normalizing popups. Lots to go. |
56 |
color:#333333; |
57 |
border-radius: 7px; |
|
85.1.19
by a11andoh
corrected a wrong in the css file |
58 |
padding: 5px; |
83.2.7
by elof.bigestans at gmail
Started work on normalizing popups. Lots to go. |
59 |
height: auto; |
60 |
vertical-align: bottom; |
|
61 |
margin-left: 0; |
|
62 |
border: 1px #d3d3d3 solid; |
|
63 |
}
|
|
64 |
||
65 |
.popup input.text:focus { |
|
66 |
outline: 0; |
|
67 |
border-color: #000; |
|
68 |
}
|
|
69 |
||
70 |
||
71 |
.popup textarea { |
|
83.2.9
by elof.bigestans at gmail
* Finalized normalization of popups. All popups now have common CSS and HTML structure. |
72 |
margin-top: .5em; |
73 |
border-radius: 7px; |
|
74 |
border: 1px #d3d3d3 solid; |
|
75 |
}
|
|
76 |
||
77 |
.popup textarea:focus { |
|
78 |
outline: 0; |
|
79 |
border-color: #000; |
|
80 |
}
|
|
81 |
||
82 |
.popup span { |
|
83 |
font-size: 100%; |
|
83.2.7
by elof.bigestans at gmail
Started work on normalizing popups. Lots to go. |
84 |
line-height: 30px; |
85 |
}
|
|
86 |
||
87 |
||
88 |
.popup .bottomMenu { |
|
89 |
position: absolute; |
|
90 |
bottom: 10px; |
|
91 |
}
|
|
92 |
||
93 |
.popup .popupButton { |
|
94 |
display:inline-block !important; |
|
95 |
height:33px; |
|
96 |
width:100px; |
|
83.2.12
by elof.bigestans at gmail
* Merged trunk |
97 |
color: #666; |
83.2.7
by elof.bigestans at gmail
Started work on normalizing popups. Lots to go. |
98 |
border-radius: 7px; |
99 |
border: 1px #ccc solid; |
|
100 |
outline: 0; |
|
83.2.12
by elof.bigestans at gmail
* Merged trunk |
101 |
background-image: linear-gradient(to top,#f5f5f5,#fff); |
102 |
}
|
|
103 |
||
83.2.7
by elof.bigestans at gmail
Started work on normalizing popups. Lots to go. |
104 |
.popup .popupButton:hover { |
105 |
cursor: pointer; |
|
106 |
background: #fefefe; |
|
107 |
color: #000; |
|
108 |
}
|
|
109 |
||
110 |
.popup .popupButton:active { |
|
111 |
border: 1px #d3d3d3 inset; |
|
112 |
}
|
|
113 |
||
114 |
.popup .popupButton:focus { |
|
115 |
border-color: #000; |
|
116 |
outline: 0; |
|
117 |
}
|
|
118 |
||
119 |
/* Custom login styling */ |
|
120 |
||
83.2.12
by elof.bigestans at gmail
* Merged trunk |
121 |
#login { |
122 |
width: 300px; |
|
123 |
margin-left: -150px; |
|
124 |
height: 180px; |
|
125 |
margin-top: -90px; |
|
126 |
}
|
|
127 |
||
128 |
#login.error { |
|
129 |
height: 240px; |
|
83.2.22
by elof.bigestans at gmail
* Moved login JS to bannermenu.js and removed login.js |
130 |
}
|
131 |
||
132 |
#login .errorContainer { |
|
133 |
height: 70px; |
|
134 |
margin: 0 10px; |
|
135 |
color: #666; |
|
136 |
line-height: 130%; |
|
137 |
text-align: center; |
|
138 |
}
|
|
139 |
||
140 |
#login.expanded { |
|
141 |
height: 216px; |
|
83.2.12
by elof.bigestans at gmail
* Merged trunk |
142 |
}
|
143 |
||
144 |
#login form { |
|
145 |
margin: 10px 0 0; |
|
146 |
}
|
|
147 |
||
148 |
#login .bottomMenu { |
|
149 |
left: 10px; |
|
150 |
right: 10px; |
|
151 |
}
|
|
152 |
||
153 |
#login .hint { |
|
154 |
background: url('../img/loginhint_disabled.png'); |
|
155 |
width: 33px; |
|
83.2.22
by elof.bigestans at gmail
* Moved login JS to bannermenu.js and removed login.js |
156 |
height: 33px; |
83.2.12
by elof.bigestans at gmail
* Merged trunk |
157 |
text-indent: -999em; |
158 |
overflow: hidden; |
|
159 |
border: 0; |
|
160 |
cursor: default; |
|
161 |
}
|
|
83.2.22
by elof.bigestans at gmail
* Moved login JS to bannermenu.js and removed login.js |
162 |
|
163 |
#login .hint.available { |
|
164 |
cursor: pointer; |
|
165 |
background: url('../img/loginhint.png'); |
|
166 |
}
|
|
167 |
||
83.2.12
by elof.bigestans at gmail
* Merged trunk |
168 |
#login .hint:active, #login.expanded .hint { |
169 |
cursor: pointer; |
|
170 |
background: url('../img/loginhint_active.png'); |
|
83.2.22
by elof.bigestans at gmail
* Moved login JS to bannermenu.js and removed login.js |
171 |
}
|
83.2.12
by elof.bigestans at gmail
* Merged trunk |
172 |
|
173 |
#login #hinttext { |
|
174 |
border-top: 1px #ccc solid; |
|
175 |
margin: 10px -10px -5px; |
|
176 |
padding: 5px 0 5px 10px; |
|
177 |
color: #999; |
|
83.2.22
by elof.bigestans at gmail
* Moved login JS to bannermenu.js and removed login.js |
178 |
display: none; |
83.2.12
by elof.bigestans at gmail
* Merged trunk |
179 |
height: 20px; |
180 |
}
|
|
181 |
||
182 |
#login #hinttext p { |
|
183 |
margin: 0; |
|
184 |
}
|
|
185 |
||
186 |
#login #hinttext p.error { |
|
187 |
color: red; |
|
188 |
}
|
|
189 |
||
190 |
#login .submit { |
|
191 |
float: right; |
|
192 |
}
|
|
83.2.7
by elof.bigestans at gmail
Started work on normalizing popups. Lots to go. |
193 |
|
83.2.12
by elof.bigestans at gmail
* Merged trunk |
194 |
#login label { |
195 |
display: none; |
|
196 |
}
|
|
197 |
||
198 |
#login ul { |
|
199 |
margin: 0 10px |
|
200 |
}
|
|
201 |
||
202 |
#login .text { |
|
203 |
width: 270px; |
|
204 |
}
|
|
205 |
||
57.3.2
by Simon Bergöö
added some files for the popups |
206 |