|
@@ -1,3 +1,40 @@
|
|
|
|
+/**
|
|
|
|
+ * Breakpoints & Media Queries
|
|
|
|
+ */
|
|
|
|
+/**
|
|
|
|
+* Converts a hex value into the rgb equivalent.
|
|
|
|
+*
|
|
|
|
+* @param {string} hex - the hexadecimal value to convert
|
|
|
|
+* @return {string} comma separated rgb values
|
|
|
|
+*/
|
|
|
|
+/**
|
|
|
|
+ * Breakpoint mixins
|
|
|
|
+ */
|
|
|
|
+/**
|
|
|
|
+ * Long content fade mixin
|
|
|
|
+ *
|
|
|
|
+ * Creates a fading overlay to signify that the content is longer
|
|
|
|
+ * than the space allows.
|
|
|
|
+ */
|
|
|
|
+/**
|
|
|
|
+ * Focus styles.
|
|
|
|
+ */
|
|
|
|
+/**
|
|
|
|
+ * Applies editor left position to the selector passed as argument
|
|
|
|
+ */
|
|
|
|
+/**
|
|
|
|
+ * Styles that are reused verbatim in a few places
|
|
|
|
+ */
|
|
|
|
+/**
|
|
|
|
+ * Allows users to opt-out of animations via OS-level preferences.
|
|
|
|
+ */
|
|
|
|
+/**
|
|
|
|
+ * Reset default styles for JavaScript UI based pages.
|
|
|
|
+ * This is a WP-admin agnostic reset
|
|
|
|
+ */
|
|
|
|
+/**
|
|
|
|
+ * Reset the WP Admin page styles for Gutenberg-like pages.
|
|
|
|
+ */
|
|
.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,
|
|
.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):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):focus,
|
|
@@ -51,10 +88,6 @@ div.post-meta {
|
|
gap: 0;
|
|
gap: 0;
|
|
}
|
|
}
|
|
|
|
|
|
-div.post-meta a {
|
|
|
|
- text-decoration: none;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
div.post-meta > *:not(:first-child):before {
|
|
div.post-meta > *:not(:first-child):before {
|
|
color: var(--wp--custom--color--foreground);
|
|
color: var(--wp--custom--color--foreground);
|
|
content: "/";
|
|
content: "/";
|
|
@@ -62,6 +95,10 @@ div.post-meta > *:not(:first-child):before {
|
|
margin-right: var(--wp--custom--gap--baseline);
|
|
margin-right: var(--wp--custom--gap--baseline);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+div.post-meta a {
|
|
|
|
+ text-decoration: none;
|
|
|
|
+}
|
|
|
|
+
|
|
.is-vertical.items-justified-right ul.wp-block-navigation__container {
|
|
.is-vertical.items-justified-right ul.wp-block-navigation__container {
|
|
align-items: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
}
|