Merge pull request #7600 from bjarnef/dev-v8-sections-focus

Fix jumping section name on focus
This commit is contained in:
Anders Bjerner
2020-02-06 19:41:07 +01:00
committed by GitHub

View File

@@ -41,13 +41,13 @@ ul.sections {
&:focus .section__name {
.tabbing-active & {
border: 1px solid;
border-color: @gray-9;
border: 1px solid @gray-9;
}
}
}
.section__name {
border: 1px solid transparent;
border-radius: 3px;
margin-top: 1px;
padding: 3px 10px 4px 10px;
@@ -75,9 +75,9 @@ ul.sections {
opacity: 0.6;
transition: opacity .1s linear;
}
&:hover i {
opacity:1;
opacity: 1;
}
}