Advertisement
srikat

MainWP Dashboard Style

Jul 26th, 2019
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. a {
  2. color: #0073aa;
  3. }
  4.  
  5. .ui.inverted.menu {
  6. background: #24282c;
  7. }
  8.  
  9. .ui.vertical.menu .item:before {
  10. display: none;
  11. }
  12.  
  13. .ui.vertical.menu > .item {
  14. cursor: pointer;
  15. }
  16.  
  17. .ui.inverted.menu .item, .ui.inverted.menu .item>a:not(.ui) {
  18. color: #eee;
  19. }
  20.  
  21. .ui.vertical.menu .item a.title b {
  22. font-weight: normal;
  23. }
  24.  
  25. .ui.green.button, .ui.green.buttons .button {
  26. background-color: #0073aa;
  27. color: #fff;
  28. border-color: #0073aa #006799 #006799;
  29. }
  30.  
  31. .wp-core-ui .button-disabled, .wp-core-ui .button-secondary.disabled, .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary[disabled], .wp-core-ui .button.disabled, .wp-core-ui .button:disabled, .wp-core-ui .button[disabled] {
  32. background: #f7f7f7;
  33. color: #a0a5aa;
  34. }
  35.  
  36. .mainwp-primary-content-wrap {
  37. padding: 20px;
  38. }
  39.  
  40. .mainwp-ui-leftmenu .mainwp-content-wrap {
  41. background: #f1f1f1;
  42. }
  43.  
  44. .ui.grid>.column:not(.row), .ui.grid>.row>.column {
  45. padding-left: 8px;
  46. padding-right: 8px;
  47. }
  48.  
  49. .mainwp-widget {
  50. padding: 23px;
  51. }
  52.  
  53. .mainwp-ui .ui.segment {
  54. overflow: hidden;
  55. }
  56.  
  57. .mainwp-ui .ui.segment > .ui.grid:first-child {
  58. border-bottom: 1px solid #eee;
  59. margin-bottom: 10px;
  60. }
  61.  
  62. .ui.message {
  63. border-radius: 5px;
  64. margin-bottom: 16px;
  65. }
  66.  
  67. .ui.basic.green.button, .ui.basic.green.buttons .button {
  68. color: #fff;
  69. box-shadow: 0 0 0 1px #0074a2 inset;
  70. }
  71.  
  72. .ui.basic.green.button:hover, .ui.basic.green.buttons .button:hover {
  73. color: #0073aa;
  74. box-shadow: 0 0 0 1px #0074a2 inset;
  75. }
  76.  
  77. #mainwp-add-new-buttons .ui.button {
  78. background: #333;
  79. color: #fff;
  80. }
  81.  
  82. #mainwp-add-new-buttons .ui.button:hover {
  83. background: #111;
  84. }
  85.  
  86. h3.ui.header .sub.header {
  87. margin-top: 10px;
  88. }
  89.  
  90. .ui.section.divider {
  91. margin-top: 0;
  92. margin-bottom: 0;
  93. }
  94.  
  95. .ui.green.menu .active.item, .ui.menu .green.active.item, .ui.basic.green.label {
  96. border-color: #0073aa;
  97. color: #0073aa;
  98. }
  99.  
  100. .ui.green.label, .ui.green.labels .label {
  101. background-color: #0073aa;
  102. border-color: #0073aa;
  103. }
  104.  
  105. .mainwp-ui .ui.toggle.checkbox input:checked ~ .box::before, .mainwp-ui .ui.toggle.checkbox input:checked ~ label::before, .ui.toggle.checkbox input:checked~.box:before, .ui.toggle.checkbox input:checked~label:before {
  106. background-color: #0073aa;
  107. }
  108.  
  109. .ui.form input:not([type]), .ui.form input[type=date], .ui.form input[type=datetime-local], .ui.form input[type=email], .ui.form input[type=file], .ui.form input[type=number], .ui.form input[type=password], .ui.form input[type=search], .ui.form input[type=tel], .ui.form input[type=text], .ui.form input[type=time], .ui.form input[type=url], .ui.selection.dropdown {
  110. border: 1px solid rgba(34,36,38,.25);
  111. }
  112.  
  113. .ui.button {
  114. color: rgba(0,0,0,.6);
  115. }
  116.  
  117. a[data-tooltip="Logout"] {
  118. color: #fff;
  119. }
  120.  
  121. #mainwp-top-header {
  122. padding-left: 22px;
  123. z-index: 1000;
  124. }
  125.  
  126. #mainwp-main-menu > .item:hover {
  127. background: #191e23;
  128. }
  129.  
  130. #mainwp-main-menu > .item:hover > a:not(.ui) {
  131. color: #00b9eb;
  132. }
  133.  
  134. .ui.positive.button, .ui.positive.buttons .button {
  135. /*background-color: #006799;*/
  136. color: #fff;
  137. }
  138.  
  139. #mainwp-message-zone {
  140. margin-bottom: 30px;
  141. }
  142.  
  143. .ui.green.message, .ui.yellow.message {
  144. color: #000;
  145. }
  146.  
  147. .ui.cards>.card .content:not(.extra) + .extra {
  148. display: flex;
  149. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement