summaryrefslogtreecommitdiff
path: root/modules/user/css
diff options
context:
space:
mode:
authorAndy Staudacher <andy.st@gmail.com>2009-11-15 19:44:47 -0800
committerAndy Staudacher <andy.st@gmail.com>2009-11-15 19:44:47 -0800
commit0733dc37fda27a5ba35f9020edf3c66aa41a95a0 (patch)
tree6877946232f1b01b1c8709054c689f6658cef34f /modules/user/css
parent218493c50be9362d4abed6900a816308fee5d978 (diff)
parent9379308f91a476f790fb8d444536719535c584e4 (diff)
Merge commit 'upstream/master'
Conflicts: modules/gallery/tests/xss_data.txt
Diffstat (limited to 'modules/user/css')
-rw-r--r--modules/user/css/user.css119
1 files changed, 119 insertions, 0 deletions
diff --git a/modules/user/css/user.css b/modules/user/css/user.css
new file mode 100644
index 00000000..084eac31
--- /dev/null
+++ b/modules/user/css/user.css
@@ -0,0 +1,119 @@
+/* User- and group-related form width ~~~~ */
+
+#g-login-form,
+#g-add-user-form
+#g-edit-user-form,
+#g-delete-user-form,
+#g-user-admin {
+ width: 270px;
+}
+
+/* User/group admin ~~~~~~~~~~~~~~~~~~~~~~ */
+
+#g-user-admin {
+ width: auto;
+}
+
+#g-group-admin {
+}
+
+#g-user-admin-list .g-admin {
+ color: #55f;
+ font-weight: bold;
+}
+
+.g-group {
+ display: block;
+ border: 1px solid #999;
+ margin: 0 1em 1em 0;
+ padding: 0;
+ width: 200px;
+}
+
+.g-group h4 {
+ background-color: #eee;
+ border-bottom: 1px dashed #ccc;
+ padding: .5em 0 .5em .5em;
+}
+
+.g-group .g-button {
+ padding: 0;
+}
+
+.g-group .g-member-list,
+.g-group div {
+ height: 180px;
+ margin: 1px;
+ overflow: auto;
+}
+
+.g-group p {
+ margin-top: 1em;
+ padding: .5em;
+ text-align: center;
+}
+
+.g-group .g-user {
+ padding: .2em 0 0 .5em;
+}
+
+.g-group .g-user .g-button {
+ vertical-align: middle;
+}
+
+.g-default-group h4,
+.g-default-group .g-user {
+ color: #999;
+}
+
+.g-group.ui-droppable {
+ padding: 0 !important;
+}
+
+/* Password strength meter ~~~~~~~~~~~~~~~ */
+
+.g-password-strength0 {
+ background: url(../images/progressImg1.png) no-repeat 0 0;
+ width: 138px;
+ height: 7px;
+}
+
+.g-password-strength10 {
+ background-position:0 -7px;
+}
+
+.g-password-strength20 {
+ background-position:0 -14px;
+}
+
+.g-password-strength30 {
+ background-position:0 -21px;
+}
+
+.g-password-strength40 {
+ background-position:0 -28px;
+}
+
+.g-password-strength50 {
+ background-position:0 -35px;
+}
+
+.g-password-strength60 {
+ background-position:0 -42px;
+}
+
+.g-password-strength70 {
+ background-position:0 -49px;
+}
+
+.g-password-strength80 {
+ background-position:0 -56px;
+}
+
+.g-password-strength90 {
+ background-position:0 -63px;
+}
+
+.g-password-strength100 {
+ background-position:0 -70px;
+}