diff options
author | Thomas Park <thomas@thomaspark.me> | 2014-11-15 16:45:53 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2014-11-15 16:45:53 -0500 |
commit | 3312ab8aa423bd4047a09b0c970687f40393672f (patch) | |
tree | 23337f823c414b6d94d00171d242bd22f00f4221 | |
parent | 5366a6620906fba63e5b586a39a10e439c041297 (diff) |
journal: fix order of less variable assignments
-rw-r--r-- | journal/variables.less | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/journal/variables.less b/journal/variables.less index 09fb8160..0b94476f 100644 --- a/journal/variables.less +++ b/journal/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; |