Template:Note/styles.css: Difference between revisions
Lexisother (talk | contribs) m Update the icon URLs |
Lexisother (talk | contribs) Stop using background-image for adding icons |
||
Line 2: | Line 2: | ||
.note { | .note { | ||
background-position: left 7px top 50%; | background-position: left 7px top 50%; | ||
padding: 0.5em 0.5em 0.5em | padding: 0.5em 0.5em 0.5em 10px; | ||
margin: 0.5em 0; | margin: 0.5em 0; | ||
overflow: hidden; | overflow: hidden; | ||
Line 15: | Line 15: | ||
.note-info { | .note-info { | ||
background-color: #f6efe5; | background-color: #f6efe5; | ||
border-color: #ac6600; | border-color: #ac6600; | ||
min-height: 28px; | min-height: 28px; | ||
} | } | ||
.note-reminder { | .note-reminder { | ||
background-color: #fff9ea; | background-color: #fff9ea; | ||
border-color: #fc3; | border-color: #fc3; | ||
min-height: 28px; | min-height: 28px; | ||
Line 32: | Line 25: | ||
.note-warn { | .note-warn { | ||
background-color: #fff9ea; | background-color: #fff9ea; | ||
border-color: #fc3; | border-color: #fc3; | ||
min-height: 28px; | min-height: 28px; | ||
Line 41: | Line 31: | ||
.note-error { | .note-error { | ||
background-color: #fee7e6; | background-color: #fee7e6; | ||
border-color: #c33; | border-color: #c33; | ||
min-height: 28px; | min-height: 28px; | ||
} | } |
Revision as of 14:05, 29 May 2023
/* Taken from https://www.mediawiki.org/w/index.php?title=Template:Note/styles.css&oldid=4199118 */
.note {
background-position: left 7px top 50%;
padding: 0.5em 0.5em 0.5em 10px;
margin: 0.5em 0;
overflow: hidden;
background-color: #f8f9fa;
background-repeat: no-repeat;
border: 1px solid #ddd;
}
.note-inline {
display: inline-block;
vertical-align: middle;
}
.note-info {
background-color: #f6efe5;
border-color: #ac6600;
min-height: 28px;
}
.note-reminder {
background-color: #fff9ea;
border-color: #fc3;
min-height: 28px;
}
.note-warn {
background-color: #fff9ea;
border-color: #fc3;
min-height: 28px;
}
.note-error {
background-color: #fee7e6;
border-color: #c33;
min-height: 28px;
}