source: public/vendors/dataTable/DataTables-1.10.20/css/dataTables.semanticui.css@ 7304c7f

develop
Last change on this file since 7304c7f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 2.9 KB
Line 
1/*
2 * Styling for DataTables with Semantic UI
3 */
4table.dataTable.table {
5 margin: 0;
6}
7table.dataTable.table thead th,
8table.dataTable.table thead td {
9 position: relative;
10}
11table.dataTable.table thead th.sorting, table.dataTable.table thead th.sorting_asc, table.dataTable.table thead th.sorting_desc,
12table.dataTable.table thead td.sorting,
13table.dataTable.table thead td.sorting_asc,
14table.dataTable.table thead td.sorting_desc {
15 padding-right: 20px;
16}
17table.dataTable.table thead th.sorting:after, table.dataTable.table thead th.sorting_asc:after, table.dataTable.table thead th.sorting_desc:after,
18table.dataTable.table thead td.sorting:after,
19table.dataTable.table thead td.sorting_asc:after,
20table.dataTable.table thead td.sorting_desc:after {
21 position: absolute;
22 top: 12px;
23 right: 8px;
24 display: block;
25 font-family: Icons;
26}
27table.dataTable.table thead th.sorting:after,
28table.dataTable.table thead td.sorting:after {
29 content: "\f0dc";
30 color: #ddd;
31 font-size: 0.8em;
32}
33table.dataTable.table thead th.sorting_asc:after,
34table.dataTable.table thead td.sorting_asc:after {
35 content: "\f0de";
36}
37table.dataTable.table thead th.sorting_desc:after,
38table.dataTable.table thead td.sorting_desc:after {
39 content: "\f0dd";
40}
41table.dataTable.table td,
42table.dataTable.table th {
43 -webkit-box-sizing: content-box;
44 box-sizing: content-box;
45}
46table.dataTable.table td.dataTables_empty,
47table.dataTable.table th.dataTables_empty {
48 text-align: center;
49}
50table.dataTable.table.nowrap th,
51table.dataTable.table.nowrap td {
52 white-space: nowrap;
53}
54
55div.dataTables_wrapper div.dataTables_length select {
56 vertical-align: middle;
57 min-height: 2.7142em;
58}
59div.dataTables_wrapper div.dataTables_length .ui.selection.dropdown {
60 min-width: 0;
61}
62div.dataTables_wrapper div.dataTables_filter span.input {
63 margin-left: 0.5em;
64}
65div.dataTables_wrapper div.dataTables_info {
66 padding-top: 13px;
67 white-space: nowrap;
68}
69div.dataTables_wrapper div.dataTables_processing {
70 position: absolute;
71 top: 50%;
72 left: 50%;
73 width: 200px;
74 margin-left: -100px;
75 text-align: center;
76}
77div.dataTables_wrapper div.row.dt-table {
78 padding: 0;
79}
80div.dataTables_wrapper div.dataTables_scrollHead table.dataTable {
81 border-bottom-right-radius: 0;
82 border-bottom-left-radius: 0;
83 border-bottom: none;
84}
85div.dataTables_wrapper div.dataTables_scrollBody thead .sorting:after,
86div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_asc:after,
87div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_desc:after {
88 display: none;
89}
90div.dataTables_wrapper div.dataTables_scrollBody table.dataTable {
91 border-radius: 0;
92 border-top: none;
93 border-bottom-width: 0;
94}
95div.dataTables_wrapper div.dataTables_scrollBody table.dataTable.no-footer {
96 border-bottom-width: 1px;
97}
98div.dataTables_wrapper div.dataTables_scrollFoot table.dataTable {
99 border-top-right-radius: 0;
100 border-top-left-radius: 0;
101 border-top: none;
102}
Note: See TracBrowser for help on using the repository browser.