-
Notifications
You must be signed in to change notification settings - Fork 396
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add !default to values; standardise hex values (resolves #530)
- Loading branch information
1 parent
60134f4
commit 83cf008
Showing
1 changed file
with
16 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
$text-block-font-size: 1.275em; | ||
$text-block-font-size: 1.275em !default; | ||
|
||
$text-block-font-color: #282D31; | ||
$accent-color: #17BB75; | ||
$base-ui-color: #42474B; | ||
$light-ui-color: #CCCCCC; | ||
$blocks-control-bg-color: #F7F7F7; | ||
$blocks-control-border-color: #ddd; | ||
$error-color: #d70014; | ||
$selection-color: #B1F2D6; | ||
$text-block-font-color: #282d31 !default; | ||
$accent-color: #17bb75 !default; | ||
$base-ui-color: #42474b !default; | ||
$light-ui-color: #ccc !default; | ||
$blocks-control-bg-color: #f7f7f7 !default; | ||
$blocks-control-border-color: #ddd !default; | ||
$error-color: #d70014 !default; | ||
$selection-color: #b1f2d6 !default; | ||
|
||
$inner-block-padding: 30px 30px 48px 30px; | ||
$inner-block-padding: 30px 30px 48px !default; | ||
|
||
$block-controls-height: 164px; | ||
$block-add-height: 40px; | ||
$block-controls-color:#9B9B9B; | ||
|
||
$border-size: 2px; | ||
$border-style: solid; | ||
$default-border: $border-size $border-style $accent-color; | ||
$block-controls-height: 164px !default; | ||
$block-add-height: 40px !default; | ||
$block-controls-color: #9b9b9b !default; | ||
|
||
$border-size: 2px !default; | ||
$border-style: solid !default; | ||
$default-border: $border-size $border-style $accent-color !default; |