]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/static/AdminLTE-2.3.7/build/less/callout.less
update sources to v12.1.0
[ceph.git] / ceph / src / pybind / mgr / dashboard / static / AdminLTE-2.3.7 / build / less / callout.less
1 /*
2 * Component: Callout
3 * ------------------
4 */
5
6 // Base styles (regardless of theme)
7 .callout {
8 .border-radius(3px);
9 margin: 0 0 20px 0;
10 padding: 15px 30px 15px 15px;
11 border-left: 5px solid #eee;
12 a {
13 color: #fff;
14 text-decoration: underline;
15 &:hover {
16 color: #eee;
17 }
18 }
19 h4 {
20 margin-top: 0;
21 font-weight: 600;
22 }
23 p:last-child {
24 margin-bottom: 0;
25 }
26 code,
27 .highlight {
28 background-color: #fff;
29 }
30
31 // Themes for different contexts
32 &.callout-danger {
33 &:extend(.bg-red);
34 border-color: darken(@red, 10%);
35 }
36 &.callout-warning {
37 &:extend(.bg-yellow);
38 border-color: darken(@yellow, 10%);
39 }
40 &.callout-info {
41 &:extend(.bg-aqua);
42 border-color: darken(@aqua, 10%);
43 }
44 &.callout-success {
45 &:extend(.bg-green);
46 border-color: darken(@green, 10%);
47 }
48 }