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