You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
2.2 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. .row {
  2. @include clear-fix-after();
  3. &:before {
  4. clear:both;
  5. content:'';
  6. }
  7. margin:0 -15px;
  8. }
  9. @for $i from 1 to 13 {
  10. .col-sm-#{$i},
  11. .col-xs-#{$i},
  12. .col-md-#{$i},
  13. .col-lg-#{$i}{
  14. float:left;
  15. min-height:1px;
  16. width: ( $i / 12 * 100% );
  17. padding:0 15px;
  18. }
  19. }
  20. [data-ax5grid] {
  21. margin:0;
  22. padding:0;
  23. position:relative;
  24. background:transparent;
  25. border:0px;
  26. table {
  27. border-collapse: collapse;
  28. border-spacing: 0;
  29. border: 0 none;
  30. width: 100%;
  31. height: 100%;
  32. thead {
  33. tr {
  34. -webkit-user-select: none;
  35. -moz-user-select: none;
  36. -ms-user-select: none;
  37. user-select: none;
  38. margin: 0;
  39. padding: 0;
  40. position: relative;
  41. overflow: hidden;
  42. background-color: #fafafa;
  43. border: 0px none;
  44. color: #282828;
  45. th {
  46. box-sizing: border-box;
  47. overflow: hidden;
  48. position: relative;
  49. padding: 10px;
  50. height:38px;
  51. text-align:center;
  52. border:1px solid #ddd;
  53. font-weight:400;
  54. }
  55. }
  56. }
  57. tbody {
  58. tr {
  59. border-bottom: 0 none;
  60. background:transparent;
  61. td {
  62. line-height:21px;
  63. padding:5px 10px;
  64. background-color:#fff;
  65. border:1px solid #ddd;
  66. font-weight:300;
  67. &.empty {
  68. height:300px;
  69. vertical-align: middle;
  70. text-align:center;
  71. }
  72. }
  73. }
  74. }
  75. tfoot {
  76. tr {
  77. -webkit-user-select: none;
  78. -moz-user-select: none;
  79. -ms-user-select: none;
  80. user-select: none;
  81. margin: 0;
  82. padding: 0;
  83. position: relative;
  84. overflow: hidden;
  85. background-color: #f9f9f9;
  86. border:1px solid #ddd;
  87. color: #282828;
  88. td {
  89. box-sizing: border-box;
  90. overflow: hidden;
  91. position: relative;
  92. padding: 10px;
  93. border:1px solid #ddd;
  94. height:38px;
  95. text-align:center;
  96. &:last-child {
  97. border-right:0px;
  98. }
  99. }
  100. &:last-child {
  101. td {
  102. border-bottom:0px;
  103. }
  104. }
  105. }
  106. }
  107. }
  108. }