diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-13 23:27:45 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-13 23:27:45 +0000 |
commit | 8ef2424123c8d07d418a191c20577a3e00ff2a78 (patch) | |
tree | dffe486e025407aafbc36ad318edf5dd18dab2a8 | |
parent | 0b3724c9b87f891b48c41ad61c1caf3486cc0799 (diff) | |
download | elgg-8ef2424123c8d07d418a191c20577a3e00ff2a78.tar.gz elgg-8ef2424123c8d07d418a191c20577a3e00ff2a78.tar.bz2 |
added tabs to admin theme
git-svn-id: http://code.elgg.org/elgg/trunk@8210 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | views/default/css/admin.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/views/default/css/admin.php b/views/default/css/admin.php index 9aac987d3..2abb8ea75 100644 --- a/views/default/css/admin.php +++ b/views/default/css/admin.php @@ -455,6 +455,44 @@ input[type="submit"]:hover, .elgg-button-submit:hover, .elgg-button-action:hover } /* *************************************** + TABS +*************************************** */ +.elgg-tabs { + margin-bottom: 5px; + border-bottom: 1px solid #cccccc; + display: table; + width: 100%; +} +.elgg-tabs li { + float: left; + border: 1px solid #cccccc; + border-bottom-width: 0; + background: #eeeeee; + margin: 0 0 0 10px; +} +.elgg-tabs a { + text-decoration: none; + display: block; + padding: 3px 10px 0 10px; + text-align: center; + height: 21px; + color: #999999; +} +.elgg-tabs a:hover { + background: #dedede; + color:#333333; +} +.elgg-tabs .elgg-state-selected { + border-color: #cccccc; + background: white; +} +.elgg-tabs .elgg-state-selected a { + position: relative; + top: 2px; + background: white; +} + +/* *************************************** WIDGETS *************************************** */ .elgg-widgets { |