buttons.dataTables.css 11 KB

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