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) DÜZENLEME --- */ | /* --- 1. SLOGAN (TAGLINE) DÜZENLEME --- */ | ||
#siteSub { | #siteSub { | ||
display: block !important; | display: block !important; | ||
color: #202122 !important; | color: #202122 !important; | ||
font-size: 13px !important; | font-size: 13px !important; | ||
margin-top: 12px !important; | margin-top: 12px !important; | ||
margin-bottom: 15px !important; | margin-bottom: 15px !important; | ||
padding: 0 !important; | padding: 0 !important; | ||
border: none !important; | border: none !important; | ||
font-weight: 500 !important; | font-weight: 500 !important; | ||
opacity: 1 !important; | opacity: 1 !important; | ||
text-decoration: none !important; | text-decoration: none !important; | ||
} | } | ||
/* --- 2. DİL MENÜSÜ | /* --- 2. DİL MENÜSÜ --- */ | ||
#languageDropdown { | #languageDropdown { | ||
position: relative; | position: relative; | ||
margin: 20px | margin: 20px 0; | ||
text-align: center; | text-align: center; | ||
z-index: 1000; | z-index: 1000; | ||
| Line 40: | Line 39: | ||
display: none; | display: none; | ||
position: absolute; | position: absolute; | ||
top: 100%; | |||
left: 0; | |||
background: white; | background: white; | ||
border: 1px solid #ccc; | border: 1px solid #ccc; | ||
border-radius: 5px; | border-radius: 5px; | ||
min-width: | min-width: 140px; | ||
margin-top: 5px; | margin-top: 5px; | ||
box-shadow: 0 2px 5px rgba(0,0,0,0.2); | box-shadow: 0 2px 5px rgba(0,0,0,0.2); | ||
text-align: left; | text-align: left; | ||
z-index: 1001; | |||
} | } | ||
| Line 56: | Line 56: | ||
text-decoration: none; | text-decoration: none; | ||
color: #0078d4; | color: #0078d4; | ||
white-space: nowrap; | |||
} | } | ||
| Line 62: | Line 63: | ||
} | } | ||
/* --- 3. GECE MODU (DARK MODE) | /* --- 3. GECE MODU (DARK MODE) --- */ | ||
html.skin-theme-clientpref-night #siteSub { | html.skin-theme-clientpref-night #siteSub { | ||
color: #eaecf0 !important; | color: #eaecf0 !important; | ||
} | } | ||
Revision as of 20:35, 11 January 2026
/* --- 1. SLOGAN (TAGLINE) DÜZENLEME --- */
#siteSub {
display: block !important;
color: #202122 !important;
font-size: 13px !important;
margin-top: 12px !important;
margin-bottom: 15px !important;
padding: 0 !important;
border: none !important;
font-weight: 500 !important;
opacity: 1 !important;
text-decoration: none !important;
}
/* --- 2. DİL MENÜSÜ --- */
#languageDropdown {
position: relative;
margin: 20px 0;
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;
top: 100%;
left: 0;
background: white;
border: 1px solid #ccc;
border-radius: 5px;
min-width: 140px;
margin-top: 5px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
text-align: left;
z-index: 1001;
}
#languageDropdownContent a {
display: block;
padding: 8px 12px;
text-decoration: none;
color: #0078d4;
white-space: nowrap;
}
#languageDropdownContent a:hover {
background: #f1f1f1;
}
/* --- 3. GECE MODU (DARK MODE) --- */
html.skin-theme-clientpref-night #siteSub {
color: #eaecf0 !important;
}
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;
}