1 /* {{pp|small=y}} */
2 .ambox {
3 border: 1px solid #a2a9b1;
4 /* @noflip */
5 border-left: 10px solid #36c; /* Default "notice" blue */
6 background-color: #fbfbfb;
7 box-sizing: border-box;
8 }
9
10 /* Single border between stacked boxes. Take into account base templatestyles,
11 * user styles, and Template:Dated maintenance category.
12 * remove link selector when T200206 is fixed
13 */
14 .ambox + link + .ambox,
15 .ambox + link + style + .ambox,
16 .ambox + link + link + .ambox,
17 /* TODO: raise these as "is this really that necessary???". the change was Dec 2021 */
18 .ambox + .mw-empty-elt + link + .ambox,
19 .ambox + .mw-empty-elt + link + style + .ambox,
20 .ambox + .mw-empty-elt + link + link + .ambox {
21 margin-top: -1px;
22 }
23
24 /* For the "small=left" option. */
25 /* must override .ambox + .ambox styles above */
26 html body.mediawiki .ambox.mbox-small-left {
27 /* @noflip */
28 margin: 4px 1em 4px 0;
29 overflow: hidden;
30 width: 238px;
31 border-collapse: collapse;
32 font-size: 88%;
33 line-height: 1.25em;
34 }
35
36 .ambox-speedy {
37 /* @noflip */
38 border-left: 10px solid #b32424; /* Red */
39 background-color: #fee7e6; /* Pink */
40 }
41
42 .ambox-delete {
43 /* @noflip */
44 border-left: 10px solid #b32424; /* Red */
45 }
46
47 .ambox-content {
48 /* @noflip */
49 border-left: 10px solid #f28500; /* Orange */
50 }
51
52 .ambox-style {
53 /* @noflip */
54 border-left: 10px solid #fc3; /* Yellow */
55 }
56
57 .ambox-move {
58 /* @noflip */
59 border-left: 10px solid #9932cc; /* Purple */
60 }
61
62 .ambox-protection {
63 /* @noflip */
64 border-left: 10px solid #a2a9b1; /* Gray-gold */
65 }
66
67 .ambox .mbox-text {
68 border: none;
69 /* @noflip */
70 padding: 0.25em 0.5em;
71 width: 100%;
72 }
73
74 .ambox .mbox-image {
75 border: none;
76 /* @noflip */
77 padding: 2px 0 2px 0.5em;
78 text-align: center;
79 }
80
81 .ambox .mbox-imageright {
82 border: none;
83 /* @noflip */
84 padding: 2px 0.5em 2px 0;
85 text-align: center;
86 }
87
88 /* An empty narrow cell */
89 .ambox .mbox-empty-cell {
90 border: none;
91 padding: 0;
92 width: 1px;
93 }
94
95 .ambox .mbox-image-div {
96 width: 52px;
97 }
98
99 @media (min-width: 720px) {
100 .ambox {
101 margin: 0 10%; /* 10% = Will not overlap with other elements */
102 }
103 }
104
105 @media print {
106 body.ns-0 .ambox {
107 display: none !important;
108 }
109 }