_dashboard_settings.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .dashboard-settings {
  2. position: fixed;
  3. height: 100%;
  4. width: 100%;
  5. top: 0;
  6. left: 0;
  7. right: 0;
  8. bottom: 0;
  9. z-index: $zindex-sidemenu;
  10. background: $dashboard-bg;
  11. display: flex;
  12. flex-direction: column;
  13. }
  14. .dashboard-settings__body {
  15. min-height: 100%;
  16. width: 100%;
  17. display: flex;
  18. flex-direction: row;
  19. background: $panel-bg;
  20. }
  21. .dashboard-settings__aside {
  22. display: flex;
  23. flex-direction: column;
  24. margin-top: $spacer;
  25. }
  26. .dashboard-settings__aside-header {
  27. color: $text-muted;
  28. font-size: $font-size-h3;
  29. padding-right: 60px;
  30. white-space: nowrap;
  31. margin-bottom: $space-md;
  32. i {
  33. font-size: 25px;
  34. position: relative;
  35. top: 1px;
  36. padding-right: 5px;
  37. }
  38. }
  39. .dashboard-settings__header {
  40. font-size: $font-size-h3;
  41. margin-bottom: $space-md;
  42. }
  43. .dashboard-settings__subheader {
  44. color: $text-muted;
  45. font-style: italic;
  46. }
  47. .dashboard-settings__nav-item {
  48. padding: 8px 40px 8px 8px;
  49. color: $text-color-weak;
  50. font-size: $font-size-md;
  51. line-height: 20px;
  52. position: relative;
  53. @include left-brand-border;
  54. &.active {
  55. color: $text-color;
  56. font-weight: $font-weight-semi-bold;
  57. &::before {
  58. content: '';
  59. position: absolute;
  60. top: 0;
  61. left: 0;
  62. bottom: 0;
  63. width: 4px;
  64. border-radius: 4px;
  65. background: $brand-gradient-vertical;
  66. }
  67. }
  68. .gicon {
  69. margin-bottom: 2px;
  70. margin-right: 4px;
  71. }
  72. .fa {
  73. font-size: 17px;
  74. width: 16px;
  75. margin-right: 4px;
  76. }
  77. }
  78. .dashboard-settings__aside-actions {
  79. display: flex;
  80. flex-direction: column;
  81. height: 100%;
  82. flex-grow: 1;
  83. margin: 40px $space-xl 0 0;
  84. button {
  85. margin-bottom: $space-sm;
  86. }
  87. }
  88. .dashboard-settings__json-save-button {
  89. margin-top: $space-md;
  90. }