diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-05 14:39:47 -0700 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-11-05 14:39:47 -0700 |
commit | 2c3be6e34967abe40f82825c25cae3a64361d1f7 (patch) | |
tree | 1bfd50ce7b6744acb0e0d9c49eb638a962227711 /views | |
parent | abaf5567e7b2bbeee033faa04618270660d80ab4 (diff) | |
parent | 476c4f93769a3d2e7881b228ecfb4623ead6f556 (diff) | |
download | elgg-2c3be6e34967abe40f82825c25cae3a64361d1f7.tar.gz elgg-2c3be6e34967abe40f82825c25cae3a64361d1f7.tar.bz2 |
Merge pull request #87 from sembrestels/exp
Refs #3867. Rewrite and style unvalidated users administration area.
Diffstat (limited to 'views')
-rw-r--r-- | views/default/css/admin.php | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/views/default/css/admin.php b/views/default/css/admin.php index 160a2a3e4..61b61c27a 100644 --- a/views/default/css/admin.php +++ b/views/default/css/admin.php @@ -1002,6 +1002,89 @@ a.elgg-widget-collapsed:before { } /* *************************************** + HELPERS +*************************************** */ + +.clearfloat { + clear: both; +} + +.hidden { + display: none; +} + +.centered { + margin: 0 auto; +} + +.center { + text-align: center; +} + +.float { + float: left; +} + +.float-alt { + float: right; +} + +.right { + float: right; +} + +.left { + float: left; +} + +.link { + cursor: pointer; +} + +.large { + font-size: 120%; +} + +.small { + font-size: 80%; +} + +.elgg-discover .elgg-discoverable { + display: none; +} + +.elgg-discover:hover .elgg-discoverable { + display: block; +} + +.elgg-transition:hover { + opacity: .7; +} + +/* *************************************** + BORDERS AND SEPARATORS +*************************************** */ +.elgg-border-plain { + border: 1px solid #eeeeee; +} +.elgg-border-transition { + border: 1px solid #eeeeee; +} +.elgg-divide-top { + border-top: 1px solid #CCCCCC; +} +.elgg-divide-bottom { + border-bottom: 1px solid #CCCCCC; +} +.elgg-divide-left { + border-left: 1px solid #CCCCCC; +} +.elgg-divide-right { + border-right: 1px solid #CCCCCC; +} + + +/* *************************************** SPACING (from OOCSS) *************************************** */ .pan{padding:0} |