block.admin.css

Same filename in this branch
  1. 11.x core/themes/stable9/css/block/block.admin.css
Same filename in other branches
  1. 9 core/themes/stable9/css/block/block.admin.css
  2. 9 core/themes/stable/css/block/block.admin.css
  3. 9 core/modules/block/css/block.admin.css
  4. 8.9.x core/themes/stable/css/block/block.admin.css
  5. 8.9.x core/modules/block/css/block.admin.css
  6. 10 core/themes/stable9/css/block/block.admin.css
  7. 10 core/modules/block/css/block.admin.css
/* Block listing page */
.region-title__action {
  display: inline-block;
  margin-left: 1em; /* LTR */
}
[dir="rtl"] .region-title__action {
  margin-right: 1em;
  margin-left: 0;
}

/* Block demo mode */
.block-region {
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 3px;
  color: #000;
  background-color: #ff6;
}
a.block-demo-backlink,
a.block-demo-backlink:link,
a.block-demo-backlink:visited {
  position: fixed;
  z-index: 499;
  left: 20px; /* LTR */
  padding: 5px 10px;
  color: #000;
  border-radius: 0 0 10px 10px;
  background-color: #b4d7f0;
  font-family: "Lucida Grande", Verdana, sans-serif;
  font-size: small;
  line-height: 20px;
}
a.block-demo-backlink:hover {
  text-decoration: underline;
}

/* Configure block form - Block description */
.block-form .form-item-settings-admin-label label {
  display: inline;
}
.block-form .form-item-settings-admin-label label::after {
  content: ":";
}
.block-disabled:not(:hover) {
  opacity: 0.675;
  background: #fcfcfa;
}

File

core/modules/block/css/block.admin.css

View source
  1. /* Block listing page */
  2. .region-title__action {
  3. display: inline-block;
  4. margin-left: 1em; /* LTR */
  5. }
  6. [dir="rtl"] .region-title__action {
  7. margin-right: 1em;
  8. margin-left: 0;
  9. }
  10. /* Block demo mode */
  11. .block-region {
  12. margin-top: 4px;
  13. margin-bottom: 4px;
  14. padding: 3px;
  15. color: #000;
  16. background-color: #ff6;
  17. }
  18. a.block-demo-backlink,
  19. a.block-demo-backlink:link,
  20. a.block-demo-backlink:visited {
  21. position: fixed;
  22. z-index: 499;
  23. left: 20px; /* LTR */
  24. padding: 5px 10px;
  25. color: #000;
  26. border-radius: 0 0 10px 10px;
  27. background-color: #b4d7f0;
  28. font-family: "Lucida Grande", Verdana, sans-serif;
  29. font-size: small;
  30. line-height: 20px;
  31. }
  32. a.block-demo-backlink:hover {
  33. text-decoration: underline;
  34. }
  35. /* Configure block form - Block description */
  36. .block-form .form-item-settings-admin-label label {
  37. display: inline;
  38. }
  39. .block-form .form-item-settings-admin-label label::after {
  40. content: ":";
  41. }
  42. .block-disabled:not(:hover) {
  43. opacity: 0.675;
  44. background: #fcfcfa;
  45. }

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