2
0

_bulk_actions.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. .bulk-actions-filter-checkbox {
  2. .table-headers & {
  3. > div {
  4. display: flex;
  5. align-items: center;
  6. }
  7. .c-dropdown__button {
  8. padding-left: 0.3rem;
  9. }
  10. .bulk-actions-choices,
  11. .bulk-actions-choices > ul {
  12. display: flex;
  13. align-items: center;
  14. }
  15. .bulk-actions-choices li {
  16. margin: 0 0.5em;
  17. }
  18. .bulk-actions-choices span {
  19. text-transform: none;
  20. }
  21. }
  22. }
  23. .bulk-actions-choices {
  24. &.footer {
  25. @include transition(transform 0.1s ease 0.1s);
  26. &.hidden {
  27. transform: translateY(200px);
  28. visibility: hidden;
  29. }
  30. .button {
  31. font-weight: 600;
  32. }
  33. .bulk-actions-more {
  34. .button {
  35. border: 0;
  36. }
  37. .button:not(:hover) {
  38. color: $color-teal;
  39. }
  40. .c-dropdown__button {
  41. text-transform: uppercase;
  42. }
  43. .c-dropdown__menu {
  44. bottom: 50px;
  45. flex-direction: column;
  46. }
  47. }
  48. .bulk-actions-more.is-open {
  49. .c-dropdown__menu.u-toggle {
  50. display: flex;
  51. }
  52. }
  53. }
  54. .footer__container {
  55. display: flex;
  56. justify-content: space-around;
  57. width: 100%;
  58. align-items: center;
  59. padding: 1.25em;
  60. border-radius: 4px 4px 0 0;
  61. margin-left: 30px;
  62. input[type='checkbox'] {
  63. margin-right: 1.25em;
  64. }
  65. .bulk-actions-buttons {
  66. border-left: 1px solid $color-grey-2;
  67. padding-left: 1.5em;
  68. .bulk-action-btn {
  69. max-width: 160px;
  70. overflow-x: hidden;
  71. text-overflow: ellipsis;
  72. }
  73. }
  74. .num-objects {
  75. text-transform: none;
  76. margin: 0 5px;
  77. }
  78. .num-objects-in-listing {
  79. color: $color-teal-light;
  80. background-color: transparent;
  81. border: 0;
  82. font-family: Open Sans, Arial, sans-serif;
  83. padding: 0;
  84. }
  85. .button:not(:hover) {
  86. background-color: $color-white;
  87. }
  88. }
  89. }