Commit 28cc1991 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'ui-colors' into 'master'

Refactoring ui colors
parents c7f8bb4c 133d231f
...@@ -60,7 +60,7 @@ pre { ...@@ -60,7 +60,7 @@ pre {
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus { .dropdown-menu > li > a:focus {
background: #29b; background: $bg_style_color;
color: #FFF color: #FFF
} }
......
...@@ -40,7 +40,7 @@ a { ...@@ -40,7 +40,7 @@ a {
color: $link_color; color: $link_color;
&:hover { &:hover {
text-decoration: none; text-decoration: none;
color: $primary_color; color: $link_hover_color;
} }
&:focus { &:focus {
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
$font-size-base: 13px !default; $font-size-base: 13px !default;
$nav-pills-active-link-hover-bg: $bg_primary; $nav-pills-active-link-hover-bg: $bg_primary;
$pagination-active-bg: $bg_primary; $pagination-active-bg: $bg_primary;
$list-group-active-bg: $bg_style_color;
// Core variables and mixins // Core variables and mixins
@import "bootstrap/variables"; @import "bootstrap/variables";
......
/** /*
* General Colors * General Colors
*/ */
$primary_color: #2FA0BB;
$link_color: #3A89A3;
$style_color: #474D57; $style_color: #474D57;
$bg_style_color: #2299BB; $bg_style_color: #2299BB;
$list-group-active-bg: $bg_style_color;
$hover: #D9EDF7; $hover: #D9EDF7;
/*
* Link colors
*/
$link_color: #446e9b;
$link_hover_color: #2FA0BB;
/* /*
* Success colors (green) * Success colors (green)
*/ */
......
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
left: 50%; left: 50%;
width: 0; width: 0;
height: 0; height: 0;
border-color: transparent transparent #29b transparent; border-color: transparent transparent $link_color transparent;
border-style: solid; border-style: solid;
border-width: 6px; border-width: 6px;
margin-left: -6px; margin-left: -6px;
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
padding: 5px 0; padding: 5px 0;
&.active { &.active {
background-color: $primary_color; background-color: $link_hover_color;
a { a {
color: #fff; color: #fff;
......
...@@ -37,7 +37,7 @@ ul.notes { ...@@ -37,7 +37,7 @@ ul.notes {
font-weight: bold; font-weight: bold;
font-size: 14px; font-size: 14px;
&:hover { &:hover {
color: $primary_color; color: $link_hover_color;
} }
} }
} }
...@@ -172,7 +172,7 @@ ul.notes { ...@@ -172,7 +172,7 @@ ul.notes {
@extend .cgray; @extend .cgray;
&:hover { &:hover {
color: $primary_color; color: $link_hover_color;
&.danger { @extend .cred; } &.danger { @extend .cred; }
} }
} }
......
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
.btn { .btn {
background: none; background: none;
color: #29b; color: $link_color;
&.active { &.active {
color: #333; color: #333;
......
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
vertical-align: middle; vertical-align: middle;
a { a {
&:hover { &:hover {
color: $primary_color; color: $link_hover_color;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment