Toggle menu
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
Adding style elements to allow drop-down menus.
Tag: wikieditor
(No difference)

Revision as of 13:21, 20 May 2023

/* CSS placed here will be applied to all skins */
.ea-wiki-dropdown-container{
   display: flex;
   position: absolute;
}

.ea-wiki-dropdown{
   background-color: #1d2330;
   border-radius: 5px;
   color: white;
   float: left;
   padding-bottom: 5px;
   height: 1.5em;
   margin: 3px;
   overflow: hidden;
   padding-left: 20px;
   padding-right: 20px;
   padding-top: 5px;
   text-align: center;
}

.ea-wiki-dropdown:hover{
   background-color: #4d5350;
   color: #e7b439;
   height: auto;
}