Difference between revisions of "Template:Extension/status.css"
Jump to navigation
Jump to search
>ExE Boss (Copy `ext‑status‑*` styles from MediaWiki:Gadget‑site.css?oldid=4662923) |
>ExE Boss (Add remaining `.ext‑status‑* .ext‑infobox‑header a { color: #000/#FFF; }` CSS rules) |
||
Line 22: | Line 22: | ||
.ext-status-experimental .ext-infobox-header { | .ext-status-experimental .ext-infobox-header { | ||
background-color: #ff4500; | background-color: #ff4500; | ||
color: #FFF; | |||
} | |||
.ext-status-experimental .ext-infobox-header a { | |||
color: #FFF; | |||
} | } | ||
Line 32: | Line 36: | ||
color: #000; | color: #000; | ||
background-color: #fc3; | background-color: #fc3; | ||
} | |||
.ext-status-beta .ext-infobox-header a { | |||
color: #000; | |||
} | } | ||
Line 41: | Line 48: | ||
.ext-status-stable .ext-infobox-header { | .ext-status-stable .ext-infobox-header { | ||
background-color: #00af89; | background-color: #00af89; | ||
color: #FFF; | |||
} | } | ||
.ext-status-stable .ext-infobox-header a { | .ext-status-stable .ext-infobox-header a { | ||
Line 53: | Line 61: | ||
.ext-status-unmaintained .ext-infobox-header { | .ext-status-unmaintained .ext-infobox-header { | ||
background-color: #ac6600; | background-color: #ac6600; | ||
color: #FFF; | |||
} | } | ||
.ext-status-unmaintained .ext-infobox-header a { | .ext-status-unmaintained .ext-infobox-header a { | ||
color: #fff; | color: #fff; | ||
} | } |
Revision as of 17:55, 6 July 2021
/********************
* Extension Status *
*******************/
/* Unstable */
.ext-status-unstable,
.ext-status-unstable td {
border-color: #d33;
}
.ext-status-unstable .ext-infobox-header {
background-color: #d33;
color: #fff;
}
.ext-status-unstable .ext-infobox-header a {
color: #fff;
}
/* Experimental */
.ext-status-experimental,
.ext-status-experimental td {
border-color: #ff4500;
}
.ext-status-experimental .ext-infobox-header {
background-color: #ff4500;
color: #FFF;
}
.ext-status-experimental .ext-infobox-header a {
color: #FFF;
}
/* Beta */
.ext-status-beta,
.ext-status-beta td {
border-color: #fc3;
}
.ext-status-beta .ext-infobox-header {
color: #000;
background-color: #fc3;
}
.ext-status-beta .ext-infobox-header a {
color: #000;
}
/* Stable */
.ext-status-stable,
.ext-status-stable td {
border-color: #00af89;
}
.ext-status-stable .ext-infobox-header {
background-color: #00af89;
color: #FFF;
}
.ext-status-stable .ext-infobox-header a {
color: #fff;
}
/* Unmaintained */
.ext-status-unmaintained,
.ext-status-unmaintained td {
border-color: #ac6600;
}
.ext-status-unmaintained .ext-infobox-header {
background-color: #ac6600;
color: #FFF;
}
.ext-status-unmaintained .ext-infobox-header a {
color: #fff;
}