説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_table.scss 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .table {
  2. th {
  3. color : $headings-color;
  4. border-bottom: 1px solid $border-color !important;
  5. }
  6. }
  7. .table-responsive-sm {
  8. min-width: 48rem;
  9. }
  10. .table {
  11. // border-collapse: separate;
  12. // border-spacing: 0 1rem;
  13. margin-bottom: 0px;
  14. tr {
  15. &:last-child {
  16. td {
  17. border-bottom: 0px solid $border-color;
  18. }
  19. }
  20. td,
  21. th {
  22. // background: rgba(0, 0, 0, 0.15);
  23. border-bottom : 1px solid $border-color;
  24. vertical-align: middle;
  25. padding : 18px;
  26. &:last-child{
  27. text-align: right;
  28. }
  29. }
  30. }
  31. }
  32. .table-striped {
  33. tr {
  34. td,
  35. th {
  36. border: 0px !important;
  37. }
  38. }
  39. }
  40. .table-striped>tbody>tr:nth-of-type(odd) {
  41. td {
  42. &:first-child {
  43. border-top-left-radius : 7px;
  44. border-bottom-left-radius: 7px;
  45. }
  46. &:last-child {
  47. border-top-right-radius : 7px;
  48. border-bottom-right-radius: 7px;
  49. }
  50. }
  51. }
  52. .api-table{
  53. span{
  54. i{
  55. font-size:20px;
  56. &:hover{
  57. color: $danger;
  58. }
  59. }
  60. }
  61. }
  62. .table-icon{
  63. span{
  64. i{
  65. font-size: 16px;
  66. }
  67. }
  68. }