diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-07-12 12:28:51 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-07-12 12:28:51 +0000 |
commit | e84028f2e25a96d96bc02bf45e87f4422e11f2f8 (patch) | |
tree | 6592866bf7ee3a943fe32a643d02e64e05986acd /mod/embed/views/default | |
parent | 626715d5acef3079af461c3fb11e2131c2454163 (diff) | |
download | elgg-e84028f2e25a96d96bc02bf45e87f4422e11f2f8.tar.gz elgg-e84028f2e25a96d96bc02bf45e87f4422e11f2f8.tar.bz2 |
Added logos to embed web services pane, and made embed nav-bar theme agnostic
git-svn-id: http://code.elgg.org/elgg/trunk@6699 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/embed/views/default')
-rw-r--r-- | mod/embed/views/default/embed/css.php | 51 |
1 files changed, 47 insertions, 4 deletions
diff --git a/mod/embed/views/default/embed/css.php b/mod/embed/views/default/embed/css.php index 64d74a498..ba1d96190 100644 --- a/mod/embed/views/default/embed/css.php +++ b/mod/embed/views/default/embed/css.php @@ -118,11 +118,54 @@ } -/* navigation overrides */ -.elgg_horizontal_tabbed_nav .selected a.embed_section, -.elgg_horizontal_tabbed_nav a.embed_section:hover { - color:#333333; +/* *************************************** + ELGG TABBED PAGE NAVIGATION +*************************************** */ +#facebox .body .elgg_horizontal_tabbed_nav { + margin-bottom:5px; + padding: 0; + border-bottom: 2px solid #cccccc; + display:table; + width:100%; +} +#facebox .body .elgg_horizontal_tabbed_nav ul { + list-style: none; + padding: 0; + margin: 0; +} +#facebox .body .elgg_horizontal_tabbed_nav li { + float: left; + border: 2px solid #cccccc; + border-bottom-width: 0; + background: #eeeeee; + margin: 0 0 0 10px; + -moz-border-radius-topleft:5px; + -moz-border-radius-topright:5px; + -webkit-border-top-left-radius:5px; + -webkit-border-top-right-radius:5px; +} +#facebox .body .elgg_horizontal_tabbed_nav a { + text-decoration: none; + display: block; + padding:3px 10px 0 10px; + text-align: center; + height:21px; + color:#999999; +} +#facebox .body .elgg_horizontal_tabbed_nav a:hover { + background: #dedede; + color:#666666; +} +#facebox .body .elgg_horizontal_tabbed_nav .selected { + border-color: #cccccc; + background: white; } +#facebox .body .elgg_horizontal_tabbed_nav .selected a { + position: relative; + top: 2px; + background: white; +} + /* Pagination (override core elgg css defaults) */ |