]> git.donarmstrong.com Git - roundcube.git/blob - plugins/new_user_dialog/newuserdialog.css
c03e6fd429ef2f9d8a08096ced902e5c19b57fe4
[roundcube.git] / plugins / new_user_dialog / newuserdialog.css
1 /** Styles for the new-user-dialog overlay box */
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;
11   background: #333;
12   
13   /** IE hacks */
14   filter: alpha(opacity=90);
15   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
16   width: expression(document.documentElement.clientWidth+'px');
17   height: expression(document.documentElement.clientHeight+'px');
18 }
19
20 #newuseroverlay h3 {
21   color: #333;
22   font-size: normal;
23   margin-top: 0.5em;
24   margin-bottom: 0;
25 }
26
27 #newuseroverlay p.hint {
28   margin-top: 0.5em;
29   font-style: italic;
30 }
31
32 #newuseroverlay form {
33   width: 32em;
34   margin: 8em auto;
35   padding: 1em 2em;
36   background: #F6F6F6;
37   border: 2px solid #555;
38   border-radius: 6px;
39   -moz-border-radius: 6px;
40   -webkit-border-radius: 6px;
41 }
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 {
57   margin-top: 1.5em;
58   text-align: center;
59 }