Jump to content

Template:CustomTabs/styles.css: Difference between revisions

From The Petit Planet Wiki
Added skin-theme-clientpref-os
Stevium changed the content model of the page Template:CustomTabs/styles.css from "CSS" to "Sanitized CSS": TemplateStyles
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* For Template:CustomTabs */
.custom-tabs {
 
    display: flex;
/* Hide dummy infobox layout junk on desktop */
    flex-direction: row;
aside.pi-theme-dummy,
    gap: 5px;
aside.pi-theme-dummy ~ aside.portable-infobox + p > br:first-child,
    width: 100%;
aside.pi-theme-dummy ~ aside.portable-infobox + p:empty + p > br:first-child {
    margin: 5px 0;
  display: none;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
}


.custom-tabs {
.custom-tabs > span {
  display: flex;
  flex-direction: row;
  gap: 5px;
  width: 100%;
  margin: 5px 0;
  flex-wrap: wrap;
  justify-content: space-evenly;
 
  > span {
     border-radius: 10px;
     border-radius: 10px;
     display: flex;
     display: flex;
Line 25: Line 17:
     text-align: center;
     text-align: center;
     transition: 0.25s;
     transition: 0.25s;
  }
}


  a,
.custom-tabs a,
  .selflink,
.custom-tabs .selflink,
  span.new {
.custom-tabs span.new {
     display: flex;
     display: flex;
     width: 100%;
     width: 100%;
Line 39: Line 31:
     text-align: center;
     text-align: center;
     font-weight: 900 !important;
     font-weight: 900 !important;
  }
}


  /* Apply Color Scheme */
.custom-tabs span.active-tab {
  span {
    background-color: var(--color-accent);
    &.active-tab {
}
      background-color: var(--active-tab-background-color);


      strong,
.custom-tabs span.active-tab strong,
      a:not(.new) {
.custom-tabs span.active-tab a:not(.new) {
        color: var(--active-tab-color);
    color: var(--color-accent-text);
      }
}
    }
 
    &.inactive-tab {
      background: var(--inactive-tab-background-color);


      a:not(.new) {
.custom-tabs span.inactive-tab {
        color: var(--inactive-tab-color);
    background: var(--background-color-1);
      }
 
      &:hover {
        background: var(--inactive-tab-hover-background-color);
 
        a:not(.new) {
          color: var(--inactive-tab-hover-color);
        }
      }
    }
  }
}
}


/* Mobile 2-column layout */
.custom-tabs span.inactive-tab a:not(.new),
.skin-fandommobile {
.custom-tabs span.inactive-tab:hover a:not(.new) {
  .custom-tabs {
    color: var(--color-base);
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-auto-flow: row;
 
    a,
    .selflink,
    span.new {
      font-size: 90%;
    }
  }
}
}


/* Default Color Scheme */
.custom-tabs span.inactive-tab:hover {
.custom-tabs-default {
     background: var(--background-color-3);
  --active-tab-background-color: var(--theme-accent-color);
  --active-tab-color: var(--page-text-color);
  --inactive-tab-background-color: var(--theme-color-1);
  --inactive-tab-color: var(--page-text-color);
  --inactive-tab-hover-background-color: var(--theme-color-3);
  --inactive-tab-hover-color: var(--inactive-tab-color);
 
  .skin-theme-clientpref-night &, .skin-theme-clientpref-os & {
     --active-tab-color: var(--page-background-color);
  }
}
}

Latest revision as of 15:15, 25 November 2025

.custom-tabs {
    display: flex;
    flex-direction: row;
    gap: 5px;
    width: 100%;
    margin: 5px 0;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.custom-tabs > span {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    transition: 0.25s;
}

.custom-tabs a,
.custom-tabs .selflink,
.custom-tabs span.new {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 900 !important;
}

.custom-tabs span.active-tab {
    background-color: var(--color-accent);
}

.custom-tabs span.active-tab strong,
.custom-tabs span.active-tab a:not(.new) {
    color: var(--color-accent-text);
}

.custom-tabs span.inactive-tab {
    background: var(--background-color-1);
}

.custom-tabs span.inactive-tab a:not(.new),
.custom-tabs span.inactive-tab:hover a:not(.new) {
    color: var(--color-base);
}

.custom-tabs span.inactive-tab:hover {
    background: var(--background-color-3);
}