Display outline when toolbar button focused

This commit is contained in:
Sebastian Castro 2020-10-25 10:56:51 +01:00 committed by John McLear
parent 193028702d
commit 5a1110d0d6
3 changed files with 10 additions and 4 deletions

View file

@ -16,8 +16,8 @@ select, .nice-select {
padding-right: 24px;
position: relative;
text-align: left !important;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
@ -26,6 +26,9 @@ select, .nice-select {
min-width: 100px;
text-transform: capitalize;
}
.nice-select:not(.open):not(:hover):focus {
border-color: #a5c8ec;
}
.popup .nice-select {
padding: 4px 24px 4px 8px;
}

View file

@ -45,7 +45,7 @@
text-decoration: none;
transition: background-color .1s;
}
.toolbar ul li button:active, .toolbar ul li button:focus {
.toolbar ul li a.pressed button:active, .toolbar ul li a.pressed button:focus {
outline: 0;
border: none;
}