block.admin.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* Block listing page */
  2. .region-title__action {
  3. display: inline-flex;
  4. align-items: center;
  5. margin-left: 20px; /* LTR */
  6. }
  7. [dir="rtl"] .region-title__action {
  8. margin-left: 0;
  9. margin-right: 20px;
  10. }
  11. /* Block demo mode */
  12. .block-region {
  13. background-color: #f9f9f9;
  14. margin: 20px 0;
  15. padding: 10px;
  16. text-align: center;
  17. text-transform: uppercase;
  18. font-weight: 700;
  19. border: dashed 1px #a4a4a4;
  20. }
  21. a.block-demo-backlink,
  22. a.block-demo-backlink:link,
  23. a.block-demo-backlink:visited {
  24. background-color: #f5f5f5;
  25. color: #333;
  26. font-size: 12px;
  27. font-weight: 700;
  28. text-transform: uppercase;
  29. line-height: 20px;
  30. left: 0;
  31. bottom: 0;
  32. margin: 20px;
  33. padding: 5px 10px;
  34. position: fixed;
  35. z-index: 499;
  36. border: 1px solid #b8b8b8;
  37. transition: all 0.2s;
  38. text-decoration: none;
  39. }
  40. a.block-demo-backlink:hover,
  41. a.block-demo-backlink:focus {
  42. background-color: white;
  43. text-decoration: none;
  44. border-color: #0678be;
  45. color: #0678be;
  46. }
  47. /* Configure block form - Block description */
  48. .block-form .form-item-settings-admin-label label {
  49. display: inline;
  50. }
  51. .block-form .form-item-settings-admin-label label:after {
  52. content: ':';
  53. }