mediawiki-extensions-Popups/resources/ext.popups.core.less
Prateek Saxena a54a0a4195 Position timestamp div from the bottom
Also, removes the the "+" CSS selector

Bug: 61138
Change-Id: Idc88363add5e4f82d3d44b204f7bf3c96fa27839
2014-02-17 15:09:32 +05:30

68 lines
1 KiB
Plaintext

/* Code adapted from Yair Rand's NavPopupsRestyled.js
* https://en.wikipedia.org/wiki/User:Yair_rand/NavPopupsRestyled.js
*/
.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: 1.28em;
padding-bottom: 3.84em;
}
> img.mwe-popups-is-tall{
float: right;
height: 250px;
padding-left: 1.28em;
}
> img.mwe-popups-is-not-tall{
width: 300px;
float: initial;
}
> div.mwe-popups-timestamp-older, div.mwe-popups-timestamp-recent{
padding: 1.28em;
margin: 0;
font-size: 0.85em;
position: absolute;
bottom: 0;
}
> div.mwe-popups-timestamp-older{
color: #bbb;
}
> div.mwe-popups-timestamp-recent{
color: #00af89;
}
}
&.mwe-popups-is-tall{
width: 450px;
}
&.mwe-popups-is-not-tall{
width: 300px;
}
}