暫無描述

_white-content.scss 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. .white-content{
  2. background: $light-bg;
  3. .navbar.navbar-transparent .navbar-brand{
  4. color: $black-states;
  5. }
  6. .navbar.navbar-transparent .navbar-toggler-bar{
  7. background: $black-states;
  8. }
  9. .navbar.navbar-transparent .navbar-nav li a:not(.dropdown-item){
  10. color: $black-states;
  11. & i{
  12. color: $black-states;
  13. }
  14. }
  15. .navbar.navbar-transparent .navbar-minimize button i{
  16. color: $black-states;
  17. }
  18. .navbar.navbar-transparent .search-bar.input-group i{
  19. color: $black-states;
  20. }
  21. .navbar.navbar-transparent .search-bar.input-group .form-control{
  22. color: $default;
  23. &::placeholder{
  24. color: $dark-gray;
  25. }
  26. }
  27. .sidebar{
  28. box-shadow: 0 2px 22px 0 rgba(0,0,0,.1), 0 4px 20px 0 rgba(0,0,0,.15);
  29. p{
  30. color: $opacity-8;
  31. }
  32. }
  33. .main-panel{
  34. background: $light-bg;
  35. }
  36. h1, h2, h3, h4, h5, h6, p, ol li, ul li, pre {
  37. color: $black-states;
  38. }
  39. .font-icon-detail i{
  40. color: $black;
  41. }
  42. .btn:not([data-action]):hover{
  43. box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  44. }
  45. .btn-neutral.btn-link{
  46. color: rgba($black, 0.7);
  47. }
  48. //style for inputs
  49. @include form-control-placeholder(rgba($black,0.4), 1);
  50. .has-danger{
  51. .form-control, .input-group-prepend .input-group-text{
  52. border-color: $danger-states;
  53. }
  54. }
  55. .input-group-prepend .input-group-text{
  56. border-color: rgba($black-states,0.5);
  57. color: $black-states;
  58. }
  59. .form-control{
  60. color: $black;
  61. border-color: rgba($black-states,0.5);
  62. &:focus{
  63. border-color: $primary;
  64. }
  65. }
  66. .form-group.no-border,
  67. .input-group.no-border{
  68. .form-control,
  69. .form-control + .input-group-prepend .input-group-text,
  70. .form-control + .input-group-append .input-group-text,
  71. .input-group-prepend .input-group-text,
  72. .input-group-append .input-group-text{
  73. background-color: $opacity-gray-3;
  74. &:focus,
  75. &:active,
  76. &:active{
  77. background-color: $opacity-gray-5;
  78. }
  79. }
  80. .form-control{
  81. &:focus{
  82. & + .input-group-prepend .input-group-text,
  83. & + .input-group-append .input-group-text{
  84. background-color: $transparent-bg;
  85. }
  86. }
  87. }
  88. }
  89. .input-group[disabled]{
  90. .input-group-prepend .input-group-text,
  91. .input-group-append .input-group-text{
  92. background-color: $black;
  93. }
  94. }
  95. .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control{
  96. background: $light-gray;
  97. border-color: rgba($black-states,0.3);
  98. }
  99. .input-group-focus{
  100. .input-group-prepend .input-group-text,
  101. .input-group-append .input-group-text,
  102. .form-control{
  103. border-color: $primary;
  104. }
  105. &.no-border{
  106. .input-group-prepend .input-group-text,
  107. .input-group-append .input-group-text{
  108. background-color: $opacity-gray-5;
  109. }
  110. }
  111. }
  112. .input-group-prepend .input-group-text {
  113. border-right: none;
  114. }
  115. .input-group-append .input-group-text {
  116. border-left: none;
  117. }
  118. .has-danger .form-control:focus, .has-success.input-group-focus .input-group-append .input-group-text, .has-success.input-group-focus .input-group-prepend .input-group-text {
  119. border-color: $danger-states;
  120. }
  121. .has-success .form-control:focus, .has-success.input-group-focus .input-group-append .input-group-text, .has-success.input-group-focus .input-group-prepend .input-group-text {
  122. border-color: darken($success, 10%);
  123. }
  124. .btn.btn-link{
  125. &:hover,&:active, &:focus{
  126. color: $dark-gray !important;
  127. }
  128. }
  129. .btn-group .btn.active{
  130. box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  131. }
  132. .card:not(.card-white){
  133. background: $white;
  134. box-shadow: 0 1px 15px 0 rgba(, , , 0.05);
  135. .card-header{
  136. color: $black;
  137. a[data-toggle="collapse"]{
  138. color: $black;
  139. }
  140. }
  141. .card-header .card-title, .card-body .card-title{
  142. color: $black-states;
  143. }
  144. .card-body{
  145. .card-category, .card-description{
  146. color: $black-states;
  147. }
  148. }
  149. label:not(.btn){
  150. color: $default;
  151. }
  152. &.nav-pills .nav-item .nav-link {
  153. color: $nav-gray;
  154. background-color: hsla(0,0%,87%,.3);
  155. &:not(.active):hover{
  156. background: hsla(0,0%,87%,.5);
  157. }
  158. &.active{
  159. color: $white;
  160. }
  161. }
  162. .tab-content .tab-pane {
  163. color: $nav-gray;
  164. }
  165. .card{
  166. box-shadow: none;
  167. }
  168. &.card-plain{
  169. background: $transparent-bg;
  170. box-shadow: none;
  171. }
  172. &.card-tasks{
  173. .card-body{
  174. i{
  175. color: rgba(34,42,66,0.7);
  176. &:hover{
  177. color: $black;
  178. }
  179. }
  180. }
  181. }
  182. }
  183. .table{
  184. > tbody > tr > td {
  185. color: rgba($black, 0.7) !important;
  186. }
  187. > thead > tr > th,
  188. > tbody > tr > th,
  189. > tfoot > tr > th,
  190. > thead > tr > td,
  191. > tbody > tr > td,
  192. > tfoot > tr > td{
  193. border-color: rgba($black, 0.2);
  194. padding: 12px 7px;
  195. vertical-align: middle;
  196. }
  197. > thead > tr > th, button.btn-neutral.btn-link{
  198. color: rgba($black, 0.7);
  199. }
  200. }
  201. .footer ul li a{
  202. color: $black-states;
  203. }
  204. .footer .copyright{
  205. color: $black-states;
  206. }
  207. .progress-container, .progress-container.progress.sm{
  208. .progress{
  209. background: rgba($black,0.1);
  210. box-shadow: 0 0 0 3px rgba($black,0.1);
  211. .progress-value{
  212. color: $default;
  213. }
  214. }
  215. .progress-badge{
  216. color: $black-states;
  217. }
  218. }
  219. .full-page{
  220. background: $light-bg;
  221. h1, h2, h3, h4, h5, h6, p, ol li, ul li, pre {
  222. color: $black-states;
  223. }
  224. .description{
  225. color: $dark-gray;
  226. }
  227. .footer ul li a{
  228. color: $black-states;
  229. }
  230. .footer .copyright{
  231. color: $black-states;
  232. }
  233. }
  234. .nav-pills .nav-item .nav-link:not(.active){
  235. background: darken($light-bg,10%);
  236. color: $black-states;
  237. &:hover{
  238. background: darken($white,20%);
  239. }
  240. }
  241. }