source: tags/2.1.5/css/codebase.inc.css

Last change on this file 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
Line 
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
10/* App.inc.php ------------------------------------------------------ */
11.sc-msg { z-index: 2000000000; } /* Close to the maximum of a 32-bit integer. */
12.sc-msg-success,
13.sc-msg-notice,
14.sc-msg-warning,
15.sc-msg-error {
16    margin: 0 0 6px 0;
17    padding: 5px;
18    background: #fff;
19    color: #f00;
20    border: 1px solid #f00;
21}
22.sc-msg-success { color: #090; border-color: #090; }
23.sc-msg-notice { color: #C60; border-color: #C60; }
24
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
33/* PEdit.inc.php ---------------------------------------------------- */
34.sc-pedit-form {}
35.sc-pedit-item,
36.sc-pedit-buttons { margin: .75em 0; }
37.sc-pedit-buttons { clear: both; }
38#sc-pedit-versions-table {
39    margin-bottom: .75em;
40    border-collapse: collapse;
41    border-spacing: 0;
42}
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;
49}
50#sc-pedit-versions-table th {
51    white-space: nowrap;
52}
53
54/* Utilities.inc.php ------------------------------------------------ */
55.sc-highlightwords {
56    background-color: #EBFE00;
57    color: #000;
58}
59
60/* Captcha.inc.php -------------------------------------------------- */
61#sc-captcha {
62    font-size: 0.5em;
63    line-height: 0.8em;
64}
Note: See TracBrowser for help on using the repository browser.