source: public/vendors/dataTable/Buttons-1.6.1/css/buttons.bootstrap.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: 3.9 KB
Line 
1@keyframes dtb-spinner {
2 100% {
3 transform: rotate(360deg);
4 }
5}
6@-o-keyframes dtb-spinner {
7 100% {
8 -o-transform: rotate(360deg);
9 transform: rotate(360deg);
10 }
11}
12@-ms-keyframes dtb-spinner {
13 100% {
14 -ms-transform: rotate(360deg);
15 transform: rotate(360deg);
16 }
17}
18@-webkit-keyframes dtb-spinner {
19 100% {
20 -webkit-transform: rotate(360deg);
21 transform: rotate(360deg);
22 }
23}
24@-moz-keyframes dtb-spinner {
25 100% {
26 -moz-transform: rotate(360deg);
27 transform: rotate(360deg);
28 }
29}
30div.dt-button-info {
31 position: fixed;
32 top: 50%;
33 left: 50%;
34 width: 400px;
35 margin-top: -100px;
36 margin-left: -200px;
37 background-color: white;
38 border: 2px solid #111;
39 box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
40 border-radius: 3px;
41 text-align: center;
42 z-index: 21;
43}
44div.dt-button-info h2 {
45 padding: 0.5em;
46 margin: 0;
47 font-weight: normal;
48 border-bottom: 1px solid #ddd;
49 background-color: #f3f3f3;
50}
51div.dt-button-info > div {
52 padding: 1em;
53}
54
55div.dt-button-collection-title {
56 text-align: center;
57 padding: 0.3em 0 0.5em;
58 font-size: 0.9em;
59}
60
61div.dt-button-collection-title:empty {
62 display: none;
63}
64
65div.dt-button-collection {
66 position: absolute;
67}
68div.dt-button-collection ul.dropdown-menu {
69 display: block;
70 z-index: 2002;
71 min-width: 100%;
72}
73div.dt-button-collection div.dt-button-collection-title {
74 background-color: white;
75}
76div.dt-button-collection.fixed {
77 position: fixed;
78 top: 50%;
79 left: 50%;
80 margin-left: -75px;
81 border-radius: 0;
82}
83div.dt-button-collection.fixed.two-column {
84 margin-left: -200px;
85}
86div.dt-button-collection.fixed.three-column {
87 margin-left: -225px;
88}
89div.dt-button-collection.fixed.four-column {
90 margin-left: -300px;
91}
92div.dt-button-collection > :last-child {
93 display: block !important;
94 -webkit-column-gap: 8px;
95 -moz-column-gap: 8px;
96 -ms-column-gap: 8px;
97 -o-column-gap: 8px;
98 column-gap: 8px;
99}
100div.dt-button-collection > :last-child > * {
101 -webkit-column-break-inside: avoid;
102 break-inside: avoid;
103}
104div.dt-button-collection.two-column {
105 width: 400px;
106}
107div.dt-button-collection.two-column > :last-child {
108 padding-bottom: 1px;
109 -webkit-column-count: 2;
110 -moz-column-count: 2;
111 -ms-column-count: 2;
112 -o-column-count: 2;
113 column-count: 2;
114}
115div.dt-button-collection.three-column {
116 width: 450px;
117}
118div.dt-button-collection.three-column > :last-child {
119 padding-bottom: 1px;
120 -webkit-column-count: 3;
121 -moz-column-count: 3;
122 -ms-column-count: 3;
123 -o-column-count: 3;
124 column-count: 3;
125}
126div.dt-button-collection.four-column {
127 width: 600px;
128}
129div.dt-button-collection.four-column > :last-child {
130 padding-bottom: 1px;
131 -webkit-column-count: 4;
132 -moz-column-count: 4;
133 -ms-column-count: 4;
134 -o-column-count: 4;
135 column-count: 4;
136}
137div.dt-button-collection .dt-button {
138 border-radius: 0;
139}
140
141div.dt-button-background {
142 position: fixed;
143 top: 0;
144 left: 0;
145 width: 100%;
146 height: 100%;
147 z-index: 2001;
148}
149
150@media screen and (max-width: 767px) {
151 div.dt-buttons {
152 float: none;
153 width: 100%;
154 text-align: center;
155 margin-bottom: 0.5em;
156 }
157 div.dt-buttons a.btn {
158 float: none;
159 }
160}
161div.dt-buttons button.btn.processing,
162div.dt-buttons div.btn.processing,
163div.dt-buttons a.btn.processing {
164 color: rgba(0, 0, 0, 0.2);
165}
166div.dt-buttons button.btn.processing:after,
167div.dt-buttons div.btn.processing:after,
168div.dt-buttons a.btn.processing:after {
169 position: absolute;
170 top: 50%;
171 left: 50%;
172 width: 16px;
173 height: 16px;
174 margin: -8px 0 0 -8px;
175 box-sizing: border-box;
176 display: block;
177 content: ' ';
178 border: 2px solid #282828;
179 border-radius: 50%;
180 border-left-color: transparent;
181 border-right-color: transparent;
182 animation: dtb-spinner 1500ms infinite linear;
183 -o-animation: dtb-spinner 1500ms infinite linear;
184 -ms-animation: dtb-spinner 1500ms infinite linear;
185 -webkit-animation: dtb-spinner 1500ms infinite linear;
186 -moz-animation: dtb-spinner 1500ms infinite linear;
187}
Note: See TracBrowser for help on using the repository browser.