fixed jumping title in Safari

This commit is contained in:
antelle 2020-11-29 18:06:56 +01:00
parent 775cdf237c
commit cd9fe46fdb
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
2 changed files with 8 additions and 4 deletions

View File

@ -42,8 +42,10 @@
text-overflow: ellipsis;
border-radius: var(--input-border-radius);
border: 1px solid transparent;
height: 1.4em;
line-height: 1.4em;
// why px and not em? it's like this to prevent jumping in different browsers
// when switching from a div to an input and vice versa
height: 42px;
line-height: 40px;
white-space: nowrap;
&:hover {
transition: border-color $base-duration $base-timing;
@ -54,8 +56,9 @@
}
}
input.details__header-title-input {
height: calc(1.4em + 6px);
line-height: 1.4em;
// see the comment about px above
height: 48px;
line-height: 40px;
user-select: text;
flex: 1;
margin: 0 6px;

View File

@ -2,6 +2,7 @@ Release notes
-------------
##### v1.16.1 (TBD)
`-` fix #1637: git commit in the About box
`-` fixed some design glitches
##### v1.16.0 (2020-11-29)
`+` updated icons and visual design