DAT-3074 Adding SCSS variables

This commit is contained in:
Kamil Koterba 2015-07-30 16:08:18 +02:00
parent 807a9e12bb
commit 5c9cf20edf
2 changed files with 8 additions and 4 deletions

View file

@ -1,13 +1,15 @@
// fix issues with default infobox styles on monobook
$background-color: #f9f9f9;
$background-color-secondary: #e5e5e5;
.portable-infobox {
background-color: #f9f9f9;
background-color: $background-color;
figure {
margin: 0;
}
.pi-secondary-background {
background-color: #e5e5e5;
background-color: $background-color-secondary;
}
}

View file

@ -1,15 +1,17 @@
/* @TODO Remove PortableInfoboxMonobook_beforeSimplification.scss once all articles will be purged after release
* @see DAT-3009 purging ticket */
// fix issues with default infobox styles on monobook
$background-color: #f9f9f9;
$background-color-secondary: #e5e5e5;
.portable-infobox {
background-color: #f9f9f9;
background-color: $background-color;
figure {
margin: 0;
}
.portable-infobox-secondary-background {
background-color: #e5e5e5;
background-color: $background-color-secondary;
}
}