Skip to content

Commit

Permalink
Revert changes to master
Browse files Browse the repository at this point in the history
  • Loading branch information
oandregal committed Apr 7, 2020
1 parent 8e08ade commit 03f7867
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions packages/block-library/src/pullquote/theme.scss
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
.wp-block-pullquote {
border-top: 4px solid var(--wp--color--foreground-500, $dark-gray-500);
border-bottom: 4px solid var(--wp--color--foreground-500, $dark-gray-500);
border-top: 4px solid $dark-gray-500;
border-bottom: 4px solid $dark-gray-500;
margin-bottom: $default-block-margin;
color: var(--wp--color--foreground-600, $dark-gray-600);
color: $dark-gray-600;

cite,
footer,
&__citation {
color: var(--wp--color--foreground-600, $dark-gray-600);
color: $dark-gray-600;
text-transform: uppercase;
font-size: $default-font-size;
font-style: normal;
Expand Down
6 changes: 3 additions & 3 deletions packages/block-library/src/quote/theme.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.wp-block-quote {
border-left: 4px solid var(--wp--color--border, $black);
border-left: 4px solid $black;
margin: 0 0 $default-block-margin 0;
padding-left: 1em;

cite,
footer,
&__citation {
color: var(--wp--foreground-300, $dark-gray-300);
color: $dark-gray-300;
font-size: $default-font-size;
margin-top: 1em;
position: relative;
Expand All @@ -16,7 +16,7 @@
&.has-text-align-right,
&.has-text-align-right {
border-left: none;
border-right: 4px solid var(--wp--color--border, $black);
border-right: 4px solid $black;
padding-left: 0;
padding-right: 1em;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/block-library/src/table/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
background-color: transparent;

tbody tr:nth-child(odd) {
background-color: var(--wp--color--foreground-200, $light-gray-200);
background-color: $light-gray-200;
}

&.has-subtle-light-gray-background-color {
Expand Down Expand Up @@ -93,6 +93,6 @@
border-color: transparent;
}

border-bottom: 1px solid var(--wp--color--foreground-200, $light-gray-200);
border-bottom: 1px solid $light-gray-200;
}
}
2 changes: 1 addition & 1 deletion packages/block-library/src/verse/editor.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pre.wp-block-verse {
color: var(--wp--color--foreground-900, $dark-gray-900);
color: $dark-gray-900;
white-space: nowrap;
font-family: inherit;
font-size: inherit;
Expand Down

0 comments on commit 03f7867

Please sign in to comment.