Themes: Remove site title text decoration from theme.json (#6122)
* Themes: Remove site title text decoration from theme.json * add livro * remove text decoration from the site title in curator
This commit is contained in:
parent
a86851ec14
commit
a815dec664
8 changed files with 23 additions and 14 deletions
|
@ -46,10 +46,6 @@ a {
|
|||
text-underline-offset: 0.125em;
|
||||
}
|
||||
|
||||
.wp-block-site-title a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover:not(.wp-block-button__link),
|
||||
.wp-block-site-title a:hover,
|
||||
.wp-block-post-title a:hover,
|
||||
|
|
|
@ -250,6 +250,13 @@
|
|||
"fontSize": "var(--wp--preset--font-size--normal)",
|
||||
"fontWeight": "400",
|
||||
"textTransform": "uppercase"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -126,9 +126,6 @@ a:not(
|
|||
.wp-block-search__button,
|
||||
.wp-block-button__link
|
||||
):hover,
|
||||
.wp-block-site-title a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.wp-block-site-title a:hover {
|
||||
text-decoration: underline;
|
||||
|
|
|
@ -458,4 +458,4 @@
|
|||
"name": "footer"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -147,8 +147,7 @@ body > .is-root-container > .wp-block-template-part > .wp-block-cover,
|
|||
*/
|
||||
|
||||
.wp-block-post-title a,
|
||||
.wp-block-post-date a,
|
||||
.wp-block-site-title a {
|
||||
.wp-block-post-date a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
|
|
@ -184,6 +184,13 @@
|
|||
"lineHeight": "var(--wp--custom--typography--line-height--normal)",
|
||||
"fontSize": "var(--wp--preset--font-size--x-small)",
|
||||
"fontWeight": "normal"
|
||||
},
|
||||
"elements":{
|
||||
"link": {
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -179,10 +179,6 @@ body > .is-root-container,
|
|||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.wp-block-site-title a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:not(
|
||||
.wp-block-search__button,
|
||||
.wp-block-button__link
|
||||
|
|
|
@ -161,6 +161,13 @@
|
|||
"core/site-title": {
|
||||
"typography": {
|
||||
"fontWeight": "400"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-title": {
|
||||
|
|
Loading…
Reference in a new issue