summaryrefslogtreecommitdiff
path: root/plugins/new_user_dialog/newuserdialog.css
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-01-16 15:45:02 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-01-16 15:45:02 +0000
commit434d929108d4286ac9dbfc8966fad1a9b85bded3 (patch)
tree3e05fa55c70d6821e8787a62ef827cb623f3c9d6 /plugins/new_user_dialog/newuserdialog.css
parent6449371635ff8110c8aa00c29c951425f1ec782a (diff)
Use jquery UI to render the new user dialog
git-svn-id: https://svn.roundcube.net/trunk@5783 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/new_user_dialog/newuserdialog.css')
-rw-r--r--plugins/new_user_dialog/newuserdialog.css71
1 files changed, 25 insertions, 46 deletions
diff --git a/plugins/new_user_dialog/newuserdialog.css b/plugins/new_user_dialog/newuserdialog.css
index 1c3e652b6..207604dd1 100644
--- a/plugins/new_user_dialog/newuserdialog.css
+++ b/plugins/new_user_dialog/newuserdialog.css
@@ -1,60 +1,39 @@
-/** Styles for the new-user-dialog overlay box */
+/** Styles for the new-user-dialog 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');
+#newuserdialog {
+ display: none;
}
-#newuseroverlay h3 {
- color: #333;
- font-size: normal;
- margin-top: 0.5em;
- margin-bottom: 0;
+#newuserdialog h3 {
+ color: #333;
+ font-size: normal;
+ margin-top: 0;
+ margin-bottom: 0;
}
-#newuseroverlay p.hint {
- margin-top: 0.5em;
- font-style: italic;
+#newuserdialog p.hint {
+ margin-top: 0.5em;
+ margin-bottom: 1em;
+ 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;
+#newuserdialog table td.title {
+ color: #666;
+ text-align: right;
+ padding-right: 1em;
+ white-space: nowrap;
}
-#newuseroverlay table td.title
-{
- color: #666;
- text-align: right;
- padding-right: 1em;
- white-space: nowrap;
+#newuserdialog table td input,
+#newuserdialog table td textarea {
+ width: 20em;
}
-#newuseroverlay table td input,
-#newuseroverlay table td textarea
-{
- width: 20em;
+#newuserdialog .formbuttons {
+ margin-top: 1.5em;
+ text-align: center;
}
-#newuseroverlay .formbuttons {
- margin-top: 1.5em;
- text-align: center;
+.ui-dialog-titlebar-close {
+ display: none;
} \ No newline at end of file