1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-23 09:00:48 +01:00

Merge pull request #4695 from marc1706/ticket/15083

[ticket/15083] Fix invalid emoji sizing in ACP & print view
This commit is contained in:
Marc Alexander 2017-03-19 00:04:48 +01:00
commit 25d5f94d19
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995
2 changed files with 18 additions and 0 deletions

View File

@ -2691,3 +2691,12 @@ fieldset.permissions .padding {
word-wrap: break-word;
word-break: break-all;
}
/* stylelint-disable declaration-property-unit-whitelist */
.emoji {
min-height: 18px;
min-width: 18px;
height: 1em;
width: 1em;
}
/* stylelint-enable declaration-property-unit-whitelist */

View File

@ -137,3 +137,12 @@ div.spacer { clear: both; }
.skip_link { display: none; }
.codebox p { display: none; }
/* stylelint-disable declaration-property-unit-whitelist */
.emoji {
min-height: 18px;
min-width: 18px;
height: 1em;
width: 1em;
}
/* stylelint-enable declaration-property-unit-whitelist */