Blame view

media/css/slick-default-theme.css 1.53 KB
janek37 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
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!
*/

.slick-header-columns {
    background: url('/media/css/lib/smoothness/images/header-columns-bg.gif') repeat-x center bottom;
    border-bottom: 1px solid silver;
}

.slick-header-column {
    background: url('/media/css/lib/smoothness/images/header-columns-bg.gif') repeat-x center bottom;
    border-right: 1px solid silver;
}

.slick-header-column:hover, .slick-header-column-active {
    background: white url('/media/css/lib/smoothness/images/header-columns-over-bg.gif') repeat-x center bottom;
}

.slick-row.ui-state-active {
    background: #F5F7D7;
}
janek37 authored
26
27
28
29
30
.slick-row.active {
    background: blue none;
    color: #ddd;
}
janek37 authored
31
32
33
34
35
36
.slick-row {
    position: absolute;
    background: white;
    border: 0px;
}
janek37 authored
37
/*
janek37 authored
38
39
40
.slick-row.selected {
    z-index: 10;
    background: #DFE8F6;
janek37 authored
41
}*/
janek37 authored
42
43
44
45
46
47

.slick-cell {
    padding-left: 4px;
    padding-right: 4px;
}
janek37 authored
48
/*
janek37 authored
49
50
51
.slick-cell.selected {
    border-color: gray;
    border-style: solid;
janek37 authored
52
}*/
janek37 authored
53
54

.slick-sortable-placeholder {
janek37 authored
55
    background: silver !important;
janek37 authored
56
57
}
janek37 authored
58
.slick-row[row$="1"], .slick-row[row$="3"], .slick-row[row$="5"], .slick-row[row$="7"], .slick-row[row$="9"] {
janek37 authored
59
60
61
62
63
64
65
66
67
68
69
70
71
    background: #fafafa;
}

.slick-row.ui-state-active {
    background: #F5F7D7;
}

.slick-row.loading {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.slick-cell.invalid {
janek37 authored
72
    border-color: red;
janek37 authored
73
}