source: branches/1.2/workflow/templates/default/css/adminjobs.css @ 1349

Revision 1349, 1.6 KB checked in by niltonneto, 15 years ago (diff)

Ticket #561 - Inclusão do módulo Workflow faltante nessa versão.

Line 
1table.jobList
2{
3        border-collapse: collapse;
4        border-bottom: 1px solid #CCCCCC;
5        width: 60%;
6}
7
8table.jobList tr
9{
10        border-top: 1px solid #CCCCCC;
11}
12
13table.jobList tr td.jobListIcon
14{
15        width: 32px;
16}
17
18table.jobList tr td.jobListActions
19{
20        text-align: right;
21}
22
23table.jobList tr td h1
24{
25        font-size: 16px;
26        margin: 0px;
27}
28
29table.jobList tr td h3
30{
31        font-size: 10px;
32        margin: 0;
33        color: gray;
34}
35
36table.logList
37{
38        border-collapse: collapse;
39}
40
41table.logList tr
42{
43        height: 32px;
44        background-repeat: no-repeat;
45}
46
47table.logList tr td.logListIcon
48{
49        padding-left: 35px;
50        background-repeat: no-repeat;
51}
52
53table.logList tr.fail
54{
55        background-color: #FFD;
56}
57
58table.logList tr.fail td.logListIcon
59{
60        background-image: url('../../../templateFile.php?file=images/exclamation.png');
61}
62
63table.logList tr.success
64{
65        background-color: #DFD;
66}
67
68table.logList tr.success td.logListIcon
69{
70        background-image: url('../../../templateFile.php?file=images/apply.png');
71}
72
73table.logList tr.unknown
74{
75        background-color: #DDD;
76}
77
78table.logList tr.unknown td.logListIcon
79{
80        background-image: url('../../../templateFile.php?file=images/question.png');
81}
82
83table.logList tr.error
84{
85        background-color: #FDD;
86}
87
88table.logList tr.error td.logListIcon
89{
90        background-image: url('../../../templateFile.php?file=images/button_cancel.png');
91}
92
93table.logList
94{
95        width: 70%;
96}
97
98table.logList tr td.logDate
99{
100        font-size: 15px !important;
101        font-weight: bold;
102        width: 120px;
103}
104
105table.jobResult
106{
107        border-collapse: collapse;
108        border: 1px dashed #CCCCCC;
109        width: 100%;
110}
111
112table.jobResult tr th
113{
114        background-color: #AAAAAA;
115        font-size: 11px;
116        font-weight: bold;
117}
118
119table.jobResult tr td
120{
121        font-size: 11px;
122}
Note: See TracBrowser for help on using the repository browser.