diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-05-13 10:17:44 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-05-13 10:17:44 +0000 |
| commit | 32ebf533a2f82571c029a908c5fee27f4febf21d (patch) | |
| tree | 5d3ef7e6b969736bc9209ea800aaa2586153a5b9 /plugins/acl/skins/default/acl.css | |
| parent | 72d2cc157fc40665ec12e31714b6ef419f9b4cd0 (diff) | |
- ACL plugin (initial commit)
git-svn-id: https://svn.roundcube.net/trunk@4757 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/acl/skins/default/acl.css')
| -rw-r--r-- | plugins/acl/skins/default/acl.css | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/plugins/acl/skins/default/acl.css b/plugins/acl/skins/default/acl.css new file mode 100644 index 000000000..8731a6503 --- /dev/null +++ b/plugins/acl/skins/default/acl.css @@ -0,0 +1,89 @@ +#aclmanager +{ + position: relative; + border: 1px solid #999; + min-height: 302px; +} + +#aclcontainer +{ + overflow-x: auto; +} + +#acltable +{ + width: 100%; + border-collapse: collapse; + background-color: #F9F9F9; +} + +#acltable td +{ + width: 1%; + white-space: nowrap; +} + +#acltable thead td +{ + padding: 0 4px 0 2px; +} + +#acltable tbody td +{ + text-align: center; + padding: 2px; + border-bottom: 1px solid #999999; + cursor: default; +} + +#acltable tbody td.user +{ + width: 96%; + text-align: left; + overflow: hidden; + text-overflow: ellipsis; + -o-text-overflow: ellipsis; +} + +#acltable tbody td.enabled +{ + background: url(images/flagged.png) center no-repeat; +} + +#acltable tr.selected td +{ + color: #FFFFFF; + background-color: #CC3333; +} + +#acladvswitch +{ + position: absolute; + right: 4px; + text-align: right; + line-height: 22px; +} + +#acladvswitch input +{ + vertical-align: middle; +} + +#acladvswitch span +{ + display: block; +} + +#aclform +{ + top: 100px; + width: 400px; + padding: 10px; +} + +#aclform div +{ + padding: 0; + text-align: center; + clear: both; +} |
