Skip to content
Snippets Groups Projects
Commit cbca1174 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2489450 by LewisNyman, marieke_h, kfitz, jcnventura, jibla, Bojhan,...

Issue #2489450 by LewisNyman, marieke_h, kfitz, jcnventura, jibla, Bojhan, manauwarsheikh, matthodgson: Remove unnecessary focused/hover effects on details and vertical tabs
parent 718c503a
No related branches found
No related tags found
No related merge requests found
......@@ -166,9 +166,9 @@ details summary {
padding-bottom: 0.5em;
}
details summary:focus {
border-top: 3px solid #0074bd;
outline: none;
color: #0074bd;
margin-top: -3px;
}
details summary:focus,
details summary:hover {
text-decoration: underline;
}
......@@ -45,9 +45,6 @@
.vertical-tabs__menu-item:active {
z-index: 2;
}
.vertical-tabs__menu-item.is-selected:focus {
outline: none;
}
.vertical-tabs__menu-item a {
display: block;
padding: 10px 15px 15px;
......@@ -64,19 +61,24 @@
.vertical-tabs__menu-item a:focus {
background: #fcfcfa;
text-shadow: none;
}
.vertical-tabs__menu-item a:focus {
outline: none;
}
.vertical-tabs__menu-item a:focus .vertical-tabs__menu-item-title {
text-decoration: underline;
}
.vertical-tabs__menu-item a:active .vertical-tabs__menu-item-title,
.vertical-tabs__menu-item.is-selected a:focus .vertical-tabs__menu-item-title {
text-decoration: none;
}
.vertical-tabs__menu-item.is-selected a {
color: #004f80;
border-left: 4px solid #0074bd; /* LTR */
padding-left: 11px; /* LTR */
border-bottom: none;
outline: none;
text-decoration: none;
}
[dir=rtl] .vertical-tabs__menu-item.is-selected a {
border-left: 0;
border-right: 4px solid #0074bd;
padding-left: 15px;
padding-right: 11px;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment