dialogs: new appearance

This commit is contained in:
muerwre 2018-12-07 09:47:35 +07:00
parent fc5b6009cb
commit 78216ee94e
5 changed files with 25 additions and 9 deletions

View file

@ -1,7 +1,7 @@
.dialog {
// background: #222222;
// background: linear-gradient(130deg, #320523, #020d2b);
background: #271535;
// background: #271535;
position: fixed;
left: 0;
top: 0;
@ -9,7 +9,6 @@
height: 100%;
z-index: 3;
box-shadow: @dialog_shadow;
padding: 10px 10px 72px 10px;
overflow: hidden;
box-sizing: border-box;
@ -23,20 +22,35 @@
pointer-events: all;
}
}
.dialog-content {
background: #271535;
height: 100%;
overflow: hidden;
position: relative;
border-radius: @panel_radius;
box-shadow: @dialog_shadow;
&::after {
content: ' ';
height: 100px;
height: 40px;
width: 100%;
left: 0;
bottom: 0;
// background: linear-gradient(0deg, rgba(2, 13, 43, 1) 50%, rgba(2,13,43,0));
// background: linear-gradient(0deg, rgba(34, 34, 34, 1) 50%, rgba(34, 34, 34, 0));
background: linear-gradient(0deg, rgba(39, 21, 53, 1) 50%, rgba(39, 21, 53, 1));
background: linear-gradient(0deg, rgba(39, 21, 53, 1), rgba(39, 21, 53, 0));
position: absolute;
z-index: 5;
}
}
.dialog-maplist {
padding: 10px;
box-sizing: border-box;
}
.route-row {
margin-bottom: 10px;
background: rgba(255, 255, 255, 0.05);