mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 11:06:40 +07:00
advanced address parsing
This commit is contained in:
parent
ea08ab8a5e
commit
89a13f1475
5 changed files with 82 additions and 19 deletions
|
@ -616,20 +616,48 @@
|
|||
}
|
||||
}
|
||||
|
||||
.title-dialog {
|
||||
.title-dialog-wrapper {
|
||||
position: fixed;
|
||||
left: 10px;
|
||||
bottom: 68px;
|
||||
width: 340px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 360px;
|
||||
height: 100%;
|
||||
background: transparent;
|
||||
z-index: 2;
|
||||
opacity: 0.5;
|
||||
transition: opacity 500ms;
|
||||
padding: 10px 10px 58px 10px;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
pointer-events: none;
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
.title-dialog-sizer {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.title-dialog {
|
||||
z-index: 2;
|
||||
opacity: 0;
|
||||
transition: opacity 500ms, transform 1s;
|
||||
transform: translate(0, 68px);
|
||||
user-select: none;
|
||||
pointer-events: all;
|
||||
touch-action: auto;
|
||||
|
||||
&.active {
|
||||
opacity: 0.5;
|
||||
transform: translate(0, 0);
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.title-dialog-pane {
|
||||
margin-bottom: 10px;
|
||||
padding: 10px;
|
||||
background: #111111;
|
||||
color: fade(white, 50%);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue