[fix] remove on focus outline
This commit is contained in:
parent
af6816330b
commit
eb45f49dad
2 changed files with 14 additions and 0 deletions
|
|
@ -1084,6 +1084,9 @@ input[type="checkbox"]:checked:before {
|
|||
margin: -2px 0 0 3px;
|
||||
border: 1px solid rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
.slides-wrapper:focus {
|
||||
outline: none;
|
||||
}
|
||||
.slides-wrapper .fa-circle {
|
||||
font-size: 10px;
|
||||
margin: 0px 2px;
|
||||
|
|
@ -1094,6 +1097,9 @@ input[type="checkbox"]:checked:before {
|
|||
.slides-wrapper .fa-circle.link {
|
||||
cursor: pointer;
|
||||
}
|
||||
.slides-wrapper .slide-wrapper:focus {
|
||||
outline: none;
|
||||
}
|
||||
.slides-wrapper .form {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1027,6 +1027,9 @@ input[type="checkbox"] {
|
|||
|
||||
// Slides
|
||||
.slides-wrapper {
|
||||
&:focus {
|
||||
outline: none;
|
||||
}
|
||||
.fa-circle {
|
||||
font-size: 10px;
|
||||
margin: 0px 2px;
|
||||
|
|
@ -1037,6 +1040,11 @@ input[type="checkbox"] {
|
|||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
.slide-wrapper {
|
||||
&:focus {
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
.form {
|
||||
margin-top: 30px;
|
||||
.form-layout {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue