|
@@ -984,6 +984,120 @@ pre.wp-block-verse {
|
|
|
/**
|
|
|
* Spacing Overrides
|
|
|
*/
|
|
|
+/*
|
|
|
+ * Margins
|
|
|
+ */
|
|
|
+.margin-top-none {
|
|
|
+ margin-top: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-top-half {
|
|
|
+ margin-top: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-top-default {
|
|
|
+ margin-top: var(--global--spacing-vertical) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-right-none {
|
|
|
+ /*rtl:ignore*/
|
|
|
+ margin-right: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-right-half {
|
|
|
+ /*rtl:ignore*/
|
|
|
+ margin-right: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-right-default {
|
|
|
+ /*rtl:ignore*/
|
|
|
+ margin-right: var(--global--spacing-vertical) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-bottom-none {
|
|
|
+ margin-bottom: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-bottom-half {
|
|
|
+ margin-bottom: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-bottom-default {
|
|
|
+ margin-bottom: var(--global--spacing-vertical) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-left-none {
|
|
|
+ /*rtl:ignore*/
|
|
|
+ margin-left: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-left-half {
|
|
|
+ /*rtl:ignore*/
|
|
|
+ margin-left: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-left-default {
|
|
|
+ /*rtl:ignore*/
|
|
|
+ margin-left: var(--global--spacing-vertical) !important;
|
|
|
+}
|
|
|
+
|
|
|
+/*
|
|
|
+ * Padding
|
|
|
+ */
|
|
|
+.padding-top-none {
|
|
|
+ padding-top: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-top-half {
|
|
|
+ padding-top: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-top-default {
|
|
|
+ padding-top: var(--global--spacing-vertical) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-right-none {
|
|
|
+ /*rtl:ignore*/
|
|
|
+ padding-right: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-right-half {
|
|
|
+ /*rtl:ignore*/
|
|
|
+ padding-right: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-right-default {
|
|
|
+ /*rtl:ignore*/
|
|
|
+ padding-right: var(--global--spacing-vertical) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-bottom-none {
|
|
|
+ padding-bottom: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-bottom-half {
|
|
|
+ padding-bottom: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-bottom-default {
|
|
|
+ padding-bottom: var(--global--spacing-vertical) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-left-none {
|
|
|
+ /*rtl:ignore*/
|
|
|
+ padding-left: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-left-half {
|
|
|
+ /*rtl:ignore*/
|
|
|
+ padding-left: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-left-default {
|
|
|
+ /*rtl:ignore*/
|
|
|
+ padding-left: var(--global--spacing-vertical) !important;
|
|
|
+}
|
|
|
+
|
|
|
[data-block] {
|
|
|
margin-top: var(--global--spacing-vertical);
|
|
|
margin-bottom: var(--global--spacing-vertical);
|