mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 11:59:56 +00:00
314 lines
5.5 KiB
SCSS
314 lines
5.5 KiB
SCSS
@import 'skins/shared/color';
|
|
@import 'skins/shared/mixins/chevron';
|
|
@import 'skins/shared/mixins/flexbox';
|
|
@import 'skins/shared/mixins/transform';
|
|
@import 'extensions/wikia/PortableInfobox/styles/PortableInfoboxVariables';
|
|
|
|
.portable-infobox {
|
|
background-color: $infobox-background;
|
|
clear: right;
|
|
float: right;
|
|
margin: 0 0 $infobox-margin $infobox-margin;
|
|
width: $infobox-width;
|
|
}
|
|
|
|
// ********** Overwrite styles from article ********** //
|
|
// (placing it within portable-infobox class makes it strong enough) //
|
|
|
|
.portable-infobox {
|
|
|
|
.pi-item-spacing {
|
|
padding: $infobox-item-margin $infobox-item-margin * 2;
|
|
}
|
|
|
|
.pi-secondary-font {
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
line-height: 18px;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.pi-header,
|
|
.pi-title {
|
|
border: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.pi-title {
|
|
font-size: 18px;
|
|
line-height: 28px;
|
|
}
|
|
|
|
.pi-data-label {
|
|
margin-bottom: inherit;
|
|
margin-top: 0;
|
|
}
|
|
|
|
// overwrite default article styles for children of data value
|
|
.pi-data-value {
|
|
> *,
|
|
li {
|
|
margin: 0;
|
|
}
|
|
|
|
ol,
|
|
ul {
|
|
list-style-position: inside;
|
|
}
|
|
|
|
li {
|
|
line-height: 19px;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ********** Common elements styling ********** //
|
|
|
|
.pi-secondary-background {
|
|
background-color: $infobox-section-header-background;
|
|
}
|
|
|
|
.pi-border-color {
|
|
border-color: $infobox-section-header-background;
|
|
}
|
|
|
|
// remove border from last infobox item either <data> or <group>
|
|
.portable-infobox > .pi-item:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
// ********** Individual elements styling ********** //
|
|
|
|
.pi-image {
|
|
text-align: center; // center smaller image inside infobox
|
|
}
|
|
|
|
.pi-caption {
|
|
color: $color-alternate-text;
|
|
font-size: 12px;
|
|
font-style: italic;
|
|
text-align: left;
|
|
}
|
|
|
|
.pi-data:not(:last-of-type),
|
|
.pi-group {
|
|
border-bottom-style: solid;
|
|
border-bottom-width: 1px;
|
|
}
|
|
|
|
.pi-data:last-of-type + .pi-group {
|
|
border-top-style: solid;
|
|
border-top-width: 1px;
|
|
}
|
|
|
|
.pi-data {
|
|
@include flexbox;
|
|
@include flex-direction(row);
|
|
box-sizing: border-box;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|
|
|
|
.pi-data-label {
|
|
@include flex-basis($infobox-width / 3);
|
|
}
|
|
|
|
.pi-data-value {
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
padding-left: 0;
|
|
|
|
&:not(:first-child) {
|
|
@include flex-basis($infobox-width * 2 / 3);
|
|
padding-left: 10px;
|
|
}
|
|
}
|
|
|
|
// ********** Special styles for HORIZONTAL group ********** //
|
|
|
|
.pi-horizontal-group {
|
|
border-spacing: 0;
|
|
table-layout: fixed;
|
|
text-align: center;
|
|
width: 100%;
|
|
|
|
.pi-header {
|
|
text-align: left;
|
|
}
|
|
|
|
.pi-horizontal-group-item {
|
|
vertical-align: top;
|
|
|
|
&:not(:first-child) {
|
|
border-left-style: solid;
|
|
border-left-width: 1px;
|
|
}
|
|
}
|
|
|
|
.pi-data-label {
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
|
|
// ********** Overwrite default infobox styles for STACKED layout type ********** //
|
|
|
|
.pi-layout-stacked {
|
|
.pi-data {
|
|
display: block;
|
|
}
|
|
|
|
.pi-data-value {
|
|
padding-left: $infobox-item-margin * 2;
|
|
}
|
|
}
|
|
|
|
// ********** Collapsible groups ********** //
|
|
|
|
.pi-collapse {
|
|
.pi-header {
|
|
@include right-chevron($infobox-chevron-size, 2px, 'up', $color-text);
|
|
padding-right: $infobox-item-margin * 3 + $infobox-chevron-size;
|
|
position: relative;
|
|
|
|
&:after {
|
|
display: block;
|
|
margin-top: -($infobox-chevron-size / 2) + 2;
|
|
position: absolute;
|
|
right: $infobox-item-margin * 2;
|
|
top: 50%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.pi-collapse-closed {
|
|
border-bottom: none;
|
|
|
|
.pi-header::after {
|
|
@include transform-rotate(135deg);
|
|
margin-top: -($infobox-chevron-size / 2);
|
|
}
|
|
|
|
> *:nth-child(n+2) {
|
|
display: none;
|
|
}
|
|
|
|
.pi-horizontal-group {
|
|
thead,
|
|
tbody {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ********** Image Collection ********** //
|
|
|
|
ul.pi-image-collection-tabs {
|
|
list-style: none;
|
|
margin: 0 -1px -1px 0;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
text-align: center;
|
|
|
|
li {
|
|
border: 1px solid $infobox-section-header-background;
|
|
box-sizing: border-box;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
margin: -1px -1px 0 0;
|
|
max-width: 50%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
vertical-align: bottom;
|
|
white-space: nowrap;
|
|
|
|
&.current {
|
|
background: $infobox-section-header-background;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
|
|
.pi-image-collection-tab-content {
|
|
background-color: $infobox-background;
|
|
display: none;
|
|
|
|
.video-thumbnail {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.pi-image-collection-tab-content.current {
|
|
display: inherit;
|
|
}
|
|
|
|
// ********** Error handling styles ********** //
|
|
|
|
.WikiaArticle {
|
|
.pi-error-info {
|
|
background-color: $color-error;
|
|
color: $infobox-debug-error-msg-color;
|
|
font-size: 18px;
|
|
line-height: 28px;
|
|
margin: 0;
|
|
padding: $infobox-margin * 2 $infobox-debug-line-number-width;
|
|
}
|
|
|
|
.pi-debug {
|
|
background-color: $color-unified-module-background;
|
|
font-family: monospace;
|
|
list-style: none;
|
|
margin: 0;
|
|
width: 100%;
|
|
|
|
li {
|
|
margin: 0;
|
|
}
|
|
|
|
.error {
|
|
font-size: inherit;
|
|
}
|
|
}
|
|
}
|
|
|
|
.pi-debug-line {
|
|
@include flexbox();
|
|
}
|
|
|
|
.pi-debug-line-number,
|
|
.pi-debug-line-code {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.pi-debug-line-number {
|
|
@include flex-basis($infobox-debug-line-number-width);
|
|
@include flex-shrink(0);
|
|
padding-left: $infobox-item-margin * 2;
|
|
}
|
|
|
|
.pi-debug-error-message {
|
|
background-color: $infobox-debug-error-msg-bg;
|
|
color: $infobox-debug-error-msg-color;
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
margin: 20px 0 10px 25px;
|
|
padding: $infobox-item-margin * 2 $infobox-item-margin * 3;
|
|
position: relative;
|
|
width: 400px;
|
|
|
|
&:before {
|
|
border-bottom: $infobox-margin solid $infobox-debug-error-msg-bg;
|
|
border-left: $infobox-margin solid transparent;
|
|
border-right: $infobox-margin solid transparent;
|
|
content: '';
|
|
display: block;
|
|
height: 0;
|
|
left: 25px;
|
|
position: absolute;
|
|
top: -$infobox-margin;
|
|
width: 0;
|
|
}
|
|
|
|
.pi-debug-error-message-item {
|
|
margin: $infobox-item-margin 0;
|
|
}
|
|
}
|