You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.1 KiB
CSS
59 lines
1.1 KiB
CSS
/** Styles for the new-user-dialog overlay box */
|
|
|
|
#newuseroverlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 10000;
|
|
background: rgba(0,0,0,0.5) !important;
|
|
background: #333;
|
|
|
|
/** IE hacks */
|
|
filter: alpha(opacity=90);
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
|
|
width: expression(document.documentElement.clientWidth+'px');
|
|
height: expression(document.documentElement.clientHeight+'px');
|
|
}
|
|
|
|
#newuseroverlay h3 {
|
|
color: #333;
|
|
font-size: normal;
|
|
margin-top: 0.5em;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
#newuseroverlay p.hint {
|
|
margin-top: 0.5em;
|
|
font-style: italic;
|
|
}
|
|
|
|
#newuseroverlay form {
|
|
width: 32em;
|
|
margin: 8em auto;
|
|
padding: 1em 2em;
|
|
background: #F6F6F6;
|
|
border: 2px solid #555;
|
|
border-radius: 6px;
|
|
-moz-border-radius: 6px;
|
|
-webkit-border-radius: 6px;
|
|
}
|
|
|
|
#newuseroverlay table td.title
|
|
{
|
|
color: #666;
|
|
text-align: right;
|
|
padding-right: 1em;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#newuseroverlay table td input
|
|
{
|
|
width: 20em;
|
|
}
|
|
|
|
#newuseroverlay .formbuttons {
|
|
margin-top: 1.5em;
|
|
text-align: center;
|
|
} |