root/branches/0.9/pylucid_project/media/PyLucid/pylucid_admin.css

Revision 2588, 3.0 KB (checked in by JensDiemer, 4 months ago)

turn pre text in page_msg to white color.

Line 
1.pylucid_form * {
2    /* reset django values */
3    font-size: 1em;
4}
5.pylucid_form {
6    font-size: 1.1em;
7}
8.pylucid_form h2 {
9    margin: 0.5em;
10    font-size: 1.5em;
11}
12.pylucid_form h2:hover {
13    background-color: #eee;
14}
15.pylucid_form fieldset {
16    margin: 1em;
17    padding: 0.5em;
18}
19.pylucid_form div.field {
20    margin: 0.5em 0em 0.5em 0em;
21    padding: 0.5em 0em 0.5em 0em;
22}
23.pylucid_form div.error {
24    padding: 0.5em;
25    border:1px solid #f00;
26    background-color: #ffeeee;
27}
28.pylucid_form .errorlist a {
29    color: #ffffff;
30}
31.pylucid_form .errorlist a:hover {
32    color: #ffff00;
33}
34.pylucid_form label {
35    width: 150px;
36    float: left;
37}
38.pylucid_form .field_help_text {
39    margin-left: 150px;
40    font-size: 0.75em;
41}
42.pylucid_form input type["checkbox"] {
43    color:red;
44    float: left;
45}
46.pylucid_form input {
47    max-width: 40%;
48}
49.pylucid_form textarea {
50    width: 100%;
51}
52
53/* hover highlight all fields */
54.pylucid_form .field {
55    border:1px solid #ffffff;
56    background-color: #ffffff;
57}
58.pylucid_form .field:hover {
59    border-color: #dddddd;
60    background-color: #fafafa;
61}
62.pylucid_form .field input, .pylucid_form .field select, .pylucid_form .field textarea {
63    border:1px solid #cccccc;
64}
65.pylucid_form .field:hover input, .pylucid_form .field:hover select, .pylucid_form .field:hover textarea {
66    border-color: #000000;
67}
68/* submit, reset, etc. buttons */
69.pylucid_form .helper_buttons {
70    background-color: #def;
71    padding: 10px;
72}
73.pylucid_form .helper_buttons input, .pylucid_form .helper_buttons button {
74    min-width: 4em;
75    padding: 0.3em;
76    margin: 0.3em;
77    background: #fff;
78    border-color: #DDD #AAA #AAA #DDD;
79    border-style: solid;
80    border-width: 1px;
81    color: #000;
82}
83
84#page_msg pre {
85  color: #ffffff;
86  border: 1px solid #eeeeee;
87  padding: 5px;
88  margin: 5px;
89}
90
91table.info {
92    margin: 0.4em;
93}
94table.info td {
95    padding: 0.5em;
96}
97table.info caption {
98    font-weight:bold
99}
100/* ----------------------------------------------------------------------------
101   Headline Anchor
102------------------------------------------------------------------------------- */
103.top_link {
104  color: #000000;
105}
106.uarr {
107  color: #eeeeee;
108}
109.top_link:hover .uarr {
110  color: #000000;
111}
112.section_anchor {
113  text-shadow: 0px 0px #ffffff;
114  text-decoration:none;
115  color: #eeeeee!important;
116  padding-right: 1em;
117}
118.headline_anchor:hover .section_anchor {
119  color: #999999;
120}
121.section_anchor:hover {
122  color:#000000!important;
123  text-decoration:underline;
124  text-shadow: 2px 2px 2px #999999;
125}
126/* ----------------------------------------------------------------------------
127   TOC Plugin
128------------------------------------------------------------------------------- */
129.PyLucidPlugins.TOC {
130  border: 1px solid #eeeeee;
131  background-color: #fefefe;
132  margin: 3em;
133  padding: 1em 0em 1em 0em;
134}
135.PyLucidPlugins.TOC h3 {
136  margin: 0em;
137  color: #333333;
138}
139.PyLucidPlugins.TOC * {
140  margin: 0em;
141  color: #dddddd;
142}
143.PyLucidPlugins.TOC a {
144  color: #777777;
145}
146.PyLucidPlugins.TOC a:hover {
147  color: #286ea0;
148}
Note: See TracBrowser for help on using the browser.