|
@@ -195,26 +195,128 @@ input[type=checkbox] + label {
|
|
|
*/
|
|
|
.wp-block-button.wp-block-button__link,
|
|
|
.wp-block-button .wp-block-button__link {
|
|
|
+ border-width: 0;
|
|
|
+ padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
|
|
|
+ padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
|
|
|
+ padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
|
|
|
+ padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
text-decoration: none;
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+ border-radius: var(--wp--custom--button--border--radius);
|
|
|
}
|
|
|
|
|
|
.wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
|
|
|
- color: var(--wp--custom--button--color--hover-text);
|
|
|
- background-color: var(--wp--custom--button--color--hover-background);
|
|
|
- border-color: var(--wp--custom--button--border--hover-color);
|
|
|
- border-style: var(--wp--custom--button--border--hover-style);
|
|
|
- border-width: var(--wp--custom--button--border--hover-width);
|
|
|
- padding: calc(.667em + 2px - var(--wp--custom--button--border--hover-width)) calc(1.333em + 2px - var(--wp--custom--button--border--hover-width));
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
|
|
|
+ --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
|
|
|
+ --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
}
|
|
|
|
|
|
.wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
|
|
|
- fill: var(--wp--custom--button--color--hover-text);
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.wp-block-button__link:hover, .wp-block-button.wp-block-button__link:focus, .wp-block-button.wp-block-button__link.has-focus,
|
|
|
+.wp-block-button .wp-block-button__link:hover,
|
|
|
+.wp-block-button .wp-block-button__link:focus,
|
|
|
+.wp-block-button .wp-block-button__link.has-focus {
|
|
|
+ --wp--custom--button--border--radius: var(--wp--custom--button--hover--border--radius);
|
|
|
+ --wp--custom--button--spacing--padding--top: var(--wp--custom--button--hover--spacing--padding--top);
|
|
|
+ --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--hover--spacing--padding--bottom);
|
|
|
+ --wp--custom--button--spacing--padding--left: var(--wp--custom--button--hover--spacing--padding--left);
|
|
|
+ --wp--custom--button--spacing--padding--right: var(--wp--custom--button--hover--spacing--padding--right);
|
|
|
+ --wp--custom--button--typography--font-weight: var(--wp--custom--button--hover--typography--font-weight)
|
|
|
+ --wp--custom--button--typography--font-family: var(--wp--custom--button--hover--typography--font-family);
|
|
|
+ --wp--custom--button--typography--font-size: var(--wp--custom--button--hover--typography--font-size);
|
|
|
+ --wp--custom--button--typography--line-height: var(--wp--custom--button--hover--typography--line-height);
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.wp-block-button__link svg,
|
|
|
+.wp-block-button .wp-block-button__link svg {
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link {
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--border--color);
|
|
|
+ --wp--custom--button--color--background: transparent;
|
|
|
+ border-style: var(--wp--custom--button--border--style);
|
|
|
+ border-color: currentColor;
|
|
|
+ border-width: var(--wp--custom--button--border--width);
|
|
|
+ padding-top: var(--wp--custom--button--spacing--padding--top);
|
|
|
+ padding-bottom: var(--wp--custom--button--spacing--padding--bottom);
|
|
|
+ padding-left: var(--wp--custom--button--spacing--padding--left);
|
|
|
+ padding-right: var(--wp--custom--button--spacing--padding--right);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
|
|
|
+ --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
|
|
|
+ --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link:hover, .wp-block-button.is-style-outline.wp-block-button__link:focus, .wp-block-button.is-style-outline.wp-block-button__link.has-focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:hover,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link.has-focus {
|
|
|
+ --wp--custom--button--border--radius: var(--wp--custom--button--hover--border--radius);
|
|
|
+ --wp--custom--button--spacing--padding--top: var(--wp--custom--button--hover--spacing--padding--top);
|
|
|
+ --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--hover--spacing--padding--bottom);
|
|
|
+ --wp--custom--button--spacing--padding--left: var(--wp--custom--button--hover--spacing--padding--left);
|
|
|
+ --wp--custom--button--spacing--padding--right: var(--wp--custom--button--hover--spacing--padding--right);
|
|
|
+ --wp--custom--button--typography--font-weight: var(--wp--custom--button--hover--typography--font-weight)
|
|
|
+ --wp--custom--button--typography--font-family: var(--wp--custom--button--hover--typography--font-family);
|
|
|
+ --wp--custom--button--typography--font-size: var(--wp--custom--button--hover--typography--font-size);
|
|
|
+ --wp--custom--button--typography--line-height: var(--wp--custom--button--hover--typography--line-height);
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link svg {
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
}
|
|
|
|
|
|
.wp-block-buttons .wp-block-button:last-child {
|
|
@@ -369,26 +471,128 @@ p.has-drop-cap:not(:focus):first-letter {
|
|
|
*/
|
|
|
.wp-block-button.wp-block-button__link,
|
|
|
.wp-block-button .wp-block-button__link {
|
|
|
+ border-width: 0;
|
|
|
+ padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
|
|
|
+ padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
|
|
|
+ padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
|
|
|
+ padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
text-decoration: none;
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+ border-radius: var(--wp--custom--button--border--radius);
|
|
|
}
|
|
|
|
|
|
.wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
|
|
|
- color: var(--wp--custom--button--color--hover-text);
|
|
|
- background-color: var(--wp--custom--button--color--hover-background);
|
|
|
- border-color: var(--wp--custom--button--border--hover-color);
|
|
|
- border-style: var(--wp--custom--button--border--hover-style);
|
|
|
- border-width: var(--wp--custom--button--border--hover-width);
|
|
|
- padding: calc(.667em + 2px - var(--wp--custom--button--border--hover-width)) calc(1.333em + 2px - var(--wp--custom--button--border--hover-width));
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
|
|
|
+ --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
|
|
|
+ --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
}
|
|
|
|
|
|
.wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
|
|
|
- fill: var(--wp--custom--button--color--hover-text);
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.wp-block-button__link:hover, .wp-block-button.wp-block-button__link:focus, .wp-block-button.wp-block-button__link.has-focus,
|
|
|
+.wp-block-button .wp-block-button__link:hover,
|
|
|
+.wp-block-button .wp-block-button__link:focus,
|
|
|
+.wp-block-button .wp-block-button__link.has-focus {
|
|
|
+ --wp--custom--button--border--radius: var(--wp--custom--button--hover--border--radius);
|
|
|
+ --wp--custom--button--spacing--padding--top: var(--wp--custom--button--hover--spacing--padding--top);
|
|
|
+ --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--hover--spacing--padding--bottom);
|
|
|
+ --wp--custom--button--spacing--padding--left: var(--wp--custom--button--hover--spacing--padding--left);
|
|
|
+ --wp--custom--button--spacing--padding--right: var(--wp--custom--button--hover--spacing--padding--right);
|
|
|
+ --wp--custom--button--typography--font-weight: var(--wp--custom--button--hover--typography--font-weight)
|
|
|
+ --wp--custom--button--typography--font-family: var(--wp--custom--button--hover--typography--font-family);
|
|
|
+ --wp--custom--button--typography--font-size: var(--wp--custom--button--hover--typography--font-size);
|
|
|
+ --wp--custom--button--typography--line-height: var(--wp--custom--button--hover--typography--line-height);
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.wp-block-button__link svg,
|
|
|
+.wp-block-button .wp-block-button__link svg {
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link {
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--border--color);
|
|
|
+ --wp--custom--button--color--background: transparent;
|
|
|
+ border-style: var(--wp--custom--button--border--style);
|
|
|
+ border-color: currentColor;
|
|
|
+ border-width: var(--wp--custom--button--border--width);
|
|
|
+ padding-top: var(--wp--custom--button--spacing--padding--top);
|
|
|
+ padding-bottom: var(--wp--custom--button--spacing--padding--bottom);
|
|
|
+ padding-left: var(--wp--custom--button--spacing--padding--left);
|
|
|
+ padding-right: var(--wp--custom--button--spacing--padding--right);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
|
|
|
+ --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
|
|
|
+ --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link:hover, .wp-block-button.is-style-outline.wp-block-button__link:focus, .wp-block-button.is-style-outline.wp-block-button__link.has-focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:hover,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link.has-focus {
|
|
|
+ --wp--custom--button--border--radius: var(--wp--custom--button--hover--border--radius);
|
|
|
+ --wp--custom--button--spacing--padding--top: var(--wp--custom--button--hover--spacing--padding--top);
|
|
|
+ --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--hover--spacing--padding--bottom);
|
|
|
+ --wp--custom--button--spacing--padding--left: var(--wp--custom--button--hover--spacing--padding--left);
|
|
|
+ --wp--custom--button--spacing--padding--right: var(--wp--custom--button--hover--spacing--padding--right);
|
|
|
+ --wp--custom--button--typography--font-weight: var(--wp--custom--button--hover--typography--font-weight)
|
|
|
+ --wp--custom--button--typography--font-family: var(--wp--custom--button--hover--typography--font-family);
|
|
|
+ --wp--custom--button--typography--font-size: var(--wp--custom--button--hover--typography--font-size);
|
|
|
+ --wp--custom--button--typography--line-height: var(--wp--custom--button--hover--typography--line-height);
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link svg {
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
}
|
|
|
|
|
|
.wp-block-buttons .wp-block-button:last-child {
|
|
@@ -404,14 +608,21 @@ p.has-drop-cap:not(:focus):first-letter {
|
|
|
}
|
|
|
|
|
|
.wp-block-post-comments input[type="submit"], .wp-block-post-comments .reply a {
|
|
|
+ border-width: 0;
|
|
|
+ padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
|
|
|
+ padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
|
|
|
+ padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
|
|
|
+ padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
|
|
|
font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
font-family: var(--wp--custom--button--typography--font-family);
|
|
|
font-size: var(--wp--custom--button--typography--font-size);
|
|
|
line-height: var(--wp--custom--button--typography--line-height);
|
|
|
text-decoration: none;
|
|
|
+ opacity: 1;
|
|
|
color: var(--wp--custom--button--color--text);
|
|
|
background-color: var(--wp--custom--button--color--background);
|
|
|
- padding: calc(.667em + 2px) calc(1.333em + 2px);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+ border-radius: var(--wp--custom--button--border--radius);
|
|
|
}
|
|
|
|
|
|
.wp-block-post-comments input[type="submit"] svg, .wp-block-post-comments .reply a svg {
|
|
@@ -419,22 +630,34 @@ p.has-drop-cap:not(:focus):first-letter {
|
|
|
}
|
|
|
|
|
|
.wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):hover, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):focus, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color).has-focus, .wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):hover, .wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):focus, .wp-block-post-comments .reply a:not(.has-background):not(.has-text-color).has-focus {
|
|
|
- color: var(--wp--custom--button--color--hover-text);
|
|
|
- background-color: var(--wp--custom--button--color--hover-background);
|
|
|
- border-color: var(--wp--custom--button--border--hover-color);
|
|
|
- border-style: var(--wp--custom--button--border--hover-style);
|
|
|
- border-width: var(--wp--custom--button--border--hover-width);
|
|
|
- padding: calc(.667em + 2px - var(--wp--custom--button--border--hover-width)) calc(1.333em + 2px - var(--wp--custom--button--border--hover-width));
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
|
|
|
+ --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
|
|
|
+ --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
}
|
|
|
|
|
|
.wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):hover svg, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):focus svg, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color).has-focus svg, .wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):hover svg, .wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):focus svg, .wp-block-post-comments .reply a:not(.has-background):not(.has-text-color).has-focus svg {
|
|
|
- fill: var(--wp--custom--button--color--hover-text);
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
}
|
|
|
|
|
|
-.wp-block-post-comments input[type="submit"] {
|
|
|
- border-color: var(--wp--custom--button--border--color);
|
|
|
- border-style: var(--wp--custom--button--border--style);
|
|
|
- border-width: var(--wp--custom--button--border--width);
|
|
|
+.wp-block-post-comments input[type="submit"]:hover, .wp-block-post-comments input[type="submit"]:focus, .wp-block-post-comments input[type="submit"].has-focus, .wp-block-post-comments .reply a:hover, .wp-block-post-comments .reply a:focus, .wp-block-post-comments .reply a.has-focus {
|
|
|
+ --wp--custom--button--border--radius: var(--wp--custom--button--hover--border--radius);
|
|
|
+ --wp--custom--button--spacing--padding--top: var(--wp--custom--button--hover--spacing--padding--top);
|
|
|
+ --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--hover--spacing--padding--bottom);
|
|
|
+ --wp--custom--button--spacing--padding--left: var(--wp--custom--button--hover--spacing--padding--left);
|
|
|
+ --wp--custom--button--spacing--padding--right: var(--wp--custom--button--hover--spacing--padding--right);
|
|
|
+ --wp--custom--button--typography--font-weight: var(--wp--custom--button--hover--typography--font-weight)
|
|
|
+ --wp--custom--button--typography--font-family: var(--wp--custom--button--hover--typography--font-family);
|
|
|
+ --wp--custom--button--typography--font-size: var(--wp--custom--button--hover--typography--font-size);
|
|
|
+ --wp--custom--button--typography--line-height: var(--wp--custom--button--hover--typography--line-height);
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
+ text-decoration: none;
|
|
|
}
|
|
|
|
|
|
.wp-block-post-comments .reply a {
|
|
@@ -499,26 +722,128 @@ p.has-drop-cap:not(:focus):first-letter {
|
|
|
*/
|
|
|
.wp-block-button.wp-block-button__link,
|
|
|
.wp-block-button .wp-block-button__link {
|
|
|
+ border-width: 0;
|
|
|
+ padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
|
|
|
+ padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
|
|
|
+ padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
|
|
|
+ padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
text-decoration: none;
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+ border-radius: var(--wp--custom--button--border--radius);
|
|
|
}
|
|
|
|
|
|
.wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
|
|
|
- color: var(--wp--custom--button--color--hover-text);
|
|
|
- background-color: var(--wp--custom--button--color--hover-background);
|
|
|
- border-color: var(--wp--custom--button--border--hover-color);
|
|
|
- border-style: var(--wp--custom--button--border--hover-style);
|
|
|
- border-width: var(--wp--custom--button--border--hover-width);
|
|
|
- padding: calc(.667em + 2px - var(--wp--custom--button--border--hover-width)) calc(1.333em + 2px - var(--wp--custom--button--border--hover-width));
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
|
|
|
+ --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
|
|
|
+ --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
}
|
|
|
|
|
|
.wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
|
|
|
- fill: var(--wp--custom--button--color--hover-text);
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.wp-block-button__link:hover, .wp-block-button.wp-block-button__link:focus, .wp-block-button.wp-block-button__link.has-focus,
|
|
|
+.wp-block-button .wp-block-button__link:hover,
|
|
|
+.wp-block-button .wp-block-button__link:focus,
|
|
|
+.wp-block-button .wp-block-button__link.has-focus {
|
|
|
+ --wp--custom--button--border--radius: var(--wp--custom--button--hover--border--radius);
|
|
|
+ --wp--custom--button--spacing--padding--top: var(--wp--custom--button--hover--spacing--padding--top);
|
|
|
+ --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--hover--spacing--padding--bottom);
|
|
|
+ --wp--custom--button--spacing--padding--left: var(--wp--custom--button--hover--spacing--padding--left);
|
|
|
+ --wp--custom--button--spacing--padding--right: var(--wp--custom--button--hover--spacing--padding--right);
|
|
|
+ --wp--custom--button--typography--font-weight: var(--wp--custom--button--hover--typography--font-weight)
|
|
|
+ --wp--custom--button--typography--font-family: var(--wp--custom--button--hover--typography--font-family);
|
|
|
+ --wp--custom--button--typography--font-size: var(--wp--custom--button--hover--typography--font-size);
|
|
|
+ --wp--custom--button--typography--line-height: var(--wp--custom--button--hover--typography--line-height);
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.wp-block-button__link svg,
|
|
|
+.wp-block-button .wp-block-button__link svg {
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link {
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--border--color);
|
|
|
+ --wp--custom--button--color--background: transparent;
|
|
|
+ border-style: var(--wp--custom--button--border--style);
|
|
|
+ border-color: currentColor;
|
|
|
+ border-width: var(--wp--custom--button--border--width);
|
|
|
+ padding-top: var(--wp--custom--button--spacing--padding--top);
|
|
|
+ padding-bottom: var(--wp--custom--button--spacing--padding--bottom);
|
|
|
+ padding-left: var(--wp--custom--button--spacing--padding--left);
|
|
|
+ padding-right: var(--wp--custom--button--spacing--padding--right);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
|
|
|
+ --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
|
|
|
+ --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link:hover, .wp-block-button.is-style-outline.wp-block-button__link:focus, .wp-block-button.is-style-outline.wp-block-button__link.has-focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:hover,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link.has-focus {
|
|
|
+ --wp--custom--button--border--radius: var(--wp--custom--button--hover--border--radius);
|
|
|
+ --wp--custom--button--spacing--padding--top: var(--wp--custom--button--hover--spacing--padding--top);
|
|
|
+ --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--hover--spacing--padding--bottom);
|
|
|
+ --wp--custom--button--spacing--padding--left: var(--wp--custom--button--hover--spacing--padding--left);
|
|
|
+ --wp--custom--button--spacing--padding--right: var(--wp--custom--button--hover--spacing--padding--right);
|
|
|
+ --wp--custom--button--typography--font-weight: var(--wp--custom--button--hover--typography--font-weight)
|
|
|
+ --wp--custom--button--typography--font-family: var(--wp--custom--button--hover--typography--font-family);
|
|
|
+ --wp--custom--button--typography--font-size: var(--wp--custom--button--hover--typography--font-size);
|
|
|
+ --wp--custom--button--typography--line-height: var(--wp--custom--button--hover--typography--line-height);
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link svg {
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
}
|
|
|
|
|
|
.wp-block-buttons .wp-block-button:last-child {
|
|
@@ -542,14 +867,21 @@ p.has-drop-cap:not(:focus):first-letter {
|
|
|
|
|
|
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button,
|
|
|
.wp-block-search .wp-block-search__button {
|
|
|
+ border-width: 0;
|
|
|
+ padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
|
|
|
+ padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
|
|
|
+ padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
|
|
|
+ padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
|
|
|
font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
font-family: var(--wp--custom--button--typography--font-family);
|
|
|
font-size: var(--wp--custom--button--typography--font-size);
|
|
|
line-height: var(--wp--custom--button--typography--line-height);
|
|
|
text-decoration: none;
|
|
|
+ opacity: 1;
|
|
|
color: var(--wp--custom--button--color--text);
|
|
|
background-color: var(--wp--custom--button--color--background);
|
|
|
- padding: calc(.667em + 2px) calc(1.333em + 2px);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+ border-radius: var(--wp--custom--button--border--radius);
|
|
|
}
|
|
|
|
|
|
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button svg,
|
|
@@ -561,19 +893,40 @@ p.has-drop-cap:not(:focus):first-letter {
|
|
|
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):hover,
|
|
|
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):focus,
|
|
|
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus {
|
|
|
- color: var(--wp--custom--button--color--hover-text);
|
|
|
- background-color: var(--wp--custom--button--color--hover-background);
|
|
|
- border-color: var(--wp--custom--button--border--hover-color);
|
|
|
- border-style: var(--wp--custom--button--border--hover-style);
|
|
|
- border-width: var(--wp--custom--button--border--hover-width);
|
|
|
- padding: calc(.667em + 2px - var(--wp--custom--button--border--hover-width)) calc(1.333em + 2px - var(--wp--custom--button--border--hover-width));
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
|
|
|
+ --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
|
|
|
+ --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
}
|
|
|
|
|
|
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):hover svg, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):focus svg, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus svg,
|
|
|
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):hover svg,
|
|
|
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):focus svg,
|
|
|
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus svg {
|
|
|
- fill: var(--wp--custom--button--color--hover-text);
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:hover, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-focus,
|
|
|
+.wp-block-search .wp-block-search__button:hover,
|
|
|
+.wp-block-search .wp-block-search__button:focus,
|
|
|
+.wp-block-search .wp-block-search__button.has-focus {
|
|
|
+ --wp--custom--button--border--radius: var(--wp--custom--button--hover--border--radius);
|
|
|
+ --wp--custom--button--spacing--padding--top: var(--wp--custom--button--hover--spacing--padding--top);
|
|
|
+ --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--hover--spacing--padding--bottom);
|
|
|
+ --wp--custom--button--spacing--padding--left: var(--wp--custom--button--hover--spacing--padding--left);
|
|
|
+ --wp--custom--button--spacing--padding--right: var(--wp--custom--button--hover--spacing--padding--right);
|
|
|
+ --wp--custom--button--typography--font-weight: var(--wp--custom--button--hover--typography--font-weight)
|
|
|
+ --wp--custom--button--typography--font-family: var(--wp--custom--button--hover--typography--font-family);
|
|
|
+ --wp--custom--button--typography--font-size: var(--wp--custom--button--hover--typography--font-size);
|
|
|
+ --wp--custom--button--typography--line-height: var(--wp--custom--button--hover--typography--line-height);
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
+ text-decoration: none;
|
|
|
}
|
|
|
|
|
|
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon,
|
|
@@ -598,26 +951,128 @@ p.has-drop-cap:not(:focus):first-letter {
|
|
|
*/
|
|
|
.wp-block-button.wp-block-button__link,
|
|
|
.wp-block-button .wp-block-button__link {
|
|
|
+ border-width: 0;
|
|
|
+ padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
|
|
|
+ padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
|
|
|
+ padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
|
|
|
+ padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
text-decoration: none;
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+ border-radius: var(--wp--custom--button--border--radius);
|
|
|
}
|
|
|
|
|
|
.wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
|
|
|
- color: var(--wp--custom--button--color--hover-text);
|
|
|
- background-color: var(--wp--custom--button--color--hover-background);
|
|
|
- border-color: var(--wp--custom--button--border--hover-color);
|
|
|
- border-style: var(--wp--custom--button--border--hover-style);
|
|
|
- border-width: var(--wp--custom--button--border--hover-width);
|
|
|
- padding: calc(.667em + 2px - var(--wp--custom--button--border--hover-width)) calc(1.333em + 2px - var(--wp--custom--button--border--hover-width));
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
|
|
|
+ --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
|
|
|
+ --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
}
|
|
|
|
|
|
.wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
|
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
|
|
|
- fill: var(--wp--custom--button--color--hover-text);
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.wp-block-button__link:hover, .wp-block-button.wp-block-button__link:focus, .wp-block-button.wp-block-button__link.has-focus,
|
|
|
+.wp-block-button .wp-block-button__link:hover,
|
|
|
+.wp-block-button .wp-block-button__link:focus,
|
|
|
+.wp-block-button .wp-block-button__link.has-focus {
|
|
|
+ --wp--custom--button--border--radius: var(--wp--custom--button--hover--border--radius);
|
|
|
+ --wp--custom--button--spacing--padding--top: var(--wp--custom--button--hover--spacing--padding--top);
|
|
|
+ --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--hover--spacing--padding--bottom);
|
|
|
+ --wp--custom--button--spacing--padding--left: var(--wp--custom--button--hover--spacing--padding--left);
|
|
|
+ --wp--custom--button--spacing--padding--right: var(--wp--custom--button--hover--spacing--padding--right);
|
|
|
+ --wp--custom--button--typography--font-weight: var(--wp--custom--button--hover--typography--font-weight)
|
|
|
+ --wp--custom--button--typography--font-family: var(--wp--custom--button--hover--typography--font-family);
|
|
|
+ --wp--custom--button--typography--font-size: var(--wp--custom--button--hover--typography--font-size);
|
|
|
+ --wp--custom--button--typography--line-height: var(--wp--custom--button--hover--typography--line-height);
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.wp-block-button__link svg,
|
|
|
+.wp-block-button .wp-block-button__link svg {
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link {
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--border--color);
|
|
|
+ --wp--custom--button--color--background: transparent;
|
|
|
+ border-style: var(--wp--custom--button--border--style);
|
|
|
+ border-color: currentColor;
|
|
|
+ border-width: var(--wp--custom--button--border--width);
|
|
|
+ padding-top: var(--wp--custom--button--spacing--padding--top);
|
|
|
+ padding-bottom: var(--wp--custom--button--spacing--padding--bottom);
|
|
|
+ padding-left: var(--wp--custom--button--spacing--padding--left);
|
|
|
+ padding-right: var(--wp--custom--button--spacing--padding--right);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
|
|
|
+ --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
|
|
|
+ --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link:hover, .wp-block-button.is-style-outline.wp-block-button__link:focus, .wp-block-button.is-style-outline.wp-block-button__link.has-focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:hover,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link:focus,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link.has-focus {
|
|
|
+ --wp--custom--button--border--radius: var(--wp--custom--button--hover--border--radius);
|
|
|
+ --wp--custom--button--spacing--padding--top: var(--wp--custom--button--hover--spacing--padding--top);
|
|
|
+ --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--hover--spacing--padding--bottom);
|
|
|
+ --wp--custom--button--spacing--padding--left: var(--wp--custom--button--hover--spacing--padding--left);
|
|
|
+ --wp--custom--button--spacing--padding--right: var(--wp--custom--button--hover--spacing--padding--right);
|
|
|
+ --wp--custom--button--typography--font-weight: var(--wp--custom--button--hover--typography--font-weight)
|
|
|
+ --wp--custom--button--typography--font-family: var(--wp--custom--button--hover--typography--font-family);
|
|
|
+ --wp--custom--button--typography--font-size: var(--wp--custom--button--hover--typography--font-size);
|
|
|
+ --wp--custom--button--typography--line-height: var(--wp--custom--button--hover--typography--line-height);
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button.is-style-outline.wp-block-button__link svg,
|
|
|
+.wp-block-button.is-style-outline .wp-block-button__link svg {
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
}
|
|
|
|
|
|
.wp-block-buttons .wp-block-button:last-child {
|
|
@@ -625,14 +1080,21 @@ p.has-drop-cap:not(:focus):first-letter {
|
|
|
}
|
|
|
|
|
|
.wp-block-file .wp-block-file__button {
|
|
|
+ border-width: 0;
|
|
|
+ padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
|
|
|
+ padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
|
|
|
+ padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
|
|
|
+ padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
|
|
|
font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
font-family: var(--wp--custom--button--typography--font-family);
|
|
|
font-size: var(--wp--custom--button--typography--font-size);
|
|
|
line-height: var(--wp--custom--button--typography--line-height);
|
|
|
text-decoration: none;
|
|
|
+ opacity: 1;
|
|
|
color: var(--wp--custom--button--color--text);
|
|
|
background-color: var(--wp--custom--button--color--background);
|
|
|
- padding: calc(.667em + 2px) calc(1.333em + 2px);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
+ border-radius: var(--wp--custom--button--border--radius);
|
|
|
display: inline-block;
|
|
|
}
|
|
|
|
|
@@ -641,16 +1103,34 @@ p.has-drop-cap:not(:focus):first-letter {
|
|
|
}
|
|
|
|
|
|
.wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):hover, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):focus, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color).has-focus {
|
|
|
- color: var(--wp--custom--button--color--hover-text);
|
|
|
- background-color: var(--wp--custom--button--color--hover-background);
|
|
|
- border-color: var(--wp--custom--button--border--hover-color);
|
|
|
- border-style: var(--wp--custom--button--border--hover-style);
|
|
|
- border-width: var(--wp--custom--button--border--hover-width);
|
|
|
- padding: calc(.667em + 2px - var(--wp--custom--button--border--hover-width)) calc(1.333em + 2px - var(--wp--custom--button--border--hover-width));
|
|
|
+ --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
|
|
|
+ --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
|
|
|
+ --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
|
|
|
+ opacity: 1;
|
|
|
+ color: var(--wp--custom--button--color--text);
|
|
|
+ background-color: var(--wp--custom--button--color--background);
|
|
|
+ border-color: var(--wp--custom--button--border--color);
|
|
|
}
|
|
|
|
|
|
.wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):hover svg, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):focus svg, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color).has-focus svg {
|
|
|
- fill: var(--wp--custom--button--color--hover-text);
|
|
|
+ fill: var(--wp--custom--button--color--text);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-file .wp-block-file__button:hover, .wp-block-file .wp-block-file__button:focus, .wp-block-file .wp-block-file__button.has-focus {
|
|
|
+ --wp--custom--button--border--radius: var(--wp--custom--button--hover--border--radius);
|
|
|
+ --wp--custom--button--spacing--padding--top: var(--wp--custom--button--hover--spacing--padding--top);
|
|
|
+ --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--hover--spacing--padding--bottom);
|
|
|
+ --wp--custom--button--spacing--padding--left: var(--wp--custom--button--hover--spacing--padding--left);
|
|
|
+ --wp--custom--button--spacing--padding--right: var(--wp--custom--button--hover--spacing--padding--right);
|
|
|
+ --wp--custom--button--typography--font-weight: var(--wp--custom--button--hover--typography--font-weight)
|
|
|
+ --wp--custom--button--typography--font-family: var(--wp--custom--button--hover--typography--font-family);
|
|
|
+ --wp--custom--button--typography--font-size: var(--wp--custom--button--hover--typography--font-size);
|
|
|
+ --wp--custom--button--typography--line-height: var(--wp--custom--button--hover--typography--line-height);
|
|
|
+ font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
+ font-family: var(--wp--custom--button--typography--font-family);
|
|
|
+ font-size: var(--wp--custom--button--typography--font-size);
|
|
|
+ line-height: var(--wp--custom--button--typography--line-height);
|
|
|
+ text-decoration: none;
|
|
|
}
|
|
|
|
|
|
.wp-block-table figcaption {
|