source: trunk/css/codebase.inc.css @ 367

Last change on this file since 367 was 362, checked in by quinn, 15 years ago

Added a GPL license info header to all source files. Updated license to GPL v3.

File size: 1.6 KB
RevLine 
[1]1/**
2 * codebase.css
3 *
4 * CSS used in codebase templates and scripts that generate HTML. Do not arbitrarily
5 * edit this code! This file is used between many sites and modifying it may result
6 * in something breaking. Instead, overwrite these values in a specific site by
7 * adding new definitions to a screen.css file.
8 */
9
[263]10/* App.inc.php ------------------------------------------------------ */
[274]11.sc-msg { z-index: 2000000000; } /* Close to the maximum of a 32-bit integer. */
[295]12.sc-msg-success,
13.sc-msg-notice,
[102]14.sc-msg-warning,
[295]15.sc-msg-error {
[1]16    margin: 0 0 6px 0;
17    padding: 5px;
18    background: #fff;
[98]19    color: #f00;
20    border: 1px solid #f00;
[1]21}
[98]22.sc-msg-success { color: #090; border-color: #090; }
23.sc-msg-notice { color: #C60; border-color: #C60; }
[1]24
[295]25form .sc-msg-success,
26form .sc-msg-notice,
27form .sc-msg-warning,
28form .sc-msg-error {
29    border-style: none;
30    padding: 0;
31}
32
[263]33/* PEdit.inc.php ---------------------------------------------------- */
[98]34.sc-pedit-form {}
35.sc-pedit-item,
36.sc-pedit-buttons { margin: .75em 0; }
[107]37.sc-pedit-buttons { clear: both; }
[98]38#sc-pedit-versions-table {
39    margin-bottom: .75em;
40    border-collapse: collapse;
41    border-spacing: 0;
[1]42}
[98]43#sc-pedit-versions-table th, 
44#sc-pedit-versions-table td {
45    border-bottom: 1px solid #CC9;
46    margin: 0;
47    padding: 2px 10px;
48    vertical-align: baseline;
[97]49}
[98]50#sc-pedit-versions-table th {
51    white-space: nowrap;
[97]52}
[257]53
[263]54/* Utilities.inc.php ------------------------------------------------ */
[257]55.sc-highlightwords {
56    background-color: #EBFE00;
57    color: #000;
[263]58}
59
60/* Captcha.inc.php -------------------------------------------------- */
61#sc-captcha {
62    font-size: 0.5em;
63    line-height: 0.8em;
[295]64}
Note: See TracBrowser for help on using the repository browser.