LaravelTest
307 строк · 8.2 Кб
1@charset "UTF-8";2table.dataTable th.dt-left,
3table.dataTable td.dt-left {4text-align: left;5}
6table.dataTable th.dt-center,
7table.dataTable td.dt-center,
8table.dataTable td.dataTables_empty {9text-align: center;10}
11table.dataTable th.dt-right,
12table.dataTable td.dt-right {13text-align: right;14}
15table.dataTable th.dt-justify,
16table.dataTable td.dt-justify {17text-align: justify;18}
19table.dataTable th.dt-nowrap,
20table.dataTable td.dt-nowrap {21white-space: nowrap;22}
23table.dataTable thead th.dt-head-left,
24table.dataTable thead td.dt-head-left,
25table.dataTable tfoot th.dt-head-left,
26table.dataTable tfoot td.dt-head-left {27text-align: left;28}
29table.dataTable thead th.dt-head-center,
30table.dataTable thead td.dt-head-center,
31table.dataTable tfoot th.dt-head-center,
32table.dataTable tfoot td.dt-head-center {33text-align: center;34}
35table.dataTable thead th.dt-head-right,
36table.dataTable thead td.dt-head-right,
37table.dataTable tfoot th.dt-head-right,
38table.dataTable tfoot td.dt-head-right {39text-align: right;40}
41table.dataTable thead th.dt-head-justify,
42table.dataTable thead td.dt-head-justify,
43table.dataTable tfoot th.dt-head-justify,
44table.dataTable tfoot td.dt-head-justify {45text-align: justify;46}
47table.dataTable thead th.dt-head-nowrap,
48table.dataTable thead td.dt-head-nowrap,
49table.dataTable tfoot th.dt-head-nowrap,
50table.dataTable tfoot td.dt-head-nowrap {51white-space: nowrap;52}
53table.dataTable tbody th.dt-body-left,
54table.dataTable tbody td.dt-body-left {55text-align: left;56}
57table.dataTable tbody th.dt-body-center,
58table.dataTable tbody td.dt-body-center {59text-align: center;60}
61table.dataTable tbody th.dt-body-right,
62table.dataTable tbody td.dt-body-right {63text-align: right;64}
65table.dataTable tbody th.dt-body-justify,
66table.dataTable tbody td.dt-body-justify {67text-align: justify;68}
69table.dataTable tbody th.dt-body-nowrap,
70table.dataTable tbody td.dt-body-nowrap {71white-space: nowrap;72}
73table.dataTable td.dt-control {74text-align: center;75cursor: pointer;76}
77table.dataTable td.dt-control:before {78height: 1em;79width: 1em;80margin-top: -9px;81display: inline-block;82color: white;83border: 0.15em solid white;84border-radius: 1em;85box-shadow: 0 0 0.2em #444;86box-sizing: content-box;87text-align: center;88text-indent: 0 !important;89font-family: "Courier New", Courier, monospace;90line-height: 1em;91content: "+";92background-color: #31b131;93}
94table.dataTable tr.dt-hasChild td.dt-control:before {95content: "-";96background-color: #d33333;97}
98
99table.dataTable {100clear: both;101margin-top: 6px !important;102margin-bottom: 6px !important;103max-width: none !important;104border-collapse: separate !important;105border-spacing: 0;106}
107table.dataTable td,
108table.dataTable th {109-webkit-box-sizing: content-box;110box-sizing: content-box;111}
112table.dataTable td.dataTables_empty,
113table.dataTable th.dataTables_empty {114text-align: center;115}
116table.dataTable.nowrap th,
117table.dataTable.nowrap td {118white-space: nowrap;119}
120
121div.dataTables_wrapper div.dataTables_length label {122font-weight: normal;123text-align: left;124white-space: nowrap;125}
126div.dataTables_wrapper div.dataTables_length select {127width: auto;128display: inline-block;129}
130div.dataTables_wrapper div.dataTables_filter {131text-align: right;132}
133div.dataTables_wrapper div.dataTables_filter label {134font-weight: normal;135white-space: nowrap;136text-align: left;137}
138div.dataTables_wrapper div.dataTables_filter input {139margin-left: 0.5em;140display: inline-block;141width: auto;142}
143div.dataTables_wrapper div.dataTables_info {144padding-top: 0.85em;145}
146div.dataTables_wrapper div.dataTables_paginate {147margin: 0;148white-space: nowrap;149text-align: right;150}
151div.dataTables_wrapper div.dataTables_paginate ul.pagination {152margin: 2px 0;153white-space: nowrap;154justify-content: flex-end;155}
156div.dataTables_wrapper div.dataTables_processing {157position: absolute;158top: 50%;159left: 50%;160width: 200px;161margin-left: -100px;162margin-top: -26px;163text-align: center;164padding: 1em 0;165}
166
167table.dataTable > thead > tr > th:active,
168table.dataTable > thead > tr > td:active {169outline: none;170}
171table.dataTable > thead > tr > th:not(.sorting_disabled),
172table.dataTable > thead > tr > td:not(.sorting_disabled) {173padding-right: 30px;174}
175table.dataTable > thead .sorting,
176table.dataTable > thead .sorting_asc,
177table.dataTable > thead .sorting_desc,
178table.dataTable > thead .sorting_asc_disabled,
179table.dataTable > thead .sorting_desc_disabled {180cursor: pointer;181position: relative;182}
183table.dataTable > thead .sorting:before, table.dataTable > thead .sorting:after,
184table.dataTable > thead .sorting_asc:before,
185table.dataTable > thead .sorting_asc:after,
186table.dataTable > thead .sorting_desc:before,
187table.dataTable > thead .sorting_desc:after,
188table.dataTable > thead .sorting_asc_disabled:before,
189table.dataTable > thead .sorting_asc_disabled:after,
190table.dataTable > thead .sorting_desc_disabled:before,
191table.dataTable > thead .sorting_desc_disabled:after {192position: absolute;193bottom: 0.9em;194display: block;195opacity: 0.3;196}
197table.dataTable > thead .sorting:before,
198table.dataTable > thead .sorting_asc:before,
199table.dataTable > thead .sorting_desc:before,
200table.dataTable > thead .sorting_asc_disabled:before,
201table.dataTable > thead .sorting_desc_disabled:before {202right: 1em;203content: "↑";204}
205table.dataTable > thead .sorting:after,
206table.dataTable > thead .sorting_asc:after,
207table.dataTable > thead .sorting_desc:after,
208table.dataTable > thead .sorting_asc_disabled:after,
209table.dataTable > thead .sorting_desc_disabled:after {210right: 0.5em;211content: "↓";212}
213table.dataTable > thead .sorting_asc:before,
214table.dataTable > thead .sorting_desc:after {215opacity: 1;216}
217table.dataTable > thead .sorting_asc_disabled:before,
218table.dataTable > thead .sorting_desc_disabled:after {219opacity: 0;220}
221
222div.dataTables_scrollHead table.dataTable {223margin-bottom: 0 !important;224}
225
226div.dataTables_scrollBody > table {227border-top: none;228margin-top: 0 !important;229margin-bottom: 0 !important;230}
231div.dataTables_scrollBody > table > thead .sorting:before,
232div.dataTables_scrollBody > table > thead .sorting_asc:before,
233div.dataTables_scrollBody > table > thead .sorting_desc:before,
234div.dataTables_scrollBody > table > thead .sorting:after,
235div.dataTables_scrollBody > table > thead .sorting_asc:after,
236div.dataTables_scrollBody > table > thead .sorting_desc:after {237display: none;238}
239div.dataTables_scrollBody > table > tbody tr:first-child th,
240div.dataTables_scrollBody > table > tbody tr:first-child td {241border-top: none;242}
243
244div.dataTables_scrollFoot > .dataTables_scrollFootInner {245box-sizing: content-box;246}
247div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {248margin-top: 0 !important;249border-top: none;250}
251
252@media screen and (max-width: 767px) {253div.dataTables_wrapper div.dataTables_length,254div.dataTables_wrapper div.dataTables_filter,
255div.dataTables_wrapper div.dataTables_info,
256div.dataTables_wrapper div.dataTables_paginate {257text-align: center;258}259div.dataTables_wrapper div.dataTables_paginate ul.pagination {260justify-content: center !important;261}262}
263table.dataTable.table-sm > thead > tr > th:not(.sorting_disabled) {264padding-right: 20px;265}
266table.dataTable.table-sm .sorting:before,
267table.dataTable.table-sm .sorting_asc:before,
268table.dataTable.table-sm .sorting_desc:before {269top: 5px;270right: 0.85em;271}
272table.dataTable.table-sm .sorting:after,
273table.dataTable.table-sm .sorting_asc:after,
274table.dataTable.table-sm .sorting_desc:after {275top: 5px;276}
277
278table.table-bordered.dataTable {279border-right-width: 0;280}
281table.table-bordered.dataTable th,
282table.table-bordered.dataTable td {283border-left-width: 0;284}
285table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child,
286table.table-bordered.dataTable td:last-child,
287table.table-bordered.dataTable td:last-child {288border-right-width: 1px;289}
290table.table-bordered.dataTable tbody th,
291table.table-bordered.dataTable tbody td {292border-bottom-width: 0;293}
294
295div.dataTables_scrollHead table.table-bordered {296border-bottom-width: 0;297}
298
299div.table-responsive > div.dataTables_wrapper > div.row {300margin: 0;301}
302div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {303padding-left: 0;304}
305div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {306padding-right: 0;307}
308