MediaWiki:Common.css: Difference between revisions

From ASXResearch
Jump to navigation Jump to search
No edit summary
Tag: Manual revert
No edit summary
Line 1: Line 1:
/* ASX Header */
/* ASX Header Styling */
#asx-top-banner {
#asx-top-banner {
  width: 120%;
    position: absolute;
  background: #fff;
    top: 0;
  text-align: left;
    left: 0;
  padding: 0;
    width: 100%;
  margin: 0;
    margin: 0;
  border-bottom: 1px solid #ccc;
    padding: 0;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    background: transparent;
  z-index: 9999;
    z-index: 9999;
}
}


/* Optional image scaling control if needed */
#asx-top-banner img {
#asx-top-banner img {
  display: block;
    display: block;
  height: auto;
    width: 100%;
  max-width: 680px;
    height: auto;
  margin-left: 180px;
    margin: 0;
  margin-top: 2px;
    padding: 0;
}
}


/* TRUE full transparency for top vector tabs */
/* Clean transparent top tabs */
.vector-tabs,
.vector-tabs,
.vector-tabs li,
.vector-tabs li,
Line 25: Line 26:
.vector-tabs li.selected a,
.vector-tabs li.selected a,
.vector-tabs li a {
.vector-tabs li a {
  background: transparent !important;
    background: transparent !important;
  border: none !important;
    border: none !important;
  box-shadow: none !important;
    box-shadow: none !important;
  filter: none !important;
    filter: none !important;
  backdrop-filter: none !important;
    backdrop-filter: none !important;
  text-shadow: none !important;
    text-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 10000 !important;
}
}


/* Optional: make selected tab text red */
/* Red highlight for selected tab */
.vector-tabs li.selected a {
.vector-tabs li.selected a {
  color: red !important;
    color: red !important;
}
}

Revision as of 14:05, 27 May 2025

/* ASX Header Styling */
#asx-top-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    z-index: 9999;
}

/* Optional image scaling control if needed */
#asx-top-banner img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

/* Clean transparent top tabs */
.vector-tabs,
.vector-tabs li,
.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;
}

/* Red highlight for selected tab */
.vector-tabs li.selected a {
    color: red !important;
}