You are here

custom.css in Responsive Tables Filter 7

/*! Tablesaw - v3.0.0-beta.1 - 2016-09-19
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2016 Filament Group; Licensed MIT */

table.tablesaw {
  empty-cells: show;
  max-width: 100%;
  width: 100%;
  background-color:yellow;
}

.tablesaw-stack tbody tr:after {
  content: "Custom Test";
}

.tablesaw {
  border-collapse: collapse;
  width: 100%;
}

/* Structure */

.tablesaw {
  border: 0;
  padding: 0;
}

.tablesaw th,
.tablesaw td {
  box-sizing: border-box;
  padding: .5em .7em;
}

.tablesaw thead tr:first-child th {
  padding-top: .9em;
  padding-bottom: .7em;
}

/* Table rows have a gray bottom stroke by default */

.tablesaw-stack tbody tr {
  border-bottom: 1px solid #dfdfdf;
}

.tablesaw-stack td .tablesaw-cell-label,
.tablesaw-stack th .tablesaw-cell-label {
  display: none;
}

/* Mobile first styles: Begin with the stacked presentation at narrow widths */

@media only all {
  /* Show the table cells as a block level element */

  .tablesaw-stack td,
  .tablesaw-stack th {
    text-align: left;
    display: block;
  }

  .tablesaw-stack tr {
    clear: both;
    display: table-row;
  }

  /* Make the label elements a percentage width */

  .tablesaw-stack td .tablesaw-cell-label,
  .tablesaw-stack th .tablesaw-cell-label {
    display: block;
    padding: 0 .6em 0 0;
    width: 30%;
    display: inline-block;
  }

  /* For grouped headers, have a different style to visually separate the levels by classing the first label in each col group */

  .tablesaw-stack th .tablesaw-cell-label-top,
  .tablesaw-stack td .tablesaw-cell-label-top {
    display: block;
    padding: .4em 0;
    margin: .4em 0;
  }

  .tablesaw-cell-label {
    display: block;
  }

  /* Avoid double strokes when stacked */

  .tablesaw-stack tbody th.group {
    margin-top: -1px;
  }

  /* Avoid double strokes when stacked */

  .tablesaw-stack th.group b.tablesaw-cell-label {
    display: none !important;
  }
}

@media (max-width: 39.9375em) {
  .tablesaw-stack thead td,
  .tablesaw-stack thead th {
    display: none;
  }

  .tablesaw-stack tbody td,
  .tablesaw-stack tbody th {
    clear: left;
    float: left;
    width: 100%;
  }

  .tablesaw-cell-label {
    vertical-align: top;
  }

  .tablesaw-cell-content {
    max-width: 67%;
    display: inline-block;
  }

  .tablesaw-stack td:empty,
  .tablesaw-stack th:empty {
    display: none;
  }
}

/* Media query to show as a standard table at 560px (35em x 16px) or wider */

@media (min-width: 40em) {
  .tablesaw-stack tr {
    display: table-row;
  }

  /* Show the table header rows */

  .tablesaw-stack td,
  .tablesaw-stack th,
  .tablesaw-stack thead td,
  .tablesaw-stack thead th {
    display: table-cell;
    margin: 0;
  }

  /* Hide the labels in each cell */

  .tablesaw-stack td .tablesaw-cell-label,
  .tablesaw-stack th .tablesaw-cell-label {
    display: none !important;
  }
}

File

tests/assets/custom.css
View source
  1. /*! Tablesaw - v3.0.0-beta.1 - 2016-09-19
  2. * https://github.com/filamentgroup/tablesaw
  3. * Copyright (c) 2016 Filament Group; Licensed MIT */
  4. table.tablesaw {
  5. empty-cells: show;
  6. max-width: 100%;
  7. width: 100%;
  8. background-color:yellow;
  9. }
  10. .tablesaw-stack tbody tr:after {
  11. content: "Custom Test";
  12. }
  13. .tablesaw {
  14. border-collapse: collapse;
  15. width: 100%;
  16. }
  17. /* Structure */
  18. .tablesaw {
  19. border: 0;
  20. padding: 0;
  21. }
  22. .tablesaw th,
  23. .tablesaw td {
  24. box-sizing: border-box;
  25. padding: .5em .7em;
  26. }
  27. .tablesaw thead tr:first-child th {
  28. padding-top: .9em;
  29. padding-bottom: .7em;
  30. }
  31. /* Table rows have a gray bottom stroke by default */
  32. .tablesaw-stack tbody tr {
  33. border-bottom: 1px solid #dfdfdf;
  34. }
  35. .tablesaw-stack td .tablesaw-cell-label,
  36. .tablesaw-stack th .tablesaw-cell-label {
  37. display: none;
  38. }
  39. /* Mobile first styles: Begin with the stacked presentation at narrow widths */
  40. @media only all {
  41. /* Show the table cells as a block level element */
  42. .tablesaw-stack td,
  43. .tablesaw-stack th {
  44. text-align: left;
  45. display: block;
  46. }
  47. .tablesaw-stack tr {
  48. clear: both;
  49. display: table-row;
  50. }
  51. /* Make the label elements a percentage width */
  52. .tablesaw-stack td .tablesaw-cell-label,
  53. .tablesaw-stack th .tablesaw-cell-label {
  54. display: block;
  55. padding: 0 .6em 0 0;
  56. width: 30%;
  57. display: inline-block;
  58. }
  59. /* For grouped headers, have a different style to visually separate the levels by classing the first label in each col group */
  60. .tablesaw-stack th .tablesaw-cell-label-top,
  61. .tablesaw-stack td .tablesaw-cell-label-top {
  62. display: block;
  63. padding: .4em 0;
  64. margin: .4em 0;
  65. }
  66. .tablesaw-cell-label {
  67. display: block;
  68. }
  69. /* Avoid double strokes when stacked */
  70. .tablesaw-stack tbody th.group {
  71. margin-top: -1px;
  72. }
  73. /* Avoid double strokes when stacked */
  74. .tablesaw-stack th.group b.tablesaw-cell-label {
  75. display: none !important;
  76. }
  77. }
  78. @media (max-width: 39.9375em) {
  79. .tablesaw-stack thead td,
  80. .tablesaw-stack thead th {
  81. display: none;
  82. }
  83. .tablesaw-stack tbody td,
  84. .tablesaw-stack tbody th {
  85. clear: left;
  86. float: left;
  87. width: 100%;
  88. }
  89. .tablesaw-cell-label {
  90. vertical-align: top;
  91. }
  92. .tablesaw-cell-content {
  93. max-width: 67%;
  94. display: inline-block;
  95. }
  96. .tablesaw-stack td:empty,
  97. .tablesaw-stack th:empty {
  98. display: none;
  99. }
  100. }
  101. /* Media query to show as a standard table at 560px (35em x 16px) or wider */
  102. @media (min-width: 40em) {
  103. .tablesaw-stack tr {
  104. display: table-row;
  105. }
  106. /* Show the table header rows */
  107. .tablesaw-stack td,
  108. .tablesaw-stack th,
  109. .tablesaw-stack thead td,
  110. .tablesaw-stack thead th {
  111. display: table-cell;
  112. margin: 0;
  113. }
  114. /* Hide the labels in each cell */
  115. .tablesaw-stack td .tablesaw-cell-label,
  116. .tablesaw-stack th .tablesaw-cell-label {
  117. display: none !important;
  118. }
  119. }