mirror of https://github.com/akveo/blur-admin
refactor(alerts): link colors and font-weight
parent
818c0295b9
commit
3a81bdc0c7
|
@ -71,10 +71,10 @@
|
|||
ba-panel-class="with-scroll">
|
||||
<div >
|
||||
<div class="alert bg-warning">
|
||||
<h4 class="default-color">Warning!</h4>
|
||||
<h4>Warning!</h4>
|
||||
<strong>Pay attention.</strong> Change a few things up and try submitting again.
|
||||
<div class="control-alert">
|
||||
<button type="button" class="btn btn-warning">Pay Attention</button>
|
||||
<button type="button" class="btn btn-danger">Pay Attention</button>
|
||||
<button type="button" class="btn btn-primary">Ignore</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
.alert{
|
||||
font-size: 13px;
|
||||
font-weight: $font-light;
|
||||
strong{
|
||||
font-weight: $font-normal;
|
||||
}
|
||||
.close{
|
||||
margin-top: -3px;
|
||||
}
|
||||
//a{
|
||||
// font-weight: 900;
|
||||
// color: #3C3C3B;
|
||||
// &:hover{
|
||||
// border-bottom: 1px solid $github-color;
|
||||
// }
|
||||
//}
|
||||
.alert-link{
|
||||
font-weight: $font-normal;
|
||||
}
|
||||
.control-alert{
|
||||
padding-top:10px ;
|
||||
button{
|
||||
|
@ -26,13 +26,37 @@
|
|||
|
||||
.bg-success {
|
||||
background-color: $success;
|
||||
a{
|
||||
color: $primary-charts;
|
||||
&:hover{
|
||||
color: $primary-dark;
|
||||
}
|
||||
}
|
||||
}
|
||||
.bg-info {
|
||||
background-color: $info;
|
||||
a{
|
||||
color: $warning-bg;
|
||||
&:hover{
|
||||
color: $warning;
|
||||
}
|
||||
}
|
||||
}
|
||||
.bg-warning {
|
||||
background-color: $warning;
|
||||
a{
|
||||
color: $danger;
|
||||
&:hover{
|
||||
color: $danger-dark;
|
||||
}
|
||||
}
|
||||
}
|
||||
.bg-danger {
|
||||
background-color: $danger;
|
||||
a{
|
||||
color: $primary-light;
|
||||
&:hover{
|
||||
color: $primary;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue