bootstrap-table-semantic.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * @author zhixin wen <wenzhixin2010@gmail.com>
  3. * https://github.com/wenzhixin/bootstrap-table/
  4. * theme: https://github.com/Semantic-Org/Semantic-UI
  5. */
  6. @import './variables.scss';
  7. @import '../theme.scss';
  8. .bootstrap-table {
  9. .fixed-table-container.fixed-height:not(.has-footer),
  10. .fixed-table-body {
  11. border-bottom-left-radius: .28571429rem;
  12. border-bottom-right-radius: .28571429rem;
  13. }
  14. .float-left {
  15. float: left;
  16. }
  17. .float-right {
  18. float: right;
  19. }
  20. .fixed-table-toolbar {
  21. .search input {
  22. padding-top: 0.60714286rem;
  23. padding-bottom: 0.60714286rem;
  24. }
  25. .button.dropdown {
  26. padding: 0;
  27. .button {
  28. border-top-left-radius: 0;
  29. border-bottom-left-radius: 0;
  30. }
  31. }
  32. .ui.buttons .button:last-child .button {
  33. border-top-right-radius: 0.285714rem;
  34. border-bottom-right-radius: .28571429rem;
  35. }
  36. }
  37. .fixed-table-header .table {
  38. border-bottom-left-radius: 0;
  39. border-bottom-right-radius: 0;
  40. border-bottom: none;
  41. }
  42. .table {
  43. background: transparent;
  44. thead th[data-not-first-th] {
  45. border-left: 1px solid $border-color!important;
  46. }
  47. }
  48. .dropup i.icon.dropdown:before {
  49. content: "\f0d8";
  50. }
  51. }