Skip to content
Snippets Groups Projects
Commit ef078978 authored by Demian Katz's avatar Demian Katz Committed by Robert Lange
Browse files

Fix button text color.

parent 408bf49f
Branches
Tags
No related merge requests found
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
...@@ -17,6 +17,12 @@ a { ...@@ -17,6 +17,12 @@ a {
.alert-danger, .alert-danger,
.alert-danger a { .alert-danger a {
color: @state-danger-text; color: @state-danger-text;
.btn-danger {
color: white;
}
.btn-danger:hover {
color: @state-danger-text;
}
} }
/** /**
......
...@@ -17,6 +17,12 @@ $state-danger-text: #8a211e; ...@@ -17,6 +17,12 @@ $state-danger-text: #8a211e;
.alert-danger, .alert-danger,
.alert-danger a { .alert-danger a {
color: $state-danger-text; color: $state-danger-text;
.btn-danger {
color: white;
}
.btn-danger:hover {
color: $state-danger-text;
}
} }
/** /**
......
This diff is collapsed.
This diff is collapsed.
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