Advertisement
b4lduin

Admin LESS

Jun 7th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.84 KB | None | 0 0
  1. @import 'backend_variables.less';
  2.  
  3. body
  4. {
  5.     background-color: @bg-color-dark;
  6. }
  7.  
  8. .no_border
  9. {
  10.     border-width: 0px !important;
  11. }
  12.  
  13. .fa-life-ring,
  14. .fa-exclamation-triangle,
  15. #help_sidebar .fa-times
  16. {
  17.     color: @highlight-red;
  18. }
  19.  
  20. .fa-shopping-basket
  21. {
  22.     color: @highlight-green;
  23. }
  24.  
  25. #topbar_buttons > li,
  26. ul.main_list > li,
  27. label[for]
  28. {
  29.     cursor: pointer;
  30. }
  31.  
  32. // ----------------------------------------------------------------------------------------- //
  33. // Bootstrap Callouts
  34.  
  35. .bs-callout
  36. {
  37.     padding: 20px;
  38.     margin: 20px 0;
  39.     border: 1px solid #ccc;
  40.     border-left-width: 3px;
  41.     border-radius: 3px;
  42.     background-color: #fff;
  43.  
  44.     > h4
  45.     {
  46.         font-size: 14px;
  47.         font-weight: bold;
  48.         margin-top: -10px;
  49.         margin-bottom: 15px;
  50.  
  51.         > i.far:first-child,
  52.         > i.fas:first-child,
  53.         > i.fa:first-child
  54.         {
  55.             position: relative;
  56.             left: -10px;
  57.         }
  58.     }
  59.  
  60.     .bs-callout-hidden
  61.     {
  62.         display: none !important;
  63.     }
  64.  
  65.     .small:not(.help-block)
  66.     {
  67.         margin-top: -10px;
  68.         color: #888;
  69.     }
  70.  
  71.     p:last-child
  72.     {
  73.         margin-bottom: 0;
  74.     }
  75.  
  76.     code
  77.     {
  78.         border-radius: 3px;
  79.     }
  80. }
  81.  
  82. .bs-callout + .bs-callout
  83. {
  84.     margin-top: -5px;
  85. }
  86.  
  87. .bs-callout-danger
  88. {
  89.     border-left-color: @highlight-red;
  90.  
  91.     h4
  92.     {
  93.         color: @highlight-red;
  94.     }
  95. }
  96.  
  97. .bs-callout-warning
  98. {
  99.     border-left-color: @highlight-orange;
  100.  
  101.     h4
  102.     {
  103.         color: @highlight-orange;
  104.     }
  105. }
  106.  
  107. .bs-callout-info
  108. {
  109.     border-left-color: @highlight-blue;
  110.  
  111.     h4
  112.     {
  113.         color: @highlight-blue;
  114.     }
  115. }
  116.  
  117. .bs-callout-ok
  118. {
  119.     border-left-color: @highlight-green;
  120.  
  121.     h4
  122.     {
  123.         color: @highlight-green;
  124.     }
  125. }
  126.  
  127. .bs-callout.bs-callout-toggle
  128. {
  129.     > h4
  130.     {
  131.         cursor: pointer;
  132.  
  133.         i.far:last-child
  134.         {
  135.             float: right;
  136.             position: relative;
  137.             top: 1px;
  138.             left: 10px;
  139.             color: @text-color;
  140.         }
  141.     }
  142. }
  143.  
  144. // ----------------------------------------------------------------------------------------- //
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement