MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 4: Line 4:


#languageDropdown {
#languageDropdown {
     position: relative;
     position: relative; /* fixed kaldırıldı */
     top: auto;
     top: auto;
     right: auto;
     right: auto;
     margin: 20px auto;
     margin: 20px auto; /* ortalanmış alt boşluk */
     text-align: center;
     text-align: center;
     z-index: 1000;
     z-index: 1000;
Line 28: Line 28:
#languageDropdownContent {
#languageDropdownContent {
     display: none;
     display: none;
     position: relative;
     position: relative; /* absolute yok, flow içinde */
     right: auto;
     right: auto;
     background: white;
     background: white;
Line 39: Line 39:
}
}


/* Hover ile açılan dropdown */
#languageDropdown:hover #languageDropdownContent {
#languageDropdown:hover #languageDropdownContent {
     display: block;
     display: block;
Line 63: Line 64:
     margin-top: 6px;
     margin-top: 6px;
     font-size: 0.9em;
     font-size: 0.9em;
     color: var(--color-base);
     color: var(--color-base); /* açık/koyu moda otomatik uyum */
     font-weight: 500;
     font-weight: 500;
     opacity: 0.85;
     opacity: 0.85;
}
}


/* Başlıkla tagline yapışmasın */
#firstHeading {
#firstHeading {
     margin-bottom: 0;
     margin-bottom: 0;
Line 73: Line 75:


/* ========================= */
/* ========================= */
/* MEDIAWIKI KORUMA İKONLARI */
/* MEDIAWIKI VARSAYILAN KİLİT */
/* {{pp}} KALSIN – CORE SİYAH KİLİT DEFOLSUN */
/* {{pp}} KALSIN – CORE SİYAH KİLİT GİTSİN */
/* ========================= */
/* ========================= */


/* Indicator'lar genel olarak açık */
/* Genel protected page indicator */
.mw-indicator {
.mw-indicator-protectedpage {
    display: inline-flex !important;
}
 
/* Klasik core kilitler */
.mw-indicator.mw-indicator-protected,
.mw-indicator-protection-level-sysop,
.mw-indicator-protection-level-autoconfirmed {
     display: none !important;
     display: none !important;
}
}


/* Vector 2022 başlık çubuğundaki siyah kilit */
/* Vector 2022 başlık çubuğu kilitleri */
.vector-page-titlebar .mw-indicator-protectedpage,
.vector-page-titlebar .mw-page-protection-indicator,
.vector-page-titlebar .mw-page-protection-indicator,
.vector-page-titlebar .mw-protection-indicator,
.vector-page-titlebar .mw-protection-indicator {
.vector-page-titlebar .mw-indicator-protected {
    display: none !important;
}
 
/* SVG olarak gelen inatçı kilitler (son mermi) */
.vector-page-titlebar svg[aria-label*="protected"],
.vector-page-titlebar svg[title*="protected"] {
     display: none !important;
     display: none !important;
}
}