info@53
|
1 |
//
|
info@53
|
2 |
// Tables
|
info@53
|
3 |
// --------------------------------------------------
|
info@53
|
4 |
|
info@53
|
5 |
|
info@53
|
6 |
table {
|
info@53
|
7 |
max-width: 100%;
|
info@53
|
8 |
background-color: @table-bg;
|
info@53
|
9 |
}
|
info@53
|
10 |
th {
|
info@53
|
11 |
text-align: left;
|
info@53
|
12 |
}
|
info@53
|
13 |
|
info@53
|
14 |
|
info@53
|
15 |
// Baseline styles
|
info@53
|
16 |
|
info@53
|
17 |
.table {
|
info@53
|
18 |
width: 100%;
|
info@53
|
19 |
margin-bottom: @line-height-computed;
|
info@53
|
20 |
// Cells
|
info@53
|
21 |
> thead,
|
info@53
|
22 |
> tbody,
|
info@53
|
23 |
> tfoot {
|
info@53
|
24 |
> tr {
|
info@53
|
25 |
> th,
|
info@53
|
26 |
> td {
|
info@53
|
27 |
padding: @table-cell-padding;
|
info@53
|
28 |
line-height: @line-height-base;
|
info@53
|
29 |
vertical-align: top;
|
info@53
|
30 |
border-top: 1px solid @table-border-color;
|
info@53
|
31 |
}
|
info@53
|
32 |
}
|
info@53
|
33 |
}
|
info@53
|
34 |
// Bottom align for column headings
|
info@53
|
35 |
> thead > tr > th {
|
info@53
|
36 |
vertical-align: bottom;
|
info@53
|
37 |
border-bottom: 2px solid @table-border-color;
|
info@53
|
38 |
}
|
info@53
|
39 |
// Remove top border from thead by default
|
info@53
|
40 |
> caption + thead,
|
info@53
|
41 |
> colgroup + thead,
|
info@53
|
42 |
> thead:first-child {
|
info@53
|
43 |
> tr:first-child {
|
info@53
|
44 |
> th,
|
info@53
|
45 |
> td {
|
info@53
|
46 |
border-top: 0;
|
info@53
|
47 |
}
|
info@53
|
48 |
}
|
info@53
|
49 |
}
|
info@53
|
50 |
// Account for multiple tbody instances
|
info@53
|
51 |
> tbody + tbody {
|
info@53
|
52 |
border-top: 2px solid @table-border-color;
|
info@53
|
53 |
}
|
info@53
|
54 |
|
info@53
|
55 |
// Nesting
|
info@53
|
56 |
.table {
|
info@53
|
57 |
background-color: @body-bg;
|
info@53
|
58 |
}
|
info@53
|
59 |
}
|
info@53
|
60 |
|
info@53
|
61 |
|
info@53
|
62 |
// Condensed table w/ half padding
|
info@53
|
63 |
|
info@53
|
64 |
.table-condensed {
|
info@53
|
65 |
> thead,
|
info@53
|
66 |
> tbody,
|
info@53
|
67 |
> tfoot {
|
info@53
|
68 |
> tr {
|
info@53
|
69 |
> th,
|
info@53
|
70 |
> td {
|
info@53
|
71 |
padding: @table-condensed-cell-padding;
|
info@53
|
72 |
}
|
info@53
|
73 |
}
|
info@53
|
74 |
}
|
info@53
|
75 |
}
|
info@53
|
76 |
|
info@53
|
77 |
|
info@53
|
78 |
// Bordered version
|
info@53
|
79 |
//
|
info@53
|
80 |
// Add borders all around the table and between all the columns.
|
info@53
|
81 |
|
info@53
|
82 |
.table-bordered {
|
info@53
|
83 |
border: 1px solid @table-border-color;
|
info@53
|
84 |
> thead,
|
info@53
|
85 |
> tbody,
|
info@53
|
86 |
> tfoot {
|
info@53
|
87 |
> tr {
|
info@53
|
88 |
> th,
|
info@53
|
89 |
> td {
|
info@53
|
90 |
border: 1px solid @table-border-color;
|
info@53
|
91 |
}
|
info@53
|
92 |
}
|
info@53
|
93 |
}
|
info@53
|
94 |
> thead > tr {
|
info@53
|
95 |
> th,
|
info@53
|
96 |
> td {
|
info@53
|
97 |
border-bottom-width: 2px;
|
info@53
|
98 |
}
|
info@53
|
99 |
}
|
info@53
|
100 |
}
|
info@53
|
101 |
|
info@53
|
102 |
|
info@53
|
103 |
// Zebra-striping
|
info@53
|
104 |
//
|
info@53
|
105 |
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
info@53
|
106 |
|
info@53
|
107 |
.table-striped {
|
info@53
|
108 |
> tbody > tr:nth-child(odd) {
|
info@53
|
109 |
> td,
|
info@53
|
110 |
> th {
|
info@53
|
111 |
background-color: @table-bg-accent;
|
info@53
|
112 |
}
|
info@53
|
113 |
}
|
info@53
|
114 |
}
|
info@53
|
115 |
|
info@53
|
116 |
|
info@53
|
117 |
// Hover effect
|
info@53
|
118 |
//
|
info@53
|
119 |
// Placed here since it has to come after the potential zebra striping
|
info@53
|
120 |
|
info@53
|
121 |
.table-hover {
|
info@53
|
122 |
> tbody > tr:hover {
|
info@53
|
123 |
> td,
|
info@53
|
124 |
> th {
|
info@53
|
125 |
background-color: @table-bg-hover;
|
info@53
|
126 |
}
|
info@53
|
127 |
}
|
info@53
|
128 |
}
|
info@53
|
129 |
|
info@53
|
130 |
|
info@53
|
131 |
// Table cell sizing
|
info@53
|
132 |
//
|
info@53
|
133 |
// Reset default table behavior
|
info@53
|
134 |
|
info@53
|
135 |
table col[class*="col-"] {
|
info@53
|
136 |
position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
|
info@53
|
137 |
float: none;
|
info@53
|
138 |
display: table-column;
|
info@53
|
139 |
}
|
info@53
|
140 |
table {
|
info@53
|
141 |
td,
|
info@53
|
142 |
th {
|
info@53
|
143 |
&[class*="col-"] {
|
info@53
|
144 |
float: none;
|
info@53
|
145 |
display: table-cell;
|
info@53
|
146 |
}
|
info@53
|
147 |
}
|
info@53
|
148 |
}
|
info@53
|
149 |
|
info@53
|
150 |
|
info@53
|
151 |
// Table backgrounds
|
info@53
|
152 |
//
|
info@53
|
153 |
// Exact selectors below required to override `.table-striped` and prevent
|
info@53
|
154 |
// inheritance to nested tables.
|
info@53
|
155 |
|
info@53
|
156 |
// Generate the contextual variants
|
info@53
|
157 |
.table-row-variant(active; @table-bg-active);
|
info@53
|
158 |
.table-row-variant(success; @state-success-bg);
|
info@53
|
159 |
.table-row-variant(danger; @state-danger-bg);
|
info@53
|
160 |
.table-row-variant(warning; @state-warning-bg);
|
info@53
|
161 |
|
info@53
|
162 |
|
info@53
|
163 |
// Responsive tables
|
info@53
|
164 |
//
|
info@53
|
165 |
// Wrap your tables in `.table-responsive` and we'll make them mobile friendly
|
info@53
|
166 |
// by enabling horizontal scrolling. Only applies <768px. Everything above that
|
info@53
|
167 |
// will display normally.
|
info@53
|
168 |
|
info@53
|
169 |
@media (max-width: @screen-xs-max) {
|
info@53
|
170 |
.table-responsive {
|
info@53
|
171 |
width: 100%;
|
info@53
|
172 |
margin-bottom: (@line-height-computed * 0.75);
|
info@53
|
173 |
overflow-y: hidden;
|
info@53
|
174 |
overflow-x: scroll;
|
info@53
|
175 |
-ms-overflow-style: -ms-autohiding-scrollbar;
|
info@53
|
176 |
border: 1px solid @table-border-color;
|
info@53
|
177 |
-webkit-overflow-scrolling: touch;
|
info@53
|
178 |
|
info@53
|
179 |
// Tighten up spacing
|
info@53
|
180 |
> .table {
|
info@53
|
181 |
margin-bottom: 0;
|
info@53
|
182 |
|
info@53
|
183 |
// Ensure the content doesn't wrap
|
info@53
|
184 |
> thead,
|
info@53
|
185 |
> tbody,
|
info@53
|
186 |
> tfoot {
|
info@53
|
187 |
> tr {
|
info@53
|
188 |
> th,
|
info@53
|
189 |
> td {
|
info@53
|
190 |
white-space: nowrap;
|
info@53
|
191 |
}
|
info@53
|
192 |
}
|
info@53
|
193 |
}
|
info@53
|
194 |
}
|
info@53
|
195 |
|
info@53
|
196 |
// Special overrides for the bordered tables
|
info@53
|
197 |
> .table-bordered {
|
info@53
|
198 |
border: 0;
|
info@53
|
199 |
|
info@53
|
200 |
// Nuke the appropriate borders so that the parent can handle them
|
info@53
|
201 |
> thead,
|
info@53
|
202 |
> tbody,
|
info@53
|
203 |
> tfoot {
|
info@53
|
204 |
> tr {
|
info@53
|
205 |
> th:first-child,
|
info@53
|
206 |
> td:first-child {
|
info@53
|
207 |
border-left: 0;
|
info@53
|
208 |
}
|
info@53
|
209 |
> th:last-child,
|
info@53
|
210 |
> td:last-child {
|
info@53
|
211 |
border-right: 0;
|
info@53
|
212 |
}
|
info@53
|
213 |
}
|
info@53
|
214 |
}
|
info@53
|
215 |
|
info@53
|
216 |
// Only nuke the last row's bottom-border in `tbody` and `tfoot` since
|
info@53
|
217 |
// chances are there will be only one `tr` in a `thead` and that would
|
info@53
|
218 |
// remove the border altogether.
|
info@53
|
219 |
> tbody,
|
info@53
|
220 |
> tfoot {
|
info@53
|
221 |
> tr:last-child {
|
info@53
|
222 |
> th,
|
info@53
|
223 |
> td {
|
info@53
|
224 |
border-bottom: 0;
|
info@53
|
225 |
}
|
info@53
|
226 |
}
|
info@53
|
227 |
}
|
info@53
|
228 |
|
info@53
|
229 |
}
|
info@53
|
230 |
}
|
info@53
|
231 |
}
|