forked from IanLunn/Hover
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sass-variables overwritable, added !default
- Loading branch information
Showing
1 changed file
with
23 additions
and
23 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,43 +1,43 @@ | ||
// DEFAULT OPTIONS | ||
|
||
// Prefix for Hover class names | ||
$nameSpace: 'hvr'; | ||
$nameSpace: 'hvr' !default; | ||
|
||
// Durations | ||
$fastDuration: .1s; | ||
$mediumDuration: .3s; | ||
$slowDuration: .5s; | ||
$fastDuration: .1s !default; | ||
$mediumDuration: .3s !default; | ||
$slowDuration: .5s !default; | ||
|
||
// Colors | ||
$primaryColor: #e1e1e1; | ||
$secondaryColor: #666; | ||
$highlightColor: #ccc; | ||
$activeColor: #2098D1; | ||
$shadowColor: rgba(0, 0, 0, .6); | ||
$primaryColor: #e1e1e1 !default; | ||
$secondaryColor: #666 !default; | ||
$highlightColor: #ccc !default; | ||
$activeColor: #2098D1 !default; | ||
$shadowColor: rgba(0, 0, 0, .6) !default; | ||
|
||
// Speech bubbles options | ||
$tipWidth: 10px; //the width of the speech bubble tip | ||
$tipHeight: 10px; //the height of the speech bubble tip | ||
$tipColor: $primaryColor; | ||
$tipWidth: 10px !default; //the width of the speech bubble tip | ||
$tipHeight: 10px !default; //the height of the speech bubble tip | ||
$tipColor: $primaryColor !default; | ||
|
||
// Arrows options | ||
$spaceBetweenTextAndArrows: 2.2em; | ||
$spaceBetweenTextAndArrows: 2.2em !default; | ||
|
||
// Curl dimensions | ||
$curlWidth: 25px; | ||
$curlHeight: 25px; | ||
$curlWidth: 25px !default; | ||
$curlHeight: 25px !default; | ||
|
||
// Curl colors | ||
$revealAreaColor: white; // reveal area behind the curl | ||
$curlLineColor: #aaa; // crease line | ||
$curlTransitionColor: #ccc; // color transitioning from crease line to final color | ||
$curlLastColor: white; // final color of the back of the curl | ||
$revealAreaColor: white !default; // reveal area behind the curl | ||
$curlLineColor: #aaa !default; // crease line | ||
$curlTransitionColor: #ccc !default; // color transitioning from crease line to final color | ||
$curlLastColor: white !default; // final color of the back of the curl | ||
|
||
// Browser Prefixes - Which CSS prefixes should be used? | ||
$webkit: true; | ||
$moz: false; | ||
$ms: false; | ||
$o: false; | ||
$webkit: true !default; | ||
$moz: false !default; | ||
$ms: false !default; | ||
$o: false !default; | ||
|
||
// Compile with or without classes | ||
$include-classes: true !default; |