|
|
c54774 |
/*
|
|
|
c54774 |
* default-centos.css -- The mantisBT (v1.1.8) default visual style
|
|
|
c54774 |
* customized by The CentOS Project.
|
|
|
c54774 |
*
|
|
|
c54774 |
* Copyright (C) 2013 The CentOS Project
|
|
|
c54774 |
*
|
|
|
c54774 |
* This CSS is free software; you can redistribute it and/or modify it
|
|
|
c54774 |
* under the terms of the GNU General Public License as published by
|
|
|
c54774 |
* the Free Software Foundation; either version 2 of the License, or
|
|
|
c54774 |
* (at your option) any later version.
|
|
|
c54774 |
*
|
|
|
c54774 |
* This CSS is distributed in the hope that it will be useful, but
|
|
|
c54774 |
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
c54774 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
c54774 |
* General Public License for more details.
|
|
|
c54774 |
*
|
|
|
c54774 |
* You should have received a copy of the GNU General Public License
|
|
|
c54774 |
* along with this program; if not, write to the Free Software
|
|
|
c54774 |
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
c54774 |
*
|
|
|
c54774 |
*/
|
|
|
c54774 |
|
|
|
c54774 |
/* Reset browsers default margins and paddings */
|
|
|
c54774 |
* {
|
|
|
c54774 |
margin: 0;
|
|
|
c54774 |
padding: 0;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
/* Define html */
|
|
|
c54774 |
|
|
|
c54774 |
html {
|
|
|
c54774 |
background-image:url(../images/html-background.png);
|
|
|
c54774 |
background-color: #FFF;
|
|
|
c54774 |
font-family: "DejaVu Sans", "Liberation Sans", sans-serif;
|
|
|
c54774 |
font-size: 0.85em;
|
|
|
c54774 |
line-height: 1.25em;
|
|
|
c54774 |
/* margin: 0; /* <- full screen */
|
|
|
c54774 |
margin: 0 30px 0 30px; /* <- with 30px of left and right margin */
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
body {
|
|
|
c54774 |
background-color: #ffffff;
|
|
|
c54774 |
color: #000000;
|
|
|
c54774 |
padding: 0 10px;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
/* Links */
|
|
|
c54774 |
|
|
|
c54774 |
a:link { text-decoration: none; color: #1865A6; cursor: pointer; }
|
|
|
c54774 |
a:link:hover { text-decoration: underline; color: green; }
|
|
|
c54774 |
a:link:active { text-decoration: underline; color: green; }
|
|
|
c54774 |
a:visited { text-decoration: none; color: #1865A6; }
|
|
|
c54774 |
a:visited:hover { text-decoration: underline; color: green; }
|
|
|
c54774 |
|
|
|
c54774 |
#header {
|
|
|
c54774 |
background-color: #1865A6;
|
|
|
c54774 |
background-image: url("../images/header-background.png");
|
|
|
c54774 |
margin-bottom: 5px;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
#logo {
|
|
|
c54774 |
float:left;
|
|
|
c54774 |
/* For text only logo */
|
|
|
c54774 |
font-size: 1.4em;
|
|
|
c54774 |
font-weight: bold;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
#logo img {
|
|
|
c54774 |
margin-left: 10px;
|
|
|
c54774 |
vertical-align: middle;
|
|
|
c54774 |
border: 0;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
#logo a {
|
|
|
c54774 |
color: white;
|
|
|
c54774 |
text-decoration: none;
|
|
|
c54774 |
border: 0;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
.pageline {
|
|
|
c54774 |
clear: both;
|
|
|
c54774 |
width: 100%;
|
|
|
c54774 |
/* sync these values, line-height is needed for IE */
|
|
|
c54774 |
height: 5px;
|
|
|
c54774 |
line-height: 5px;
|
|
|
c54774 |
border: none;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
.pageline.blue {
|
|
|
c54774 |
background: #5FA1D8;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
/* Information about Login */
|
|
|
c54774 |
|
|
|
c54774 |
form[name=login_form] table,
|
|
|
c54774 |
form[name=signup_form] table,
|
|
|
c54774 |
form[name=lost_password_form] table {
|
|
|
c54774 |
margin-top: 2em;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
/* Form Elements */
|
|
|
c54774 |
|
|
|
c54774 |
input[type=text],
|
|
|
c54774 |
input[type=password],
|
|
|
c54774 |
textarea {
|
|
|
c54774 |
padding: 2px;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
input,
|
|
|
c54774 |
select {
|
|
|
c54774 |
vertical-align: middle;
|
|
|
c54774 |
font-size: x-small;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
form {
|
|
|
c54774 |
display: inline;
|
|
|
c54774 |
margin: 0;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
/* Paragraphs */
|
|
|
c54774 |
|
|
|
c54774 |
p {
|
|
|
c54774 |
margin: 1em 0 1.5em 0;
|
|
|
c54774 |
line-height: 1.5em;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
/* Tables */
|
|
|
c54774 |
|
|
|
c54774 |
table { clear: both; }
|
|
|
c54774 |
table.border_black { border: 1px solid #000; }
|
|
|
c54774 |
table.hide { font-size: x-small; width: 100%; }
|
|
|
c54774 |
table.hide table.width100 { font-size: 1.25em; width: 100%; }
|
|
|
c54774 |
table.width100 { width: 100%; border: solid 1px #CCC; margin: 5px 0; }
|
|
|
c54774 |
table.width75 { width: 75%; border: solid 1px #CCC; margin: 5px 0; }
|
|
|
c54774 |
table.width60 { width: 60%; border: solid 1px #CCC; margin: 5px 0; }
|
|
|
c54774 |
table.width50 { width: 50%; border: solid 1px #CCC; margin: 5px 0; }
|
|
|
c54774 |
|
|
|
c54774 |
table div { margin: 5px 0 5px 0; }
|
|
|
c54774 |
|
|
|
c54774 |
td { padding: 0.5em; text-align: left; };
|
|
|
c54774 |
td img.icon_sort { float:right; padding-right: 3px; padding-left: 3px; }
|
|
|
c54774 |
|
|
|
c54774 |
td.center { text-align: center; }
|
|
|
c54774 |
td.left { text-align: left; }
|
|
|
c54774 |
td.right { text-align: right; }
|
|
|
c54774 |
td.category { background-color: #EAE1EE; color: #000000; font-weight: bold; vertical-align : top; }
|
|
|
c54774 |
|
|
|
c54774 |
td.col-1 { background-color: #EAF3F9; color: #000000; }
|
|
|
c54774 |
td.col-2 { background-color: #EAF3F9; color: #000000; }
|
|
|
c54774 |
td.form-title { font-weight: bold; text-align: left; background-color: #FFFFFF; background-image: url(../images/h2-background.png); }
|
|
|
c54774 |
td.nopad { padding: 0px; }
|
|
|
c54774 |
td.spacer { display: none; }
|
|
|
c54774 |
td.small-caption { }
|
|
|
c54774 |
td.print { text-align: left; padding: 2px; }
|
|
|
c54774 |
td.print-category { color: #000000; font-weight: bold; text-align: right; padding: 2px; }
|
|
|
c54774 |
td.print-bottom { border-bottom: 1px solid #000000; }
|
|
|
c54774 |
td.print-spacer { background-color: #ffffff; color: #000000; font-size: 1pt; line-height: 0.1; padding: 0px;}
|
|
|
c54774 |
|
|
|
c54774 |
tr {}
|
|
|
c54774 |
tr.title { background-color: #FFF; background-image: url("../images/h2-background.png");}
|
|
|
c54774 |
tr.row-1 { background-color: #EAF3F9; color: #000000; }
|
|
|
c54774 |
tr.row-2 { background-color: #D8E9F4; color: #000000; }
|
|
|
c54774 |
tr.row-category { background-color: #EAE1EE; color: #000000; font-weight: bold;}
|
|
|
c54774 |
tr.row-category td { text-align:center; }
|
|
|
c54774 |
tr.row-category2 { background-color: #EAE1EE; color: #000000; }
|
|
|
c54774 |
tr.row-category-history { background-color: #EAE1EE; color: #000000; font-weight: bold;}
|
|
|
c54774 |
tr.row-category-history td { text-align: left; }
|
|
|
c54774 |
tr.vcenter { vertical-align: middle; }
|
|
|
c54774 |
tr.print { vertical-align: top; }
|
|
|
c54774 |
tr.print-category { color: #000000; font-weight: bold; }
|
|
|
c54774 |
tr.spacer { display: none; }
|
|
|
c54774 |
|
|
|
c54774 |
#buglist tr { text-align: center; }
|
|
|
c54774 |
#buglist tr:last-child { font-size: x-small; }
|
|
|
c54774 |
|
|
|
c54774 |
tr.bugnote { vertical-align: top; }
|
|
|
c54774 |
td.bugnote-public { background-color: #EAE1EE; color: #000000; font-weight: bold; width: 25%; line-height: 1.4; }
|
|
|
c54774 |
td.bugnote-private { background-color: #EAF3F9; color: #000000; font-weight: bold; width: 25%; line-height: 1.4; }
|
|
|
c54774 |
td.bugnote-note-public { background-color: #EAF3F9; color: #000000; width: 75%; }
|
|
|
c54774 |
td.bugnote-note-private { background-color: #EAF3F9; color: #000000; width: 75%; }
|
|
|
c54774 |
|
|
|
c54774 |
td.login-info-left { width: 40%; padding: 0px; text-align: left; padding-left: 10px; }
|
|
|
c54774 |
td.login-info-middle { width: 20%; padding: 0px; text-align: center; }
|
|
|
c54774 |
td.login-info-right { width: 40%; padding: 0px; text-align: right; white-space: nowrap; }
|
|
|
c54774 |
|
|
|
c54774 |
td.menu { background-color: #EAF3F9; color: #000000; padding: 3px; padding-left: 10px; font-size: small; }
|
|
|
c54774 |
td.menu a { white-space: nowrap; }
|
|
|
c54774 |
|
|
|
c54774 |
td.news-heading-public { background-image: url(../images/h2-background.png); color: #000000; text-align: left; border-bottom: 1px solid #ccc; padding: 5px; }
|
|
|
c54774 |
td.news-heading-private { background-image: url(../images/h2-background.png); color: #000000; text-align: left; border-bottom: 1px solid #ccc; }
|
|
|
c54774 |
|
|
|
c54774 |
td.news-body { background-color: #ffffff; color: #000000; padding: 1.3em; line-height: 1.5em; }
|
|
|
c54774 |
|
|
|
c54774 |
/* Quick summary. Element displayed near titles
|
|
|
c54774 |
* with the amount of opened and assigned issues. */
|
|
|
c54774 |
|
|
|
c54774 |
/* Miscellaneous */
|
|
|
c54774 |
|
|
|
c54774 |
.center { text-align: center; }
|
|
|
c54774 |
.left { text-align: left; }
|
|
|
c54774 |
.right { text-align: right; }
|
|
|
c54774 |
.small { }
|
|
|
c54774 |
.small-normal { }
|
|
|
c54774 |
.small-subprojects { }
|
|
|
c54774 |
.bold { font-weight: bold; }
|
|
|
c54774 |
.bold-small { font-weight: bold; font-size: small; }
|
|
|
c54774 |
.italic { font-style: italic; }
|
|
|
c54774 |
.italic-small { font-style: italic; font-weight: normal; }
|
|
|
c54774 |
.underline { text-decoration: underline; }
|
|
|
c54774 |
.underline-small { text-decoration: underline; font-size: small; }
|
|
|
c54774 |
.strike { text-decoration: line-through; }
|
|
|
c54774 |
.strike-small { text-decoration: line-through; font-size: small; }
|
|
|
c54774 |
.quick-summary-left { float: left; margin: 0 10px 20px; font-size: x-small; }
|
|
|
c54774 |
.quick-summary-right { float: right; margin: 0 10px 20px; font-size: x-small; }
|
|
|
c54774 |
.border-center { text-align: center; }
|
|
|
c54774 |
|
|
|
c54774 |
span.print { }
|
|
|
c54774 |
span.required { color: #bb0000; }
|
|
|
c54774 |
span.small { font-weight: normal; }
|
|
|
c54774 |
span.pagetitle { font-weight: bold; text-align: center; }
|
|
|
c54774 |
span.bracket-link { white-space: nowrap; font-size: small; }
|
|
|
c54774 |
|
|
|
c54774 |
/* Set nested tables bottom margin. */
|
|
|
c54774 |
table.width100 table.width100 { margin-bottom: 10px; }
|
|
|
c54774 |
|
|
|
c54774 |
/* Hide br and hr tags. They consume too much space. */
|
|
|
c54774 |
br, hr { display: none;}
|
|
|
c54774 |
/* Show br and hr tags only when it is absolutely needed. */
|
|
|
c54774 |
div.center > br,
|
|
|
c54774 |
hr.pageline { display: block;}
|
|
|
c54774 |
|
|
|
c54774 |
/* Footer */
|
|
|
c54774 |
|
|
|
c54774 |
body > table:last-child {
|
|
|
c54774 |
/* ------------------------------------------------------*/
|
|
|
c54774 |
/* Here you can hide the table that mantis uses for its */
|
|
|
c54774 |
/* copyright and supported link information. */
|
|
|
c54774 |
/* ------------------------------------------------------*/
|
|
|
c54774 |
/* display: none; */
|
|
|
c54774 |
font-size: x-small;
|
|
|
c54774 |
line-height: 1.5em;
|
|
|
c54774 |
color: #333;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
body > table:last-child div {
|
|
|
c54774 |
padding: 0;
|
|
|
c54774 |
margin: 0;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
body > table:last-child td {
|
|
|
c54774 |
padding: 10px 0 0 0;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
#footer {
|
|
|
c54774 |
clear: both;
|
|
|
c54774 |
background: #204C8D url("../images/header-background.png") 0 0 repeat;
|
|
|
c54774 |
margin-top: 1em;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
#credits {
|
|
|
c54774 |
text-align: left;
|
|
|
c54774 |
font-size: x-small;
|
|
|
c54774 |
color: #EEE;
|
|
|
c54774 |
padding: 1em;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
#credits a {
|
|
|
c54774 |
color: #EEE;
|
|
|
c54774 |
}
|
|
|
c54774 |
|
|
|
c54774 |
#credits p { padding: 0; margin: 0; }
|
|
|
c54774 |
|
|
|
c54774 |
#credits a:hover {
|
|
|
c54774 |
text-decoration: underline;
|
|
|
c54774 |
}
|