mediawiki-extensions-Popups/resources/ext.popups/styles/ext.popups.settings.less
Baha 764fb36017 Improve illustration on disable popup
The updated illustration makes it easier to find the footer link
to enable Previews.

Bug: T154330
Change-Id: I8b6cbe9e2f002eaff06a293643dc0f4aa1d5a641
2017-04-24 19:26:26 +01:00

117 lines
1.8 KiB
Plaintext

@import 'mediawiki.mixins.less';
@import 'mediawiki.ui/variables';
#mwe-popups-settings {
position: fixed;
z-index: 1000;
background: #fff;
width: 450px;
border: 1px solid #ccc;
box-shadow: 0px 1px 1px rgba( 0, 0, 0, 0.1 );
border-radius: 2px;
header {
box-sizing: border-box;
border-bottom: 1px solid #c8ccd1;
position: relative;
display: table;
width: 100%;
padding: 5px 7px 5px 0;
> div {
display: table-cell;
width: @iconSize + ( 2 * @iconGutterWidth );
vertical-align: middle;
cursor: pointer;
}
h1 {
border: 0;
width: 100%;
font-family: sans-serif;
font-size: 18px;
text-align: center;
}
}
main {
display: block;
width: 350px;
padding: 50px 0 40px;
margin: 0 auto;
p {
color: #999;
font-size: 17px;
margin: 0 0 20px 0;
}
form {
img,
input,
label {
vertical-align: top;
}
img {
margin-right: 60px;
}
input {
display: inline-block;
margin: 0 10px 0 0;
padding: 0;
}
label {
font-size: 13px;
display: inline-block;
line-height: 16px;
width: 300px;
> span {
color: #000;
font-size: 18px;
font-weight: bold;
display: block;
margin-bottom: 5px;
line-height: 18px;
}
}
}
}
}
.mwe-popups-settings-help {
@imageWidth: 180px;
@imageHeight: 140px;
.background-image-svg( '../images/footer-ltr.svg', '../images/footer-ltr.png' );
background-position: top left;
background-repeat: no-repeat;
background-size: @imageWidth @imageHeight;
font-size: 13px;
font-weight: 800;
height: @imageHeight;
margin: 40px;
position: relative;
p {
left: @imageWidth;
bottom: 20px;
position: absolute;
}
}
.mwe-popups-overlay {
background-color: rgba( 255, 255, 255, 0.9 );
z-index: 999;
position: fixed;
height: 100%;
width: 100%;
top: 0;
bottom: 0;
left: 0;
right: 0;
}