Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Replace all colors with variables.
Fixes #572.
  • Loading branch information
jasmussen committed May 1, 2017
commit 02c5737b3bc99506cdcab4b0f438c5ef397b86a2
2 changes: 1 addition & 1 deletion editor/assets/stylesheets/main.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
body.toplevel_page_gutenberg {
background: #fff;
background: $white;

#update-nag, .update-nag {
position: absolute;
Expand Down
4 changes: 2 additions & 2 deletions editor/components/block-switcher/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
top: 43px;
margin-left: -1px;
box-shadow: 0px 3px 20px rgba( 18, 24, 30, .1 ), 0px 1px 3px rgba( 18, 24, 30, .1 );
border: 1px solid #e0e5e9;
background: #fff;
border: 1px solid $light-gray-500;
background: $white;

input {
font-size: 13px;
Expand Down
4 changes: 2 additions & 2 deletions editor/components/inserter/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
transition: color .2s ease;

&:hover {
color: #00aadc;
color: $blue-medium;
}
}

Expand All @@ -35,7 +35,7 @@
border: 1px solid $light-gray-500;
position: absolute;
left: -122px;
background: #fff;
background: $white;

&.is-top {
bottom: 42px;
Expand Down