diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-06-02 14:13:35 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-06-02 14:13:35 +0300 |
commit | 33ff53d91560f15f80347c4f5774ba8b9791f133 (patch) | |
tree | b8c7bf2e4a37bfd1a26e4380adbf8ffb1178e48f | |
parent | 6854be80a85ae8bc8203a3ae768e2bab7d5daa34 (diff) | |
download | gitlab-ce-33ff53d91560f15f80347c4f5774ba8b9791f133.tar.gz |
Fix syntax error
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r-- | app/assets/stylesheets/generic/typography.scss | 2 | ||||
-rw-r--r-- | app/assets/stylesheets/sections/nav.scss | 2 | ||||
-rw-r--r-- | app/assets/stylesheets/sections/notes.scss | 4 | ||||
-rw-r--r-- | app/assets/stylesheets/sections/tree.scss | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/app/assets/stylesheets/generic/typography.scss b/app/assets/stylesheets/generic/typography.scss index 412c25f4388..4ab83786b50 100644 --- a/app/assets/stylesheets/generic/typography.scss +++ b/app/assets/stylesheets/generic/typography.scss @@ -40,7 +40,7 @@ a { color: $link_color; &:hover { text-decoration: none; - color: $link_hover_colory; + color: $link_hover_color; } &:focus { diff --git a/app/assets/stylesheets/sections/nav.scss b/app/assets/stylesheets/sections/nav.scss index 69a97cac01c..c82da5fce38 100644 --- a/app/assets/stylesheets/sections/nav.scss +++ b/app/assets/stylesheets/sections/nav.scss @@ -116,7 +116,7 @@ padding: 5px 0; &.active { - background-color: $link_hover_colory; + background-color: $link_hover_color; a { color: #fff; diff --git a/app/assets/stylesheets/sections/notes.scss b/app/assets/stylesheets/sections/notes.scss index ca160766445..e8d6ec3e29a 100644 --- a/app/assets/stylesheets/sections/notes.scss +++ b/app/assets/stylesheets/sections/notes.scss @@ -37,7 +37,7 @@ ul.notes { font-weight: bold; font-size: 14px; &:hover { - color: $link_hover_colory; + color: $link_hover_color; } } } @@ -172,7 +172,7 @@ ul.notes { @extend .cgray; &:hover { - color: $link_hover_colory; + color: $link_hover_color; &.danger { @extend .cred; } } } diff --git a/app/assets/stylesheets/sections/tree.scss b/app/assets/stylesheets/sections/tree.scss index fa9456d745d..db177a0083c 100644 --- a/app/assets/stylesheets/sections/tree.scss +++ b/app/assets/stylesheets/sections/tree.scss @@ -53,7 +53,7 @@ vertical-align: middle; a { &:hover { - color: $link_hover_colory; + color: $link_hover_color; } } |