Correct blur position in tablet mode

Addresses problem where text reads like an incomplete sentence
on tablet, see https://phabricator.wikimedia.org/T197931#4475197

Bug: T197931
Change-Id: I71aba2c53570196f51c9e833b1a6d69b2dc983ad
This commit is contained in:
jdlrobson 2018-08-03 08:59:17 +08:00
parent 6c9f2c6ecb
commit f178228a65
1 changed files with 7 additions and 1 deletions

View File

@ -133,8 +133,14 @@ table.ambox {
}
.ambox-learn-more {
left: @amboxIconPadding;
right: auto;
right: 0;
background: none;
// Move blur to far right last line
// https://phabricator.wikimedia.org/T197931#4475197
&:before {
top: unit( -@contentLineHeight, em );
width: 10px;
}
}
}