iview.scss 1.7 KB

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