buttons.dataTables.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  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. }
  30. div.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. }
  44. div.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. }
  51. div.dt-button-info > div {
  52. padding: 1em;
  53. }
  54. button.dt-button,
  55. div.dt-button,
  56. a.dt-button {
  57. position: relative;
  58. display: inline-block;
  59. box-sizing: border-box;
  60. margin-right: 0.333em;
  61. margin-bottom: 0.333em;
  62. padding: 0.5em 1em;
  63. border: 1px solid #999;
  64. border-radius: 2px;
  65. cursor: pointer;
  66. font-size: 0.88em;
  67. line-height: 1.6em;
  68. color: black;
  69. white-space: nowrap;
  70. overflow: hidden;
  71. background-color: #e9e9e9;
  72. /* Fallback */
  73. background-image: -webkit-linear-gradient(top, white 0%, #e9e9e9 100%);
  74. /* Chrome 10+, Saf5.1+, iOS 5+ */
  75. background-image: -moz-linear-gradient(top, white 0%, #e9e9e9 100%);
  76. /* FF3.6 */
  77. background-image: -ms-linear-gradient(top, white 0%, #e9e9e9 100%);
  78. /* IE10 */
  79. background-image: -o-linear-gradient(top, white 0%, #e9e9e9 100%);
  80. /* Opera 11.10+ */
  81. background-image: linear-gradient(to bottom, white 0%, #e9e9e9 100%);
  82. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='white', EndColorStr='#e9e9e9');
  83. -webkit-user-select: none;
  84. -moz-user-select: none;
  85. -ms-user-select: none;
  86. user-select: none;
  87. text-decoration: none;
  88. outline: none;
  89. }
  90. button.dt-button.disabled,
  91. div.dt-button.disabled,
  92. a.dt-button.disabled {
  93. color: #999;
  94. border: 1px solid #d0d0d0;
  95. cursor: default;
  96. background-color: #f9f9f9;
  97. /* Fallback */
  98. background-image: -webkit-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
  99. /* Chrome 10+, Saf5.1+, iOS 5+ */
  100. background-image: -moz-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
  101. /* FF3.6 */
  102. background-image: -ms-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
  103. /* IE10 */
  104. background-image: -o-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
  105. /* Opera 11.10+ */
  106. background-image: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
  107. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#ffffff', EndColorStr='#f9f9f9');
  108. }
  109. button.dt-button:active:not(.disabled), button.dt-button.active:not(.disabled),
  110. div.dt-button:active:not(.disabled),
  111. div.dt-button.active:not(.disabled),
  112. a.dt-button:active:not(.disabled),
  113. a.dt-button.active:not(.disabled) {
  114. background-color: #e2e2e2;
  115. /* Fallback */
  116. background-image: -webkit-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
  117. /* Chrome 10+, Saf5.1+, iOS 5+ */
  118. background-image: -moz-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
  119. /* FF3.6 */
  120. background-image: -ms-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
  121. /* IE10 */
  122. background-image: -o-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
  123. /* Opera 11.10+ */
  124. background-image: linear-gradient(to bottom, #f3f3f3 0%, #e2e2e2 100%);
  125. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f3f3f3', EndColorStr='#e2e2e2');
  126. box-shadow: inset 1px 1px 3px #999999;
  127. }
  128. button.dt-button:active:not(.disabled):hover:not(.disabled), button.dt-button.active:not(.disabled):hover:not(.disabled),
  129. div.dt-button:active:not(.disabled):hover:not(.disabled),
  130. div.dt-button.active:not(.disabled):hover:not(.disabled),
  131. a.dt-button:active:not(.disabled):hover:not(.disabled),
  132. a.dt-button.active:not(.disabled):hover:not(.disabled) {
  133. box-shadow: inset 1px 1px 3px #999999;
  134. background-color: #cccccc;
  135. /* Fallback */
  136. background-image: -webkit-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
  137. /* Chrome 10+, Saf5.1+, iOS 5+ */
  138. background-image: -moz-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
  139. /* FF3.6 */
  140. background-image: -ms-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
  141. /* IE10 */
  142. background-image: -o-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
  143. /* Opera 11.10+ */
  144. background-image: linear-gradient(to bottom, #eaeaea 0%, #cccccc 100%);
  145. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#eaeaea', EndColorStr='#cccccc');
  146. }
  147. button.dt-button:hover,
  148. div.dt-button:hover,
  149. a.dt-button:hover {
  150. text-decoration: none;
  151. }
  152. button.dt-button:hover:not(.disabled),
  153. div.dt-button:hover:not(.disabled),
  154. a.dt-button:hover:not(.disabled) {
  155. border: 1px solid #666;
  156. background-color: #e0e0e0;
  157. /* Fallback */
  158. background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
  159. /* Chrome 10+, Saf5.1+, iOS 5+ */
  160. background-image: -moz-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
  161. /* FF3.6 */
  162. background-image: -ms-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
  163. /* IE10 */
  164. background-image: -o-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
  165. /* Opera 11.10+ */
  166. background-image: linear-gradient(to bottom, #f9f9f9 0%, #e0e0e0 100%);
  167. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f9f9f9', EndColorStr='#e0e0e0');
  168. }
  169. button.dt-button:focus:not(.disabled),
  170. div.dt-button:focus:not(.disabled),
  171. a.dt-button:focus:not(.disabled) {
  172. border: 1px solid #426c9e;
  173. text-shadow: 0 1px 0 #c4def1;
  174. outline: none;
  175. background-color: #79ace9;
  176. /* Fallback */
  177. background-image: -webkit-linear-gradient(top, #bddef4 0%, #79ace9 100%);
  178. /* Chrome 10+, Saf5.1+, iOS 5+ */
  179. background-image: -moz-linear-gradient(top, #bddef4 0%, #79ace9 100%);
  180. /* FF3.6 */
  181. background-image: -ms-linear-gradient(top, #bddef4 0%, #79ace9 100%);
  182. /* IE10 */
  183. background-image: -o-linear-gradient(top, #bddef4 0%, #79ace9 100%);
  184. /* Opera 11.10+ */
  185. background-image: linear-gradient(to bottom, #bddef4 0%, #79ace9 100%);
  186. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#bddef4', EndColorStr='#79ace9');
  187. }
  188. .dt-button embed {
  189. outline: none;
  190. }
  191. div.dt-buttons {
  192. position: relative;
  193. float: left;
  194. }
  195. div.dt-buttons.buttons-right {
  196. float: right;
  197. }
  198. div.dt-button-collection {
  199. position: absolute;
  200. top: 0;
  201. left: 0;
  202. width: 150px;
  203. margin-top: 3px;
  204. padding: 8px 8px 4px 8px;
  205. border: 1px solid #ccc;
  206. border: 1px solid rgba(0, 0, 0, 0.4);
  207. background-color: white;
  208. overflow: hidden;
  209. z-index: 2002;
  210. border-radius: 5px;
  211. box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  212. -webkit-column-gap: 8px;
  213. -moz-column-gap: 8px;
  214. -ms-column-gap: 8px;
  215. -o-column-gap: 8px;
  216. column-gap: 8px;
  217. }
  218. div.dt-button-collection button.dt-button,
  219. div.dt-button-collection div.dt-button,
  220. div.dt-button-collection a.dt-button {
  221. position: relative;
  222. left: 0;
  223. right: 0;
  224. width: 100%;
  225. display: block;
  226. float: none;
  227. margin-bottom: 4px;
  228. margin-right: 0;
  229. }
  230. div.dt-button-collection button.dt-button:active:not(.disabled), div.dt-button-collection button.dt-button.active:not(.disabled),
  231. div.dt-button-collection div.dt-button:active:not(.disabled),
  232. div.dt-button-collection div.dt-button.active:not(.disabled),
  233. div.dt-button-collection a.dt-button:active:not(.disabled),
  234. div.dt-button-collection a.dt-button.active:not(.disabled) {
  235. background-color: #dadada;
  236. /* Fallback */
  237. background-image: -webkit-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  238. /* Chrome 10+, Saf5.1+, iOS 5+ */
  239. background-image: -moz-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  240. /* FF3.6 */
  241. background-image: -ms-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  242. /* IE10 */
  243. background-image: -o-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  244. /* Opera 11.10+ */
  245. background-image: linear-gradient(to bottom, #f0f0f0 0%, #dadada 100%);
  246. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f0f0f0', EndColorStr='#dadada');
  247. box-shadow: inset 1px 1px 3px #666;
  248. }
  249. div.dt-button-collection.fixed {
  250. position: fixed;
  251. top: 50%;
  252. left: 50%;
  253. margin-left: -75px;
  254. border-radius: 0;
  255. }
  256. div.dt-button-collection.fixed.two-column {
  257. margin-left: -150px;
  258. }
  259. div.dt-button-collection.fixed.three-column {
  260. margin-left: -225px;
  261. }
  262. div.dt-button-collection.fixed.four-column {
  263. margin-left: -300px;
  264. }
  265. div.dt-button-collection > * {
  266. -webkit-column-break-inside: avoid;
  267. break-inside: avoid;
  268. }
  269. div.dt-button-collection.two-column {
  270. width: 300px;
  271. padding-bottom: 1px;
  272. -webkit-column-count: 2;
  273. -moz-column-count: 2;
  274. -ms-column-count: 2;
  275. -o-column-count: 2;
  276. column-count: 2;
  277. }
  278. div.dt-button-collection.three-column {
  279. width: 450px;
  280. padding-bottom: 1px;
  281. -webkit-column-count: 3;
  282. -moz-column-count: 3;
  283. -ms-column-count: 3;
  284. -o-column-count: 3;
  285. column-count: 3;
  286. }
  287. div.dt-button-collection.four-column {
  288. width: 600px;
  289. padding-bottom: 1px;
  290. -webkit-column-count: 4;
  291. -moz-column-count: 4;
  292. -ms-column-count: 4;
  293. -o-column-count: 4;
  294. column-count: 4;
  295. }
  296. div.dt-button-collection .dt-button {
  297. border-radius: 0;
  298. }
  299. div.dt-button-background {
  300. position: fixed;
  301. top: 0;
  302. left: 0;
  303. width: 100%;
  304. height: 100%;
  305. background: rgba(0, 0, 0, 0.7);
  306. /* Fallback */
  307. background: -ms-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  308. /* IE10 Consumer Preview */
  309. background: -moz-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  310. /* Firefox */
  311. background: -o-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  312. /* Opera */
  313. background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0, 0, 0, 0.3)), color-stop(1, rgba(0, 0, 0, 0.7)));
  314. /* Webkit (Safari/Chrome 10) */
  315. background: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  316. /* Webkit (Chrome 11+) */
  317. background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  318. /* W3C Markup, IE10 Release Preview */
  319. z-index: 2001;
  320. }
  321. @media screen and (max-width: 640px) {
  322. div.dt-buttons {
  323. float: none !important;
  324. text-align: center;
  325. }
  326. }
  327. button.dt-button.processing,
  328. div.dt-button.processing,
  329. a.dt-button.processing {
  330. color: rgba(0, 0, 0, 0.2);
  331. }
  332. button.dt-button.processing:after,
  333. div.dt-button.processing:after,
  334. a.dt-button.processing:after {
  335. position: absolute;
  336. top: 50%;
  337. left: 50%;
  338. width: 16px;
  339. height: 16px;
  340. margin: -8px 0 0 -8px;
  341. box-sizing: border-box;
  342. display: block;
  343. content: ' ';
  344. border: 2px solid #282828;
  345. border-radius: 50%;
  346. border-left-color: transparent;
  347. border-right-color: transparent;
  348. animation: dtb-spinner 1500ms infinite linear;
  349. -o-animation: dtb-spinner 1500ms infinite linear;
  350. -ms-animation: dtb-spinner 1500ms infinite linear;
  351. -webkit-animation: dtb-spinner 1500ms infinite linear;
  352. -moz-animation: dtb-spinner 1500ms infinite linear;
  353. }