MediaWiki:Common.css: Difference between revisions
MediaWiki interface page
More languages
More actions
No edit summary |
No edit summary |
||
| Line 74: | Line 74: | ||
/* ========================= */ | /* ========================= */ | ||
/* MEDIAWIKI KORUMA İKONLARI */ | /* MEDIAWIKI KORUMA İKONLARI */ | ||
/* {{pp}} KALSIN – CORE SİYAH KİLİT | /* {{pp}} KALSIN – CORE SİYAH KİLİT DEFOLSUN */ | ||
/* ========================= */ | /* ========================= */ | ||
/* | /* Indicator'lar genel olarak açık */ | ||
.mw-indicator { | .mw-indicator { | ||
display: inline-flex !important; | display: inline-flex !important; | ||
} | } | ||
/* | /* Klasik core kilitler */ | ||
.mw-indicator.mw-indicator-protected, | .mw-indicator.mw-indicator-protected, | ||
.mw-indicator-protection-level-sysop, | .mw-indicator-protection-level-sysop, | ||
.mw-indicator-protection-level-autoconfirmed { | .mw-indicator-protection-level-autoconfirmed { | ||
display: none !important; | |||
} | |||
/* Vector 2022 – başlık çubuğundaki siyah kilit */ | |||
.vector-page-titlebar .mw-page-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; | ||
} | } | ||
Revision as of 20:43, 12 January 2026
/* ========================= */
/* Anasayfa altındaki dil menüsü */
/* ========================= */
#languageDropdown {
position: relative;
top: auto;
right: auto;
margin: 20px auto;
text-align: center;
z-index: 1000;
font-family: sans-serif;
font-size: 14px;
}
#languageDropdown button {
background: #f8f9fa;
border: 1px solid #ccc;
border-radius: 5px;
padding: 5px 10px;
cursor: pointer;
}
#languageDropdown button:hover {
background: #e1e1e1;
}
#languageDropdownContent {
display: none;
position: relative;
right: auto;
background: white;
border: 1px solid #ccc;
border-radius: 5px;
min-width: 100px;
margin: 5px auto 0 auto;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
text-align: left;
}
#languageDropdown:hover #languageDropdownContent {
display: block;
}
#languageDropdownContent a {
display: block;
padding: 5px 10px;
text-decoration: none;
color: #0078d4;
}
#languageDropdownContent a:hover {
background: #f1f1f1;
}
/* ========================= */
/* Tagline (MediaWiki:Tagline) */
/* ========================= */
#siteSub,
.mw-tagline {
display: block;
margin-top: 6px;
font-size: 0.9em;
color: var(--color-base);
font-weight: 500;
opacity: 0.85;
}
#firstHeading {
margin-bottom: 0;
}
/* ========================= */
/* MEDIAWIKI KORUMA İKONLARI */
/* {{pp}} KALSIN – CORE SİYAH KİLİT DEFOLSUN */
/* ========================= */
/* Indicator'lar genel olarak açık */
.mw-indicator {
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;
}
/* Vector 2022 – başlık çubuğundaki siyah kilit */
.vector-page-titlebar .mw-page-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;
}