Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / vigiboard / public / css / vigiboard_style.css @ 693e96f1

History | View | Annotate | Download (2.35 KB)

1
body {
2
        text-align: left;
3
        width: 99%;
4
        margin: auto;
5
        padding: 0;
6
        font-size: 10px;
7
        font-family:"Lucida Grande","Lucida Sans Unicode",geneva,verdana,sans-serif;
8
}
9

    
10
.table_top {
11
        border: solid 0px black;
12
        width: 100%;
13
        background-color: #F0F1F5;
14
        border-collapse:collapse;
15
        margin-bottom: 10px;
16
}
17
.table_top tr td {
18
        padding: 4px;
19
}
20

    
21
.history_table {
22
        width: 100%;
23
        margin-bottom: 30px;
24
}
25
.history_table thead {
26
        background-color:#F8F8F8;
27
        font-weight:bold;
28
}
29

    
30

    
31
.vigitable {
32
        width: 100%;
33
        border-collapse: collapse;
34
}
35

    
36
.vigitable thead {
37
        text-align: center;
38
}
39

    
40
.vigitable thead tr td {
41
        padding: 0px;
42
}
43

    
44
.vigitable thead tr th {
45
        padding: 4px 10px;
46
        background-color: #EBECF0;
47
        font-weight: bold;
48
        border: solid 1px #EBECF0;
49
}
50

    
51
.vigitable tbody tr {
52
        border: solid 1px white;
53
        empty-cells: show;
54
}
55

    
56
.vigitable tbody tr td {
57
        border: solid 1px white;
58
        padding: 3px 10px;
59
        empty-cells: show;
60
}
61

    
62
.vigitable .fleche_detail {
63
        padding: 3px;
64
}
65

    
66
tr.odd {
67
        background-color: #F8F8F8;
68
}
69

    
70
tr.even {
71
        background-color: #F0F0F0;
72
}
73

    
74
td.Minor {
75
        background-color: #FFFF00;
76
}
77

    
78
td.Major {
79
        background-color: #FF8700;
80
}
81

    
82
td.Critical {
83
        background-color: #FF0000;
84
}
85

    
86
td.Cleared {
87
        background-color: #73DE78;
88
}
89

    
90
td.MinorAck {
91
        background-color: #FCFCA2;
92

    
93
}
94

    
95
td.MajorAck {
96
        background-color: #FCCA90;
97
}
98

    
99
td.CriticalAck {
100
        background-color: #FC9090;
101
}
102

    
103
td.ClearedAck {
104
        background-color: #A9EBAC;
105
}
106

    
107
a {
108
        text-decoration: none;
109
        color: black;
110
}
111

    
112
img { 
113
        border: none;
114
        margin: 0px;
115
}
116

    
117
#flash {
118
        display: none;
119
}
120
#flash, .notice {
121
font-size:120%;
122
font-weight:bolder;
123
margin:0pt auto 0.5em;
124
margin-left: 26px;
125
width:400px;
126
position: absolute;
127
}
128
#flash div, .notice {
129
padding:8px 7px 6px 40px;
130
}
131
#flash .ok {
132
background:#d8ecd8 url(../images/ok.png) no-repeat scroll 0px center;
133
}
134
#flash .warning {
135
background:#fff483 url(../images/warning.png) no-repeat scroll 0px center;
136
}
137
#flash .error {
138
background:#f9c5c1 url(../images/error.png) no-repeat scroll 0px center;
139
}
140
#flash .alert,
141
#flash .info {
142
background:#EEEEFF url(../images/info.png) no-repeat scroll 0px center;
143
}
144
.notice {
145
background:#EEEEFF url(../images/info.png) no-repeat scroll 0px center;
146
}
147
.fielderror {
148
color:red;
149
font-weight:bold;
150
}
151
div.clearingdiv {
152
clear:both;
153
}
154

    
155
.refresh_select {
156
        background-color: #DBEAF5;
157
        border: 1px solid #4682B4;
158
}
159

    
160
.refresh_button {
161
        background-color: red;
162
        color: white
163
}
164