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
Tag: Reverted
Line 1: Line 1:
/* --- 1. SLOGAN (TAGLINE) DÜZENLEME --- */
/* --- 1. SLOGAN (TAGLINE) DÜZENLEME --- */
/* Yazıyı netleştirir ve sekmelerin altından kurtarır */
#siteSub {
#siteSub {
     display: block !important;
     display: block !important;
     color: #202122 !important; /* Soluk gri yerine tam net koyu renk */
     color: #202122 !important;
     font-size: 13px !important;
     font-size: 13px !important;
     margin-top: 12px !important; /* Sekmelerden aşağı indirerek çizgiyle çakışmayı önler */
     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; /* Yazıyı biraz daha okunur yapar */
     font-weight: 500 !important;
     opacity: 1 !important; /* Eğer sistemden gelen bir şeffaflık varsa iptal eder */
     opacity: 1 !important;
     text-decoration: none !important; /* Üstündeki çizgiyi kaldırır */
     text-decoration: none !important;
}
}


/* --- 2. DİL MENÜSÜ KODLARI --- */
/* --- 2. DİL MENÜSÜ --- */
#languageDropdown {
#languageDropdown {
     position: relative;
     position: relative;
     margin: 20px auto;
     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;
     left: 50%;
     top: 100%;
     transform: translateX(-50%);
     left: 0;
     background: white;
     background: white;
     border: 1px solid #ccc;
     border: 1px solid #ccc;
     border-radius: 5px;
     border-radius: 5px;
     min-width: 120px;
     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) UYUMU --- */
/* --- 3. GECE MODU (DARK MODE) --- */
html.skin-theme-clientpref-night #siteSub {
html.skin-theme-clientpref-night #siteSub {
     color: #eaecf0 !important; /* Karanlık modda beyaz/gri arası net renk */
     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;
}