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

Last change on this file since 747 was 741, checked in by anonymous, 4 years ago

Remove excess whitespace and comments from css

File size: 2.1 KB
RevLine 
[741]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*/
[1]9
[741]10/* App.inc.php */
[394]11.sc-msg {
[741]12    z-index: 2000000000; /* Close to the maximum of a 32-bit integer. */
[394]13    margin: 1em 0;
14    background: #fafafa;
[485]15    padding: 0;
16    border: none;
[1]17}
[485]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; }
[666]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; }
[394]26.sc-msg > .sc-msg-success,
27.sc-msg > .sc-msg-notice,
28.sc-msg > .sc-msg-warning,
29.sc-msg > .sc-msg-error {
[666]30    padding: .5em 1em;
[485]31    margin: 5px 0;
32    color: #fff;
[295]33}
[643]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) {
[485]38    color: #fff;
[537]39    text-decoration: underline;
[485]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; }
[741]45/* PEdit.inc.php */
[98]46.sc-pedit-form {}
47.sc-pedit-item,
48.sc-pedit-buttons { margin: .75em 0; }
[107]49.sc-pedit-buttons { clear: both; }
[98]50#sc-pedit-versions-table {
51    margin-bottom: .75em;
52    border-collapse: collapse;
53    border-spacing: 0;
[1]54}
[455]55#sc-pedit-versions-table th,
[98]56#sc-pedit-versions-table td {
57    border-bottom: 1px solid #CC9;
58    margin: 0;
59    padding: 2px 10px;
60    vertical-align: baseline;
[97]61}
[98]62#sc-pedit-versions-table th {
63    white-space: nowrap;
[97]64}
[741]65/* Utilities.inc.php */
[257]66.sc-highlightwords {
67    background-color: #EBFE00;
68    color: #000;
[263]69}
[741]70/* Captcha.inc.php */
[263]71#sc-captcha {
72    font-size: 0.5em;
73    line-height: 0.8em;
[295]74}
Note: See TracBrowser for help on using the repository browser.