mirror of
git://develop.git.wordpress.org/
synced 2025-04-11 15:42:03 +02:00
Twenty Eleven: Fix button block custom colors on front end.
Simplify some of the button block’s CSS selectors in the theme, to make sure the default colors don’t override the custom colors on the front end. Fixes #45433. git-svn-id: https://develop.svn.wordpress.org/branches/5.0@44191 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
4950598cde
commit
d6e02d50f3
@ -232,14 +232,12 @@ p.has-drop-cap:not(:focus)::first-letter {
|
||||
/* Buttons */
|
||||
|
||||
.wp-block-button .wp-block-button__link {
|
||||
background: #222;
|
||||
border: none;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
|
||||
-moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
|
||||
box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
|
||||
color: #eee;
|
||||
cursor: pointer;
|
||||
font-size: 15px;
|
||||
margin: 20px 0;
|
||||
@ -247,7 +245,12 @@ p.has-drop-cap:not(:focus)::first-letter {
|
||||
text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
|
||||
}
|
||||
|
||||
.wp-block-button .wp-block-button__link:active {
|
||||
.wp-block-button__link {
|
||||
background: #222;
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
.wp-block-button__link:active {
|
||||
background: #1982d1;
|
||||
color: #bfddf3;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user