table_responsive.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <!-- start: PAGE TITLE -->
  2. <section id="page-title">
  3. <div class="row">
  4. <div class="col-sm-8">
  5. <h1 class="mainTitle" translate="sidebar.nav.tables.RESPONSIVE">{{ mainTitle }}</h1>
  6. <span class="mainDescription">Make tables scroll horizontally on small devices</span>
  7. </div>
  8. <div ncy-breadcrumb></div>
  9. </div>
  10. </section>
  11. <!-- end: PAGE TITLE -->
  12. <!-- start: RESPONSIVE TABLE -->
  13. <div class="container-fluid container-fullw bg-white">
  14. <div class="row">
  15. <div class="col-md-12">
  16. <h5 class="over-title margin-bottom-15">Responsive <span class="text-bold">Table</span></h5>
  17. <p>
  18. Create responsive tables by wrapping any <code>.table</code> in <code>.table-responsive</code> to make them scroll horizontally on small devices (under 768px). When viewing on anything larger than 768px wide, you will not see any difference in these tables.
  19. </p>
  20. <div class="alert alert-info">
  21. Please try to re-size your browser window in order to see the tables in responsive mode.
  22. </div>
  23. <div class="table-responsive">
  24. <table class="table table-bordered table-hover" id="sample-table-1">
  25. <thead>
  26. <tr>
  27. <th>Domain</th>
  28. <th>Price</th>
  29. <th>Clicks</th>
  30. <th><i class="fa fa-time"></i> Update </th>
  31. <th>Status</th>
  32. </tr>
  33. </thead>
  34. <tbody>
  35. <tr>
  36. <td>
  37. <a href="#">
  38. alpha.com
  39. </a></td>
  40. <td>$45</td>
  41. <td>3,330</td>
  42. <td>February 13</td>
  43. <td><span class="label label-sm label-warning">Expiring</span></td>
  44. </tr>
  45. <tr>
  46. <td>
  47. <a href="#">
  48. beta.com
  49. </a></td>
  50. <td>$70</td>
  51. <td>3,330</td>
  52. <td>January 15</td>
  53. <td><span class="label label-sm label-success">Registered</span></td>
  54. </tr>
  55. <tr>
  56. <td>
  57. <a href="#">
  58. gamma.com
  59. </a></td>
  60. <td>$25</td>
  61. <td>3,330</td>
  62. <td>March 09</td>
  63. <td><span class="label label-sm label-danger">Expired</span></td>
  64. </tr>
  65. <tr>
  66. <td>
  67. <a href="#">
  68. delta.com
  69. </a></td>
  70. <td>$50</td>
  71. <td>3,330</td>
  72. <td>February 10</td>
  73. <td><span class="label label-sm label-inverse">Flagged</span></td>
  74. </tr>
  75. <tr>
  76. <td>
  77. <a href="#">
  78. epsilon.com
  79. </a></td>
  80. <td>$35</td>
  81. <td>3,330</td>
  82. <td>February 18</td>
  83. <td><span class="label label-sm label-success">Registered</span></td>
  84. </tr>
  85. <tr>
  86. <td>
  87. <a href="#">
  88. zeta.com
  89. </a></td>
  90. <td>$45</td>
  91. <td>3,330</td>
  92. <td>February 13</td>
  93. <td><span class="label label-sm label-warning">Expiring</span></td>
  94. </tr>
  95. <tr>
  96. <td>
  97. <a href="#">
  98. eta.com
  99. </a></td>
  100. <td>$70</td>
  101. <td>3,330</td>
  102. <td>January 15</td>
  103. <td><span class="label label-sm label-success">Registered</span></td>
  104. </tr>
  105. <tr>
  106. <td>
  107. <a href="#">
  108. theta.com
  109. </a></td>
  110. <td>$25</td>
  111. <td>3,330</td>
  112. <td>March 09</td>
  113. <td><span class="label label-sm label-danger">Expired</span></td>
  114. </tr>
  115. <tr>
  116. <td>
  117. <a href="#">
  118. iota.com
  119. </a></td>
  120. <td>$50</td>
  121. <td>3,330</td>
  122. <td>February 10</td>
  123. <td><span class="label label-sm label-inverse">Flagged</span></td>
  124. </tr>
  125. <tr>
  126. <td>
  127. <a href="#">
  128. kappa.com
  129. </a></td>
  130. <td>$35</td>
  131. <td>3,330</td>
  132. <td>February 18</td>
  133. <td><span class="label label-sm label-success">Registered</span></td>
  134. </tr>
  135. </tbody>
  136. </table>
  137. </div>
  138. </div>
  139. </div>
  140. </div>
  141. <!-- end: RESPONSIVE TABLE -->