appdark.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. // Fonts
  2. @import "fonts";
  3. @import "lib/fontawesome";
  4. // Variables
  5. @import "dark";
  6. // Bootstrap
  7. @import '~bootstrap/scss/bootstrap';
  8. @import "custom";
  9. .text-dark {
  10. color: #ADAFAE !important;
  11. }
  12. .border-left {
  13. background: #ADAFAE !important;
  14. }
  15. .border-top {
  16. border-top: 1px solid #282828 !important;
  17. }
  18. .border-bottom {
  19. border-bottom: 1px solid #282828 !important;
  20. }
  21. .btn-outline-light {
  22. border-color: #E2E8F0 !important;
  23. color: #E2E8F0 !important;
  24. }
  25. .modal-content,
  26. .card,
  27. .dropdown-menu,
  28. .bg-white,
  29. .list-group-item,
  30. .autocomplete-result-list,
  31. .postPresenterContainer,
  32. .postComponent .card-body.flex-grow-0.py-1,
  33. .postComponent .reactions,
  34. .postComponent .status-comments,
  35. .navbar-laravel {
  36. background: #000 !important;
  37. }
  38. .story-viewer-component-card {
  39. background: transparent !important;
  40. }
  41. .autocomplete-result-list {
  42. z-index: 99999;
  43. }
  44. .pill-to {
  45. background: #282828 !important;
  46. }
  47. .dropdown-item:hover,
  48. .tt-suggestion:hover,
  49. .dropdown-item:focus,
  50. .tt-suggestion:focus,
  51. .chat-msg:hover,
  52. .result-card .media:hover {
  53. background: #181818 !important;
  54. }
  55. .notification-card .contents {
  56. scrollbar-color: dark;
  57. }
  58. body, html {
  59. scrollbar-color: dark;
  60. }
  61. .modal-content,
  62. .form-control,
  63. .img-thumbnail {
  64. border: 1px solid #282828 !important;
  65. }
  66. .navbar.border-bottom {
  67. border-color: #282828 !important;
  68. }
  69. .postComponent .border-left {
  70. border-left: 0 !important;
  71. }
  72. .postComponent .card-header {
  73. border-radius: 0;
  74. }
  75. input,
  76. textarea {
  77. color: #E2E8F0 !important;
  78. background: #000 !important;
  79. }
  80. .far, .fas,
  81. .navbar-laravel .navbar-brand span,
  82. .navbar-laravel .nav-link .d-md-block,
  83. .navbar-laravel .nav-link.dropdown-toggle .far,
  84. .navbar-laravel .nav-link.dropdown-toggle::after {
  85. color: #ADAFAE !important;
  86. }
  87. .btn-outline-primary {
  88. border-color: #4A5568 !important;
  89. }
  90. .postComponent .status-comments {
  91. border-top: 1px solid #282828 !important;
  92. border-bottom: 1px solid #282828 !important;
  93. }
  94. .messages-page .card-header {
  95. border-bottom: 1px solid #282828;
  96. }
  97. hr {
  98. border-color: #282828 !important;
  99. }
  100. ::-webkit-scrollbar {
  101. width: 15px;
  102. }
  103. ::-webkit-scrollbar-track {
  104. background: #202020;
  105. border-left: 1px solid #2c2c2c;
  106. }
  107. ::-webkit-scrollbar-thumb {
  108. background: #3e3e3e;
  109. border: solid 3px #202020;
  110. border-radius: 7px;
  111. }
  112. ::-webkit-scrollbar-thumb:hover {
  113. background: white;
  114. }
  115. @import "components/filters";
  116. @import "components/typeahead";
  117. @import "components/notifications";
  118. @import '~bootstrap-vue/dist/bootstrap-vue.css';
  119. @import "moment";
  120. @import '~animate.css/animate.min.css';
  121. .border {
  122. border-color: #282828 !important;
  123. }
  124. .tribute-container {
  125. position: absolute;
  126. top: 0;
  127. left: 0;
  128. height: auto;
  129. max-height: 300px;
  130. min-width: 120px;
  131. max-width: 500px;
  132. overflow: auto;
  133. display: block;
  134. z-index: 999999;
  135. border-radius: 4px;
  136. border: 1px solid #282828;
  137. ul {
  138. margin: 0;
  139. margin-top: 2px;
  140. padding: 0;
  141. list-style: none;
  142. background: #181818;
  143. border-radius: 4px;
  144. border: 1px solid #282828;
  145. background-clip: padding-box;
  146. overflow: hidden;
  147. }
  148. li {
  149. color: #ADAFAE;
  150. padding: 5px 15px;
  151. cursor: pointer;
  152. font-size: 14px;
  153. overflow-x: hidden !important;
  154. span {
  155. font-weight: bold;
  156. }
  157. &.highlight,
  158. &:hover {
  159. background: #11304c;
  160. color: #fff;
  161. }
  162. &.no-match {
  163. cursor: default;
  164. }
  165. }
  166. .menu-highlighted {
  167. font-weight: bold;
  168. }
  169. }