commit | author | age
|
5edb5b
|
1 |
/** Styles for the new-user-dialog overlay box */ |
T |
2 |
|
|
3 |
#newuseroverlay { |
|
4 |
position: absolute; |
|
5 |
top: 0; |
|
6 |
left: 0; |
|
7 |
right: 0; |
|
8 |
bottom: 0; |
|
9 |
z-index: 10000; |
|
10 |
background: rgba(0,0,0,0.5) !important; |
a183b7
|
11 |
background: #333; |
5edb5b
|
12 |
|
T |
13 |
/** IE hacks */ |
a183b7
|
14 |
filter: alpha(opacity=90); |
T |
15 |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; |
5edb5b
|
16 |
width: expression(document.documentElement.clientWidth+'px'); |
T |
17 |
height: expression(document.documentElement.clientHeight+'px'); |
|
18 |
} |
|
19 |
|
|
20 |
#newuseroverlay h3 { |
|
21 |
color: #333; |
|
22 |
font-size: normal; |
|
23 |
margin-top: 0.5em; |
a183b7
|
24 |
margin-bottom: 0; |
T |
25 |
} |
|
26 |
|
|
27 |
#newuseroverlay p.hint { |
|
28 |
margin-top: 0.5em; |
|
29 |
font-style: italic; |
5edb5b
|
30 |
} |
T |
31 |
|
|
32 |
#newuseroverlay form { |
a183b7
|
33 |
width: 32em; |
T |
34 |
margin: 8em auto; |
5edb5b
|
35 |
padding: 1em 2em; |
T |
36 |
background: #F6F6F6; |
a183b7
|
37 |
border: 2px solid #555; |
T |
38 |
border-radius: 6px; |
|
39 |
-moz-border-radius: 6px; |
|
40 |
-webkit-border-radius: 6px; |
5edb5b
|
41 |
} |
T |
42 |
|
|
43 |
#newuseroverlay table td.title |
|
44 |
{ |
|
45 |
color: #666; |
|
46 |
text-align: right; |
|
47 |
padding-right: 1em; |
|
48 |
white-space: nowrap; |
|
49 |
} |
|
50 |
|
|
51 |
#newuseroverlay table td input |
|
52 |
{ |
|
53 |
width: 20em; |
|
54 |
} |
|
55 |
|
|
56 |
#newuseroverlay .formbuttons { |
a183b7
|
57 |
margin-top: 1.5em; |
5edb5b
|
58 |
text-align: center; |
T |
59 |
} |