summaryrefslogtreecommitdiff
path: root/plugins/new_user_dialog/newuserdialog.css
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2009-07-09 08:18:35 +0000
committerthomascube <thomas@roundcube.net>2009-07-09 08:18:35 +0000
commit5edb5b6634b13098ee2d72078bc317f5a770a893 (patch)
treee084fd5ea9faef2922c684f131c1804bde1ab870 /plugins/new_user_dialog/newuserdialog.css
parent742d61aaf32875645f50456d263fe649db5eef0a (diff)
Create plugin to present identities settings dialog to new users
Diffstat (limited to 'plugins/new_user_dialog/newuserdialog.css')
-rw-r--r--plugins/new_user_dialog/newuserdialog.css48
1 files changed, 48 insertions, 0 deletions
diff --git a/plugins/new_user_dialog/newuserdialog.css b/plugins/new_user_dialog/newuserdialog.css
new file mode 100644
index 000000000..91ea8f127
--- /dev/null
+++ b/plugins/new_user_dialog/newuserdialog.css
@@ -0,0 +1,48 @@
+/** 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: black;
+
+ /** IE hacks */
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
+ width: expression(document.documentElement.clientWidth+'px');
+ height: expression(document.documentElement.clientHeight+'px');
+}
+
+#newuseroverlay h3 {
+ color: #333;
+ font-size: normal;
+ margin-top: 0.5em;
+}
+
+#newuseroverlay form {
+ width: 30em;
+ margin: 6em auto;
+ padding: 1em 2em;
+ background: #F6F6F6;
+ border: 2px solid #999;
+}
+
+#newuseroverlay table td.title
+{
+ color: #666;
+ text-align: right;
+ padding-right: 1em;
+ white-space: nowrap;
+}
+
+#newuseroverlay table td input
+{
+ width: 20em;
+}
+
+#newuseroverlay .formbuttons {
+ text-align: center;
+} \ No newline at end of file