MediaWiki:Vector-2022.css: Difference between revisions

From Practices and Politics of Representation
Jump to navigation Jump to search
No edit summary
Translate CSS comments to English
 
Line 1: Line 1:
/* GENEL ARKA PLAN VE METİN */
/* GENERAL BACKGROUND AND TEXT */
body,
body,
.vector-body,
.vector-body,
Line 9: Line 9:
}
}


/* İÇERİK ALANI */
/* CONTENT AREA */
#content,
#content,
.vector-body,
.vector-body,
Line 19: Line 19:
}
}


/* SOL MENÜ & SAĞ PANEL */
/* LEFT MENU & RIGHT PANEL */
.vector-sidebar,
.vector-sidebar,
.vector-toc,
.vector-toc,
Line 44: Line 44:
}
}


/* LİNKLER */
/* LINKS */
a,
a,
a:link {
a:link {
Line 57: Line 57:
}
}


/* SEÇİCİLER, DROPDOWNLAR, SETTINGS PANELİ */
/* SELECTORS, DROPDOWNS, SETTINGS PANEL */
.vector-settings,
.vector-settings,
.vector-settings * {
.vector-settings * {

Latest revision as of 12:17, 7 September 2026

/* GENERAL BACKGROUND AND TEXT */
body,
.vector-body,
.vector-page-content,
.vector-feature-languageinheader-enabled .mw-header,
.client-js {
  background-color: #121212 !important;
  color: #e0e0e0 !important;
}

/* CONTENT AREA */
#content,
.vector-body,
.mw-content-container,
.mw-body,
.mw-parser-output {
  background-color: #181818 !important;
  color: #e0e0e0 !important;
}

/* LEFT MENU & RIGHT PANEL */
.vector-sidebar,
.vector-toc,
.vector-page-tools,
.vector-page-tools .vector-menu,
#mw-panel,
#p-navigation,
#p-interaction,
#p-tb,
#p-lang,
#p-personal,
.vector-settings {
  background-color: #1b1b1b !important;
  color: #ddd !important;
  border: none !important;
}

/* HEADER BAR / SEARCH */
.vector-header-container,
.vector-search-box,
.vector-user-menu {
  background-color: #1e1e1e !important;
  color: #ddd !important;
}

/* LINKS */
a,
a:link {
  color: #80d8ff;
}
a:visited {
  color: #ce93d8;
}
a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* SELECTORS, DROPDOWNS, SETTINGS PANEL */
.vector-settings,
.vector-settings * {
  background-color: #1e1e1e !important;
  color: #ccc !important;
  border: none !important;
}

input,
select,
textarea,
button,
.mw-ui-button {
  background-color: #2c2c2c !important;
  color: #eee !important;
  border: 1px solid #444 !important;
}

/* CODE BLOCKS */
pre,
code {
  background-color: #202020 !important;
  color: #ccc !important;
}

/* FOOTER */
#footer,
#footer-info,
#footer-icons {
  background-color: #1a1a1a !important;
  color: #aaa !important;
}