MediaWiki:Common.css

Revision as of 20:35, 12 January 2026 by Pumpkin (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* ========================= */
/* Anasayfa altındaki dil menüsü */
/* ========================= */

#languageDropdown {
    position: relative; /* fixed kaldırıldı */
    top: auto;
    right: auto;
    margin: 20px auto;  /* ortalanmış alt boşluk */
    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; /* absolute yok, flow içinde */
    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;
}

/* Hover ile açılan dropdown */
#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); /* açık/koyu moda otomatik uyum */
    font-weight: 500;
    opacity: 0.85; /* bağırmadan okunur */
}

/* Başlıkla tagline yapışmasın */
#firstHeading {
    margin-bottom: 0;
}

/* ========================= */
/* Core MediaWiki koruma ikonlarını gizle */
/* ({{pp}} zaten var, ikincisine gerek yok) */
/* ========================= */

.mw-indicator-protection-level-sysop,
.mw-indicator-protection-level-autoconfirmed {
    display: none !important;
}