source: public/vendors/dataTable/Select-1.3.1/css/select.foundation.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: 4.6 KB
Line 
1table.dataTable tbody > tr.selected,
2table.dataTable tbody > tr > .selected {
3 background-color: #008cba;
4}
5table.dataTable.stripe tbody > tr.odd.selected,
6table.dataTable.stripe tbody > tr.odd > .selected, table.dataTable.display tbody > tr.odd.selected,
7table.dataTable.display tbody > tr.odd > .selected {
8 background-color: #0089b6;
9}
10table.dataTable.hover tbody > tr.selected:hover,
11table.dataTable.hover tbody > tr > .selected:hover, table.dataTable.display tbody > tr.selected:hover,
12table.dataTable.display tbody > tr > .selected:hover {
13 background-color: #0087b3;
14}
15table.dataTable.order-column tbody > tr.selected > .sorting_1,
16table.dataTable.order-column tbody > tr.selected > .sorting_2,
17table.dataTable.order-column tbody > tr.selected > .sorting_3,
18table.dataTable.order-column tbody > tr > .selected, table.dataTable.display tbody > tr.selected > .sorting_1,
19table.dataTable.display tbody > tr.selected > .sorting_2,
20table.dataTable.display tbody > tr.selected > .sorting_3,
21table.dataTable.display tbody > tr > .selected {
22 background-color: #0089b6;
23}
24table.dataTable.display tbody > tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_1 {
25 background-color: #0084b0;
26}
27table.dataTable.display tbody > tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_2 {
28 background-color: #0085b1;
29}
30table.dataTable.display tbody > tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_3 {
31 background-color: #0087b3;
32}
33table.dataTable.display tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_1 {
34 background-color: #0089b6;
35}
36table.dataTable.display tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_2 {
37 background-color: #008ab8;
38}
39table.dataTable.display tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_3 {
40 background-color: #008bb9;
41}
42table.dataTable.display tbody > tr.odd > .selected, table.dataTable.order-column.stripe tbody > tr.odd > .selected {
43 background-color: #0084b0;
44}
45table.dataTable.display tbody > tr.even > .selected, table.dataTable.order-column.stripe tbody > tr.even > .selected {
46 background-color: #0089b6;
47}
48table.dataTable.display tbody > tr.selected:hover > .sorting_1, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_1 {
49 background-color: #0081ab;
50}
51table.dataTable.display tbody > tr.selected:hover > .sorting_2, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_2 {
52 background-color: #0082ac;
53}
54table.dataTable.display tbody > tr.selected:hover > .sorting_3, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_3 {
55 background-color: #0083ae;
56}
57table.dataTable.display tbody > tr:hover > .selected,
58table.dataTable.display tbody > tr > .selected:hover, table.dataTable.order-column.hover tbody > tr:hover > .selected,
59table.dataTable.order-column.hover tbody > tr > .selected:hover {
60 background-color: #0081ab;
61}
62table.dataTable tbody td.select-checkbox,
63table.dataTable tbody th.select-checkbox {
64 position: relative;
65}
66table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
67table.dataTable tbody th.select-checkbox:before,
68table.dataTable tbody th.select-checkbox:after {
69 display: block;
70 position: absolute;
71 top: 1.2em;
72 left: 50%;
73 width: 12px;
74 height: 12px;
75 box-sizing: border-box;
76}
77table.dataTable tbody td.select-checkbox:before,
78table.dataTable tbody th.select-checkbox:before {
79 content: ' ';
80 margin-top: -6px;
81 margin-left: -6px;
82 border: 1px solid black;
83 border-radius: 3px;
84}
85table.dataTable tr.selected td.select-checkbox:after,
86table.dataTable tr.selected th.select-checkbox:after {
87 content: '\2714';
88 margin-top: -11px;
89 margin-left: -4px;
90 text-align: center;
91 text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
92}
93
94div.dataTables_wrapper span.select-info,
95div.dataTables_wrapper span.select-item {
96 margin-left: 0.5em;
97}
98
99@media screen and (max-width: 640px) {
100 div.dataTables_wrapper span.select-info,
101 div.dataTables_wrapper span.select-item {
102 margin-left: 0;
103 display: block;
104 }
105}
106table.dataTable tbody tr.selected th,
107table.dataTable tbody tr.selected td,
108table.dataTable tbody th.selected,
109table.dataTable tbody td.selected {
110 color: white;
111}
112table.dataTable tbody tr.selected th a,
113table.dataTable tbody tr.selected td a,
114table.dataTable tbody th.selected a,
115table.dataTable tbody td.selected a {
116 color: #a2d4ed;
117}
Note: See TracBrowser for help on using the repository browser.