Skip to content

Commit

Permalink
Work around broken Italian locale popup in Chrome.
Browse files Browse the repository at this point in the history
By reverting CSS padding change.
  • Loading branch information
ghostwords committed May 7, 2018
1 parent d7e1284 commit fa1cf47
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/skin/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,22 @@
/*csslint ids:ignore*/

body {
margin: 0;
min-width: 430px; /* Chrome */
max-width: 100%; /* FF android */
font-size: 12px;
box-sizing: border-box;

background: #fefefe;
color: #333;
font-family: helvetica, arial, sans-serif;
padding: 8px 15px 0;
box-sizing: border-box;
font-size: 12px;

margin: 0;
padding: 7px 15px 0;

min-width: 430px; /* Chrome */
max-width: 100%; /* FF android */
min-height: 270px;
}
@media screen and (min--moz-device-pixel-ratio:0) {
body{
body {
min-width: 200px; /* FF android */
width: 430px; /* FF desktop */
}
Expand Down

0 comments on commit fa1cf47

Please sign in to comment.