iview.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .theme-iview {
  2. .avue-logo{
  3. background: #001529;
  4. box-shadow: none;
  5. text-align: center;
  6. .avue-logo_title{
  7. padding: 5px 8px 8px 8px;
  8. border-top-left-radius: 5px;
  9. border-top-right-radius: 5px;
  10. border-bottom-left-radius: 3px;
  11. border-bottom-right-radius: 3px;
  12. font-size: 20px;
  13. color:#fff;
  14. font-weight: 500;
  15. display: inline;
  16. background-color: #409EFF;
  17. }
  18. }
  19. .avue-tags{
  20. padding: 3px 5px 5px 0;
  21. background: #f0f0f0;
  22. box-shadow: inset 0 0 3px 2px hsla(0,0%,39.2%,.1);
  23. .is-active{
  24. &:before{
  25. background: #409EFF !important;
  26. }
  27. }
  28. .el-tabs__item{
  29. padding: 0 15px !important;
  30. position: relative;
  31. height: 32px !important;
  32. line-height:32px !important;
  33. border: 1px solid #e8eaec!important;
  34. color: #515a6e!important;
  35. background: #fff!important;
  36. border-radius: 3px;
  37. &:before{
  38. content:'';
  39. display: inline-block;
  40. width: 12px;
  41. height: 12px;
  42. margin-right:10px;
  43. border-radius: 50%;
  44. background: #e8eaec;
  45. }
  46. }
  47. }
  48. .avue-sidebar{
  49. background: #001529;
  50. .el-menu-item{
  51. &.is-active {
  52. background-color: #000c17;
  53. &:before {
  54. display: none;
  55. }
  56. i,span{
  57. color:#409EFF;
  58. }
  59. }
  60. }
  61. .el-submenu{
  62. .el-menu-item{
  63. &.is-active {
  64. background-color: #409EFF;
  65. &:before {
  66. display: none;
  67. }
  68. i,span{
  69. color:#fff;
  70. }
  71. }
  72. }
  73. }
  74. }
  75. }