admin.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. .admin-page .section.page-header {
  2. padding: 1rem 0;
  3. h1 {
  4. margin-bottom: 0;
  5. }
  6. }
  7. .main-content-wrapper {
  8. padding: 1rem;
  9. box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  10. border-radius: $card-border-radius;
  11. }
  12. .admin-panel {
  13. @extend .card;
  14. padding: 0 !important;
  15. > h3 {
  16. background: #f7f7f7;
  17. padding: 10px;
  18. margin: 0 0 .5rem 0;
  19. font-size: 1.3rem;
  20. @include border-top-radius($border-radius);
  21. border-bottom: 1px solid $card-border-color;
  22. }
  23. }
  24. #block-system-management {
  25. > h2 {
  26. font-size: 1.3rem;
  27. margin: 0;
  28. color: #444;
  29. }
  30. .menu,
  31. .menu ul {
  32. @extend .nav;
  33. @extend .flex-column;
  34. > li {
  35. @extend .nav-item;
  36. > a {
  37. @extend .nav-link;
  38. padding-left: 0;
  39. color: #99979c;
  40. &.active,
  41. &.active-trail {
  42. font-weight: bold;
  43. color: #292b2c;
  44. }
  45. &:hover:not(.active) {
  46. color: theme-color(primary);
  47. }
  48. }
  49. }
  50. .expanded {
  51. margin: .5rem 0;
  52. }
  53. }
  54. .menu {
  55. @include media-breakpoint-down(md) {
  56. ul {
  57. display: none;
  58. }
  59. }
  60. }
  61. .menu ul {
  62. padding-left: 20px;
  63. ul {
  64. background: #f7f7f7;
  65. @include border-radius($card-border-radius);
  66. }
  67. > li > a {
  68. padding: 3px;
  69. }
  70. }
  71. }
  72. [id^="edit-modules-"] table {
  73. tbody > tr {
  74. > td {
  75. font-size: 14px;
  76. }
  77. > td.help,
  78. > td.permissions,
  79. > td.configure {
  80. font-size: 12px;
  81. }
  82. }
  83. }
  84. td .description {
  85. @extend .text-muted;
  86. }