-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bd634a8
commit 09f839f
Showing
12 changed files
with
637 additions
and
502 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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,36 +1,35 @@ | ||
$primaryColor: #512da8; | ||
$primaryBg: #fff; | ||
$fontColor: #333; | ||
$fontColorLight: #666; | ||
$errorColor: #b00020; | ||
$borderColor: #ddd; | ||
$focusColor: #ccc; | ||
$selectedColor: #eee; | ||
$arrowColor: #111; | ||
$checkboxColor: #888; | ||
$iconHoverColor: #333; | ||
$overlayBg: rgba(0, 0, 0, 0.5); | ||
$primary-color: #512da8; | ||
$primary-bg: #fff; | ||
$font-color: #333; | ||
$font-color-light: #666; | ||
$error-color: #b00020; | ||
$border-color: #ddd; | ||
$focus-color: #ccc; | ||
$selected-color: #eee; | ||
$arrow-color: #111; | ||
$checkbox-color: #888; | ||
$icon-hover-color: #333; | ||
$overlay-bg: rgba(0, 0, 0, 0.5); | ||
|
||
$fontFamily: sans-serif; | ||
$fontSize: 14px; | ||
$fontSizeSmall: 13px; | ||
$dropboxHeight: 250px; | ||
$searchHeight: 40px; | ||
$checkboxFullWidth: 25px; | ||
$newOptionIconWidth: 30px; | ||
$searchClearWidth: 30px; | ||
$valueTagClearWidth: 20px; | ||
$optionHeight: 40px; | ||
$arrowWidth: 30px; | ||
$arrowSize: 8px; | ||
$clearButtonWidth: 24px; | ||
$clearIconSize: 12px; | ||
$dropboxCloseButtonWidth: 40px; | ||
$dropboxCloseButtonOffset: 8px; | ||
$transitionDistance: 30px; | ||
$optionsLoaderSize: 40px; | ||
$optionCheckboxMargin: 10px; | ||
$font-family: sans-serif; | ||
$font-size: 14px; | ||
$font-size-small: 13px; | ||
$dropbox-height: 250px; | ||
$search-height: 40px; | ||
$checkbox-full-width: 25px; | ||
$new-option-icon-width: 30px; | ||
$search-clear-width: 30px; | ||
$value-tag-clear-width: 20px; | ||
$option-height: 40px; | ||
$arrow-width: 30px; | ||
$arrow-size: 8px; | ||
$clear-button-width: 24px; | ||
$clear-icon-size: 12px; | ||
$dropbox-close-button-width: 40px; | ||
$dropbox-close-button-offset: 8px; | ||
$options-loader-size: 40px; | ||
$option-checkbox-margin: 10px; | ||
|
||
$zIndex: 1; | ||
$z-index: 1; | ||
|
||
$boxShadow1: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); | ||
$box-shadow1: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); |
Oops, something went wrong.