source: main/waeup.plonetheme.ngren3/trunk/waeup/plonetheme/ngren3/skins/plonetheme_bootstrap_custom/member.css @ 10222

Last change on this file since 10222 was 10084, checked in by Henrik Bettermann, 12 years ago

Fill trunk.

File size: 1.4 KB
Line 
1/* - member.css - */
2
3/* workflow state colors */
4
5.state-private {
6    color: Red !important;
7}
8.state-visible {
9    color: #74AE0B !important;
10}
11.state-published {
12    color: #436976 !important;
13}
14.state-pending {
15    color: #FFA500 !important;
16}
17.state-expired {
18    color: Red !important;
19}
20.syndicated {
21    color: #008000 !important;
22}
23
24/* Pulldown menu state indicators */
25
26#plone-contentmenu-workflow .state-private {
27    padding: 0 0.5em;
28    background-color: Red;
29    border: 0.1em solid Red;
30    color: White !important;
31    border-radius: 0.5em;
32    -webkit-border-radius: 0.5em;
33    -moz-border-radius: 0.5em;
34}
35#plone-contentmenu-workflow .state-visible {
36    padding: 0 0.5em;
37    background-color: #74AE0B;
38    border: 0.1em solid #74AE0B;
39    color: White !important;
40    border-radius: 0.5em;
41    -webkit-border-radius: 0.5em;
42    -moz-border-radius: 0.5em;
43}
44#plone-contentmenu-workflow .state-published {
45    padding: 0 0.5em;
46    background-color: #436976;
47    border: 0.1em solid #436976;
48    color: White !important;
49    border-radius: 0.5em;
50    -webkit-border-radius: 0.5em;
51    -moz-border-radius: 0.5em;
52}
53#plone-contentmenu-workflow .state-pending {
54    padding: 0 0.5em;
55    background-color: #FFA500;
56    border: 0.1em solid #FFA500;
57    color: White !important;
58    border-radius: 0.5em;
59    -webkit-border-radius: 0.5em;
60    -moz-border-radius: 0.5em;
61}
Note: See TracBrowser for help on using the repository browser.