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

MediaWiki interface page
Revision as of 14:08, 11 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.
/* Sağ üst açılır dil menüsü */
#languageDropdown {
    position: fixed;
    top: 50px; /* eskiden 10px'ti, şimdi biraz aşağıya */
    right: 10px;
    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: absolute;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-width: 100px;
    margin-top: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

#languageDropdownContent a:hover {
    background: #f1f1f1;
}