Blame view

media/css/lib/slick.grid.css 2.8 KB
janek37 authored
1
2
3
4
5
6
7
/*
IMPORTANT:
In order to preserve the uniform grid appearance, all cell styles need to have padding, margin and border sizes.
No built-in (selected, editable, highlight, flashing, invalid, loading, :focus) or user-specified CSS
classes should alter those!
*/
janek37 authored
8
9
10
11
.slick-header.ui-state-default, .slick-headerrow.ui-state-default {
  width: 100%;
  overflow: hidden;
  border-left: 0px;
janek37 authored
12
13
}
janek37 authored
14
15
16
17
18
.slick-header-columns, .slick-headerrow-columns {
  position: relative;
  white-space: nowrap;
  cursor: default;
  overflow: hidden;
janek37 authored
19
20
21
}

.slick-header-column.ui-state-default {
janek37 authored
22
23
24
  position: relative;
  display: inline-block;
  overflow: hidden;
janek37 authored
25
  -o-text-overflow: ellipsis;
janek37 authored
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  text-overflow: ellipsis;
  height: 16px;
  line-height: 16px;
  margin: 0;
  padding: 4px;
  border-right: 1px solid silver;
  border-left: 0px;
  border-top: 0px;
  border-bottom: 0px;
  float: left;
}

.slick-headerrow-column.ui-state-default {
  padding: 4px;
janek37 authored
40
41
42
}

.slick-header-column-sorted {
janek37 authored
43
  font-style: italic;
janek37 authored
44
45
46
}

.slick-sort-indicator {
janek37 authored
47
48
49
50
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 4px;
janek37 authored
51
52
  margin-top: 6px;
  float: left;
janek37 authored
53
54
55
}

.slick-sort-indicator-desc {
janek37 authored
56
  background: url(images/sort-desc.gif);
janek37 authored
57
58
59
}

.slick-sort-indicator-asc {
janek37 authored
60
  background: url(images/sort-asc.gif);
janek37 authored
61
62
63
}

.slick-resizable-handle {
janek37 authored
64
65
66
67
68
69
70
71
  position: absolute;
  font-size: 0.1px;
  display: block;
  cursor: col-resize;
  width: 4px;
  right: 0px;
  top: 0;
  height: 100%;
janek37 authored
72
73
74
}

.slick-sortable-placeholder {
janek37 authored
75
  background: silver;
janek37 authored
76
77
78
}

.grid-canvas {
janek37 authored
79
80
  position: relative;
  outline: 0;
janek37 authored
81
82
83
}

.slick-row.ui-widget-content, .slick-row.ui-state-active {
janek37 authored
84
85
86
  position: absolute;
  border: 0px;
  width: 100%;
janek37 authored
87
88
}
janek37 authored
89
90
91
92
93
94
.slick-cell, .slick-headerrow-column {
  position: absolute;
  border: 1px solid transparent;
  border-right: 1px dotted silver;
  border-bottom-color: silver;
  overflow: hidden;
janek37 authored
95
  -o-text-overflow: ellipsis;
janek37 authored
96
97
98
99
100
101
102
103
104
105
106
107
108
109
  text-overflow: ellipsis;
  vertical-align: middle;
  z-index: 1;
  padding: 1px 2px 2px 1px;
  margin: 0;
  white-space: nowrap;
  cursor: default;
}

.slick-group {
}

.slick-group-toggle {
  display: inline-block;
janek37 authored
110
111
112
}

.slick-cell.highlighted {
janek37 authored
113
114
115
116
  background: lightskyblue;
  background: rgba(0, 0, 255, 0.2);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
janek37 authored
117
  -o-transition: all 0.5s;
janek37 authored
118
  transition: all 0.5s;
janek37 authored
119
120
121
}

.slick-cell.flashing {
janek37 authored
122
  border: 1px solid red !important;
janek37 authored
123
124
125
}

.slick-cell.editable {
janek37 authored
126
127
128
129
130
  z-index: 11;
  overflow: visible;
  background: white;
  border-color: black;
  border-style: solid;
janek37 authored
131
132
133
}

.slick-cell:focus {
janek37 authored
134
  outline: none;
janek37 authored
135
136
137
}

.slick-reorder-proxy {
janek37 authored
138
139
140
141
142
  display: inline-block;
  background: blue;
  opacity: 0.15;
  filter: alpha(opacity = 15);
  cursor: move;
janek37 authored
143
144
145
}

.slick-reorder-guide {
janek37 authored
146
147
148
149
150
151
152
153
154
155
156
  display: inline-block;
  height: 2px;
  background: blue;
  opacity: 0.7;
  filter: alpha(opacity = 70);
}

.slick-selection {
  z-index: 10;
  position: absolute;
  border: 2px dashed black;
janek37 authored
157
}