Toggle menu
7
27
38
5.2K
Sanarchive
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Reverted
No edit summary
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* --- 1. SLOGAN (TAGLINE) DÜZENLEME --- */
/* ========================= */
#siteSub {
/* Anasayfa altındaki dil menüsü */
    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 {
#languageDropdown {
     position: relative;
     position: relative;
     margin: 20px 0;
    top: auto;
    right: auto;
     margin: 20px auto;
     text-align: center;
     text-align: center;
     z-index: 1000;
     z-index: 1000;
Line 29: Line 20:
     padding: 5px 10px;
     padding: 5px 10px;
     cursor: pointer;
     cursor: pointer;
    transition: background 0.2s ease;
}
}


Line 38: Line 28:
#languageDropdownContent {
#languageDropdownContent {
     display: none;
     display: none;
     position: absolute;
     position: relative;
     top: 100%;
     right: auto;
    left: 0;
     background: white;
     background: white;
     border: 1px solid #ccc;
     border: 1px solid #ccc;
     border-radius: 5px;
     border-radius: 5px;
     min-width: 140px;
     min-width: 100px;
     margin-top: 5px;
     margin: 5px auto 0 auto;
     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;
}
 
#languageDropdown:hover #languageDropdownContent {
     display: block;
}
}


#languageDropdownContent a {
#languageDropdownContent a {
     display: block;
     display: block;
     padding: 8px 12px;
     padding: 5px 10px;
     text-decoration: none;
     text-decoration: none;
     color: #0078d4;
     color: #0078d4;
    white-space: nowrap;
}
}


Line 63: Line 54:
}
}


/* --- 3. GECE MODU (DARK MODE) --- */
/* ========================= */
html.skin-theme-clientpref-night #siteSub {
/* Tagline (MediaWiki:Tagline) */
    color: #eaecf0 !important;
/* ========================= */
}


html.skin-theme-clientpref-night #languageDropdown button {
#siteSub,
     background: #202122 !important;
.mw-tagline {
     color: #f8f9fa !important;
    display: block;
     border-color: #3c4043 !important;
    margin-top: 6px;
     font-size: 0.9em;
     color: var(--color-base);
     font-weight: 500;
    opacity: 0.85;
}
}


html.skin-theme-clientpref-night #languageDropdownContent {
#firstHeading {
     background: #1a1b1c !important;
     margin-bottom: 0;
    border-color: #3c4043 !important;
}
}


html.skin-theme-clientpref-night #languageDropdownContent a {
/* ========================= */
    color: #8ab4f8 !important;
/* MEDIAWIKI VARSAYILAN KİLİT */
}
/* SADECE VECTOR 2022 LOCK */
/* ========================= */


html.skin-theme-clientpref-night #languageDropdownContent a:hover {
/* Vector 2022 – gerçek suçlu */
     background: #2d2e2f !important;
.mw-protection-indicator-icon--lock {
     display: none !important;
}
}

Latest revision as of 21:00, 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 VARSAYILAN KİLİT */
/* SADECE VECTOR 2022 LOCK */
/* ========================= */

/* Vector 2022 – gerçek suçlu */
.mw-protection-indicator-icon--lock {
    display: none !important;
}