Skip to content

Commit

Permalink
Fix meta color
Browse files Browse the repository at this point in the history
  • Loading branch information
daviedR committed Nov 14, 2022
1 parent 04e2ad6 commit 6bd3c40
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions assets/css/editor-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ body {
--small-title--text-color: var(--heading-color);
--small-title--link-color--focus: var(--heading-color--focus);
--meta--font-size: 0.9rem;
--meta--line-height: 1.6;
--meta--text-color: var(--meta-color);
--meta--line-height: 1.6em;
--meta--text-color: var(--color-palette-3, var(--text-color));
--input--padding: 0.5em 0.75em 0.5em 0.75em;
--input--border-radius: 0.2em;
--input--border-width: 1px;
Expand Down
2 changes: 1 addition & 1 deletion assets/css/editor-rtl.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assets/css/editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ body {
--small-title--text-color: var(--heading-color);
--small-title--link-color--focus: var(--heading-color--focus);
--meta--font-size: 0.9rem;
--meta--line-height: 1.6;
--meta--text-color: var(--meta-color);
--meta--line-height: 1.6em;
--meta--text-color: var(--color-palette-3, var(--text-color));
--input--padding: 0.5em 0.75em 0.5em 0.75em;
--input--border-radius: 0.2em;
--input--border-width: 1px;
Expand Down
2 changes: 1 addition & 1 deletion assets/css/editor.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assets/css/main-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ body {
--small-title--text-color: var(--heading-color);
--small-title--link-color--focus: var(--heading-color--focus);
--meta--font-size: 0.9rem;
--meta--line-height: 1.6;
--meta--text-color: var(--meta-color);
--meta--line-height: 1.6em;
--meta--text-color: var(--color-palette-3, var(--text-color));
--input--padding: 0.5em 0.75em 0.5em 0.75em;
--input--border-radius: 0.2em;
--input--border-width: 1px;
Expand Down
2 changes: 1 addition & 1 deletion assets/css/main-rtl.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ body {
--small-title--text-color: var(--heading-color);
--small-title--link-color--focus: var(--heading-color--focus);
--meta--font-size: 0.9rem;
--meta--line-height: 1.6;
--meta--text-color: var(--meta-color);
--meta--line-height: 1.6em;
--meta--text-color: var(--color-palette-3, var(--text-color));
--input--padding: 0.5em 0.75em 0.5em 0.75em;
--input--border-radius: 0.2em;
--input--border-width: 1px;
Expand Down
2 changes: 1 addition & 1 deletion assets/css/main.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/sass/base/_global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ body { // Use body not :root, because this CSS will be used on block editor as w

// Meta typography (default)
--meta--font-size: 0.9rem;
--meta--line-height: 1.6;
--meta--text-color: var(--meta-color);
--meta--line-height: 1.6em;
--meta--text-color: var(--color-palette-3, var(--text-color));

// Form inputs (default)
--input--padding: 0.5em 0.75em 0.5em 0.75em;
Expand Down

0 comments on commit 6bd3c40

Please sign in to comment.