I have removed the newline at the end of file to pass tests

This commit is contained in:
rtestard 2020-02-04 16:02:49 +01:00
parent f023bcfd63
commit 153703426a

View file

@ -15,44 +15,44 @@ limitations under the License.
*/ */
@define-mixin mx_InviteOnlyIcon { @define-mixin mx_InviteOnlyIcon {
width: 12px; width: 12px;
height: 12px; height: 12px;
position: relative; position: relative;
display: block !important; display: block !important;
} }
@define-mixin mx_InviteOnlyIcon_padlock { @define-mixin mx_InviteOnlyIcon_padlock {
background-color: $roomtile-name-color; background-color: $roomtile-name-color;
mask-image: url("$(res)/img/feather-customised/lock-solid.svg"); mask-image: url("$(res)/img/feather-customised/lock-solid.svg");
mask-position: center; mask-position: center;
mask-repeat: no-repeat; mask-repeat: no-repeat;
mask-size: contain; mask-size: contain;
content: ""; content: "";
position: absolute; position: absolute;
top: 0; top: 0;
bottom: 0; bottom: 0;
left: 0; left: 0;
right: 0; right: 0;
} }
.mx_InviteOnlyIcon_large { .mx_InviteOnlyIcon_large {
@mixin mx_InviteOnlyIcon; @mixin mx_InviteOnlyIcon;
margin: 0 4px; margin: 0 4px;
&::before { &::before {
@mixin mx_InviteOnlyIcon_padlock; @mixin mx_InviteOnlyIcon_padlock;
width: 12px; width: 12px;
height: 12px; height: 12px;
} }
} }
.mx_InviteOnlyIcon_small { .mx_InviteOnlyIcon_small {
@mixin mx_InviteOnlyIcon; @mixin mx_InviteOnlyIcon;
left: -2px; left: -2px;
&::before { &::before {
@mixin mx_InviteOnlyIcon_padlock; @mixin mx_InviteOnlyIcon_padlock;
width: 10px; width: 10px;
height: 10px; height: 10px;
} }
} }