updated theme Twenty Nineteen version 2.8

This commit is contained in:
2024-04-19 11:01:22 +00:00
committed by Gitium
parent 7b5aaceef5
commit 7b83df998e
17 changed files with 409 additions and 365 deletions

View File

@ -163,7 +163,11 @@
}
}
//! Button
//! Buttons
.wp-block-buttons {
line-height: $font__line-height-heading;
}
.wp-block-button {
.wp-block-button__link {
@ -171,13 +175,11 @@
border: none;
font-size: $font__size-sm;
@include font-family( $font__heading );
line-height: $font__line-height-heading;
box-sizing: border-box;
font-weight: bold;
text-decoration: none;
padding: ($size__spacing-unit * .76) $size__spacing-unit;
outline: none;
outline: none;
&:not(.has-background) {
background-color: $color__background-button;
@ -191,6 +193,9 @@
color: white;
background: $color__background-button-hover;
cursor: pointer;
&:not(.has-background) {
background: $color__background-button-hover;
}
}
&:focus {
@ -198,6 +203,9 @@
background: $color__background-button-hover;
outline: thin dotted;
outline-offset: -4px;
&:not(.has-background) {
background: $color__background-button-hover;
}
}
}