MediaWiki:Minerva.css

Đây là một phiên bản cũ của trang này, do Admin (thảo luận | đóng góp) sửa đổi vào lúc 08:02, ngày 10 tháng 8 năm 2026. Địa chỉ URL hiện tại là một liên kết vĩnh viễn đến phiên bản này của trang, có thể khác biệt rất nhiều so với phiên bản hiện hành.

Chú ý: Sau khi lưu thay đổi trang, bạn phải xóa bộ nhớ đệm của trình duyệt để nhìn thấy các thay đổi. Google Chrome, Firefox, Internet ExplorerSafari: Giữ phím ⇧ Shift và nhấn nút Reload/Tải lại trên thanh công cụ của trình duyệt. Để biết chi tiết và hướng dẫn cho các trình duyệt khác, xem Trợ giúp:Xóa bộ nhớ đệm.
/* Reset user agent styles. We don't reset small or blockquote here deliberately *//* Reset user agent styles. We don't reset small or blockquote here deliberately */
cite,
dfn {
	font-style: inherit;
}

q {
    quotes: '"' '"' "'" "'";
}

/* Hide stuff meant for accounts with special permissions. Made visible again in
   [[MediaWiki:Group-sysop.css]], [[MediaWiki:Group-patroller.css]] and
   [[MediaWiki:Group-autoconfirmed.css]]. */
.checkuser-show,
.sysop-show,
.templateeditor-show,
.extendedmover-show,
.patroller-show,
.extendedconfirmed-show,
.autoconfirmed-show {
    display: none;
}

/* Prevent flags in tables from collapsing
   Fix for [[phab:T116318]]
*/
.flagicon img {
    min-width: 23px;
}

/* Prevent unnecessary margin at the bottom of centralnotices */
.cnotice {
    margin-bottom: 0 !important;
}

/*
 * BELOW HERE THERE BE SOONTOBE TEMPLATESTYLES THINGS;
 * SEE [[MediaWiki talk:Common.css/to do]]
 */
.mw-parser-output .infobox-header,
.mw-parser-output .infobox-subheader,
.mw-parser-output .infobox-above,
.mw-parser-output .infobox-title,
.mw-parser-output .infobox-image,
.mw-parser-output .infobox-full-data,
.mw-parser-output .infobox-below {
    text-align: center;
}

/* Prevent line breaks in silly places:
   1) Where desired
   2) Links when we don't want them to
*/
.mw-parser-output .nowrap,
.nowraplinks a {
    white-space: nowrap;
}

.mw-parser-output .infobox .nowrap {
    white-space: normal !important;
}

/* But allow wrapping where desired: */
.wrap,
.wraplinks a {
    white-space: normal;
}

/* Generic class texhtml class for inline math */
span.texhtml {
    font-family: serif;
    white-space: nowrap;
}

/* Normal font styling for wikitable row headers with scope="row" tag */
.wikitable.plainrowheaders th[scope="row"],
.wikitable.plainrowheaders th[scope="rowgroup"] {
    font-weight: normal;
    /* @noflip */
    text-align: left;
}

/********* General fixes for night mode - please sync any changes here with [[MediaWiki:Vector.css]] *********/

@media screen {
    html.skin-theme-clientpref-night .navbox a:not(.new):not(.mw-selflink):link,
    html.skin-theme-clientpref-night .infobox a:not(.new):not(.mw-selflink):link {
        color: var(--color-progressive) !important;
    }

    /* T370074 */
    html.skin-theme-clientpref-night .mw-parser-output section > figure img,
    html.skin-theme-clientpref-night .mw-parser-output section > div > figure img,
    html.skin-theme-clientpref-night .mw-parser-output > figure img {
        background: var(--background-color-disabled-fixed, #c8ccd1);
    }
}

@media screen and (prefers-color-scheme: dark) {
    html.skin-theme-clientpref-os .navbox a:not(.new):not(.mw-selflink):link,
    html.skin-theme-clientpref-os .infobox a:not(.new):not(.mw-selflink):link {
        color: var(--color-progressive) !important;
    }

    /* T370074 */
    html.skin-theme-clientpref-os .mw-parser-output section > figure img,
    html.skin-theme-clientpref-os .mw-parser-output section > div > figure img,
    html.skin-theme-clientpref-os .mw-parser-output > figure img {
        background: var(--background-color-disabled-fixed, #c8ccd1);
    }
}

/* ===== Fix infobox tràn khung trên bản mobile (skin Minerva) ===== */
.mw-parser-output .infobox {
    width: auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    float: none !important;
    margin: 1em auto !important;
    clear: both;
}

.mw-parser-output .infobox img {
    max-width: 100% !important;
    height: auto !important;
}

.mw-parser-output .infobox table {
    width: 100% !important;
}

.mw-parser-output .infobox td,
.mw-parser-output .infobox th {
    word-break: break-word;
    white-space: normal !important;
}