MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
(Undo revision 162 by Lionir (talk))
Tag: Undo
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS taken from https://starcitizen.tools/Module:InfoboxNeue/styles.css */
.infobox {
.infobox {
    margin-bottom: var( --space-md );
  border-radius:var(--border-radius--medium);
    width: 100%;
  background-color:var(--color-surface-2);
    max-width: 400px;
  padding: 20px;
    border-radius: var( --border-radius--medium );
  width: 100%;
    background-color: var( --color-surface-2 );
  margin-top: 1em;
    font-size: 0.875rem;
    line-height: var( --line-height-sm );
}
 
.infobox.mw-collapsed {
    background-color: transparent;
    box-shadow: inset 0 0 0 1px var( --border-color-base );
}
 
.infobox__image img {
    /* Prevent overflow */
    max-width: 100%;
    height: auto;
}
 
/* Provide background color for transparent SVGs */
.infobox__image img[src$=".svg"] {
    background: #eaecf0;
}
}
 
.infobox-title {
.infobox__snippet,
  color:var(--color-base--emphasized);
.infobox__indicator,
  font-weight:var(--font-weight-semibold);
.infobox__header,
  font-size:calc(var(--font-size-h3)*1.5);
.infobox__sectionHeader,
  text-align:center;
.infobox__sectionContent {
    padding-left: var( --space-md );
    padding-right: var( --space-md );
}
}
 
.infobox-image {
.infobox__snippet,
  max-width:100%;
.infobox__indicator {
  height:auto;
    padding-top: var( --space-sm );
    padding-bottom: var( --space-sm );
}
}
 
.infobox-table td {
.infobox__snippet {
  padding-block:3px;
    display: flex;
    gap: var( --space-xs );
    align-items: center;
    white-space: nowrap;
}
}
 
.infobox-table th {
.infobox__snippet.mw-collapsible-toggle {
  color:var(--color-base--subtle);
    /* Disable default style */
  font-weight:var(--font-weight-semibold);
    float: none;
  text-align:left;
    border-top-left-radius: var( --border-radius--medium );
  padding-right: 15px;
    border-top-right-radius: var( --border-radius--medium );
}
}
 
.infobox-table th {
.infobox__snippet.mw-collapsible-toggle.mw-collapsible-toggle-collapsed {
  width: 40%;
    border-bottom-left-radius: var( --border-radius--medium );
    border-bottom-right-radius: var( --border-radius--medium );
}
}
 
.infobox-table td {
.infobox__snippet.mw-collapsible-toggle:hover {
  width: 60%;
    background-color: var( --background-color-quiet--hover );
}
}


/* Might as well steal from skin */
@media screen and (min-width:720px) {
.infobox__snippet.mw-collapsible-toggle .mw-ui-icon-wikimedia-collapse {
  .infobox {
    width: 0.875rem;
     max-width: 400px;
    height: 0.875rem;
     float:right;
    flex-shrink: 0;
  }
    transition: var( --transition-menu );
    transition-property: transform;
}
 
/* Might as well steal from skin */
.infobox__snippet.mw-collapsible-toggle.mw-collapsible-toggle-collapsed .mw-ui-icon-wikimedia-collapse {
    transform: rotate( 180deg );
}
 
.infobox__snippet .infobox__desc {
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 0.875rem;
}
 
.infobox__indicator {
    background-color: var( --color-surface-3 );
}
 
.infobox__indicator.infobox__indicator--red {
    /* color-destructive */
    background-color: rgba( 221, 51, 51, 0.1 );
    color: rgba( 221, 51, 51, 1 );
}
 
.infobox__indicator.infobox__indicator--yellow {
    /* color-warning */
    background-color: rgba( 255, 204, 51, 0.1 );
    color: rgba( 255, 204, 51, 1 );
}
 
.infobox__indicator.infobox__indicator--green {
    /* color-success */
    background-color: rgba( 0, 175, 137, 0.1 );
    color: rgba( 0, 175, 137, 1 );
}
 
.infobox__header,
.infobox__sectionHeader {
    line-height: var( --line-height-xs );
}
 
.infobox__header {
    margin-top: var( --space-lg );
    margin-bottom: var( --space-md );
    display: flex;
    gap: var( --space-sm );
}
 
.infobox__section,
.infobox__sectionHeader,
.infobox__sectionContent {
    margin-top: var( --space-md );
    margin-bottom: var( --space-md );
}
 
.infobox__title,
.infobox__sectionTitle {
    color: var( --color-base--emphasized );
    font-weight: var( --font-weight-semibold );
}
 
.infobox__title {
    font-size: var( --font-size-h3 );
}
 
.infobox__sectionSubtitle {
    margin-top: 2px;
}
 
.infobox__section + .infobox__section:not( .infobox__section--noborder ) {
    border-top: 1px solid var( --border-color-base );
}
 
/* Use padding to prevent margin collapse when there is no footer */
.infobox__content > .infobox__section:last-child {
    margin-bottom: 0;
    padding-bottom: var( --space-xs );
}
 
.infobox__sectionTitle {
    font-size: 1rem;
}
 
.infobox__sectionSubtitle {
    color: var( --color-base--subtle );
}
 
.infobox__sectionContent {
    display: grid;
    gap: var( --space-sm );
}
 
.infobox__item {
    display: grid;
    gap: 2px var( --space-xs );
    grid-auto-rows: max-content;
}
 
.infobox__badge {
    place-content: center;
    text-align: center;
    box-shadow: inset 0 0 0 1px var( --border-color-base );
    border-radius: var( --border-radius--medium );
    padding: var( --space-xs ) var( --space-sm );
    font-weight: var( --font-weight-medium );
    background-color: var( --color-surface-2--active );
}
 
.infobox__desc,
.infobox__label {
    color: var( --color-base--subtle );
    font-size: 0.8125rem;
}
 
.infobox__label {
    letter-spacing: 0.05em;
}
 
.infobox__grid--row .infobox__label,
.infobox__grid--row .infobox__desc {
    font-size: 0.875rem;
}
 
.infobox__data {
    font-weight: var( --font-weight-medium );
}
 
.infobox__footer {
    margin-top: var( --space-lg );
    border-top: 1px solid var( --border-color-base );
    background-color: var( --color-surface-2--active );
}
 
.infobox__footer > .infobox__section {
    margin: 0;
    padding: var( --space-md );
    display: grid;
    gap: var( --space-xxs );
}
 
.infobox__footer > .infobox__section .infobox__label,
.infobox__footer > .infobox__section .infobox__data {
    font-size: 0.8125rem;
}
 
.infobox__button {
    position: relative;
    border-bottom-left-radius: var( --border-radius--medium );
    border-bottom-right-radius: var( --border-radius--medium );
    padding: var( --space-sm ) var( --space-md );
    background-color: var( --color-primary );
    cursor: pointer;
}
 
.infobox__button:hover {
    background-color: var( --color-primary--hover );
}
 
.infobox__buttonLabel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var( --space-xs );
    color: #fff;
    font-weight: var( --font-weight-medium );
}
 
