You are here

autoFill.bootstrap.css in Table Trash 7

div.dt-autofill-handle {
  position: absolute;
  height: 8px;
  width: 8px;
  z-index: 102;
  box-sizing: border-box;
  border: 1px solid #337ab7;
  background: #337ab7;
}

div.dt-autofill-select {
  position: absolute;
  z-index: 1001;
  background-color: #337ab7;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px);
}
div.dt-autofill-select.top, div.dt-autofill-select.bottom {
  height: 3px;
  margin-top: -1px;
}
div.dt-autofill-select.left, div.dt-autofill-select.right {
  width: 3px;
  margin-left: -1px;
}

div.dt-autofill-list {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  margin-left: -250px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 0 5px #555;
  border: 2px solid #444;
  z-index: 11;
  box-sizing: border-box;
  padding: 1.5em 2em;
}
div.dt-autofill-list ul {
  display: table;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
div.dt-autofill-list ul li {
  display: table-row;
}
div.dt-autofill-list ul li:last-child div.dt-autofill-question, div.dt-autofill-list ul li:last-child div.dt-autofill-button {
  border-bottom: none;
}
div.dt-autofill-list ul li:hover {
  background-color: #f6f6f6;
}
div.dt-autofill-list div.dt-autofill-question {
  display: table-cell;
  padding: 0.5em 0;
  border-bottom: 1px solid #ccc;
}
div.dt-autofill-list div.dt-autofill-question input[type=number] {
  padding: 6px;
  width: 30px;
  margin: -2px 0;
}
div.dt-autofill-list div.dt-autofill-button {
  display: table-cell;
  padding: 0.5em 0;
  border-bottom: 1px solid #ccc;
}

div.dt-autofill-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 10;
}

File

library/DataTables/AutoFill-2.1.0/css/autoFill.bootstrap.css
View source
  1. div.dt-autofill-handle {
  2. position: absolute;
  3. height: 8px;
  4. width: 8px;
  5. z-index: 102;
  6. box-sizing: border-box;
  7. border: 1px solid #337ab7;
  8. background: #337ab7;
  9. }
  10. div.dt-autofill-select {
  11. position: absolute;
  12. z-index: 1001;
  13. background-color: #337ab7;
  14. background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px);
  15. }
  16. div.dt-autofill-select.top, div.dt-autofill-select.bottom {
  17. height: 3px;
  18. margin-top: -1px;
  19. }
  20. div.dt-autofill-select.left, div.dt-autofill-select.right {
  21. width: 3px;
  22. margin-left: -1px;
  23. }
  24. div.dt-autofill-list {
  25. position: fixed;
  26. top: 50%;
  27. left: 50%;
  28. width: 500px;
  29. margin-left: -250px;
  30. background-color: white;
  31. border-radius: 6px;
  32. box-shadow: 0 0 5px #555;
  33. border: 2px solid #444;
  34. z-index: 11;
  35. box-sizing: border-box;
  36. padding: 1.5em 2em;
  37. }
  38. div.dt-autofill-list ul {
  39. display: table;
  40. margin: 0;
  41. padding: 0;
  42. list-style: none;
  43. width: 100%;
  44. }
  45. div.dt-autofill-list ul li {
  46. display: table-row;
  47. }
  48. div.dt-autofill-list ul li:last-child div.dt-autofill-question, div.dt-autofill-list ul li:last-child div.dt-autofill-button {
  49. border-bottom: none;
  50. }
  51. div.dt-autofill-list ul li:hover {
  52. background-color: #f6f6f6;
  53. }
  54. div.dt-autofill-list div.dt-autofill-question {
  55. display: table-cell;
  56. padding: 0.5em 0;
  57. border-bottom: 1px solid #ccc;
  58. }
  59. div.dt-autofill-list div.dt-autofill-question input[type=number] {
  60. padding: 6px;
  61. width: 30px;
  62. margin: -2px 0;
  63. }
  64. div.dt-autofill-list div.dt-autofill-button {
  65. display: table-cell;
  66. padding: 0.5em 0;
  67. border-bottom: 1px solid #ccc;
  68. }
  69. div.dt-autofill-background {
  70. position: fixed;
  71. top: 0;
  72. left: 0;
  73. width: 100%;
  74. height: 100%;
  75. background: rgba(0, 0, 0, 0.7);
  76. background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  77. z-index: 10;
  78. }