diff options
| author | jhilden <jakobhilden@gmail.com> | 2009-05-31 18:25:43 -0400 | 
|---|---|---|
| committer | jhilden <jakobhilden@gmail.com> | 2009-05-31 18:25:43 -0400 | 
| commit | 277c96c2f64e4bac4aaf729221564cdca1e12af2 (patch) | |
| tree | 79623ff66d1e95bed14f45d1b3e28f8c0192190b /themes/admin_default/css | |
| parent | 181c97ef4b29bb3c68a6c9b5d2f8165e8b44ba29 (diff) | |
user admin facelift
* added drag & drop help message for empty groups
* fixed overflow issue with more than ~10 members in one group
* CSS improvements
Diffstat (limited to 'themes/admin_default/css')
| -rw-r--r-- | themes/admin_default/css/screen.css | 36 | 
1 files changed, 33 insertions, 3 deletions
| diff --git a/themes/admin_default/css/screen.css b/themes/admin_default/css/screen.css index 2d5f086c..38fcf089 100644 --- a/themes/admin_default/css/screen.css +++ b/themes/admin_default/css/screen.css @@ -192,6 +192,9 @@  #gUserAdminList {    margin-bottom: 1em;  } +#gUserAdminList td { +  vertical-align: bottom; +}  #gUserAdminList .gDraggable:hover {    border: 1px dashed black; @@ -211,11 +214,38 @@ li.gGroup {    float: left;    display: block;    width: 200px; -  height: 200px;    border: 1px solid gray; -  padding: .5em; -  margin-right: 0 1em 1em 0; +  padding: 0; +  margin: 0 1em 1em 0; +} +li.gGroup h4 { +  background-color: #EEEEEE; +  border-bottom: 1px dashed #CCCCCC; +  padding: .5em 0 .5em .5em; +} +li.gGroup .gButtonLink { +  padding: 0; +} +li.gGroup ul, li.gGroup div { +  height: 180px; +  margin: 1px;    overflow: auto; +  padding-top: .2em; +} +li.gGroup div p { +  color: gray; +  text-align: center; +  padding: 2em .5em 0 .5em +} +li.gGroup .gUser { +  padding: .2em 0 0 .5em; +} +li.gGroup .gUser .gButtonLink { +  vertical-align: middle; +} + +li.gDefaultGroup h4, li.gDefaultGroup .gUser { +  color: gray;  }  #gAdminAdvancedSettings tr.setting:hover { | 
