UNPKG

2.73 kBCSSView Raw
1/*
2IMPORTANT:
3In order to preserve the uniform grid appearance, all cell styles need to have padding, margin and border sizes.
4No built-in (selected, editable, highlight, flashing, invalid, loading, :focus) or user-specified CSS
5classes should alter those!
6*/
7
8.slick-header-columns {
9 background: url('images/header-columns-bg.gif') repeat-x center bottom;
10 border-bottom: 1px solid silver;
11}
12
13.slick-header-column {
14 background: url('images/header-columns-bg.gif') repeat-x center bottom;
15 border-right: 1px solid silver;
16}
17
18.slick-header-column:hover, .slick-header-column-active {
19 background: white url('images/header-columns-over-bg.gif') repeat-x center bottom;
20}
21
22.slick-headerrow {
23 background: #fafafa;
24}
25
26.slick-headerrow-column {
27 background: #fafafa;
28 border-bottom: 0;
29 height: 100%;
30}
31
32.slick-row.ui-state-active {
33 background: #F5F7D7;
34}
35
36.slick-row {
37 position: absolute;
38 background: white;
39 border: 0px;
40 line-height: 20px;
41}
42
43.slick-row.selected {
44 z-index: 10;
45 background: #DFE8F6;
46}
47
48.slick-cell {
49 padding-left: 4px;
50 padding-right: 4px;
51}
52
53.slick-group {
54 border-bottom: 2px solid silver;
55}
56
57.slick-group-toggle {
58 width: 9px;
59 height: 9px;
60 margin-right: 5px;
61}
62
63.slick-group-toggle.expanded {
64 background: url(images/collapse.gif) no-repeat center center;
65}
66
67.slick-group-toggle.collapsed {
68 background: url(images/expand.gif) no-repeat center center;
69}
70
71.slick-group-totals {
72 color: gray;
73 background: white;
74}
75
76.slick-group-select-checkbox {
77 width: 13px;
78 height: 13px;
79 margin: 3px 10px 0 0;
80 display: inline-block;
81}
82.slick-group-select-checkbox.checked {
83 background: url(images/GrpCheckboxY.png) no-repeat center center;
84}
85
86.slick-group-select-checkbox.unchecked {
87 background: url(images/GrpCheckboxN.png) no-repeat center center;
88}
89
90.slick-cell.selected {
91 background-color: beige;
92}
93
94.slick-cell.active {
95 border-color: gray;
96 border-style: solid;
97}
98
99.slick-sortable-placeholder {
100 background: silver !important;
101}
102
103.slick-row.odd {
104 background: #fafafa;
105}
106
107.slick-row.ui-state-active {
108 background: #F5F7D7;
109}
110
111.slick-row.loading {
112 opacity: 0.5;
113 filter: alpha(opacity = 50);
114}
115
116.slick-cell.invalid {
117 border-color: red;
118 -moz-animation-duration: 0.2s;
119 -webkit-animation-duration: 0.2s;
120 -moz-animation-name: slickgrid-invalid-hilite;
121 -webkit-animation-name: slickgrid-invalid-hilite;
122}
123
124@-moz-keyframes slickgrid-invalid-hilite {
125 from { box-shadow: 0 0 6px red; }
126 to { box-shadow: none; }
127}
128
129@-webkit-keyframes slickgrid-invalid-hilite {
130 from { box-shadow: 0 0 6px red; }
131 to { box-shadow: none; }
132}
\No newline at end of file