Fixed a type in webstuff.py and a little bit of separation of lines.

* Fixed the Vertical menu placement on the page.
* Removed margin-top element from Basic-Blue style sheet.

svn: r18737
This commit is contained in:
Rob G. Healey 2012-01-12 08:29:13 +00:00
parent e010e38203
commit 67888772bb
3 changed files with 21 additions and 19 deletions

View File

@ -231,7 +231,6 @@ div#footer {
font-size: 12px;
line-height: 130%;
color: #FFF;
margin-top: 0.5cm;
background-color: #00029D;
border-top: solid 8px #13A926;
}

View File

@ -32,7 +32,7 @@ Style Name: Web_Navigation-Vertical.css Stylesheet
body { background: -webkit-gradient
(linear, left top, left bottom, from(#ccc), to(#fff));
color: #000;
padding: 60px 0px 0px 120px;
padding: 60px 0px 0px 146px;
}
/* Header
@ -56,7 +56,7 @@ div#nav {
div#nav ul {
list-style-type: none;
display: block;
width: 320px;
width: 330px;
position: fixed;
top: 53px;
left: 0px;
@ -71,7 +71,7 @@ div#nav ul li a {
padding: 7px 15px 7px 15px;
-webkit-border-top-right-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
width: 100px;
width: 120px;
display: block;
text-decoration: none;
-webkit-box-shadow: 2px 2px 4px #888;
@ -81,6 +81,10 @@ div#nav ul li a:hover {
color: #67a5cd;
padding: 7px 0px 7px 30px;
}
div#nav ul li.CurrentSection a {
background-color: #000;
color: #FFF;
}
/* SubNavigation
----------------------------------------------------- */

View File

@ -119,7 +119,7 @@ def load_on_reg(dbstate, uistate, plugin):
path_css('Web_Print-Default.css'), None, [], [] ],
# vertical navigation style sheet
["Vertica-Menusl", 0, "",
["Vertical-Menus", 0, "",
path_css('Web_Vertical-Menus.css'), None, [], [] ],
# horizontal navigation style sheet
@ -156,7 +156,6 @@ def load_on_reg(dbstate, uistate, plugin):
['Document', 0, 'Document',
path_img("document.png"), None, [], [] ],
]
return CSS_FILES
def process_list(data):