MediaWiki:Common.css: Difference between revisions

From ASXResearch
Jump to navigation Jump to search
No edit summary
No edit summary
 
(40 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Shift page content below banner */
a {
body {
  text-decoration: none !important;
    margin-top: 120px !important;
}
}


/* Move all UI elements down including tabs */
a:hover {
#mw-page-base {
  text-decoration: underline; /* optional hover effect */
    padding-top: 120px !important;
}
}


/* Properly pinned header banner */
#f-poweredbyico img {
#asx-top-banner {
  display: none !important;
    position: fixed;
    top: 0;
    left: 150px;
    width: 120%;
    background: transparent;
    margin: 0;
    padding: 0;
    z-index: 9999;
}
}


/* Scale and constrain banner image */
#f-poweredbyico::after {
#asx-top-banner img {
  content: "";
    display: block;
  display: inline-block;
    height: auto;
  width: 88px;
    max-height: 90px;
  height: 31px;
    object-fit: contain;
  background-image: url("/resources/assets/poweredby_asxresearch_88x31.png");
    margin: 0;
  background-size: contain;
    padding: 0;
  background-repeat: no-repeat;
    float: left;
}
}


/* Transparent top tabs */
#mw-panel-right {
.vector-tabs,
  font-family: sans-serif;
.vector-tabs li,
  padding: 10px;
.vector-tabs li.selected,
.vector-tabs li.selected a,
.vector-tabs li a {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    text-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 10000 !important;
}
 
/* Highlight for active tab */
.vector-tabs li.selected a {
    color: red !important;
}
 
/* 🔥 FORCE tabs down with absolute position override */
.vector-tabs {
    position: relative !important;
    top: 120px !important;
    z-index: 10000 !important;
}
}

Latest revision as of 06:44, 31 May 2025

a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: underline; /* optional hover effect */
}

#f-poweredbyico img {
  display: none !important;
}

#f-poweredbyico::after {
  content: "";
  display: inline-block;
  width: 88px;
  height: 31px;
  background-image: url("/resources/assets/poweredby_asxresearch_88x31.png");
  background-size: contain;
  background-repeat: no-repeat;
}

#mw-panel-right {
  font-family: sans-serif;
  padding: 10px;
}