mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Bugfix: dialog/select layout broken in Safari
This commit is contained in:
parent
aed72f91ee
commit
0b657359fa
3 changed files with 4 additions and 3 deletions
|
|
@ -69,6 +69,7 @@ dialog {
|
||||||
max-width: 560px;
|
max-width: 560px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
position: sticky;
|
||||||
transition: all .2s ease-out;
|
transition: all .2s ease-out;
|
||||||
top: 0;
|
top: 0;
|
||||||
width: calc(100% - 20px);
|
width: calc(100% - 20px);
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
|
|
||||||
#V-PopupsCompose {
|
#V-PopupsCompose {
|
||||||
display: flex;
|
height: calc(100vh - 52px);
|
||||||
flex-direction: column;
|
|
||||||
height: calc(100% - 52px);
|
|
||||||
max-width: 1000px;
|
max-width: 1000px;
|
||||||
width: 98%;
|
width: 98%;
|
||||||
|
|
||||||
|
|
|
||||||
2
vendors/bootstrap/less/forms.less
vendored
2
vendors/bootstrap/less/forms.less
vendored
|
|
@ -81,6 +81,8 @@ input[type="checkbox"] {
|
||||||
|
|
||||||
// Make select elements obey height by applying a border
|
// Make select elements obey height by applying a border
|
||||||
select, .select {
|
select, .select {
|
||||||
|
// Safari requires -webkit-
|
||||||
|
-webkit-appearance: none;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
background: @inputBackground url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='10px' width='15px'><text x='0' y='10' fill='rgb(85,85,85)'>▾</text></svg>") right center/1em no-repeat border-box;
|
background: @inputBackground url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='10px' width='15px'><text x='0' y='10' fill='rgb(85,85,85)'>▾</text></svg>") right center/1em no-repeat border-box;
|
||||||
border: 1px solid @inputBorder;
|
border: 1px solid @inputBorder;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue