AdminLTE/build/scss/_callout.scss

49 lines
912 B
SCSS
Raw Normal View History

2015-10-31 22:00:16 +01:00
/*
* Component: Callout
* ------------------
*/
// Base styles (regardless of theme)
.callout {
@include border-radius(3px);
margin: 0 0 20px 0;
padding: 15px 30px 15px 15px;
border-left: 5px solid #eee;
a {
color: #fff;
text-decoration: underline;
&:hover {
color: #eee;
}
}
h4 {
margin-top: 0;
font-weight: 600;
}
p:last-child {
margin-bottom: 0;
}
code,
.highlight {
background-color: #fff;
}
// Themes for different contexts
&.callout-danger {
@extend .bg-red;
2018-02-04 00:45:19 +01:00
border-color: darken(theme-color("danger"), 10%);
2015-10-31 22:00:16 +01:00
}
&.callout-warning {
@extend .bg-yellow;
2018-02-04 00:45:19 +01:00
border-color: darken(theme-color("warning"), 10%);
2015-10-31 22:00:16 +01:00
}
&.callout-info {
@extend .bg-aqua;
2018-02-04 00:45:19 +01:00
border-color: darken(theme-color("info"), 10%);
2015-10-31 22:00:16 +01:00
}
&.callout-success {
@extend .bg-green;
2018-02-04 00:45:19 +01:00
border-color: darken(theme-color("success"), 10%);
2015-10-31 22:00:16 +01:00
}
}