ezmlm-web/www-data/default.css
lars 4c83771e11 updated UPGRADE file
new configuration setting: HTML_LINKS
changed layout of top div
fixed some IE rendering problems
improved visualization of subscriber's log
changed interface of 'form_header' macros
moved interface and language selection to the top of the page
reverse order of subscriber's log entries
set explicit default values for UNSAFE_RM, PRETTY_NAMES, ALIAS_USER, HTML_LINKS, HTML_LANGUAGE, FILE_UPLOAD and DEFAULT_OPTIONS
HTML_CSS_FILE replaced by HTML_CSS_URL - it defaults to '/ezmlm-web.css'
added manpages for 'webusers' and 'ezmlmwebrc' file formats
added check for required settings
ignore 'taintness' of 'send' input data due to non-ascii characters in buttons' values
2007-04-10 22:19:43 +00:00

316 lines
5.3 KiB
CSS

body {
margin: 0;
padding: 0;
font: normal 100% sans-serif;
color: #2e3436;
background-color: white;
}
a { text-decoration: none; }
button, select { cursor: pointer; }
/***************** navgation bar *************************/
#nav_bar {
clear: left;
float: left;
width: 20%;
color: black;
background-color: #3465a4;
background-image: url(horiz_grad_blue.png);
margin: 1%;
padding: 1.5% 0;
}
#nav_bar * {
background-color: transparent;
}
#nav_bar hr {
margin: 10px 30px 10px 10px;
font-size: 0%; /* otherwise IE6 adds a huge gap above */
}
#nav_bar ul {
margin: 0;
padding-left: 7%;
list-style: none;
}
#nav_bar ul li {
margin-top: 0px;
/* small space between highest level entries */
margin-bottom: 5px;
}
#nav_bar ul li ul {
/* small space between middle level entries */
margin-bottom: 4px;
}
#nav_bar ul li ul li {
/* no space between lower level entries */
margin-bottom: 0;
}
#nav_bar li a.nav_active {
color: #eeeeec;
background-color: inherit;
}
#nav_bar font.no_link {
font-style: italic;
color: inherit;
background-color: inherit;
}
#nav_bar a {
color: black; /* necessary: IE6 ignores 'inherit' */
background-color: inherit;
}
#nav_bar a:hover {
color: #fce94f;
background-color: inherit;
}
/***************************** header **************************/
#top {
color: #eeeeec;
background-color: #cc0000;
background-image: url(vert_grad_red.png);
background-position: top;
width: 100%;
margin: 0;
padding: 2px 3px 2px 3px;
}
#top * {
background-color: transparent;
}
#title {
text-align: left;
}
#title * {
padding: 0;
margin: 0;
}
#title h1 {
font-weight: bold;
letter-spacing: -1px;
}
#perm_nav {
padding: 0;
margin: 0;
text-align: right;
}
#perm_nav * {
padding: 0;
margin: 0;
}
#perm_nav p {
padding: 1px 0 2px 0;
}
#perm_nav a {
font-weight: bold;
color: #eeeeec;
background-color: inherit;
}
#perm_nav a:hover {
color: #fce94f;
background-color: inherit;
}
#top form {
font-size: 85%;
margin: 2px 0 2px 0;
}
#top form select {
background-color: #d3d7c4;
margin-right: 4px;
}
#top form select:hover {
background-color: #eeeeec;
}
#top form button {
border-color: #ef2929;
border-style: groove;
background-color: #f57900;
margin-left: 3px;
}
#top form button:hover {
background-color: #fcaf3e;
}
/******************************* content ************************/
#main_content {
padding-left: 3%;
padding-right: 1%;
}
#main_content #info_title {
color: #eeeeec;
background-color: #729fcf;
background-image: url(horiz_grad_blue_long.png);
background-position: left;
margin-left: 20%; /* no background coloring behind the nav bar */
margin-top: 0.5%;
margin-right: 0.2%;
margin-bottom: 0.2%;
text-align: center;
font-size: 125%;
font-style: italic;
}
#main_content li { list-style: none; }
#main_content button { margin-top: 12px; }
#main_content ul {
line-height: 1.8em;
list-style: none;
margin-left: 5px;
}
#main_content ul li {
padding-top: 2px;
padding-bottom: 2px;
}
#main_content ul li ul { font-size: 85%; }
#main_content ul li ul li {
padding-top: 0px;
padding-bottom: 0px;
}
#main_content > fieldset { /* sub-fieldsets do not need margin/padding */
padding: 5px 5px 10px 5px; /* IE6 acts weird for %-values */
}
#main_content fieldset p {
margin-left: 10px;
}
#main_content fieldset form ul { padding-left: 10px; }
#main_content fieldset form ul li ul { padding-left: 25px; }
#main_content table.list_select {
table-layout: fixed;
width: 100%;
text-align: left;
line-height: 1.2em;
border-width: 0;
padding-right: 0;
}
#main_content table.list_select td {
padding-left: 5px;
}
#main_content table.subscribe_log {
border-collapse: separate;
border-spacing: 10px 3px;
}
#main_content div.introduction {
font-size: 80%;
}
#main_content div.warning,
#main_content div.error,
#main_content div.success {
margin-left: 30%; /* we have to include the width of the nav-bar */
margin-right: 10%;
margin-top: 2%;
margin-bottom: 3%;
padding: 2%;
text-align: center;
font-style: italic;
font-size: 90%;
}
#main_content div.success,
#main_content div.warning,
#main_content div.error {
color: #2e3436;
background-color: inherit; /* just to avaid css syntax warnings */
}
#main_content div.success { background-color: #40d070; }
#main_content div.warning { background-color: #ef2929; }
#main_content div.error { background-color: #a40000; }
#main_content table.gnupg_keys td {
padding-right: 10px;
}
#main_content table.subscribers {
border-width: 0;
margin: 0;
padding: 1%;
width: 100%;
}
#main_content table.subscribers tr, #main_content table.subscribers td {
margin: 0;
padding: 0;
}
#main_content button {
color: #555753;
background-color: #d3d7cf;
border: 1px dotted #555753;
font-size: 90%;
}
#main_content button:hover {
color: #555753;
background-color: #d3d7cf;
border: 1px dotted #ace149;
font-size: 90%;
}
/************************** footer ******************************/
#footer {
color: #eeeeec;
background-color: #cc0000;
background-image: url(vert_grad_red.png);
background-position: center;
clear: left; /* do not overlap with left navigation bar */
text-align: center;
font-size: 90%;
margin: 10px 0 0 0;
padding: 3px;
}
#footer * { background-color: transparent; }
#footer a,
#footer a:visited {
color: #fce94f;
background-color: transparent;
}