Patch #20287 » divgrid.css
1 |
/* Simple Grid Styles for tables with fixed First Row and Line */
|
---|---|
2 |
|
3 |
/* Cell */
|
4 |
.g_c { height: 1.5em; |
5 |
padding: 6px 12px 6px 12px; |
6 |
border-width: 0px 1px 1px 0px; |
7 |
border-style: solid; |
8 |
border-color: #CCC; |
9 |
text-align: center; |
10 |
overflow: hidden; } |
11 |
|
12 |
/* First Line */
|
13 |
.g_h { background-color: #EEE; |
14 |
font-weight: bold; |
15 |
text-align: center; } |
16 |
|
17 |
/* First Row */
|
18 |
.g_v { text-align: left; } |
19 |
|
20 |
/* Image in Cell */
|
21 |
.g_i { height: 16px; |
22 |
width: 16px; |
23 |
margin: 0 auto; } |
24 |
|
25 |
/* Separation Lines */
|
26 |
.g_s { font-weight: bold; |
27 |
border-right: 0px; } |
28 |
|
29 |
/* Marked Cell */
|
30 |
.g_m { background-color: #BFB; } |
31 |
|
32 |
/* Even Cell */
|
33 |
.g_e { background-color: #F6F7F8; } |
34 |
|
35 |
/* Odd Cell */
|
36 |
.g_o { background-color: #FFFFFF; } |