mirror of https://github.com/keeweb/keeweb
fixed jumping title in Safari
parent
775cdf237c
commit
cd9fe46fdb
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue