fix for text-danger color and hover color

pull/2/head
Sahat Yalkabov 2014-07-01 19:43:10 -04:00
parent 6cfad2188d
commit bcc47f5683
1 changed files with 18 additions and 13 deletions

View File

@ -13,7 +13,7 @@
@brand-primary: #2ac5ee; @brand-primary: #2ac5ee;
@brand-success: #0f9d58; @brand-success: #0f9d58;
@brand-warning: #f4b400; @brand-warning: #f4b400;
@brand-danger: #cb4437; @brand-danger: #d80017;
@brand-info: #5bc0dd; @brand-info: #5bc0dd;
::selection { ::selection {
@ -37,6 +37,14 @@ a {
&:hover { &:hover {
text-decoration: none; text-decoration: none;
} }
&.text-danger {
color: @brand-danger;
&:hover {
color: @gray-darker;
}
}
} }
p { p {
@ -100,26 +108,23 @@ p {
// Form states and alerts // Form states and alerts
// ------------------------- // -------------------------
@state-success-text: #569845; @state-success-text: #fff;
@state-success-bg: #dbf5d3; @state-success-bg: @brand-success;
@state-success-border: #aed3a5;
@state-info-text: #3a87ad; @state-info-text: #fff;
@state-info-bg: #d9edf7; @state-info-bg: @brand-primary;
@state-info-border: #98cce7;
@state-warning-text: #bf9853; @state-warning-text: #fff;
@state-warning-bg: #fdf8e2; @state-warning-bg: @brand-warning;
@state-warning-border: #f2daab;
@state-danger-text: #b94a48; @state-danger-text: #fff;
@state-danger-bg: #f2dede; @state-danger-bg: @brand-danger;
@state-danger-border: #e0b1b8;
// Alerts // Alerts
// ------------------------- // -------------------------
.alert { .alert {
font-family: 'Raleway', sans-serif;
border-radius: 0; border-radius: 0;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.10); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.10);
} }