You are here

buttons.foundation.css in Table Trash 7

div.dt-button-info {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  margin-top: -100px;
  margin-left: -200px;
  background-color: white;
  border: 2px solid #111;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  text-align: center;
  z-index: 21;
}
div.dt-button-info h2 {
  padding: 0.5em;
  margin: 0;
  font-weight: normal;
  border-bottom: 1px solid #ddd;
  background-color: #f3f3f3;
}
div.dt-button-info > div {
  padding: 1em;
}

ul.dt-buttons li {
  margin: 0;
}
ul.dt-buttons li.active a {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6);
}

ul.dt-buttons.button-group a {
  margin-bottom: 0;
}

ul.dt-button-collection.f-dropdown {
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  -ms-column-gap: 8px;
  -o-column-gap: 8px;
  column-gap: 8px;
}
ul.dt-button-collection.f-dropdown.fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -75px;
  border-radius: 0;
}
ul.dt-button-collection.f-dropdown.fixed.two-column {
  margin-left: -150px;
}
ul.dt-button-collection.f-dropdown.fixed.three-column {
  margin-left: -225px;
}
ul.dt-button-collection.f-dropdown.fixed.four-column {
  margin-left: -300px;
}
ul.dt-button-collection.f-dropdown > * {
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
}
ul.dt-button-collection.f-dropdown.two-column {
  width: 300px;
  padding-bottom: 1px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  -ms-column-count: 2;
  -o-column-count: 2;
  column-count: 2;
}
ul.dt-button-collection.f-dropdown.three-column {
  width: 450px;
  padding-bottom: 1px;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  -ms-column-count: 3;
  -o-column-count: 3;
  column-count: 3;
}
ul.dt-button-collection.f-dropdown.four-column {
  width: 600px;
  padding-bottom: 1px;
  -webkit-column-count: 4;
  -moz-column-count: 4;
  -ms-column-count: 4;
  -o-column-count: 4;
  column-count: 4;
}
ul.dt-button-collection.f-dropdown.fixed {
  max-width: none;
}
ul.dt-button-collection.f-dropdown.fixed:before, ul.dt-button-collection.f-dropdown.fixed:after {
  display: none;
}

div.dt-button-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 88;
}

@media screen and (max-width: 767px) {
  ul.dt-buttons {
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  ul.dt-buttons li {
    float: none;
  }
}

File

library/DataTables/Buttons-1.1.0/css/buttons.foundation.css
View source
  1. div.dt-button-info {
  2. position: fixed;
  3. top: 50%;
  4. left: 50%;
  5. width: 400px;
  6. margin-top: -100px;
  7. margin-left: -200px;
  8. background-color: white;
  9. border: 2px solid #111;
  10. box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  11. border-radius: 3px;
  12. text-align: center;
  13. z-index: 21;
  14. }
  15. div.dt-button-info h2 {
  16. padding: 0.5em;
  17. margin: 0;
  18. font-weight: normal;
  19. border-bottom: 1px solid #ddd;
  20. background-color: #f3f3f3;
  21. }
  22. div.dt-button-info > div {
  23. padding: 1em;
  24. }
  25. ul.dt-buttons li {
  26. margin: 0;
  27. }
  28. ul.dt-buttons li.active a {
  29. box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6);
  30. }
  31. ul.dt-buttons.button-group a {
  32. margin-bottom: 0;
  33. }
  34. ul.dt-button-collection.f-dropdown {
  35. -webkit-column-gap: 8px;
  36. -moz-column-gap: 8px;
  37. -ms-column-gap: 8px;
  38. -o-column-gap: 8px;
  39. column-gap: 8px;
  40. }
  41. ul.dt-button-collection.f-dropdown.fixed {
  42. position: fixed;
  43. top: 50%;
  44. left: 50%;
  45. margin-left: -75px;
  46. border-radius: 0;
  47. }
  48. ul.dt-button-collection.f-dropdown.fixed.two-column {
  49. margin-left: -150px;
  50. }
  51. ul.dt-button-collection.f-dropdown.fixed.three-column {
  52. margin-left: -225px;
  53. }
  54. ul.dt-button-collection.f-dropdown.fixed.four-column {
  55. margin-left: -300px;
  56. }
  57. ul.dt-button-collection.f-dropdown > * {
  58. -webkit-column-break-inside: avoid;
  59. break-inside: avoid;
  60. }
  61. ul.dt-button-collection.f-dropdown.two-column {
  62. width: 300px;
  63. padding-bottom: 1px;
  64. -webkit-column-count: 2;
  65. -moz-column-count: 2;
  66. -ms-column-count: 2;
  67. -o-column-count: 2;
  68. column-count: 2;
  69. }
  70. ul.dt-button-collection.f-dropdown.three-column {
  71. width: 450px;
  72. padding-bottom: 1px;
  73. -webkit-column-count: 3;
  74. -moz-column-count: 3;
  75. -ms-column-count: 3;
  76. -o-column-count: 3;
  77. column-count: 3;
  78. }
  79. ul.dt-button-collection.f-dropdown.four-column {
  80. width: 600px;
  81. padding-bottom: 1px;
  82. -webkit-column-count: 4;
  83. -moz-column-count: 4;
  84. -ms-column-count: 4;
  85. -o-column-count: 4;
  86. column-count: 4;
  87. }
  88. ul.dt-button-collection.f-dropdown.fixed {
  89. max-width: none;
  90. }
  91. ul.dt-button-collection.f-dropdown.fixed:before, ul.dt-button-collection.f-dropdown.fixed:after {
  92. display: none;
  93. }
  94. div.dt-button-background {
  95. position: fixed;
  96. top: 0;
  97. left: 0;
  98. width: 100%;
  99. height: 100%;
  100. z-index: 88;
  101. }
  102. @media screen and (max-width: 767px) {
  103. ul.dt-buttons {
  104. float: none;
  105. width: 100%;
  106. text-align: center;
  107. margin-bottom: 0.5rem;
  108. }
  109. ul.dt-buttons li {
  110. float: none;
  111. }
  112. }