tab.less 861 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .theme {
  2. .el-tabs&.el-tabs--top&.el-tabs--border-card{
  3. .el-tabs__nav-scroll{
  4. background-color: #00081d;
  5. }
  6. .el-tabs__item.is-active {
  7. color: black; //当前标签页颜色
  8. background: url('../../bargound/tabActive.png') no-repeat;
  9. background-size: 98% 92%;
  10. border: none;
  11. }
  12. .el-tabs__active-bar {
  13. border: none;
  14. background-color: aquamarine;
  15. }
  16. .el-tabs__item {
  17. color: #45a6c4;//标签页默认颜色\
  18. background: url('../../bargound/tab.png') no-repeat;
  19. background-size: 98% 92%;
  20. border: none;
  21. }
  22. .el-tabs__item:hover {
  23. color: #11ddf4; //鼠标悬停标签页变化的颜色
  24. }
  25. .el-tabs__nav-scroll{
  26. border-bottom: 1px solid #3c91ae;
  27. }
  28. .el-tabs__content{
  29. padding: 0;
  30. background-color: #00081d;
  31. }
  32. .el-tabs&.el-tabs--top&.el-tabs--border-card{
  33. border: none;
  34. }
  35. }
  36. }