mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-23 23:24:39 +00:00
780627c126
Deprecated in I8d62aedb. Change-Id: Id951fd394a2336920eddbba08dcb1a153b67b9f3
89 lines
1.3 KiB
Plaintext
89 lines
1.3 KiB
Plaintext
/**
|
|
* These are custom styles designed to supplement styles produced
|
|
* by ResourceLoad or MediaWiki-core.
|
|
**/
|
|
@import './mediawiki.ui.icon/icons.less';
|
|
@import './production-icons.less';
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
#root {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: flex-start;
|
|
gap: 50px;
|
|
padding: 20px;
|
|
}
|
|
|
|
/**
|
|
* Stopping the fade animation to avoid the animation appearing
|
|
* whenever a user types into the "knob" fields and the popup rerenders.
|
|
* NOTE: To test the animation, remove these rules.
|
|
*/
|
|
.mwe-popups-fade-in-up {
|
|
animation: none;
|
|
}
|
|
|
|
.mwe-popups-fade-in-down {
|
|
animation: none;
|
|
}
|
|
|
|
.storybook-report {
|
|
position: absolute;
|
|
bottom: -20px;
|
|
opacity: 0.5;
|
|
left: 0;
|
|
right: 0;
|
|
height: 20px;
|
|
background: #000;
|
|
color: #fff;
|
|
|
|
> span {
|
|
> span {
|
|
display: none;
|
|
}
|
|
|
|
&.error {
|
|
background: #a00;
|
|
font-weight: bold;
|
|
color: white;
|
|
|
|
> span {
|
|
display: inline;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* show popups by default */
|
|
.popups-storybook-example {
|
|
border: solid 1px #aaa;
|
|
padding: 8px;
|
|
display: flex;
|
|
width: 500px;
|
|
height: 550px;
|
|
position: relative;
|
|
|
|
&-tall {
|
|
width: 500px;
|
|
height: 300px;
|
|
}
|
|
|
|
&-flipped-y > .popups-storybook-link {
|
|
align-self: flex-end;
|
|
}
|
|
|
|
&-flipped-x {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.mwe-popups {
|
|
display: block;
|
|
}
|
|
}
|