mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 01:39:37 +01:00
854f388d02
Adds styles into `wp-includes/css/classic-themes.css` to restore file block button element styling for classic themes. Why? In [54257] and [54118], button element styles were moved from each block to `theme.json`. For the file block, the download button styles were removed from the block's stylesheet. These changes impacted themes without a `theme.json` file (i.e. classic themes). This changeset restores the styles for backwards-compatibility. References: * [https://github.com/WordPress/gutenberg/pull/47686 Gutenberg PR 47686] Follow-up to [54257], [54118]. Props wildworks, scruffian, mamaduka, ntsekouras. Fixes #57688. Built from https://develop.svn.wordpress.org/trunk@55323 git-svn-id: http://core.svn.wordpress.org/trunk@54856 1a063a9b-81f0-0310-95a4-ce76da25c4cd
25 lines
729 B
CSS
25 lines
729 B
CSS
/**
|
|
* These rules are needed for backwards compatibility.
|
|
* They should match the button element rules in the base theme.json file.
|
|
*/
|
|
.wp-block-button__link {
|
|
color: #ffffff;
|
|
background-color: #32373c;
|
|
border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */
|
|
|
|
/* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */
|
|
box-shadow: none;
|
|
text-decoration: none;
|
|
|
|
/* The extra 2px are added to size solids the same as the outline versions.*/
|
|
padding: calc(0.667em + 2px) calc(1.333em + 2px);
|
|
|
|
font-size: 1.125em;
|
|
}
|
|
|
|
.wp-block-file__button {
|
|
background: #32373c;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
}
|