Protected cms service from registering many time the same module type.
Moved library/persistence/implementation/* under library/persistence/.
Moved site/www/themes to site/themes
For SQLite storage driver, auto create sqlite db file using associated sql script (to be completed).
Added code in demo module to reuse storage for module purpose.
Always call sql_post_execution in sql_query and sql_change, and not anymore by the callers.
Removed is_web and is_html from {CMS_SETUP}, it was not used.
Reused SHARED_*_ENCODER in CMS_ENCODERS
Added CMS_API.logger rather than using directly the SHARED_LOGGER.log ...
Centralize the implementation of current_user in CMS_REQUEST_UTIL
Removed the inheritance on WSF_FILTER for node handlers, since it is useless and unused.
Added CMS_NODE_API and CMS_USER_API
Prefix html id for block generated html items with "block-", to avoid css name conflict on "main", "content" or similar.
Code cleaning
54 lines
968 B
CSS
54 lines
968 B
CSS
ul.horizontal li {
|
|
display: inline-block;
|
|
}
|
|
|
|
#header #primary.menu ul li {
|
|
color: #555;
|
|
background-color: #fff;
|
|
padding: 10px;
|
|
margin: 0;
|
|
}
|
|
#header #primary.menu ul li a {
|
|
color: #555;
|
|
text-decoration: none;
|
|
}
|
|
#header #primary.menu ul li a:hover {
|
|
color: black;
|
|
}
|
|
#header #primary.menu ul.horizontal {
|
|
border-bottom: solid 1px #ddd;
|
|
}
|
|
#header #primary.menu ul.horizontal li {
|
|
border-top: solid 3px #fff;
|
|
}
|
|
#header #primary.menu ul.horizontal li:hover {
|
|
background-color: #ffe;
|
|
border-top: solid 3px #999;
|
|
}
|
|
#header #primary.menu ul.horizontal li.active {
|
|
font-weight: bold;
|
|
border-top: solid 3px #ddd;
|
|
background-color: #ddd;
|
|
}
|
|
#header #primary.menu ul.horizontal li.active:hover {
|
|
border-top: solid 3px blue;
|
|
}
|
|
|
|
#content {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.sidebar {
|
|
padding: 5px;
|
|
margin: 3px;
|
|
border: solid 1px #ccc;
|
|
}
|
|
.sidebar#sidebar_first {
|
|
width: 250px;
|
|
float: left;
|
|
}
|
|
.sidebar#sidebar_second {
|
|
width: 250px;
|
|
float: right;
|
|
}
|