MediaWiki:Common.css: Difference between revisions

From AbhiprayaVedi
mNo edit summary
mNo edit summary
Line 3: Line 3:
     display: none !important;
     display: none !important;
}
}
/* Base Typography */
/* ================ BASE TYPOGRAPHY ================ */
 
:lang(en) {
:lang(en) {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", sans-serif;
}
 
/* Strong Malayalam Font Priority */
:lang(ml),
:lang(ml) * {
    font-family: 'Manjari', 'Meera', 'Rachana', 'AnjaliOldLipi', 'Noto Sans Malayalam', 'Nirmala UI', sans-serif !important;
    line-height: 1.78 !important;
}
}


:lang(ml) {
/* Specific overrides for article content */
  font-family: 'Manjari', 'Meera', 'Rachana', 'AnjaliOldLipi', 'Noto Sans Malayalam', sans-serif;
.article-content:lang(ml),
  line-height: 1.75;
.intro-box:lang(ml),
.highlight-box:lang(ml) {
    font-family: 'Manjari', 'Meera', 'Rachana', 'Noto Sans Malayalam', sans-serif !important;
}
}



Revision as of 07:52, 31 May 2026

/* Hide namespace subtitle for published articles */
.mw-displaytitle-subtitle {
    display: none !important;
}
/* ================ BASE TYPOGRAPHY ================ */

:lang(en) {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", sans-serif;
}

/* Strong Malayalam Font Priority */
:lang(ml),
:lang(ml) * {
    font-family: 'Manjari', 'Meera', 'Rachana', 'AnjaliOldLipi', 'Noto Sans Malayalam', 'Nirmala UI', sans-serif !important;
    line-height: 1.78 !important;
}

/* Specific overrides for article content */
.article-content:lang(ml),
.intro-box:lang(ml),
.highlight-box:lang(ml) {
    font-family: 'Manjari', 'Meera', 'Rachana', 'Noto Sans Malayalam', sans-serif !important;
}

/* Global minor tweaks only */
body {
  line-height: 1.7;
}

/* Main Article Title (Skin H1) */
#firstHeading,
.mw-first-heading {
    font-size: 2.4em !important;
    font-weight: bold !important;
    margin-bottom: 0.4em !important;
    color: #222;
    border-bottom: solid 4px #36c;
}
/* Malayalam support */
:lang(ml) #firstHeading,
:lang(ml) .mw-first-heading {
    font-family: 'Manjari', 'Meera', 'Rachana', 'Noto Sans Malayalam', sans-serif;
}