source: trunk/css/codebase.inc.css

Last change on this file was 741, checked in by anonymous, 3 years ago

Remove excess whitespace and comments from css

File size: 2.1 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    background: #fafafa;
15    padding: 0;
16    border: none;
17}
18form .sc-msg-success label { color: #76B15B; font-weight: bold; }
19form .sc-msg-notice label { color: #B19332; font-weight: bold; }
20form .sc-msg-warning label { color: #9200AE; font-weight: bold; }
21form .sc-msg-error label { color: #b34; font-weight: bold; }
22.sc-msg > .sc-msg-success { color: #76B15B; }
23.sc-msg > .sc-msg-notice { color: #B19332; }
24.sc-msg > .sc-msg-warning { color: #9200AE; }
25.sc-msg > .sc-msg-error { color: #b34; }
26.sc-msg > .sc-msg-success,
27.sc-msg > .sc-msg-notice,
28.sc-msg > .sc-msg-warning,
29.sc-msg > .sc-msg-error {
30    padding: .5em 1em;
31    margin: 5px 0;
32    color: #fff;
33}
34.sc-msg > .sc-msg-success a:not(.button),
35.sc-msg > .sc-msg-notice a:not(.button),
36.sc-msg > .sc-msg-warning a:not(.button),
37.sc-msg > .sc-msg-error a:not(.button) {
38    color: #fff;
39    text-decoration: underline;
40}
41.sc-msg > .sc-msg-success { background-color: #76B15B; }
42.sc-msg > .sc-msg-notice { background-color: #B19332; }
43.sc-msg > .sc-msg-warning { background-color: #9200AE; }
44.sc-msg > .sc-msg-error { background-color: #b34; }
45/* PEdit.inc.php */
46.sc-pedit-form {}
47.sc-pedit-item,
48.sc-pedit-buttons { margin: .75em 0; }
49.sc-pedit-buttons { clear: both; }
50#sc-pedit-versions-table {
51    margin-bottom: .75em;
52    border-collapse: collapse;
53    border-spacing: 0;
54}
55#sc-pedit-versions-table th,
56#sc-pedit-versions-table td {
57    border-bottom: 1px solid #CC9;
58    margin: 0;
59    padding: 2px 10px;
60    vertical-align: baseline;
61}
62#sc-pedit-versions-table th {
63    white-space: nowrap;
64}
65/* Utilities.inc.php */
66.sc-highlightwords {
67    background-color: #EBFE00;
68    color: #000;
69}
70/* Captcha.inc.php */
71#sc-captcha {
72    font-size: 0.5em;
73    line-height: 0.8em;
74}
Note: See TracBrowser for help on using the repository browser.