Initial commit.
This commit is contained in:
292
www/media/idf/css/style.css
Normal file
292
www/media/idf/css/style.css
Normal file
@@ -0,0 +1,292 @@
|
||||
/*
|
||||
# ***** BEGIN LICENSE BLOCK *****
|
||||
# This file is part of InDefero, an open source project management application.
|
||||
# Copyright (C) 2008 Céondo Ltd and contributors.
|
||||
#
|
||||
# InDefero is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# InDefero is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
# ***** END LICENSE BLOCK ***** */
|
||||
|
||||
.yui-g {
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
div.context {
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
/**
|
||||
* Form
|
||||
*/
|
||||
table.form th, table.form td {
|
||||
border: none;
|
||||
vertical-align: top;
|
||||
}
|
||||
table.form th {
|
||||
text-align: right;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.px-message-error {
|
||||
padding-left: 37px;
|
||||
background: url("../img/dialog-error.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 3px 0;
|
||||
color: #c00;
|
||||
font-weight: bold;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
ul.errorlist {
|
||||
color: #c00;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.user-messages {
|
||||
border: 1px solid rgb(229, 225, 169);
|
||||
background-color: #fffde3;
|
||||
margin-bottom: 1em;
|
||||
margin-left: -1px;
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Recent issues
|
||||
*/
|
||||
table.recent-issues {
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
table.recent-issues th {
|
||||
background-color: #e4e8E0;
|
||||
vertical-align: top;
|
||||
border-color: #d3d7cf;
|
||||
}
|
||||
|
||||
table.recent-issues tr {
|
||||
border-left: 1px solid #d3d7cf;
|
||||
border-right: 1px solid #d3d7cf;
|
||||
border-bottom: 1px solid #d3d7cf;
|
||||
}
|
||||
|
||||
table.recent-issues td {
|
||||
border: none;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
table.recent-issues tfoot th {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
table.recent-issues tfoot th a {
|
||||
color: #000;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
table.recent-issues th a.px-current-page {
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
span.px-sort {
|
||||
font-weight: normal;
|
||||
font-size: 70%;
|
||||
white-space: nowrap;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
span.px-header-title {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/**
|
||||
* Issue
|
||||
*/
|
||||
p.issue-comment-text {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
div.issue-comment {
|
||||
border-left: 3px solid #8ae234;
|
||||
border-bottom: 1px solid #d3d7cf;
|
||||
border-right: 1px solid #d3d7cf;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
div.issue-comment-first {
|
||||
border-top: 1px solid #d3d7cf;
|
||||
}
|
||||
|
||||
div.issue-comment-signin {
|
||||
-moz-border-radius: 0 0 3px 3px;
|
||||
-webkit-border-radius: 0 0 3px 3px;
|
||||
background-color: #d3d7cf;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
div.issue-comment-signin a {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
div.issue-changes {
|
||||
background-color: #d3d7cf;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
padding: 4px;
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
div.issue-submit-info {
|
||||
background-color: #d3d7cf;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
padding: 0.5em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
span.label {
|
||||
color: #204a87;
|
||||
padding-left: 0.5em;
|
||||
}
|
||||
|
||||
a.label {
|
||||
color: #204a87;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
span.nobrk {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
hr { visibility: hidden; }
|
||||
|
||||
textarea {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
h1.title {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h1.project-title {
|
||||
font-weight: normal;
|
||||
float: right;
|
||||
z-index: 100;
|
||||
text-align: right;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.note {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
.smaller {
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
.helptext {
|
||||
font-size: 80%;
|
||||
color: #555753;
|
||||
}
|
||||
|
||||
div.container {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tabs
|
||||
*/
|
||||
#main-tabs a {
|
||||
background-color: #d3d7cf;
|
||||
-moz-border-radius: 3px 3px 0 0;
|
||||
-webkit-border-radius: 3px 3px 0 0;
|
||||
padding: 4px 4px 0 4px;
|
||||
text-decoration: none;
|
||||
color: #2e3436;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
#main-tabs a.active {
|
||||
background-color: #a5e26a;
|
||||
}
|
||||
|
||||
#sub-tabs {
|
||||
background-color: #a5e26a;
|
||||
-moz-border-radius: 0 3px 3px 3px;
|
||||
-webkit-border-radius: 0 3px 3px 3px;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
#sub-tabs a {
|
||||
color: #2e3436;
|
||||
}
|
||||
|
||||
#sub-tabs a.active {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Autocomplete.
|
||||
*/
|
||||
.ac_results {
|
||||
padding: 0px;
|
||||
border: 1px solid black;
|
||||
background-color: white;
|
||||
overflow: hidden;
|
||||
z-index: 99999;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.ac_results ul {
|
||||
width: 100%;
|
||||
list-style-position: outside;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ac_results li {
|
||||
margin: 0px;
|
||||
padding: 2px 5px;
|
||||
cursor: default;
|
||||
display: block;
|
||||
/*
|
||||
if width will be 100% horizontal scrollbar will apear
|
||||
when scroll mode will be used
|
||||
*/
|
||||
/*width: 100%;*/
|
||||
font: menu;
|
||||
font-size: 12px;
|
||||
/*
|
||||
it is very important, if line-height not setted or setted
|
||||
in relative units scroll will be broken in firefox
|
||||
*/
|
||||
line-height: 16px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.ac_loading {
|
||||
background: white url('../img/indicator.gif') right center no-repeat;
|
||||
}
|
||||
|
||||
.ac_odd {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
.ac_over {
|
||||
background-color: #4e9a06;
|
||||
color: white;
|
||||
}
|
||||
Reference in New Issue
Block a user