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

Last change on this file since 455 was 455, checked in by anonymous, 10 years ago

Fixed css widths of input elements.

File size: 1.6 KB
Line 
1/**
2 * codebase.inc.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 {
12    z-index: 2000000000;  /* Close to the maximum of a 32-bit integer. */
13    margin: 1em 0;
14    padding: .6em .6em .3em;
15    border: 1px solid #ddd;
16    background: #fafafa;
17}
18.sc-msg-success { color: #090; }
19.sc-msg-notice { color: #C60; }
20.sc-msg-warning,
21.sc-msg-error { color: #f00; }
22.sc-msg > .sc-msg-success,
23.sc-msg > .sc-msg-notice,
24.sc-msg > .sc-msg-warning,
25.sc-msg > .sc-msg-error {
26    background: #fafafa;
27    padding: 0;
28    margin: .5em 0;
29}
30
31/* PEdit.inc.php ---------------------------------------------------- */
32.sc-pedit-form {}
33.sc-pedit-item,
34.sc-pedit-buttons { margin: .75em 0; }
35.sc-pedit-buttons { clear: both; }
36#sc-pedit-versions-table {
37    margin-bottom: .75em;
38    border-collapse: collapse;
39    border-spacing: 0;
40}
41#sc-pedit-versions-table th,
42#sc-pedit-versions-table td {
43    border-bottom: 1px solid #CC9;
44    margin: 0;
45    padding: 2px 10px;
46    vertical-align: baseline;
47}
48#sc-pedit-versions-table th {
49    white-space: nowrap;
50}
51
52/* Utilities.inc.php ------------------------------------------------ */
53.sc-highlightwords {
54    background-color: #EBFE00;
55    color: #000;
56}
57
58/* Captcha.inc.php -------------------------------------------------- */
59#sc-captcha {
60    font-size: 0.5em;
61    line-height: 0.8em;
62}
Note: See TracBrowser for help on using the repository browser.