plugins: updated query_editor
[myslice.git] / plugins / hazelnut / hazelnut.css
1 div.hazelnut-spacer {
2     height:10px;
3     clear: both;
4 }
5
6 div.Hazelnut table.dataTable th {
7     font: bold 12px/22px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
8     color: #4f6b72;
9     border-right: 1px solid #C1DAD7;
10     border-bottom: 1px solid #C1DAD7;
11     border-top: 1px solid #C1DAD7;
12     letter-spacing: 1px;
13     text-transform: uppercase;
14     text-align: left;
15     padding: 8px 12px 4px 20px;
16     vertical-align:middle;
17 /*    background: #CAE8EA url(../img/tablesort-header.jpg) no-repeat; */
18 }
19
20 div.Hazelnut table.dataTable td, div.Hazelnut table.dataTable textarea, div.Hazelnut table.dataTable input [type="text"] {
21     font: normal 12px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
22     border-right: 1px solid #C1DAD7;
23     border-bottom: 1px solid #C1DAD7;
24 }
25 div.Hazelnut table.dataTable td {
26     padding: 4px 8px 4px 8px;
27     /* this applies on even rows only, odd ones have a setting in bootstrap of rbg 249.249.249 */
28     background-color: #f4f4f4;
29 }
30 div.Hazelnut table.dataTable td a {
31     font-weight:normal;
32 }
33 /* these come from bootstrap */
34 div.Hazelnut div.dataTables_info {
35     font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
36 }
37
38 /* one could think or using repeat-x here but that's not working because of the arrows
39  * we might need to make these wider some day 
40  * and/or to add background-color: #caebea
41  * which would look less conspicuous in case of overflow
42 */
43
44 div.Hazelnut table.dataTable thead .sorting { background: url('../img/tablesort-header-sortable.png') no-repeat; }
45 div.Hazelnut table.dataTable thead .sorting_asc { background: url('../img/tablesort-header-up.png') no-repeat; }
46 div.Hazelnut table.dataTable thead .sorting_desc { background: url('../img/tablesort-header-down.png') no-repeat; }
47 /* this icons set does not have that exact equivalent - using an approximation for now */
48 div.Hazelnut table.dataTable thead .sorting_asc_disabled { background: url('../img/tablesort-header.png') no-repeat; }
49 div.Hazelnut table.dataTable thead .sorting_desc_disabled { background: url('../img/tablesort-header.png') no-repeat; }
50
51 /* the footers are not active */
52 div.Hazelnut table.dataTable tfoot { 
53     background: url('../img/tablesort-header.png') no-repeat;
54     background-color: #caebea;
55 }
56 /* and when sorting is turned off it's useful to set this on header too */
57 div.Hazelnut table.dataTable thead { 
58     background: url('../img/tablesort-header.png') no-repeat;
59     background-color: #caebea;
60 }