diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-09 16:11:22 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-09 16:11:22 +0000 |
commit | 33a933271a1dcb64398cb1df7a9e27209d953b82 (patch) | |
tree | 7cf7ccdbbffe1039a41b3473208fbda29026f06a | |
parent | e876383416944457db7497301aed01cbcdacca43 (diff) | |
download | elgg-33a933271a1dcb64398cb1df7a9e27209d953b82.tar.gz elgg-33a933271a1dcb64398cb1df7a9e27209d953b82.tar.bz2 |
css for page tabs submenu
git-svn-id: https://code.elgg.org/elgg/trunk@1366 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | views/default/css.php | 86 |
1 files changed, 71 insertions, 15 deletions
diff --git a/views/default/css.php b/views/default/css.php index 872850494..463c4c5f1 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -223,13 +223,13 @@ h6 { font-size: 0.8em; } #wrapper_maincontent.single_column { /* width:785px;*/ background: white; - padding:20px; + padding:14px 20px 20px 20px; border-bottom:1px solid #cccccc; border-right:1px solid #cccccc; } #wrapper_maincontent.content_area { background: white; - padding:20px; + padding:14px 20px 20px 20px; border-bottom:1px solid #cccccc; border-right:1px solid #cccccc; } @@ -1244,7 +1244,7 @@ table.search_gallery { /* *************************************** - END + STUFF BELOW NEEDS SORTING *************************************** */ /* not needed? - replaced by #wrapper_maincontent.single_column */ @@ -1257,18 +1257,6 @@ table.search_gallery { background: url(<?php echo $vars['url']; ?>_graphics/icon_tag.gif) no-repeat left 2px; padding:0 0 0 14px; margin:0; -} - -/* page titles */ -#canvas_header { - margin:0 0 20px 0; - padding:0 0 5px 0; - border-bottom:1px solid #4690d6; -} - -#canvas_header #canvas_header_content h2 { - - } /* profile picture upload n crop page */ @@ -1302,7 +1290,75 @@ table.search_gallery { height: 100px; } +/* *************************************** + page titles and submenu +*************************************** */ +/* page titles +#canvas_header { + margin:0 0 20px 0; + padding:0 0 5px 0; + border-bottom:1px solid #4690d6; +} +*/ +#canvas_header #canvas_header_content h2 { + + +} +#canvas_header_content { + margin:0 0 10px 0; + padding:0 0 5px 0; + border-bottom:1px solid #4690d6; +} +/* +#wrapper_maincontent.single_column { + margin:0; + padding:10px 20px; +} +*/ +#canvas_header_submenu { + margin:10px 0 10px 0; + padding: 0; + border-bottom: 1px solid #cccccc; + display:table; + width:100%; +} + +#canvas_header_submenu ul { + list-style: none; + padding: 0; + margin: 0; +} + +#canvas_header_submenu li { + float: left; + border: 1px solid #ffffff; + border-bottom-width: 0; + margin: 0; +} + +#canvas_header_submenu a { + text-decoration: none; + display: block; + padding: 0.24em 1em; + color: #666666; + text-align: center; +} + +#canvas_header_submenu a:hover { + color: #4690d6; +} + +#canvas_header_submenu .selected { + border-color: #cccccc; +} + +#canvas_header_submenu .selected a { + position: relative; + top: 1px; + background: white; + color: #4690d6; +} |