diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-17 13:24:11 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-17 13:24:11 +0000 |
commit | f0e20bdc3ede23a0d9a73856122d54ba4883688c (patch) | |
tree | cda8ce334c15d0e09ac1b0fa5b5729493d4c02cc /views/default/css.php | |
parent | 83a53a6b69f3b98e75da51fd7894fbda27e2ff55 (diff) | |
download | elgg-f0e20bdc3ede23a0d9a73856122d54ba4883688c.tar.gz elgg-f0e20bdc3ede23a0d9a73856122d54ba4883688c.tar.bz2 |
interface updated, markup tweaked etc
git-svn-id: https://code.elgg.org/elgg/trunk@2778 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css.php')
-rw-r--r-- | views/default/css.php | 58 |
1 files changed, 51 insertions, 7 deletions
diff --git a/views/default/css.php b/views/default/css.php index 3d92fd2c6..766e147fa 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -1231,13 +1231,13 @@ table.search_gallery { .plugin_details a.manifest_details { cursor:pointer; font-size:80%; -}
-.plugin_details a.pluginsettings_link {
- cursor:pointer;
- font-size:80%;
-}
-.pluginsettings {
- display:none;
+} +.plugin_details a.pluginsettings_link { + cursor:pointer; + font-size:80%; +} +.pluginsettings { + display:none; } .not-active .admin_plugin_enable_disable a { float:right; @@ -2146,3 +2146,47 @@ div.ajax_loader { height:33px; } + +/* reusable elgg horizontal tabbed navigation + (used on friends collections, and external pages mod) +*/ +#elgg_horizontal_tabbed_nav { + margin:10px 0 10px 0; + padding: 0; + border-bottom: 1px solid #cccccc; + display:table; + width:100%; +} +#elgg_horizontal_tabbed_nav ul { + list-style: none; + padding: 0; + margin: 0; +} +#elgg_horizontal_tabbed_nav li { + float: left; + border: 1px solid #ffffff; + border-bottom-width: 0; + margin: 0; +} +#elgg_horizontal_tabbed_nav a { + text-decoration: none; + display: block; + padding: 0.22em 1em; + color: #666666; + text-align: center; +} +#elgg_horizontal_tabbed_nav a:hover { + color: #4690d6; +} +#elgg_horizontal_tabbed_nav .selected { + border-color: #cccccc; +} +#elgg_horizontal_tabbed_nav .selected a { + position: relative; + top: 1px; + background: white; + color: #4690d6; +} + + + |