summaryrefslogtreecommitdiff
path: root/assets/css/src/table.css
blob: 4b776f4b7c4d0cd1240760b62d44d53b29bf3f44 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/* tables */
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 20px;
    font-size: 0.95em;
}

#calendar table {
    margin-bottom: 0;
}

th,
td {
    border: 1px solid #eee;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 3px;
    padding-right: 3px;
}

td {
    vertical-align: top;
}

th {
    background: #fbfbfb;
    text-align: left;
}

td li {
    margin-left: 20px;
}

.table-small {
    font-size: 0.8em;
}

th a {
    text-decoration: none;
    color: #333;
}

th a:focus,
th a:hover {
    text-decoration: underline;
}

.table-fixed {
    table-layout: fixed;
    white-space: nowrap;
}

.table-fixed th {
    overflow: hidden;
}

.table-fixed td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table-stripped tr:nth-child(odd) {
    background: #fefefe;
}

.column-3 {
    width: 3%;
}

.column-5 {
    width: 5%;
}

.column-8 {
    width: 7.5%;
}

.column-10 {
    width: 10%;
}

.column-12 {
    width: 12%;
}

.column-15 {
    width: 15%;
}

.column-18 {
    width: 18%;
}

.column-20 {
    width: 20%;
}

.column-25 {
    width: 25%;
}

.column-30 {
    width: 30%;
}

.column-35 {
    width: 35%;
}

.column-40 {
    width: 40%;
}

.column-50 {
    width: 50%;
}

.column-60 {
    width: 60%;
}

.column-70 {
    width: 70%;
}

.column-80 {
    width: 70%;
}

.draggable-row-handle {
    cursor: move;
    color: #dedede;
}

.draggable-row-handle:hover {
    color: #333;
}

tr.draggable-item-selected {
    background: #fff;
    border: 2px solid #666;
    box-shadow: 4px 2px 10px -4px rgba(0,0,0,0.55);
}

tr.draggable-item-selected td {
    border-top: none;
    border-bottom: none;
}

tr.draggable-item-selected td:first-child {
    border-left: none;
}

tr.draggable-item-selected td:last-child {
    border-right: none;
}

.table-stripped tr.draggable-item-hover,
tr.draggable-item-hover {
    background: #FEFFF2;
}