assigning tickets, new ui
[redakcja.git] / redakcja / static / css / filelist.css
1 /*
2     Document   : filelist
3     Created on : 2009-09-04, 20:44:44
4     Author     : lreqc
5     Description:
6         Dodatkowe style dla listy plików na stronie głównej.
7 */
8
9 body {
10     margin: 0;
11     font-family: verdana, sans-serif;
12     font-size: 12px;
13 }
14
15
16 .clr {
17     clear: both;
18 }
19
20 #tabs-nav {
21     padding: 5px 5px 0 10px;
22     background: #ffdfbf;
23     border-bottom: 1px solid #ff8000;
24     position: relative;
25 }
26
27 #tabs-nav-left {
28     margin-left: 60px;
29 }
30
31 #tabs-nav-left a {
32     display: block;
33     float: left;
34     padding: 5px 20px 5px 20px;
35     margin-bottom: -1px;
36     border-width: 1px;
37     border-style: solid;
38     border-color: rgba(0,0,0,0);
39 }
40
41 #tabs-nav-left .active {
42     background: white;
43     border-color: #ff8000 #ff8000 white #ff8000;
44 }
45
46 #login-box {
47     float: right;
48 }
49
50 #logo {
51     position: absolute;
52     bottom: 0;
53 }
54
55 #content {
56     padding: 10px;
57 }
58
59
60
61 #file-list {
62         overflow: visible;
63         float: left;
64         max-width: 50%;
65         padding-right: 2%;
66         border-right: 1px dashed black;
67
68 }
69
70 #last-edited-list {
71         float: left;
72         max-width: 35%;
73         margin-left: 5%;
74 }
75
76 #last-edited-list ul {
77         margin: 0px;
78 }
79
80 #last-edited-list li {
81         margin-bottom: 1em;
82 }
83
84 #last-edited-list .date {
85         font-size: 70%;
86         color: grey;
87 }
88
89 a, a:visited, a:active {
90         color: #bf6000;
91         text-decoration: none;
92 }
93
94 a:hover {
95         text-decoration: underline;
96 }
97
98
99
100 .error {
101     color: red;
102     font-weight: bold;
103 }
104
105 .success {
106     color: green;
107 }
108
109 #error-list {
110     color: red;
111 }
112
113 #skipped-list {
114     color: #666;
115 }
116
117 .chunkno {
118     font-size: .7em;
119 }
120
121 td {
122     vertical-align: top;
123 }
124 .chunk-list {
125     padding-left: 2em;
126 }
127
128
129 .fix {
130     border: 1px solid gray;
131     font-size: 0.7em;
132     padding: 3px;
133 }
134
135 .fix-info {
136     font-size: 0.7em;
137     font-style: italic;
138 }
139
140 .chunk-plain a {color: gray;}
141 .chunk-xml a {color: gray; font-style: italic;}
142 .chunk-wl-broken a {color: red;}
143 .chunk-wl a {color: green;}
144 .chunk-wl-fix a {color: black;}
145
146
147 /* Big cheesy publish button */
148 #publish-button {
149         color: black;
150         border: 2px solid black; 
151         border-radius: 20px;
152         box-shadow: 0px 0px 15px #88f;
153         /*moz-border-radius: 20px;
154         -moz-box-shadow: 10px 10px 5px #888;*/
155         font-size:1.5em; 
156         padding: 1em; 
157         background: -moz-linear-gradient(top,  #fff,  #44f);
158         -moz-transition: all 0.5s ease-in-out;        
159         margin: 20px;
160 }
161
162 #publish-button:hover {
163     -moz-transition: all 0.5s ease-in-out;        
164     -moz-transform: scale(1.1);
165     background: -moz-linear-gradient(top,  #fff,  #88f);
166     -moz-box-shadow: 0px 0px 30px #ff8;
167 }
168
169 #publish-button:active {
170     background: -moz-linear-gradient(top,  #88f,  #fff);
171 }