MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
(Created page with "→‎CSS placed here will be applied to all skins: #wpTextbox1 { width: 100%; }")
 
No edit summary
 
(11 intermediate revisions by 2 users not shown)
Line 4: Line 4:
   width: 100%;
   width: 100%;
}
}
.tooltipshown {
    position:relative
}
.tooltiptext {
    position: absolute;
    display: block;
    z-index: 2;
    width: 250px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    white-space: normal;
    text-align: left;
    transition: all 0.2s;
    border: 1px solid #aaa;
    background-color: #333333;
}
.tooltipshown:hover > .tooltiptext {
    visibility: visible;
    opacity: 1
}
.tabs-input {
  display: none !important;
}
#pt-createaccount {
  display: none !important;
}
#pt-anonuserpage:after {
    content: "Click below to log in with CM-SS13 forums.";
    display: block;
    padding-top: 0.5em;
}
/* mw.loader.load('//kit.fontawesome.com/90136e7f9b.js') */

Latest revision as of 04:22, 9 September 2023

/* CSS placed here will be applied to all skins */

#wpTextbox1 {
  width: 100%;
}


.tooltipshown {
    position:relative
}

.tooltiptext {
    position: absolute;
    display: block;
    z-index: 2;
    width: 250px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    white-space: normal;
    text-align: left;
    transition: all 0.2s;
    border: 1px solid #aaa;
    background-color: #333333;
}

.tooltipshown:hover > .tooltiptext {
    visibility: visible;
    opacity: 1
}

.tabs-input {
  display: none !important;
}

#pt-createaccount {
  display: none !important;
}

#pt-anonuserpage:after {
    content: "Click below to log in with CM-SS13 forums.";
    display: block;
    padding-top: 0.5em;
}

/* mw.loader.load('//kit.fontawesome.com/90136e7f9b.js') */