summaryrefslogtreecommitdiff
path: root/simplex/variables.less
diff options
context:
space:
mode:
authorCorey Sewell <corey@gdmedia.tv>2014-11-14 20:40:27 +1300
committerCorey Sewell <corey@gdmedia.tv>2014-11-14 20:44:05 +1300
commit28bd7c0707e3a29f4f74fbdeab88beaa81cd06d4 (patch)
tree2d1f7e7bfaf049f0829f0896d3b0e7c3c16b7a63 /simplex/variables.less
parent3f867ba1163807a2d43f33ba8d38b5947c45b6fe (diff)
Add support for SASS/SCSS
Refactored less files to be more scss friendly * Ensured no variables are used before assignment * Removed interpolated variable usage with similar substitute Added SCSS Grunt tasks * convert_less - Converts theme less files to scss * swatch_scss - Same as original swatch task, but using sass * compress_scss - Same as original compress task, but using sass Added dependencies for SCSS Updated _config.yml so jekyll includes theme _bootswatch.scss and _variables.scss files Added .sass-cache dir to .gitignore
Diffstat (limited to 'simplex/variables.less')
-rw-r--r--simplex/variables.less10
1 files changed, 5 insertions, 5 deletions
diff --git a/simplex/variables.less b/simplex/variables.less
index 0fd0dc66..cc4216ca 100644
--- a/simplex/variables.less
+++ b/simplex/variables.less
@@ -236,7 +236,7 @@
//** Hover color for dropdown links.
@dropdown-link-hover-color: #fff;
//** Hover background for dropdown links.
-@dropdown-link-hover-bg: @dropdown-link-active-bg;
+@dropdown-link-hover-bg: @component-active-bg;
//** Active dropdown menu item text color.
@dropdown-link-active-color: #fff;
@@ -244,10 +244,10 @@
@dropdown-link-active-bg: @component-active-bg;
//** Disabled dropdown menu item background color.
-@dropdown-link-disabled-color: @text-muted;
+@dropdown-link-disabled-color: @gray-light;
//** Text color for headers within dropdown menus.
-@dropdown-header-color: @text-muted;
+@dropdown-header-color: @gray-light;
//** Deprecated `@dropdown-caret-color` as of v3.1.0
@dropdown-caret-color: #000;
@@ -699,11 +699,11 @@
//** Border color for elements within panels
@panel-inner-border: #ddd;
-@panel-footer-bg: @panel-default-heading-bg;
+@panel-footer-bg: @body-bg;
@panel-default-text: @gray-dark;
@panel-default-border: #ddd;
-@panel-default-heading-bg: @body-bg;
+@panel-default-heading-bg: @panel-footer-bg;
@panel-primary-text: #fff;
@panel-primary-border: @brand-primary;