Scarab commit: svn commit: r11347 - branches/scarab_11079_legacy_with_ant_maven1/src/webapp/skins/modern.css
[email protected] Thu, 7 Aug 2014 02:13:37 -0700 (PDT)
| Newsgroups | gmane.comp.java.scarab.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: dabbous
Date: 2014-08-07 02:13:36-0700
New Revision: 11347
Modified:
branches/scarab_11079_legacy_with_ant_maven1/src/webapp/skins/modern.css
Log:
added css styling for comment blocks (pre)
Modified: branches/scarab_11079_legacy_with_ant_maven1/src/webapp/skins/modern.css
Url: http://scarab.tigris.org/source/browse/scarab/branches/scarab_11079_legacy_with_ant_maven1/src/webapp/skins/modern.css?view=diff&pathrev=11347&r1=11346&r2=11347
==============================================================================
--- branches/scarab_11079_legacy_with_ant_maven1/src/webapp/skins/modern.css (original)
+++ branches/scarab_11079_legacy_with_ant_maven1/src/webapp/skins/modern.css 2014-08-07 02:13:36-0700
@@ -1,1614 +1,1644 @@
-/*
- This is an intermediate work in progress.
- The css declarations here have been
- merged from
-
- tigris.css
- inst.css
- scarab.css
-
- The declarations are now less redundant and commented out declarations have
- been removed for sanity.
-
- I will now work from 2 sides in parallel:
-
- 1.) I will remove embedded style definitions from the velocity files
- and place them into this css sheet.
-
- 2.) I will rework the allready existing style definitions using the
- structure in the file "generalLayoutStructure.png" (in this folder here)
- following styles are currently identified:
-
- page overall page definitions (class of body)
-
- header page header section
- breadcrumb
- authentification
-
- banner banner section
- aplicationLogo
- applicationDescription
-
- applicationFunctions functionbar section (valid for the entire application)
- homeButton
- moduleButton
-
- canvas Here we will find the application pages
- toolboxCanvas
- applicationCanvas
-
- footer page footer section
- atomButton
- rssButton
- urlButton
- footerDescription (new, used for additional text in the footer section)
-
- button generic button
- input generic input field
- selector generic selector box
-
- IMPORTANT NOTES:
- ================
-
- 1.) During the migration i will use the prependix "scb-" as a temporary name
- convention in order to distinguish the existing style definitions from
- the new definitions. Once the GUI refactoring is done, i will remove the
- prependix and we end with the names declared above!
-
- 2.) I will use plain HTML-markup wherever it is possible. So i will not mention
- styles related to HTML-markup in the list above
-
- 3.) The list above is a work in progress. It may change over time and it will
- certainly grow.
-
-*/
-
-
-/* =========================================== */
-/* The top level page style (attached to body) */
-/* =========================================== */
-
-.scb_page {
- margin: 0;
- padding: 0;
-}
-
-
-/* =========================================== */
-/* The banner section ======================== */
-/* =========================================== */
-
-#scb_banner {
- font-size: 1.25em;
- border-top: 1px solid #369;
- background-color: #ccc;
- _background-image:url(companylogo.png);
- background-position: center top;
- height:50px;
- color: #fff;
-}
-
-#scb_banner a:active,#scb_banner a:hover {
- color: #ccc !important;
-}
-
-#scb_banner table {
- border-style:none;
- margin:8px;
- padding:0px;
- width:100%;
-}
-
-/* ================================================ */
-/* The breadcrumbs section ======================== */
-/* ================================================ */
-
-#breadcrumbs {
- border-top: 1px solid #555;
- background-color: #333;
- padding: 2px 8px;
- font-size: x-small;
- color:#ffffff;
-}
-
-#breadcrumbs .logout a {
- text-decoration: none;
- color:red;
-}
-
-#breadcrumbs .location {
- font-weight:normal;
-}
-
-#breadcrumbs a,
-#breadcrumbs .issueId,
-#breadcrumbs .issueText,
-#breadcrumbs .logout,
-#breadcrumbs .username{
- font-weight:bold;
-}
-
-#breadcrumbs .username {
- font-size: 90%;
-}
-
-
-/* ====================================================== */
-/* Style for a java script calendar */
-/* NOTE: The calendar visibility MUST be set to invisible */
-/* ====================================================== */
-.scb_calendar {
- position:absolute;
- visibility:hidden;
- background-color:white;
- layer-background-color:white;
- z-index:1;
-}
-
-/* ======================================================= */
-/* the iframe fixes IE6 select overlay bug: */
-/* http://stackoverflow.com/questions/7937/\ */
-/* solve-the-ie-select-overlap-bug */
-/* ======================================================= */
-.scb_calendar iframe {
- position: absolute;
- z-index: -1;
- filter: mask();
- border: 0;
- margin: 0;
- padding: 0;
- top: 0;
- left: 0;
- width: 1px;
- height: 1px;
- overflow: hidden;
-}
-
-
-.hint {
- font-size:80%;
- color:#6d9cc1;
-}
-
-
-/* ====================================================== */
-/* Button section ... */
-/* ====================================================== */
-
-a.button, input.button, input.button3, input.buttonActive, input.buttonPassive, input.buttonNotify, .watch_on, .watch_off {
- width:auto;
- padding-right: 5px;
- padding-left :10px;
- margin-right :5px;
- overflow:visible;
- border: 0;
- color: #333;
- height: 18px;
- /* used to catch the buttonEnding */
- position: relative;
- cursor: pointer;
-}
-
-a.button, a.button:active, a.button:visited {
- display:inline-block;
- font-size:0.8em;
- height:18px;
- padding-top:5px;
- vertical-align:middle;
- text-decoration:none;
- color:black;
-}
-
-.buttonEnding, .button3Ending, .buttonActiveEnding, .buttonPassiveEnding, .buttonNotifyEnding {
- position: absolute;
- display: inline;
- margin-left: -12px;
- width: 10px;
- height: 18px;
- margin-right:10px;
-}
-
-.watch_on {
- background: url(images/watchOn.jpg) no-repeat;
- width: 25px;
- height: 22px;
-}
-
-.watch_off {
- background: url(images/watchOff.jpg) no-repeat;
- width: 25px;
- height: 22px;
-}
-
-input.button, a.button {
- _background: url(images/button_passive_begin.gif) no-repeat;
-}
-
-input.button3 {
- background: url(images/button3_passive_begin.jpg) no-repeat;
-}
-
-input.buttonActive {
- background: url(images/button_active_begin.png) no-repeat;
-}
-
-input.buttonPassive {
- background: url(images/button_passive_begin.gif) no-repeat;
-}
-
-input.buttonNotify {
- background: url(images/button_passive_begin.gif) no-repeat;
-}
-
-.buttonEnding {
- margin-left: -10px;
- width: 10px;
- _background: url(images/button_passive_end.gif) no-repeat;
-}
-
-.button3Ending {
- margin-left: -10px;
- width: 10px;
- _background: url(images/button3_passive_end.jpg) no-repeat;
-}
-
-.buttonActiveEnding {
- background: url(images/button_active_checked.png) no-repeat;
-}
-
-.buttonPassiveEnding {
- background: url(images/button_passive_unchecked.png) no-repeat;
-}
-
-.buttonNotifyEnding {
- background: url(images/button_end_transmit_blue.png) no-repeat;
-}
-
-a.date {
- background-image: url(images/date.gif);
- background-repeat: no-repeat;
- width:18px;
- height:15px;
- display:inline-block;
- vertical-align:middle;
-}
-
-a.configure_list {
- margin-left:10px;
- background-image: url(images/customize.gif);
- background-repeat: no-repeat;
- width:16px;
- height:16px;
- display:inline-block;
- vertical-align:middle;
-}
-
-a.next_issue, a.prev_issue, a.first_issue, a.last_issue, .current_issue,
-a.next_element, a.previous_element {
- text-decoration:none;
- background-repeat: no-repeat;
- background-position:center;
- display:inline-block;
- vertical-align:middle;
-
- border-color: #B08080 #B08080 #D0B0B0 #D0B0B0;
- border-radius: 5px;
- border-style:solid;
- border-width:2px;
- padding:2px 8px;
-}
-
-a.next_element {
- background-image: url(images/icon_right.gif);
- padding:7px 8px;
-}
-
-a.previous_element {
- background-image: url(images/icon_left.gif);
- padding:7px 8px;
-}
-
-
-/* ============================================================== */
-/* Issue editor */
-/* ============================================================== */
-
-#properties div.header{
-}
-#properties div.header div.group {
- float:left;
- display:inline;
- padding-bottom:10px;
-}
-#properties div.header div.group th, span.displayValue {
- background-color: none;
-}
-#properties div.header div.group td {
- font-size:0.9em;
-}
-
-span.displayValue {
- color:black;
- text-align:right;
- font-family:Verdana,Helvetica,Arial,sans-serif;
- font-size:1em;
- font-weight:bold;
- margin-left:15px;
-}
-
-th.displayLabel {
- text-align:right;
-}
-
-a.next_issue {
- background-image: url(images/icon_right.gif);
-}
-a.prev_issue {
- background-image: url(images/icon_left.gif);
-}
-a.first_issue {
- background-image: url(images/icon_first.gif);
-}
-a.last_issue {
- background-image: url(images/icon_last.gif);
-}
-
-.issue_counter {
- text-decoration:none;
- background-repeat: no-repeat;
- display:inline-block;
- vertical-align:middle;
- padding:2px 8px;
-}
-
-.current_issue {
- border-width:1px;
- padding:2px 12px;
-}
-
-/* ============================================================== */
-/* Issue comments */
-/* ============================================================== */
-
-/*
- provide a cross browser compatible pre which uses auto
- word wrap for long lines:
-*/
-.comment {
- white-space: pre-wrap; /* css-3 */
- white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
- white-space: -pre-wrap; /* Opera 4-6 */
- white-space: -o-pre-wrap; /* Opera 7 */
- word-wrap: break-word; /* Internet Explorer 5.5+ */
- _white-space:pre;
-}
-
-.scb_comment {
- _margin-top:20px;
-}
-
-.scb_comment .content {
- margin-top:5px;
- margin-left:42px;
-}
-
-.scb_comment .content .comment {
- margin-top:0px;
- background-color:#f8f8f8;
- margin:0px;
- padding:10px;
-}
-
-.scb_comment .counter {
- margin-right:10px;
-}
-
-
-td.accessible {
- background-color:#0f0;
-}
-
-td.restricted {
- background-color:#eee;
-}
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* ==== From here on downwards the refactoring must still take place. ==== */
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-
-//div.axial {
-// background-color:#dddddd;
-//}
-
-div.axial-footer {
- background-color:#dddddd;
- margin-left:2px;
- margin-right:2px;
- white-space:nowrap;
-}
-
-/* ============================================================== */
-/* tigris.css */
-/* ============================================================== */
-/* $Id: tigris.css,v 1.9 2003/04/10 22:58:32 tfahrner Exp $
-
- This file defines basic default formatting for HTML conforming to Tigris application style. To extend or override these rules for your instance, edit inst.css instead of this file. */
-/* colors, backgrounds, borders, link indication */
-
-body {
- background: #fff;
- color: #000;
-}
-
-.functnbar,.functnbar2 {
- background-color: #bbb;
-}
-
-.functnbar2,.functnbar3 {
- background-color: #aaa;
- background-image: url("../images/sw_maj_rond.gif");
- background-repeat: no-repeat;
- background-position: bottom left;
-}
-
-.footer {
- margin-left:2px;
- margin-right:2px;
- background-color:#F8F8F8;
- white-space:nowrap;
-}
-
-input[type='text'], input[type='password'] {
- border-radius: 5px;
- border-style:solid;
- border-color:#d0d0d0;
- background-color:#fff;
-}
-
-treeview_button, select, input[type='submit'], input[type='reset'], input[type='file'] {
- border-radius: 5px;
- padding:2px;
- padding:3px\9;
- padding-right:4px\9;
- padding-left:4px\9;
- border-style:solid;
- border-color:#b08080 #b08080 #d0B0B0 #d0B0B0;
- background-color:#e8e8e8;
- border-width:2px;
- color:#000000;
-
-}
-
-
-textarea{
- font-size: 1em;
-}
-
-//input[type='submit']{
-// border-style:solid;
-// border-width:1px;
-// border-color:#808080;
-// border-radius: 5px;
-// cursor:pointer;
-// background-color:#fef8fe;
-//}
-
-.functnbar a,.functnbar2 a,.functnbar3 a {
- color: #000;
- text-decoration: underline;
-}
-
-#navcolumn .body div,body.docs #toc li li {
- background-image: url("../images/strich.gif");
- background-repeat: no-repeat;
- background-position: .5em .5em;
-}
-
-div div.sublist {
- margin-left:10px;
- background-image: none;
- font-weight:normal;
-}
-
-.scarab-toolgroup div.list-header a {
- font-weight:bold;
-}
-
-div#navcolumn div.list-header a {
- color:#000000;
-}
-
-
-
-
-
-#searchbox .body div,#navcolumn .body .heading {
- background-image: none;
-}
-
-
-a:link .selfref,a:visited .selfref {
- color: #555 !important;
- text-decoration: none;
-}
-
-a:active,a:hover,#leftcol a:active,#leftcol a:hover {
- color: #b00000 !important;
-}
-
-#leftcol a {
- text-decoration: none;
-}
-
-.a td {
- background-color: #ddd;
-}
-
-.b td {
- background-color: #efefef;
-}
-
-table,th,td {
- border: none;
-}
-
-div.colbar {
- background: #eee;
- border-color: #999 #EEE #EEE #999;
- border-width: 1px;
- border-style: solid;
- padding: 3px;
- margin: 2px 2px 0;
-}
-
-.toolgroup .label {
- padding: 4px;
- border-bottom: 1px solid #666;
- border-right: 1px solid #666;
- background: #ddd;
- color: #555;
-}
-
-.toolgroup .body {
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- padding: 4px 4px 4px 0;
-}
-
-
-}
-#main {
- border-top: 1px solid #999;
-}
-
-#rightcol div.www,#rightcol div.help {
- border: 1px solid #ddd;
- padding: 0 .5em;
-}
-
-body.docs div.docs {
- background-color: #fff;
- border-left: 1px solid #ddd;
- border-top: 1px solid #ddd;
- margin: 61px 0 0 150px;
- padding: 1em 2em 1em 1em !important;
-}
-
-#helptext .label {
- background-image: url("../images/icon_help_sml.gif");
- background-repeat: no-repeat;
- background-position: 97%;
- border-bottom: 1px solid #996;
- border-right: 1px solid #996;
- background-color: #cc9;
-}
-
-body.docs {
- background: #eee url("../images/help_logo.gif") top right no-repeat
- !important;
-}
-
-.docs h3,.docs h4 {
- border-top: solid 1px #000;
-}
-
-#apphead h2 em {
- color: #777;
- font-style: normal;
-}
-
-.app th {
- background-color: #F8F8F8;
-}
-
-.tabs th {
- border-right: 1px solid #333;
- background-color: #ddd;
- color: #fff;
- border-left: 1px solid #fff;
-}
-
-.tabs td {
- background-color: #999;
- border-bottom: 1px solid #fff;
- border-right: 1px solid #fff;
- border-left: 1px solid #fff;
-}
-
-.tabs th,.tabs th a:link,.tabs th a:visited {
- color: #555;
-}
-
-.tabs td,.tabs td a:link,.tabs td a:visited {
- color: #fff;
-}
-
-.tabs a {
- text-decoration: none;
-}
-
-.alert {
- background-color: #ff9;
-}
-
-.expandedwaste {
- background: url("../images/icon_arrowwaste2_sml.gif") no-repeat;
-}
-
-.sortup {
- background: url("../images/icon_sortup.gif") no-repeat;
-}
-
-.sortdown {
- background: url("../images/icon_sortdown.gif") no-repeat;
-}
-
-.collapsedwaste {
- background: url("../images/icon_arrowwaste1_sml.gif") no-repeat;
-}
-
-body .grid td {
- border-top: 1px solid #ccc;
- border-left: 1px solid #ccc;
- background-color: transparent;
-}
-
-.confirm {
- color: #090;
-}
-
-.info {
- color: #069;
-}
-
-.errormessage,.warningmessage,.donemessage,.infomessage {
- border-top: 5px solid #900;
- border-left: 1px solid #900;
- background-repeat: no-repeat;
- background-position: 5px 1.33em;
-}
-.errormessage {
- background-image: url("../images/icon_error_lrg.gif");
-}
-
-.warningmessage {
- background-image: url("../images/icon_warning_lrg.gif");
- border-color: #c60;
-}
-
-.donemessage {
- background-image: url("../images/icon_success_lrg.gif");
- border-color: #090;
-}
-
-.infomessage {
- background-image: url("../images/icon_info_lrg.gif");
- border-color: #069;
-}
-
-.docinfo {
- background: url("../images/icon_doc_lrg.gif") no-repeat;
-}
-
-.dirinfo {
- background: url("../images/icon_folder_lrg.gif") no-repeat;
-}
-
-.memberinfo {
- background: url("../images/icon_members_lrg.gif") no-repeat;
-}
-
-.usergroupinfo {
- background: url("../images/icon_usergroups_lrg.gif") no-repeat;
-}
-.errormark {
- background-image: url("../images/icon_error_sml.gif") no-repeat;
-}
-
-.warningmark {
- background-image: url("../images/icon_warning_sml.gif");
-}
-
-.donemark {
- background-image: url("../images/icon_success_sml.gif");
-}
-
-.infomark {
- background-image: url("../images/icon_info_sml.gif");
-}
-
-.cvsdiff,.cvsblame {
- background-color: #ccc;
-}
-
-.cvsdiffadd {
- background-color: #afa;
-}
-
-.cvsdiffremove {
- background-color: #faa;
-}
-
-.cvsdiffchanges1 {
- background-color: #ff7;
-}
-
-.cvsdiffchanges2 {
- background-color: #ff7;
-}
-
-li.selection ul a {
- background: #fff;
-}
-
-.app .helplink,#helptext .helplink {
- cursor: help;
-}
-
-/* font and text properties, exclusive of link indication, alignment, text-indent */
-body,th,td,input,select,textarea,pre {
- font-family: Verdana, Helvetica, Arial, sans-serif;
-}
-
-code {
- font-family: 'Andale Mono', Courier, monospace;
-}
-
-body,.app h3,.app h4,#rightcol h3,pre,code,#apphead h2 small {
- font-size: x-small;
- voice-family: "\"}\"";
- voice-family: inherit;
- font-size: small;
-}
-
-small,div#footer,div#login,div.tabs th,div.tabs td,input,select,.paginate,.functnbar,.functnbar2,.functnbar3,.courtesylinks,#rightcol div.help,.colbar,.tasknav,body.docs div#toc,#leftcol,.legend,.bars
- {
- font-size: xx-small;
- voice-family: "\"}\"";
- voice-family: inherit;
- font-size: x-small;
-}
-
-.tabs td,.tabs th,dt,.tasknav .selfref,#login .username,.selection {
- font-weight: bold;
-}
-
-li.selection ul {
- font-weight: normal;
-}
-
-h4,table {
- font-size: 1em;
-}
-
-
-/* box properties (exclusive of borders), positioning, alignments, list types, text-indent */
-p,ul,ol,dl,.bars table {
- margin-top: .67em;
- margin-bottom: .67em;
-}
-
-h3,h4 {
- margin-bottom: 0;
-}
-
-form {
- margin: 0;
-}
-
-#bodycol {
- padding-left: 12px;
- padding-right: 12px;
- width: 100%;
- voice-family: "\"}\"";
- voice-family: inherit;
- width: auto;
-}
-
-html>body #bodycol {
- width: auto;
-}
-
-.docs {
- line-height: 1.4;
-}
-
-ol ol {
- list-style-type: lower-alpha;
-}
-
-ol ol ol {
- list-style-type: lower-roman;
-}
-
-.app h3,.app h4 {
- padding: 3px;
- margin-right: 2px;
- margin-left: 2px;
- color: #003366;
-}
-
-.app td,.app th {
- padding: 2px 3px;
-}
-
-.h3 p,.h4 p,.h3 dt,.h4 dt {
- margin-right: 7px;
- margin-left: 7px;
-}
-
-.tasknav {
- margin-bottom: 1.33em;
-}
-
-.tabs {
- border-bottom: 6px #ddd solid;
- margin-top: .67em;
- margin-right: 2px;
- margin-left: 2px;
- padding-left: 8px;
-}
-
-.tabs td,.tabs th {
- padding: 3px 9px;
-}
-
-body.docs #toc {
- position: absolute;
- top: 15px;
- left: 0px;
- width: 120px;
- padding: 0 20px 0 0;
-}
-
-body.docs #toc ul,#toc ol {
- margin-left: 0;
- padding-left: 0;
-}
-
-body.docs #toc li {
- margin-top: 7px;
- padding-left: 10px;
- list-style-type: none;
-}
-
-.docs p+p {
- text-indent: 5%;
- margin-top: -.67em;
-}
-
-.docs h3,.docs h4 {
- margin-bottom: .1em;
- padding-top: .3em;
-}
-
-.functnbar,.functnbar2,.functnbar3 {
- color: #000;
- padding: 5px;
- margin: .67em 2px;
-}
-
-body {
- padding: 1em;
-}
-
-body.composite,body.docs {
- margin: 0;
- padding: 0;
-}
-
-th,td {
- text-align: left;
- vertical-align: top;
-}
-
-.right {
- text-align: right !important;
-}
-
-.center {
- text-align: center !important;
-}
-
-.axial th,.axial th .strut {
- text-align: right;
- font-size:0.9em;
-}
-
-.app .axial td th {
- text-align: left;
-}
-
-body .stb {
- margin-top: 1em;
- text-indent: 0;
-}
-
-body .mtb {
- margin-top: 2em;
- text-indent: 0;
-}
-
-.courtesylinks {
- margin-top: 1em;
- padding-top: 1em;
-}
-
-dd {
- margin-bottom: .67em;
-}
-
-.toolgroup {
- background: #e8e8e8;
- margin-bottom: 6px;
-}
-
-.toolgroup .body div {
- padding-bottom: .3em;
- padding-left: 1em;
-}
-
-.toolgroup .body div div {
- margin-top: .3em;
- padding-bottom: 0;
-}
-
-.messagechild {
- padding-left: 34px;
-}
-
-.expandedwaste,.collapsedwaste,.sortup,.sortdown {
- /* hide from macie5\*/
- float: left;
- /* resume */
- display: inline-block;
- height: 15px;
- width: 34px;
- padding-left: 0 !important;
-}
-
-.sortup,.sortdown {
- width: 20px;
-}
-
-.errormessage,.warningmessage,.donemessage,.infomessage,.docinfo,.dirinfo,.memberinfo,.usergroupinfo
- {
- margin: .67em 0;
- padding: .33em 0 .67em 42px;
- min-height: 32px;
-}
-
-.errormark,.warningmark,.donemark,.infomark {
- background-repeat: no-repeat;
- padding-left: 20px;
- min-height: 15px;
-}
-
-.alt {
- display: none;
-}
-
-#leftcol {
- width: 14em;
-}
-
-.axial th,.axial th .strut,#leftcol .strut {
- width: 13em;
-}
-
-.app h3,.app h4,.bars {
- clear: both;
-}
-
-.legend {
- float: right;
-}
-
-.legend th,.bars th {
- background-color: #fff;
- text-align: right;
- padding-left: 1em;
-}
-
-.bars table {
- table-layout: fixed;
-}
-
-.bars th {
- width: 12em;
-}
-
-#projectdocumentlist td.filebrowse-alt {
- padding-right: .75em;
-}
-
-/* ============================================================== */
-/* inst.css */
-/* ============================================================== */
-/* $Id: inst.css,v 1.1 2003/04/10 22:58:32 tfahrner Exp $
-
-This file contains rules that extend or override the more basic formatting defined in tigris.css. Edit it to customize the look of applications using tigris.css (instances). You are responsible for maintaining your own set of (optional) deltas from tigris.css defaults; this file is intended as an example.
-
-/* colors, backgrounds, borders, link indication */
-#cn {
- background-image: url("../images/corporate_logo.gif");
- display: block;
- height: 17px;
- width: 138px;
-}
-
-#poweredby {
- background-image: url("../images/poweredby_036.gif");
- display: block;
- height: 38px;
- width: 102px;
-}
-
-#sc {
- background-image: url("../images/product_logo.gif");
- display: block;
- height: 25px;
- width: 138px;
-}
-
-#toptabs td,#toptabs th {
- background-image: url("../images/nw_min_036.gif");
-}
-
-#toptabs {
- background-color: #036;
- color: #fff;
-}
-
-
-.app h3 a,.app h4 a {
- color: #fff !important;
-}
-
-
-#mytools .body,#projecttools .body,#admintools .body,#communitytools .body
- {
- background-color: #ddd;
- border: none;
- background-color: #fff;
- border-right: none;
- border-bottom: none;
- border-top: 1px solid #999;
- padding-top: .33em;
-}
-
-#mytools,#projecttools,#admintools,#communitytools {
- background-color: #ddd;
- border-right: 1px solid #666;
- border-bottom: 1px solid #666;
- padding: 0 6px 6px 6px;
- margin: -4px 0 6px -4px;
-}
-
-#helptext {
- background-color: #ffc;
-}
-
-#helptext .body {
- border-bottom: 1px solid #cc9;
- border-right: 1px solid #cc9;
-}
-
-#topmodule {
- background-color: #ddd;
- border-top: 1px solid #fff;
- border-bottom: 1px solid #aaa;
-}
-
-#topmodule #issueid {
- border-right: 1px solid #aaa;
-}
-
-#login a:link,#login a:visited {
- color: white;
- text-decoration: underline;
-}
-
-#toptabs td {
- border-bottom: 1px solid #666;
- border-right: 1px solid #333;
- border-left: 1px solid #036;
-}
-
-#toptabs th {
- border-left: 1px solid #036;
-}
-
-/* font and text properties, exclusive of link indication, alignment, text-indent */
-#bodycol h2 {
- margin-top: .3em;
- margin-bottom: .5em;
- font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
- font-size: 1.5em;
- font-weight: normal;
-}
-
-/* box properties (exclusive of borders), positioning, alignments, list types, text-indent */
-#toptabs {
- margin: 0;
- padding-top: .67em;
- padding-left: 8px;
-}
-
-/*
-#topmodule {
- margin: -4px -4px 0 -4px;
-}
-*/
-#topmodule td {
- vertical-align: middle;
- padding: 2px 8px;
-}
-
-#navcolumn {
- margin-right: -4px;
-}
-
-#mytools .label,#projecttools .label,#admintools .label,#communitytools .label
- {
- padding-left: 2px;
-}
-
- /* ============================================================= */
- /* scarab.css */
- /* ============================================================= */
-#footer {
- border-top: 1px solid #ccc
-}
-
-#source {
- background-color: #fff;
- color: #000;
- border-right: 1px solid #888;
- border-left: 1px solid #888;
- border-top: 1px solid #888;
- border-bottom: 1px solid #888;
- margin-right: 7px;
- margin-left: 7px;
- margin-top: 1em;
-}
-
-input.fullWidth {
- width: 99%;
-}
-
-textarea.fullWidth {
- width: 99%;
-}
-
-.cpYearNavigation,.cpMonthNavigation {
- background-color: rgb(192, 192, 192);
- text-align: center;
- text-decoration: none;
- color: rgb(0, 0, 0);
- font-weight: bold;
-}
-
-.cpDayColumnHeader,
-.cpYearNavigation,
-.cpMonthNavigation,
-.cpCurrentMonthDate,
-.cpCurrentMonthDateDisabled,
-.cpOtherMonthDate,
-.cpOtherMonthDateDisabled,
-.cpCurrentDate,
-.cpCurrentDateDisabled,
-.cpTodayText,
-.cpTodayTextDisabled,
-.cpText
- {
- font-family: arial;
- font-size: 8pt;
-}
-
-td.cpDayColumnHeader {
- border-style: solid;
- border-color: rgb(192, 192, 192);
- border-width: 0pt 0pt 1px;
- text-align: right;
-}
-
-.cpCurrentMonthDate,.cpOtherMonthDate,.cpCurrentDate {
- text-align: right;
- text-decoration: none;
-}
-
-.cpCurrentMonthDateDisabled,.cpOtherMonthDateDisabled,.cpCurrentDateDisabled
- {
- color: rgb(208, 208, 208);
- text-align: right;
- text-decoration: line-through;
-}
-
-.cpCurrentMonthDate,.cpCurrentDate {
- color: rgb(0, 0, 0);
-}
-
-.cpOtherMonthDate {
- color: rgb(128, 128, 128);
-}
-
-td.cpCurrentDate {
- border: thin solid rgb(128, 0, 0);
- color: white;
- background-color: rgb(192, 192, 192);
-}
-
-td.cpCurrentDateDisabled {
- border: thin solid rgb(255, 170, 170);
-}
-
-td.applicationConfiguration {
- text-align: left;
- background-color: #E9F1F9;
- color: black;
-}
-
-td.cpTodayText,td.cpTodayTextDisabled {
- border-style: solid;
- border-color: rgb(192, 192, 192);
- border-width: 1px 0pt 0pt;
-}
-
-a.cpTodayText,span.cpTodayTextDisabled {
- height: 20px;
-}
-
-a.cpTodayText {
- color: black;
-}
-
-.cpTodayTextDisabled {
- color: rgb(208, 208, 208);
-}
-
-.cpBorder {
- border: thin solid rgb(128, 128, 128);
-}
-
-div.textDisabled {
- color: rgb(208, 208, 208);
-}
-
-.optionGroup {
- font-weight: bold;
- color: #036;
-}
-
-ul {
- list-style: disc;
- list-style-image: url("bullet.gif") padding-left : 1em;
-}
-
-.scarab-toolgroup {
- background: #f8f8f8;
- margin-bottom: 6px;
- margin-right: 3px;
- margin-left: 0px;
-}
-
-.scarab-toolgroup .body {
- border-right: 1px solid #F8F8F8;
- border-bottom: 1px solid #aaa;
- padding: 4px 4px 4px 0;
-}
-
-.scarab-toolgroup .label {
- border-bottom: 1px solid #F8F8F8;
- border-right: 1px solid #F8F8F8;
- border-color: 888888;
- border-style-bottom: 0px;
- background: #ddd;
- color: #444;
- background-color: #efefef;
- background-image: url("../images/navbox-farleft.gif");
- background-repeat: no-repeat;
- padding: 4px;
- color: #604020;
-}
-
-.scarab-toolgroup .body div {
- padding-bottom: .3em;
- padding-left: 1em;
-}
-
-.scarab-toolgroup .body div div {
- margin-top: .3em;
- padding-bottom: 0;
-}
-
-.scarab-toolgroup a,.scarab-toolgroup a:visited,.scarab-toolgroup a:active,.scarab-toolgroup a:link,.collapsed a,.collapsed a:visited,.collapsed a:active,.collapsed a:link
- {
- color: #b00000;
- margin-left: 0px;
- cursor: pointer;
- cursor: hand;
-}
-
-.scarab-tooltip {
- position: absolute;
- display: none;
- color: #003366;
- background-color: #FFFFE8;
- border-style: solid;
- border-width: 1px;
- border-color: #AAAAAA;
- padding: 2px;
- width: 250px;
- margin-left: 20px;
-}
-
-.scarab-icon {
- cursor: pointer;
- cursor: hand;
-}
-
-.functnbar2,.functnbar3,.functnbar4 {
- background-image: url("../images/sw_maj_rond.gif");
- background-repeat: no-repeat;
- background-position: bottom left;
-}
-
-.functnbar2 {
- background-color: #bbb;
- color: #fff;
- margin-left: -1px;
- margin-right: -1px;
- white-space: nowrap;
- margin-bottom: 0px;
- border-radius:5px 5px 5px 5px;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7a7a7a', endColorstr='#ffffff'); /* for IE */
- background: -webkit-gradient(linear, left top, right bottom, from(#7a7a7a), to(#ffffff)); /* for webkit browsers */
- background: -moz-linear-gradient(left, #7a7a7a, #ffffff); /* for firefox 3.6+ */
-
-}
-
-.functnbar {
- background-color: #bbbbbb;
- color: #fff;
- white-space: nowrap;
- margin-bottom: 0px;
- margin-left: -1px;
- margin-right: -1px;
-
- border-radius:5px 5px 5px 5px;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bbbbbb', endColorstr='#ffffff'); /* for IE */
- background: -webkit-gradient(linear, left top, right bottom, from(#bbbbbb), to(#ffffff)); /* for webkit browsers */
- background: -moz-linear-gradient(left, #000000, #ffffff); /* for firefox 3.6+ */
-}
-
-.functnbar3 {
- background-image: url("../images/sw_med_rond.gif");
- background-color: #DBD6CF;
- color: #fff;
- margin-left: 1px;
- margin-right: 1px;
- margin-top: 0;
- white-space: nowrap;
-}
-
-.functnbar4 {
- background-color: #EFEFEF;
- color: #003163;
- margin-left: 1px;
- margin-right: 1px;
- white-space: nowrap;
- padding: 5px;
-}
-
-.scarab-canvas {
- border-width: 1px;
- border-style: solid;
- border-color: #dddddd;
- border-top-style: none;
- border-bottom-style: none;
- margin-left: 2px;
- margin-right: 2px;
- _width:1000px; // for ie6 only (long-line wrapping broken)
-}
-
-.scarab-canvas div h4 {
- background-color: #EFEFEF;
- color: #003163
-}
-
-.scarab-canvas div h3 {
- background-color: #EFEFEF;
- color: #003163;
-}
-
-
-.app h3,.app h4,.tabs td,.tabs th,.functnbar {
- background-image: url("../images/nw_maj_rond.gif");
- background-repeat: no-repeat;
-}
-
-
-a:link,#navcolumn a:visited,.app a:visited,.tasknav a:visited {
- color:#b00000;
-}
-
-.app h3 {
- background-color: #f8f8f8;
-
- border-radius:5px 5px 5px 5px;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#ffffff'); /* for IE */
- background: -webkit-gradient(linear, left top, right bottom, from(#f8f8f8), to(#ffffff)); /* for webkit browsers */
- background: -moz-linear-gradient(left, #f8f8f8, #ffffff); /* for firefox 3.6+ */
-
-}
-
-.app h3 a:link,.app h3 a:visited,.app h4 a:link,.app h4 a:visited {
- color: #b00000 !important;
- text-decoration: underline;
-}
-
-.app h4 {
- background-color: #888;
-}
-
-.axial th {
- background-color: #F8F8F8;
- color: black;
-}
-
-.axial2 th {
- background-color: #E9F1F9;
- color: black;
-}
-
-.axial h4 {
- background-color: #E9F1F9;
- color: #003163
-}
-
-.axial h3 {
- background-color: #E9F1F9;
- color: #003163
-}
-
-span.scarab-inactive,
-th.scarab-inactive,
-td.scarab-inactive{
- color: #aaa;
-}
-
-/*
- Treeview related style definitions
-*/
-ol#root {
- padding-left: 5px;
- margin-top: 2px;
- margin-bottom: 1px;
- list-style: none;
-}
-
-#root ol {
- padding-left: 5px;
- margin-top: 2px;
- margin-bottom: 1px;
- list-style: none;
-}
-
-#root ul {
- margin-bottom: 1px;
- margin-top: 2px;
- list-style-position: inside;
-}
-
-#root li {
- margin-bottom: 1px;
- padding-left: 11px;
- margin-top: 3px;
- font-size: x-small;
-}
-
-#root a {
- text-decoration: none;
-}
-
-.panel {
- border-bottom: 1px solid #999;
- margin-bottom: 2px;
- margin-top: 2px;
- background: #ffffe8;
-}
-
-.folder {
- background: url("../images/folder-closed.gif") no-repeat;
- float: left;
- height: 14px;
- width: 36px;
- padding-right: 3px margin-bottom : 2px;
-}
-
-.doc {
- background: url("../images/file.gif") no-repeat;
- float: left;
- height: 14px;
- width: 12px;
- padding-right: 3px;
- margin-left: 20px;
-}
-
-.treeview table {
- background: #fff;
- border-style: solid;
- border-width: 1px;
- border-color: #AAAAAA;
- padding: 0px;
- margin: 0px;
-}
-
-table.graphic {
- border-style: none;
- border-width: 0px;
- border-color: fff;
- border-collapse: collapse;
-}
-
-table.graphic,table.graphic tr td {
- padding: 0px 0px 0px 0px;
- margin: 0px 0px 0px 0px;
- background-color: #ffffff;
-}
-
-table.wiki-table{
- margin-left:20px;
- margin-right:20px;
- padding-top:10px;
- padding-bottom:10px;
- padding-left:10px;
- background-color:#fffec1;
- border-style:dotted;
- border-color:#abc4db;
- border-width:1px;
-}
-
-table.wiki-table tr.table-odd{
- background-color:#ffffc0;
- border-style:dotted;
- border-color:#abc4db;
- border-width:1px;
- border-collapse: collapse
-}
-
-table.wiki-table tr.table-even{
- background-color:#efefd5;
- border-style:dotted;
- border-color:#abc4db;
- border-width:1px;
-}
-
-table.wiki-table tbody tr{
- background-color:#efefd5;
- border-style:dotted;
- border-color:#abc4db;
- border-width:1px;
-}
-
+/*
+ This is an intermediate work in progress.
+ The css declarations here have been
+ merged from
+
+ tigris.css
+ inst.css
+ scarab.css
+
+ The declarations are now less redundant and commented out declarations have
+ been removed for sanity.
+
+ I will now work from 2 sides in parallel:
+
+ 1.) I will remove embedded style definitions from the velocity files
+ and place them into this css sheet.
+
+ 2.) I will rework the allready existing style definitions using the
+ structure in the file "generalLayoutStructure.png" (in this folder here)
+ following styles are currently identified:
+
+ page overall page definitions (class of body)
+
+ header page header section
+ breadcrumb
+ authentification
+
+ banner banner section
+ aplicationLogo
+ applicationDescription
+
+ applicationFunctions functionbar section (valid for the entire application)
+ homeButton
+ moduleButton
+
+ canvas Here we will find the application pages
+ toolboxCanvas
+ applicationCanvas
+
+ footer page footer section
+ atomButton
+ rssButton
+ urlButton
+ footerDescription (new, used for additional text in the footer section)
+
+ button generic button
+ input generic input field
+ selector generic selector box
+
+ IMPORTANT NOTES:
+ ================
+
+ 1.) During the migration i will use the prependix "scb-" as a temporary name
+ convention in order to distinguish the existing style definitions from
+ the new definitions. Once the GUI refactoring is done, i will remove the
+ prependix and we end with the names declared above!
+
+ 2.) I will use plain HTML-markup wherever it is possible. So i will not mention
+ styles related to HTML-markup in the list above
+
+ 3.) The list above is a work in progress. It may change over time and it will
+ certainly grow.
+
+*/
+
+
+/* =========================================== */
+/* The top level page style (attached to body) */
+/* =========================================== */
+
+.scb_page {
+ margin: 0;
+ padding: 0;
+}
+
+
+/* =========================================== */
+/* The banner section ======================== */
+/* =========================================== */
+
+#scb_banner {
+ font-size: 1.25em;
+ border-top: 1px solid #369;
+ background-color: #ccc;
+ _background-image:url(companylogo.png);
+ background-position: center top;
+ height:50px;
+ color: #fff;
+}
+
+#scb_banner a:active,#scb_banner a:hover {
+ color: #ccc !important;
+}
+
+#scb_banner table {
+ border-style:none;
+ margin:8px;
+ padding:0px;
+ width:100%;
+}
+
+/* ================================================ */
+/* The breadcrumbs section ======================== */
+/* ================================================ */
+
+#breadcrumbs {
+ border-top: 1px solid #555;
+ background-color: #333;
+ padding: 2px 8px;
+ font-size: x-small;
+ color:#ffffff;
+}
+
+#breadcrumbs .logout a {
+ text-decoration: none;
+ color:red;
+}
+
+#breadcrumbs .location {
+ font-weight:normal;
+}
+
+#breadcrumbs a,
+#breadcrumbs .issueId,
+#breadcrumbs .issueText,
+#breadcrumbs .logout,
+#breadcrumbs .username{
+ font-weight:bold;
+}
+
+#breadcrumbs .username {
+ font-size: 90%;
+}
+
+
+/* ====================================================== */
+/* Style for a java script calendar */
+/* NOTE: The calendar visibility MUST be set to invisible */
+/* ====================================================== */
+.scb_calendar {
+ position:absolute;
+ visibility:hidden;
+ background-color:white;
+ layer-background-color:white;
+ z-index:1;
+}
+
+/* ======================================================= */
+/* the iframe fixes IE6 select overlay bug: */
+/* http://stackoverflow.com/questions/7937/\ */
+/* solve-the-ie-select-overlap-bug */
+/* ======================================================= */
+.scb_calendar iframe {
+ position: absolute;
+ z-index: -1;
+ filter: mask();
+ border: 0;
+ margin: 0;
+ padding: 0;
+ top: 0;
+ left: 0;
+ width: 1px;
+ height: 1px;
+ overflow: hidden;
+}
+
+
+.hint {
+ font-size:80%;
+ color:#6d9cc1;
+}
+
+
+/* ====================================================== */
+/* Button section ... */
+/* ====================================================== */
+
+.wikisyntax {
+ margin-top:-2px;
+ float:left;
+ min-height:200px;
+ border-style:solid;
+ border-color:#ccc;
+ border-width:1px;
+}
+
+.wikibutton {
+ float:right;
+ margin-right:6px;
+ border-style:solid;
+ border-width:1px;
+ border-color:grey;
+ border-radius:4px;
+ padding:2px;
+ font-size:0.6em;
+ background:#e8e8e8;
+ cursor:pointer;
+}
+
+a.button, input.button, input.button3, input.buttonActive, input.buttonPassive, input.buttonNotify, .watch_on, .watch_off {
+ width:auto;
+ padding-right: 5px;
+ padding-left :10px;
+ margin-right :5px;
+ overflow:visible;
+ border: 0;
+ color: #333;
+ height: 18px;
+ /* used to catch the buttonEnding */
+ position: relative;
+ cursor: pointer;
+}
+
+a.button, a.button:active, a.button:visited {
+ display:inline-block;
+ font-size:0.8em;
+ height:18px;
+ padding-top:5px;
+ vertical-align:middle;
+ text-decoration:none;
+ color:black;
+}
+
+.buttonEnding, .button3Ending, .buttonActiveEnding, .buttonPassiveEnding, .buttonNotifyEnding {
+ position: absolute;
+ display: inline;
+ margin-left: -12px;
+ width: 10px;
+ height: 18px;
+ margin-right:10px;
+}
+
+.watch_on {
+ background: url(images/watchOn.jpg) no-repeat;
+ width: 25px;
+ height: 22px;
+}
+
+.watch_off {
+ background: url(images/watchOff.jpg) no-repeat;
+ width: 25px;
+ height: 22px;
+}
+
+input.button, a.button {
+ _background: url(images/button_passive_begin.gif) no-repeat;
+}
+
+input.button3 {
+ background: url(images/button3_passive_begin.jpg) no-repeat;
+}
+
+input.buttonActive {
+ background: url(images/button_active_begin.png) no-repeat;
+}
+
+input.buttonPassive {
+ background: url(images/button_passive_begin.gif) no-repeat;
+}
+
+input.buttonNotify {
+ background: url(images/button_passive_begin.gif) no-repeat;
+}
+
+.buttonEnding {
+ margin-left: -10px;
+ width: 10px;
+ _background: url(images/button_passive_end.gif) no-repeat;
+}
+
+.button3Ending {
+ margin-left: -10px;
+ width: 10px;
+ _background: url(images/button3_passive_end.jpg) no-repeat;
+}
+
+.buttonActiveEnding {
+ background: url(images/button_active_checked.png) no-repeat;
+}
+
+.buttonPassiveEnding {
+ background: url(images/button_passive_unchecked.png) no-repeat;
+}
+
+.buttonNotifyEnding {
+ background: url(images/button_end_transmit_blue.png) no-repeat;
+}
+
+a.date {
+ background-image: url(images/date.gif);
+ background-repeat: no-repeat;
+ width:18px;
+ height:15px;
+ display:inline-block;
+ vertical-align:middle;
+}
+
+a.configure_list {
+ margin-left:10px;
+ background-image: url(images/customize.gif);
+ background-repeat: no-repeat;
+ width:16px;
+ height:16px;
+ display:inline-block;
+ vertical-align:middle;
+}
+
+a.next_issue, a.prev_issue, a.first_issue, a.last_issue, .current_issue,
+a.next_element, a.previous_element {
+ text-decoration:none;
+ background-repeat: no-repeat;
+ background-position:center;
+ display:inline-block;
+ vertical-align:middle;
+
+ border-color: #B08080 #B08080 #D0B0B0 #D0B0B0;
+ border-radius: 5px;
+ border-style:solid;
+ border-width:2px;
+ padding:2px 8px;
+}
+
+a.next_element {
+ background-image: url(images/icon_right.gif);
+ padding:7px 8px;
+}
+
+a.previous_element {
+ background-image: url(images/icon_left.gif);
+ padding:7px 8px;
+}
+
+
+/* ============================================================== */
+/* Issue editor */
+/* ============================================================== */
+
+#properties div.header{
+}
+#properties div.header div.group {
+ float:left;
+ display:inline;
+ padding-bottom:10px;
+}
+#properties div.header div.group th, span.displayValue {
+ background-color: none;
+}
+#properties div.header div.group td {
+ font-size:0.9em;
+}
+
+span.displayValue {
+ color:black;
+ text-align:right;
+ font-family:Verdana,Helvetica,Arial,sans-serif;
+ font-size:1em;
+ font-weight:bold;
+ margin-left:15px;
+}
+
+th.displayLabel {
+ text-align:right;
+}
+
+a.next_issue {
+ background-image: url(images/icon_right.gif);
+}
+a.prev_issue {
+ background-image: url(images/icon_left.gif);
+}
+a.first_issue {
+ background-image: url(images/icon_first.gif);
+}
+a.last_issue {
+ background-image: url(images/icon_last.gif);
+}
+
+.issue_counter {
+ text-decoration:none;
+ background-repeat: no-repeat;
+ display:inline-block;
+ vertical-align:middle;
+ padding:2px 8px;
+}
+
+.current_issue {
+ border-width:1px;
+ padding:2px 12px;
+}
+
+/* ============================================================== */
+/* Issue comments */
+/* ============================================================== */
+
+/*
+ provide a cross browser compatible pre which uses auto
+ word wrap for long lines:
+*/
+.comment {
+ white-space: pre-wrap; /* css-3 */
+ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
+ white-space: -pre-wrap; /* Opera 4-6 */
+ white-space: -o-pre-wrap; /* Opera 7 */
+ word-wrap: break-word; /* Internet Explorer 5.5+ */
+ _white-space:pre;
+}
+
+.scb_comment {
+ _margin-top:20px;
+}
+
+.scb_comment .content {
+ margin-top:5px;
+ margin-left:42px;
+}
+
+.scb_comment .content .comment {
+ margin-top:0px;
+ background-color:#f8f8f8;
+ margin:0px;
+ padding:10px;
+}
+
+.scb_comment .counter {
+ margin-right:10px;
+}
+
+
+td.accessible {
+ background-color:#0f0;
+}
+
+td.restricted {
+ background-color:#eee;
+}
+
+div.content pre {
+ display:inline-block;
+ background-color:#ffd;
+ padding:10px;
+ margin-left:10px;
+ white-space:pre-wrap;
+}
+
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+/* ==== From here on downwards the refactoring must still take place. ==== */
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+//div.axial {
+// background-color:#dddddd;
+//}
+
+div.axial-footer {
+ background-color:#dddddd;
+ margin-left:2px;
+ margin-right:2px;
+ white-space:nowrap;
+}
+
+/* ============================================================== */
+/* tigris.css */
+/* ============================================================== */
+/* $Id: tigris.css,v 1.9 2003/04/10 22:58:32 tfahrner Exp $
+
+ This file defines basic default formatting for HTML conforming to Tigris application style. To extend or override these rules for your instance, edit inst.css instead of this file. */
+/* colors, backgrounds, borders, link indication */
+
+body {
+ background: #fff;
+ color: #000;
+}
+
+.functnbar,.functnbar2 {
+ background-color: #bbb;
+}
+
+.functnbar2,.functnbar3 {
+ background-color: #aaa;
+ background-image: url("../images/sw_maj_rond.gif");
+ background-repeat: no-repeat;
+ background-position: bottom left;
+}
+
+.footer {
+ margin-left:2px;
+ margin-right:2px;
+ background-color:#F8F8F8;
+ white-space:nowrap;
+}
+
+input[type='text'], input[type='password'] {
+ border-radius: 5px;
+ border-style:solid;
+ border-color:#d0d0d0;
+ background-color:#fff;
+}
+
+treeview_button, select, input[type='submit'], input[type='reset'], input[type='file'] {
+ border-radius: 5px;
+ padding:2px;
+ padding:3px\9;
+ padding-right:4px\9;
+ padding-left:4px\9;
+ border-style:solid;
+ border-color:#b08080 #b08080 #d0B0B0 #d0B0B0;
+ background-color:#e8e8e8;
+ border-width:2px;
+ color:#000000;
+
+}
+
+
+textarea{
+ font-size: 1em;
+}
+
+//input[type='submit']{
+// border-style:solid;
+// border-width:1px;
+// border-color:#808080;
+// border-radius: 5px;
+// cursor:pointer;
+// background-color:#fef8fe;
+//}
+
+.functnbar a,.functnbar2 a,.functnbar3 a {
+ color: #000;
+ text-decoration: underline;
+}
+
+#navcolumn .body div,body.docs #toc li li {
+ background-image: url("../images/strich.gif");
+ background-repeat: no-repeat;
+ background-position: .5em .5em;
+}
+
+div div.sublist {
+ margin-left:10px;
+ background-image: none;
+ font-weight:normal;
+}
+
+.scarab-toolgroup div.list-header a {
+ font-weight:bold;
+}
+
+div#navcolumn div.list-header a {
+ color:#000000;
+}
+
+
+
+
+
+#searchbox .body div,#navcolumn .body .heading {
+ background-image: none;
+}
+
+
+a:link .selfref,a:visited .selfref {
+ color: #555 !important;
+ text-decoration: none;
+}
+
+a:active,a:hover,#leftcol a:active,#leftcol a:hover {
+ color: #b00000 !important;
+}
+
+#leftcol a {
+ text-decoration: none;
+}
+
+.a td {
+ background-color: #ddd;
+}
+
+.b td {
+ background-color: #efefef;
+}
+
+table,th,td {
+ border: none;
+}
+
+div.colbar {
+ background: #eee;
+ border-color: #999 #EEE #EEE #999;
+ border-width: 1px;
+ border-style: solid;
+ padding: 3px;
+ margin: 2px 2px 0;
+}
+
+.toolgroup .label {
+ padding: 4px;
+ border-bottom: 1px solid #666;
+ border-right: 1px solid #666;
+ background: #ddd;
+ color: #555;
+}
+
+.toolgroup .body {
+ border-right: 1px solid #aaa;
+ border-bottom: 1px solid #aaa;
+ padding: 4px 4px 4px 0;
+}
+
+
+}
+#main {
+ border-top: 1px solid #999;
+}
+
+#rightcol div.www,#rightcol div.help {
+ border: 1px solid #ddd;
+ padding: 0 .5em;
+}
+
+body.docs div.docs {
+ background-color: #fff;
+ border-left: 1px solid #ddd;
+ border-top: 1px solid #ddd;
+ margin: 61px 0 0 150px;
+ padding: 1em 2em 1em 1em !important;
+}
+
+#helptext .label {
+ background-image: url("../images/icon_help_sml.gif");
+ background-repeat: no-repeat;
+ background-position: 97%;
+ border-bottom: 1px solid #996;
+ border-right: 1px solid #996;
+ background-color: #cc9;
+}
+
+body.docs {
+ background: #eee url("../images/help_logo.gif") top right no-repeat
+ !important;
+}
+
+.docs h3,.docs h4 {
+ border-top: solid 1px #000;
+}
+
+#apphead h2 em {
+ color: #777;
+ font-style: normal;
+}
+
+.app th {
+ background-color: #F8F8F8;
+}
+
+.tabs th {
+ border-right: 1px solid #333;
+ background-color: #ddd;
+ color: #fff;
+ border-left: 1px solid #fff;
+}
+
+.tabs td {
+ background-color: #999;
+ border-bottom: 1px solid #fff;
+ border-right: 1px solid #fff;
+ border-left: 1px solid #fff;
+}
+
+.tabs th,.tabs th a:link,.tabs th a:visited {
+ color: #555;
+}
+
+.tabs td,.tabs td a:link,.tabs td a:visited {
+ color: #fff;
+}
+
+.tabs a {
+ text-decoration: none;
+}
+
+.alert {
+ background-color: #ff9;
+}
+
+.expandedwaste {
+ background: url("../images/icon_arrowwaste2_sml.gif") no-repeat;
+}
+
+.sortup {
+ background: url("../images/icon_sortup.gif") no-repeat;
+}
+
+.sortdown {
+ background: url("../images/icon_sortdown.gif") no-repeat;
+}
+
+.collapsedwaste {
+ background: url("../images/icon_arrowwaste1_sml.gif") no-repeat;
+}
+
+body .grid td {
+ border-top: 1px solid #ccc;
+ border-left: 1px solid #ccc;
+ background-color: transparent;
+}
+
+.confirm {
+ color: #090;
+}
+
+.info {
+ color: #069;
+}
+
+.errormessage,.warningmessage,.donemessage,.infomessage {
+ border-top: 5px solid #900;
+ border-left: 1px solid #900;
+ background-repeat: no-repeat;
+ background-position: 5px 1.33em;
+}
+.errormessage {
+ background-image: url("../images/icon_error_lrg.gif");
+}
+
+.warningmessage {
+ background-image: url("../images/icon_warning_lrg.gif");
+ border-color: #c60;
+}
+
+.donemessage {
+ background-image: url("../images/icon_success_lrg.gif");
+ border-color: #090;
+}
+
+.infomessage {
+ background-image: url("../images/icon_info_lrg.gif");
+ border-color: #069;
+}
+
+.docinfo {
+ background: url("../images/icon_doc_lrg.gif") no-repeat;
+}
+
+.dirinfo {
+ background: url("../images/icon_folder_lrg.gif") no-repeat;
+}
+
+.memberinfo {
+ background: url("../images/icon_members_lrg.gif") no-repeat;
+}
+
+.usergroupinfo {
+ background: url("../images/icon_usergroups_lrg.gif") no-repeat;
+}
+.errormark {
+ background-image: url("../images/icon_error_sml.gif") no-repeat;
+}
+
+.warningmark {
+ background-image: url("../images/icon_warning_sml.gif");
+}
+
+.donemark {
+ background-image: url("../images/icon_success_sml.gif");
+}
+
+.infomark {
+ background-image: url("../images/icon_info_sml.gif");
+}
+
+.cvsdiff,.cvsblame {
+ background-color: #ccc;
+}
+
+.cvsdiffadd {
+ background-color: #afa;
+}
+
+.cvsdiffremove {
+ background-color: #faa;
+}
+
+.cvsdiffchanges1 {
+ background-color: #ff7;
+}
+
+.cvsdiffchanges2 {
+ background-color: #ff7;
+}
+
+li.selection ul a {
+ background: #fff;
+}
+
+.app .helplink,#helptext .helplink {
+ cursor: help;
+}
+
+/* font and text properties, exclusive of link indication, alignment, text-indent */
+body,th,td,input,select,textarea,pre {
+ font-family: Verdana, Helvetica, Arial, sans-serif;
+}
+
+code {
+ font-family: 'Andale Mono', Courier, monospace;
+}
+
+body,.app h3,.app h4,#rightcol h3,pre,code,#apphead h2 small {
+ font-size: x-small;
+ voice-family: "\"}\"";
+ voice-family: inherit;
+ font-size: small;
+}
+
+small,div#footer,div#login,div.tabs th,div.tabs td,input,select,.paginate,.functnbar,.functnbar2,.functnbar3,.courtesylinks,#rightcol div.help,.colbar,.tasknav,body.docs div#toc,#leftcol,.legend,.bars
+ {
+ font-size: xx-small;
+ voice-family: "\"}\"";
+ voice-family: inherit;
+ font-size: x-small;
+}
+
+.tabs td,.tabs th,dt,.tasknav .selfref,#login .username,.selection {
+ font-weight: bold;
+}
+
+li.selection ul {
+ font-weight: normal;
+}
+
+h4,table {
+ font-size: 1em;
+}
+
+
+/* box properties (exclusive of borders), positioning, alignments, list types, text-indent */
+p,ul,ol,dl,.bars table {
+ margin-top: .67em;
+ margin-bottom: .67em;
+}
+
+h3,h4 {
+ margin-bottom: 0;
+}
+
+form {
+ margin: 0;
+}
+
+#bodycol {
+ padding-left: 12px;
+ padding-right: 12px;
+ width: 100%;
+ voice-family: "\"}\"";
+ voice-family: inherit;
+ width: auto;
+}
+
+html>body #bodycol {
+ width: auto;
+}
+
+.docs {
+ line-height: 1.4;
+}
+
+ol ol {
+ list-style-type: lower-alpha;
+}
+
+ol ol ol {
+ list-style-type: lower-roman;
+}
+
+.app h3,.app h4 {
+ padding: 3px;
+ margin-right: 2px;
+ margin-left: 2px;
+ color: #003366;
+}
+
+.app td,.app th {
+ padding: 2px 3px;
+}
+
+.h3 p,.h4 p,.h3 dt,.h4 dt {
+ margin-right: 7px;
+ margin-left: 7px;
+}
+
+.tasknav {
+ margin-bottom: 1.33em;
+}
+
+.tabs {
+ border-bottom: 6px #ddd solid;
+ margin-top: .67em;
+ margin-right: 2px;
+ margin-left: 2px;
+ padding-left: 8px;
+}
+
+.tabs td,.tabs th {
+ padding: 3px 9px;
+}
+
+body.docs #toc {
+ position: absolute;
+ top: 15px;
+ left: 0px;
+ width: 120px;
+ padding: 0 20px 0 0;
+}
+
+body.docs #toc ul,#toc ol {
+ margin-left: 0;
+ padding-left: 0;
+}
+
+body.docs #toc li {
+ margin-top: 7px;
+ padding-left: 10px;
+ list-style-type: none;
+}
+
+.docs p+p {
+ text-indent: 5%;
+ margin-top: -.67em;
+}
+
+.docs h3,.docs h4 {
+ margin-bottom: .1em;
+ padding-top: .3em;
+}
+
+.functnbar,.functnbar2,.functnbar3 {
+ color: #000;
+ padding: 5px;
+ margin: .67em 2px;
+}
+
+body {
+ padding: 1em;
+}
+
+body.composite,body.docs {
+ margin: 0;
+ padding: 0;
+}
+
+th,td {
+ text-align: left;
+ vertical-align: top;
+}
+
+.right {
+ text-align: right !important;
+}
+
+.center {
+ text-align: center !important;
+}
+
+.axial th,.axial th .strut {
+ text-align: right;
+ font-size:0.9em;
+}
+
+.app .axial td th {
+ text-align: left;
+}
+
+body .stb {
+ margin-top: 1em;
+ text-indent: 0;
+}
+
+body .mtb {
+ margin-top: 2em;
+ text-indent: 0;
+}
+
+.courtesylinks {
+ margin-top: 1em;
+ padding-top: 1em;
+}
+
+dd {
+ margin-bottom: .67em;
+}
+
+.toolgroup {
+ background: #e8e8e8;
+ margin-bottom: 6px;
+}
+
+.toolgroup .body div {
+ padding-bottom: .3em;
+ padding-left: 1em;
+}
+
+.toolgroup .body div div {
+ margin-top: .3em;
+ padding-bottom: 0;
+}
+
+.messagechild {
+ padding-left: 34px;
+}
+
+.expandedwaste,.collapsedwaste,.sortup,.sortdown {
+ /* hide from macie5\*/
+ float: left;
+ /* resume */
+ display: inline-block;
+ height: 15px;
+ width: 34px;
+ padding-left: 0 !important;
+}
+
+.sortup,.sortdown {
+ width: 20px;
+}
+
+.errormessage,.warningmessage,.donemessage,.infomessage,.docinfo,.dirinfo,.memberinfo,.usergroupinfo
+ {
+ margin: .67em 0;
+ padding: .33em 0 .67em 42px;
+ min-height: 32px;
+}
+
+.errormark,.warningmark,.donemark,.infomark {
+ background-repeat: no-repeat;
+ padding-left: 20px;
+ min-height: 15px;
+}
+
+.alt {
+ display: none;
+}
+
+#leftcol {
+ width: 14em;
+}
+
+.axial th,.axial th .strut,#leftcol .strut {
+ width: 13em;
+}
+
+.app h3,.app h4,.bars {
+ clear: both;
+}
+
+.legend {
+ float: right;
+}
+
+.legend th,.bars th {
+ background-color: #fff;
+ text-align: right;
+ padding-left: 1em;
+}
+
+.bars table {
+ table-layout: fixed;
+}
+
+.bars th {
+ width: 12em;
+}
+
+#projectdocumentlist td.filebrowse-alt {
+ padding-right: .75em;
+}
+
+/* ============================================================== */
+/* inst.css */
+/* ============================================================== */
+/* $Id: inst.css,v 1.1 2003/04/10 22:58:32 tfahrner Exp $
+
+This file contains rules that extend or override the more basic formatting defined in tigris.css. Edit it to customize the look of applications using tigris.css (instances). You are responsible for maintaining your own set of (optional) deltas from tigris.css defaults; this file is intended as an example.
+
+/* colors, backgrounds, borders, link indication */
+#cn {
+ background-image: url("../images/corporate_logo.gif");
+ display: block;
+ height: 17px;
+ width: 138px;
+}
+
+#poweredby {
+ background-image: url("../images/poweredby_036.gif");
+ display: block;
+ height: 38px;
+ width: 102px;
+}
+
+#sc {
+ background-image: url("../images/product_logo.gif");
+ display: block;
+ height: 25px;
+ width: 138px;
+}
+
+#toptabs td,#toptabs th {
+ background-image: url("../images/nw_min_036.gif");
+}
+
+#toptabs {
+ background-color: #036;
+ color: #fff;
+}
+
+
+.app h3 a,.app h4 a {
+ color: #fff !important;
+}
+
+
+#mytools .body,#projecttools .body,#admintools .body,#communitytools .body
+ {
+ background-color: #ddd;
+ border: none;
+ background-color: #fff;
+ border-right: none;
+ border-bottom: none;
+ border-top: 1px solid #999;
+ padding-top: .33em;
+}
+
+#mytools,#projecttools,#admintools,#communitytools {
+ background-color: #ddd;
+ border-right: 1px solid #666;
+ border-bottom: 1px solid #666;
+ padding: 0 6px 6px 6px;
+ margin: -4px 0 6px -4px;
+}
+
+#helptext {
+ background-color: #ffc;
+}
+
+#helptext .body {
+ border-bottom: 1px solid #cc9;
+ border-right: 1px solid #cc9;
+}
+
+#topmodule {
+ background-color: #ddd;
+ border-top: 1px solid #fff;
+ border-bottom: 1px solid #aaa;
+}
+
+#topmodule #issueid {
+ border-right: 1px solid #aaa;
+}
+
+#login a:link,#login a:visited {
+ color: white;
+ text-decoration: underline;
+}
+
+#toptabs td {
+ border-bottom: 1px solid #666;
+ border-right: 1px solid #333;
+ border-left: 1px solid #036;
+}
+
+#toptabs th {
+ border-left: 1px solid #036;
+}
+
+/* font and text properties, exclusive of link indication, alignment, text-indent */
+#bodycol h2 {
+ margin-top: .3em;
+ margin-bottom: .5em;
+ font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
+ font-size: 1.5em;
+ font-weight: normal;
+}
+
+/* box properties (exclusive of borders), positioning, alignments, list types, text-indent */
+#toptabs {
+ margin: 0;
+ padding-top: .67em;
+ padding-left: 8px;
+}
+
+/*
+#topmodule {
+ margin: -4px -4px 0 -4px;
+}
+*/
+#topmodule td {
+ vertical-align: middle;
+ padding: 2px 8px;
+}
+
+#navcolumn {
+ margin-right: -4px;
+}
+
+#mytools .label,#projecttools .label,#admintools .label,#communitytools .label
+ {
+ padding-left: 2px;
+}
+
+ /* ============================================================= */
+ /* scarab.css */
+ /* ============================================================= */
+#footer {
+ border-top: 1px solid #ccc
+}
+
+#source {
+ background-color: #fff;
+ color: #000;
+ border-right: 1px solid #888;
+ border-left: 1px solid #888;
+ border-top: 1px solid #888;
+ border-bottom: 1px solid #888;
+ margin-right: 7px;
+ margin-left: 7px;
+ margin-top: 1em;
+}
+
+input.fullWidth {
+ width: 99%;
+}
+
+textarea.fullWidth {
+ width: 99%;
+}
+
+.cpYearNavigation,.cpMonthNavigation {
+ background-color: rgb(192, 192, 192);
+ text-align: center;
+ text-decoration: none;
+ color: rgb(0, 0, 0);
+ font-weight: bold;
+}
+
+.cpDayColumnHeader,
+.cpYearNavigation,
+.cpMonthNavigation,
+.cpCurrentMonthDate,
+.cpCurrentMonthDateDisabled,
+.cpOtherMonthDate,
+.cpOtherMonthDateDisabled,
+.cpCurrentDate,
+.cpCurrentDateDisabled,
+.cpTodayText,
+.cpTodayTextDisabled,
+.cpText
+ {
+ font-family: arial;
+ font-size: 8pt;
+}
+
+td.cpDayColumnHeader {
+ border-style: solid;
+ border-color: rgb(192, 192, 192);
+ border-width: 0pt 0pt 1px;
+ text-align: right;
+}
+
+.cpCurrentMonthDate,.cpOtherMonthDate,.cpCurrentDate {
+ text-align: right;
+ text-decoration: none;
+}
+
+.cpCurrentMonthDateDisabled,.cpOtherMonthDateDisabled,.cpCurrentDateDisabled
+ {
+ color: rgb(208, 208, 208);
+ text-align: right;
+ text-decoration: line-through;
+}
+
+.cpCurrentMonthDate,.cpCurrentDate {
+ color: rgb(0, 0, 0);
+}
+
+.cpOtherMonthDate {
+ color: rgb(128, 128, 128);
+}
+
+td.cpCurrentDate {
+ border: thin solid rgb(128, 0, 0);
+ color: white;
+ background-color: rgb(192, 192, 192);
+}
+
+td.cpCurrentDateDisabled {
+ border: thin solid rgb(255, 170, 170);
+}
+
+td.applicationConfiguration {
+ text-align: left;
+ background-color: #E9F1F9;
+ color: black;
+}
+
+td.cpTodayText,td.cpTodayTextDisabled {
+ border-style: solid;
+ border-color: rgb(192, 192, 192);
+ border-width: 1px 0pt 0pt;
+}
+
+a.cpTodayText,span.cpTodayTextDisabled {
+ height: 20px;
+}
+
+a.cpTodayText {
+ color: black;
+}
+
+.cpTodayTextDisabled {
+ color: rgb(208, 208, 208);
+}
+
+.cpBorder {
+ border: thin solid rgb(128, 128, 128);
+}
+
+div.textDisabled {
+ color: rgb(208, 208, 208);
+}
+
+.optionGroup {
+ font-weight: bold;
+ color: #036;
+}
+
+ul {
+ list-style: disc;
+ list-style-image: url("bullet.gif") padding-left : 1em;
+}
+
+.scarab-toolgroup {
+ background: #f8f8f8;
+ margin-bottom: 6px;
+ margin-right: 3px;
+ margin-left: 0px;
+}
+
+.scarab-toolgroup .body {
+ border-right: 1px solid #F8F8F8;
+ border-bottom: 1px solid #aaa;
+ padding: 4px 4px 4px 0;
+}
+
+.scarab-toolgroup .label {
+ border-bottom: 1px solid #F8F8F8;
+ border-right: 1px solid #F8F8F8;
+ border-color: 888888;
+ border-style-bottom: 0px;
+ background: #ddd;
+ color: #444;
+ background-color: #efefef;
+ background-image: url("../images/navbox-farleft.gif");
+ background-repeat: no-repeat;
+ padding: 4px;
+ color: #604020;
+}
+
+.scarab-toolgroup .body div {
+ padding-bottom: .3em;
+ padding-left: 1em;
+}
+
+.scarab-toolgroup .body div div {
+ margin-top: .3em;
+ padding-bottom: 0;
+}
+
+.scarab-toolgroup a,.scarab-toolgroup a:visited,.scarab-toolgroup a:active,.scarab-toolgroup a:link,.collapsed a,.collapsed a:visited,.collapsed a:active,.collapsed a:link
+ {
+ color: #b00000;
+ margin-left: 0px;
+ cursor: pointer;
+ cursor: hand;
+}
+
+.scarab-tooltip {
+ position: absolute;
+ display: none;
+ color: #003366;
+ background-color: #FFFFE8;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #AAAAAA;
+ padding: 2px;
+ width: 250px;
+ margin-left: 20px;
+}
+
+.scarab-icon {
+ cursor: pointer;
+ cursor: hand;
+}
+
+.functnbar2,.functnbar3,.functnbar4 {
+ background-image: url("../images/sw_maj_rond.gif");
+ background-repeat: no-repeat;
+ background-position: bottom left;
+}
+
+.functnbar2 {
+ background-color: #bbb;
+ color: #fff;
+ margin-left: -1px;
+ margin-right: -1px;
+ white-space: nowrap;
+ margin-bottom: 0px;
+ border-radius:5px 5px 5px 5px;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7a7a7a', endColorstr='#ffffff'); /* for IE */
+ background: -webkit-gradient(linear, left top, right bottom, from(#7a7a7a), to(#ffffff)); /* for webkit browsers */
+ background: -moz-linear-gradient(left, #7a7a7a, #ffffff); /* for firefox 3.6+ */
+
+}
+
+.functnbar {
+ background-color: #bbbbbb;
+ color: #fff;
+ white-space: nowrap;
+ margin-bottom: 0px;
+ margin-left: -1px;
+ margin-right: -1px;
+
+ border-radius:5px 5px 5px 5px;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bbbbbb', endColorstr='#ffffff'); /* for IE */
+ background: -webkit-gradient(linear, left top, right bottom, from(#bbbbbb), to(#ffffff)); /* for webkit browsers */
+ background: -moz-linear-gradient(left, #000000, #ffffff); /* for firefox 3.6+ */
+}
+
+.functnbar3 {
+ background-image: url("../images/sw_med_rond.gif");
+ background-color: #DBD6CF;
+ color: #fff;
+ margin-left: 1px;
+ margin-right: 1px;
+ margin-top: 0;
+ white-space: nowrap;
+}
+
+.functnbar4 {
+ background-color: #EFEFEF;
+ color: #003163;
+ margin-left: 1px;
+ margin-right: 1px;
+ white-space: nowrap;
+ padding: 5px;
+}
+
+.scarab-canvas {
+ border-width: 1px;
+ border-style: solid;
+ border-color: #dddddd;
+ border-top-style: none;
+ border-bottom-style: none;
+ margin-left: 2px;
+ margin-right: 2px;
+ _width:1000px; // for ie6 only (long-line wrapping broken)
+}
+
+.scarab-canvas div h4 {
+ background-color: #EFEFEF;
+ color: #003163
+}
+
+.scarab-canvas div h3 {
+ background-color: #EFEFEF;
+ color: #003163;
+}
+
+
+.app h3,.app h4,.tabs td,.tabs th,.functnbar {
+ background-image: url("../images/nw_maj_rond.gif");
+ background-repeat: no-repeat;
+}
+
+
+a:link,#navcolumn a:visited,.app a:visited,.tasknav a:visited {
+ color:#b00000;
+}
+
+.app h3 {
+ background-color: #f8f8f8;
+
+ border-radius:5px 5px 5px 5px;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#ffffff'); /* for IE */
+ background: -webkit-gradient(linear, left top, right bottom, from(#f8f8f8), to(#ffffff)); /* for webkit browsers */
+ background: -moz-linear-gradient(left, #f8f8f8, #ffffff); /* for firefox 3.6+ */
+
+}
+
+.app h3 a:link,.app h3 a:visited,.app h4 a:link,.app h4 a:visited {
+ color: #b00000 !important;
+ text-decoration: underline;
+}
+
+.app h4 {
+ background-color: #888;
+}
+
+.axial th {
+ background-color: #F8F8F8;
+ color: black;
+}
+
+.axial2 th {
+ background-color: #E9F1F9;
+ color: black;
+}
+
+.axial h4 {
+ background-color: #E9F1F9;
+ color: #003163
+}
+
+.axial h3 {
+ background-color: #E9F1F9;
+ color: #003163
+}
+
+span.scarab-inactive,
+th.scarab-inactive,
+td.scarab-inactive{
+ color: #aaa;
+}
+
+/*
+ Treeview related style definitions
+*/
+ol#root {
+ padding-left: 5px;
+ margin-top: 2px;
+ margin-bottom: 1px;
+ list-style: none;
+}
+
+#root ol {
+ padding-left: 5px;
+ margin-top: 2px;
+ margin-bottom: 1px;
+ list-style: none;
+}
+
+#root ul {
+ margin-bottom: 1px;
+ margin-top: 2px;
+ list-style-position: inside;
+}
+
+#root li {
+ margin-bottom: 1px;
+ padding-left: 11px;
+ margin-top: 3px;
+ font-size: x-small;
+}
+
+#root a {
+ text-decoration: none;
+}
+
+.panel {
+ border-bottom: 1px solid #999;
+ margin-bottom: 2px;
+ margin-top: 2px;
+ background: #ffffe8;
+}
+
+.folder {
+ background: url("../images/folder-closed.gif") no-repeat;
+ float: left;
+ height: 14px;
+ width: 36px;
+ padding-right: 3px margin-bottom : 2px;
+}
+
+.doc {
+ background: url("../images/file.gif") no-repeat;
+ float: left;
+ height: 14px;
+ width: 12px;
+ padding-right: 3px;
+ margin-left: 20px;
+}
+
+.treeview table {
+ background: #fff;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #AAAAAA;
+ padding: 0px;
+ margin: 0px;
+}
+
+table.graphic {
+ border-style: none;
+ border-width: 0px;
+ border-color: fff;
+ border-collapse: collapse;
+}
+
+table.graphic,table.graphic tr td {
+ padding: 0px 0px 0px 0px;
+ margin: 0px 0px 0px 0px;
+ background-color: #ffffff;
+}
+
+table.wiki-table{
+ margin-left:20px;
+ margin-right:20px;
+ padding-top:10px;
+ padding-bottom:10px;
+ padding-left:10px;
+ background-color:#fffec1;
+ border-style:dotted;
+ border-color:#abc4db;
+ border-width:1px;
+}
+
+table.wiki-table tr.table-odd{
+ background-color:#ffffc0;
+ border-style:dotted;
+ border-color:#abc4db;
+ border-width:1px;
+ border-collapse: collapse
+}
+
+table.wiki-table tr.table-even{
+ background-color:#efefd5;
+ border-style:dotted;
+ border-color:#abc4db;
+ border-width:1px;
+}
+
+table.wiki-table tbody tr{
+ background-color:#efefd5;
+ border-style:dotted;
+ border-color:#abc4db;
+ border-width:1px;
+}
+
------------------------------------------------------
http://scarab.tigris.org/ds/viewMessage.do?dsForumId=3577&dsMessageId=3086364