bootstrap-table-bulma.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /**
  2. * @author zhixin wen <wenzhixin2010@gmail.com>
  3. * https://github.com/wenzhixin/bootstrap-table/
  4. * theme: https://github.com/jgthms/bulma/
  5. */
  6. @import './variables.scss';
  7. @import '../theme.scss';
  8. .bootstrap-table {
  9. .float-left {
  10. float: left;
  11. }
  12. .float-right {
  13. float: right;
  14. }
  15. .fixed-table-toolbar {
  16. .search input {
  17. width: auto;
  18. }
  19. .columns {
  20. margin-right: 0;
  21. }
  22. .button.dropdown {
  23. padding: 0;
  24. margin: 0;
  25. border: 0;
  26. &:not(:first-child) .button {
  27. border-bottom-left-radius: 0;
  28. border-top-left-radius: 0;
  29. }
  30. &:last-child .button {
  31. border-bottom-right-radius: 4px;
  32. border-top-right-radius: 4px;
  33. }
  34. .dropdown-content {
  35. box-shadow: none;
  36. border: 1px solid $border-color;
  37. }
  38. label.dropdown-item {
  39. padding: 5px 20px;
  40. }
  41. }
  42. }
  43. .fixed-table-pagination {
  44. .ui.dropdown {
  45. vertical-align: middle;
  46. }
  47. .is-up .fa-angle-down:before {
  48. content: "\f106";
  49. }
  50. .pagination-link.disabled {
  51. background-color: #dbdbdb;
  52. border-color: #dbdbdb;
  53. box-shadow: none;
  54. color: #7a7a7a;
  55. opacity: .5;
  56. cursor: not-allowed;
  57. }
  58. }
  59. }