mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
7006e30d7f
Fix tab focus styling GitOrigin-RevId: bb94e07b0d8dfd9c20cf2b0ef9db3d33d9c333db
39 lines
No EOL
966 B
Text
39 lines
No EOL
966 B
Text
.ol-tabs {
|
|
// Overrides for nav.less
|
|
.nav-tabs {
|
|
border: 0!important;
|
|
margin-bottom: 0;
|
|
margin-top: -@line-height-computed; //- adjusted for portal-name
|
|
padding: @padding-lg 0 @padding-md;
|
|
text-align: center;
|
|
}
|
|
|
|
.nav-tabs > li {
|
|
display: inline-block;
|
|
float: none;
|
|
a {
|
|
border: 0;
|
|
color: @link-color-alt;
|
|
&:focus, &:hover {
|
|
background-color: transparent!important;
|
|
border: 0!important;
|
|
color: @link-hover-color-alt;
|
|
}
|
|
}
|
|
}
|
|
|
|
li.active > a {
|
|
background-color: transparent!important;
|
|
border: 0!important;
|
|
border-bottom: 1px solid @accent-color-secondary!important;
|
|
color: @accent-color-secondary!important;
|
|
&:hover {
|
|
border-bottom: 1px solid @accent-color-secondary!important;
|
|
color: @accent-color-secondary!important;
|
|
}
|
|
}
|
|
.tab-content:extend(.container) {
|
|
background-color: transparent!important;
|
|
border: none!important;
|
|
}
|
|
} |