tableselect.css

Same filename in this branch
  1. 11.x core/profiles/demo_umami/themes/umami/css/classy/components/tableselect.css
  2. 11.x core/themes/claro/css/components/tableselect.css
  3. 11.x core/themes/starterkit_theme/css/components/tableselect.css
  4. 11.x core/themes/admin/migration/css/components/tableselect.css
Same filename and directory in other branches
  1. 10 core/profiles/demo_umami/themes/umami/css/classy/components/tableselect.css
  2. 10 core/themes/claro/css/components/tableselect.css
  3. 10 core/themes/starterkit_theme/css/components/tableselect.css
  4. 9 core/profiles/demo_umami/themes/umami/css/classy/components/tableselect.css
  5. 9 core/themes/seven/css/classy/components/tableselect.css
  6. 9 core/themes/claro/css/components/tableselect.css
  7. 9 core/themes/bartik/css/classy/components/tableselect.css
  8. 9 core/themes/starterkit_theme/css/components/tableselect.css
  9. 9 core/themes/classy/css/components/tableselect.css
  10. 8.9.x core/profiles/demo_umami/themes/umami/css/classy/components/tableselect.css
  11. 8.9.x core/themes/seven/css/classy/components/tableselect.css
  12. 8.9.x core/themes/claro/css/components/tableselect.css
  13. 8.9.x core/themes/bartik/css/classy/components/tableselect.css
  14. 8.9.x core/themes/classy/css/components/tableselect.css
  15. main core/profiles/demo_umami/themes/umami/css/classy/components/tableselect.css
  16. main core/themes/claro/css/components/tableselect.css
  17. main core/themes/starterkit_theme/css/components/tableselect.css
  18. main core/themes/admin/migration/css/components/tableselect.css
  19. main core/themes/admin/css/components/tableselect.css

Table select styles for Claro.

See also

tableselect.js

File

core/themes/admin/css/components/tableselect.css

View source
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/3084859
  5. * @preserve
  6. */
  7. /**
  8. * @file
  9. * Table select styles for Claro.
  10. *
  11. * @see tableselect.js
  12. */
  13. td.checkbox,
  14. th.checkbox {
  15. text-align: center;
  16. }
  17. tr.selected td {
  18. background-color: var(--color-bgblue-active);
  19. }
  20. .views-bulk-actions {
  21. position: relative;
  22. display: flex;
  23. flex: 1;
  24. flex-wrap: wrap;
  25. padding: var(--space-m) 2rem;
  26. color: var(--color-white);
  27. border: var(--details-border-size) solid var(--details-border-color);
  28. border-radius: 0.25rem;
  29. background-color: var(--color-text);
  30. &[data-drupal-sticky-vbo="true"] {
  31. position: sticky;
  32. z-index: calc(var(--dropbutton-widget-z-index) + 1);
  33. bottom: var(--drupal-displace-offset-bottom, 0);
  34. animation: fade-in-bottom 320ms 1 forwards;
  35. border-bottom-right-radius: 0;
  36. border-bottom-left-radius: 0;
  37. }
  38. &.views-form__header--bypass-animation {
  39. animation: none;
  40. }
  41. }
  42. @supports (position: sticky) {
  43. .views-bulk-actions[data-drupal-sticky-vbo="true"] {
  44. position: sticky;
  45. }
  46. }
  47. @keyframes fade-in-bottom {
  48. 0% {
  49. transform: translateY(100%);
  50. }
  51. 100% {
  52. transform: translateY(0);
  53. }
  54. }
  55. .views-bulk-actions__item {
  56. align-self: center;
  57. margin-block: 0 var(--space-s);
  58. margin-inline: 0 var(--space-l);
  59. &:last-of-type {
  60. margin-inline-end: 0;
  61. }
  62. & .form-element {
  63. &:hover {
  64. border: var(--input-border-size) solid var(--input-border-color);
  65. box-shadow: none;
  66. }
  67. }
  68. & .button--primary:not(:disabled, .is-disabled) {
  69. background: var(--button-bg-color--primary);
  70. &:hover {
  71. background: var(--button--hover-bg-color--primary);
  72. }
  73. &:focus {
  74. background: var(--button--focus-bg-color--primary);
  75. }
  76. }
  77. & .form-item__label {
  78. display: inline;
  79. padding-inline-end: var(--space-xs);
  80. &::after {
  81. content: ":";
  82. }
  83. }
  84. & .form-element--type-select {
  85. min-height: 2rem;
  86. padding-block: calc(0.5rem - 1px);
  87. padding-inline: calc(1rem - 1px) calc(2.25rem - 1px);
  88. font-size: var(--font-size-xs);
  89. line-height: 1rem;
  90. }
  91. & input,
  92. & .button {
  93. margin-block: 0;
  94. }
  95. }
  96. .views-bulk-actions__item--status {
  97. width: 100%;
  98. white-space: nowrap;
  99. font-size: var(--font-size-xs);
  100. font-weight: bold;
  101. }
  102. .views-field__skip-to-bulk-actions {
  103. display: block;
  104. white-space: nowrap;
  105. font-size: var(--font-size-xs);
  106. }
  107. @media screen and (min-width: 61rem) {
  108. .views-bulk-actions {
  109. flex-wrap: nowrap;
  110. }
  111. .views-bulk-actions__item {
  112. margin-bottom: 0;
  113. }
  114. .views-bulk-actions__item--status {
  115. width: auto;
  116. }
  117. }
  118. .ui-autocomplete {
  119. z-index: 501;
  120. }

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.