mediawiki-extensions-Popups/resources/ext.popups.core.less

203 lines
3.2 KiB
Plaintext
Raw Normal View History

/* Code adapted from Yair Rand's NavPopupsRestyled.js
* https://en.wikipedia.org/wiki/User:Yair_rand/NavPopupsRestyled.js
*/
.mwe-popups-border-triangle(@size, @left, @color) {
content: '';
position: absolute;
border: @size solid transparent;
border-top: 0;
border-bottom: @size solid @color;
top: -@size;
/* @noflip */
left: @left;
}
.mwe-popups {
position: absolute;
z-index: 5;
background: #fff;
border: 1px solid #bbb;
padding: 0;
display: none;
font-size: 0.8em;
line-height: 1.5em;
cursor: pointer;
min-width: 300px;
> a {
display: block;
margin-top: -9px;
padding-top: 9px;
color: #000;
&:hover {
text-decoration: none;
}
> div {
padding: 0;
margin: 16px;
padding-bottom: 48px;
}
> div.mwe-popups-is-tall {
height: 250px;
width: 200px;
padding: 0;
background-size: cover;
background-repeat: no-repeat;
overflow: hidden;
/* @noflip */
float: right;
}
> div.mwe-popups-is-not-tall {
height: 200px;
width: 300px;
padding: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
overflow: hidden;
/* @noflip */
float: right;
}
> div.mwe-popups-timestamp-older, div.mwe-popups-timestamp-recent {
padding: 16px;
margin: 0;
font-size: 0.85em;
position: absolute;
bottom: 0;
/* @noflip */
left: 0;
}
> div.mwe-popups-timestamp-older {
color: #555;
}
> div.mwe-popups-timestamp-recent {
color: #00af89;
}
}
&.mwe-popups-is-tall {
width: 450px;
> a > svg {
margin-bottom: -5px;
}
.mwe-popups-extract {
width: 215px;
height: 125px;
overflow: hidden;
/* @noflip */
float: left;
}
div.mwe-popups-timestamp-older, div.mwe-popups-timestamp-recent {
width: 215px;
}
}
&.mwe-popups-is-not-tall {
width: 300px;
.mwe-popups-extract {
max-height: 120px;
overflow: hidden;
margin-bottom: 3.84em;
padding-bottom: 1.28em;
}
div.mwe-popups-timestamp-older, div.mwe-popups-timestamp-recent {
width: 270px;
}
}
/* Triangles/Pokeys */
&.mwe-popups-no-image-tri {
&:after {
.mwe-popups-border-triangle( 7px, 11px, #fff);
}
&:before {
.mwe-popups-border-triangle( 8px, 10px, #bbb);
}
}
&.flipped.mwe-popups-no-image-tri {
&:after {
/* @noflip */
left: initial;
/* @noflip */
right: 11px;
}
&:before {
/* @noflip */
left: initial;
/* @noflip */
right: 10px;
}
}
&.mwe-popups-image-tri {
&:before {
z-index: 90;
.mwe-popups-border-triangle(9px, 9px, #bbb);
}
&:after {
.mwe-popups-border-triangle(8px, 10px, #fff);
z-index: 91;
}
&.flipped {
&:before {
z-index: 90;
.mwe-popups-border-triangle(9px, 273px, #bbb);
}
&:after {
.mwe-popups-border-triangle(8px, 273px, #fff);
z-index: 91;
}
}
.mwe-popups-extract {
margin-top: 206px;
}
> a > svg {
margin-top: -8px;
position: absolute;
z-index: 100;
/* @noflip */
left: 0;
}
}
&.flipped.mwe-popups-is-tall {
min-height: 242px;
&:before {
z-index: 90;
.mwe-popups-border-triangle(9px, 420px, #bbb);
}
> a > svg {
margin: 0;
margin-top: -8px;
margin-bottom: -5px;
position: absolute;
z-index: 100;
/* @noflip */
right: 0;
}
}
}