MediaWiki:Common.css: Difference between revisions
MediaWiki interface page
More languages
More actions
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
| Line 1: | Line 1: | ||
/* --- 1. SLOGAN (TAGLINE) | /* --- 1. SLOGAN (TAGLINE) DÜZENLEME --- */ | ||
/* | /* Yazıyı netleştirir ve sekmelerin altından kurtarır */ | ||
#siteSub { | #siteSub { | ||
display: block !important; | display: block !important; | ||
font-size: | color: #202122 !important; /* Soluk gri yerine tam net koyu renk */ | ||
font-size: 13px !important; | |||
margin: | margin-top: 12px !important; /* Sekmelerden aşağı indirerek çizgiyle çakışmayı önler */ | ||
margin-bottom: 15px !important; | |||
padding: 0 !important; | padding: 0 !important; | ||
border: none !important; | border: none !important; | ||
font-weight: | font-weight: 500 !important; /* Yazıyı biraz daha okunur yapar */ | ||
opacity: 1 !important; /* Eğer sistemden gelen bir şeffaflık varsa iptal eder */ | |||
text-decoration: none !important; /* Üstündeki çizgiyi kaldırır */ | |||
} | } | ||
/* --- 2. | /* --- 2. DİL MENÜSÜ KODLARI --- */ | ||
#languageDropdown { | #languageDropdown { | ||
position: relative; | position: relative; | ||
| Line 36: | Line 39: | ||
#languageDropdownContent { | #languageDropdownContent { | ||
display: none; | display: none; | ||
position: absolute; | position: absolute; | ||
left: 50%; | left: 50%; | ||
transform: translateX(-50%); | transform: translateX(-50%); | ||
| Line 60: | Line 63: | ||
/* --- 3. GECE MODU (DARK MODE) UYUMU --- */ | /* --- 3. GECE MODU (DARK MODE) UYUMU --- */ | ||
html.skin-theme-clientpref-night #siteSub { | html.skin-theme-clientpref-night #siteSub { | ||
color: # | color: #eaecf0 !important; /* Karanlık modda beyaz/gri arası net renk */ | ||
} | } | ||
Revision as of 20:01, 11 January 2026
/* --- 1. SLOGAN (TAGLINE) DÜZENLEME --- */
/* Yazıyı netleştirir ve sekmelerin altından kurtarır */
#siteSub {
display: block !important;
color: #202122 !important; /* Soluk gri yerine tam net koyu renk */
font-size: 13px !important;
margin-top: 12px !important; /* Sekmelerden aşağı indirerek çizgiyle çakışmayı önler */
margin-bottom: 15px !important;
padding: 0 !important;
border: none !important;
font-weight: 500 !important; /* Yazıyı biraz daha okunur yapar */
opacity: 1 !important; /* Eğer sistemden gelen bir şeffaflık varsa iptal eder */
text-decoration: none !important; /* Üstündeki çizgiyi kaldırır */
}
/* --- 2. DİL MENÜSÜ KODLARI --- */
#languageDropdown {
position: relative;
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;
transition: background 0.2s ease;
}
#languageDropdown button:hover {
background: #e1e1e1;
}
#languageDropdownContent {
display: none;
position: absolute;
left: 50%;
transform: translateX(-50%);
background: white;
border: 1px solid #ccc;
border-radius: 5px;
min-width: 120px;
margin-top: 5px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
text-align: left;
}
#languageDropdownContent a {
display: block;
padding: 8px 12px;
text-decoration: none;
color: #0078d4;
}
#languageDropdownContent a:hover {
background: #f1f1f1;
}
/* --- 3. GECE MODU (DARK MODE) UYUMU --- */
html.skin-theme-clientpref-night #siteSub {
color: #eaecf0 !important; /* Karanlık modda beyaz/gri arası net renk */
}
html.skin-theme-clientpref-night #languageDropdown button {
background: #202122 !important;
color: #f8f9fa !important;
border-color: #3c4043 !important;
}
html.skin-theme-clientpref-night #languageDropdownContent {
background: #1a1b1c !important;
border-color: #3c4043 !important;
}
html.skin-theme-clientpref-night #languageDropdownContent a {
color: #8ab4f8 !important;
}
html.skin-theme-clientpref-night #languageDropdownContent a:hover {
background: #2d2e2f !important;
}