/* Fake button with link element */
.infobox__buttonLink {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
 
.infobox__buttonLink a {
    display: block;
    height: 100%;
    font-size: 0;
}
 
.infobox__buttonCard {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    background-color: var( --color-surface-1 );
    border-radius: var( --border-radius--medium );
    box-shadow: var( --box-shadow-dialog );
    opacity: 0;
    transition: var( --transition-menu );
    transition-property: opacity, transform;
    visibility: hidden;
    transform: translateY( -20px );
}
 
.infobox__button:hover > .infobox__buttonCard {
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: none;
    cursor: auto;
}
 
.infobox__linkButton a {
    padding: var( --space-xxs ) var( --space-xs );
    display: block;
    border-radius: var( --border-radius--small );
    text-decoration: none !important;
}
 
/* Hide external URL icon */
.infobox__linkButton a:after {
    content: none;
}
 
.infobox__linkButton a:hover {
    background-color: var( --background-color-quiet--hover );
}
 
.infobox__linkButton a:active {
    background-color: var( --background-color-quiet--active );
}
 
.infobox__section--linkButtons .infobox__data {
    margin-top: var( --space-xxs );
    margin-left: -8px; /* negative space-xs */
    margin-right: -8px; /* negative space-xs */
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
 
.infobox__buttonLabel img[src$=".svg"] {
    filter: invert( 1 );
}
 
.infobox.mw-collapsible:before {
    /* Avoid collapse button flash */
    content: none !important;
}
 
@media only screen and ( max-width: 639px ) {
    .infobox {
        margin-right: auto;
        margin-left: auto;
     }
}
 
/* Tabber styles */
.infobox__section--tabber > .infobox__sectionHeader {
    margin-bottom: var( --space-xxs );
}
 
.infobox__section--tabber > .infobox__sectionContent {
    padding-left: 0;
    padding-right: 0;
}
 
/* Spacing is handled by tabber */
.infobox__section--tabber .infobox__sectionContent {
    margin-top: 0;
    margin-bottom: 0;
}
 
 
.infobox__section--tabber .tabber .infobox__section {
    margin-top: var( --space-sm );
     margin-bottom: 0;
}
 
/* Match padding in the rest of the infobox */
.infobox__section--tabber .tabber__tab {
    padding-left: var( --space-md );
    padding-right: var( --space-md );
}
 
/* CSS grid utility classes */
.infobox__grid--row {
    grid-auto-flow: column;
}
 
.infobox__grid--cols-2 {
    grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
}
 
.infobox__grid--cols-3 {
    grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
}
 
.infobox__grid--cols-4 {
    grid-template-columns: repeat( 4, minmax( 0, 1fr ) );
}
 
.infobox__grid--col-span-2 {
    grid-column: span 2;
}
 
.infobox__grid--col-span-3 {
    grid-column: span 3;
}
 
.infobox__grid--col-span-4 {
    grid-column: span 4;
}
 
.infobox__grid--space-between {
    justify-content: space-between;
}
}

Latest revision as of 21:32, 21 January 2024

.infobox {
  border-radius:var(--border-radius--medium);
  background-color:var(--color-surface-2);
  padding: 20px;
  width: 100%;
  margin-top: 1em;
}
.infobox-title {
  color:var(--color-base--emphasized);
  font-weight:var(--font-weight-semibold);
  font-size:calc(var(--font-size-h3)*1.5);
  text-align:center;
}
.infobox-image {
  max-width:100%;
  height:auto;
}
.infobox-table td {
  padding-block:3px;
}
.infobox-table th {
  color:var(--color-base--subtle);
  font-weight:var(--font-weight-semibold);
  text-align:left;
  padding-right: 15px;
}
.infobox-table th {
  width: 40%;
}
.infobox-table td {
  width: 60%;
}

@media screen and (min-width:720px) {
  .infobox {
    max-width: 400px;
    float:right;
  }
}