1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .theme {
- .el-tabs&.el-tabs--top&.el-tabs--border-card{
- .el-tabs__nav-scroll{
- background-color: #00081d;
- }
- .el-tabs__item.is-active {
- color: black; //当前标签页颜色
- background: url('../../bargound/tabActive.png') no-repeat;
- background-size: 98% 92%;
- border: none;
- }
- .el-tabs__active-bar {
- border: none;
- background-color: aquamarine;
- }
- .el-tabs__item {
- color: #45a6c4;//标签页默认颜色\
- background: url('../../bargound/tab.png') no-repeat;
- background-size: 98% 92%;
- border: none;
- }
- .el-tabs__item:hover {
- color: #11ddf4; //鼠标悬停标签页变化的颜色
- }
- .el-tabs__nav-scroll{
- border-bottom: 1px solid #3c91ae;
- }
- .el-tabs__content{
- padding: 0;
- background-color: #00081d;
- }
- .el-tabs&.el-tabs--top&.el-tabs--border-card{
- border: none;
- }
-
- }
-
- }
|