dialogs: head

This commit is contained in:
muerwre 2018-12-07 11:03:05 +07:00
parent 09658b8126
commit 3de025b0df
3 changed files with 40 additions and 15 deletions

View file

@ -32,6 +32,11 @@
border-radius: @panel_radius;
box-shadow: @dialog_shadow;
display: flex;
flex-direction: column;
}
.dialog-shader {
&::before, &::after {
content: ' ';
height: 40px;
@ -104,3 +109,15 @@
white-space: nowrap;
}
}
.dialog-head {
background: rgba(255, 255, 255, 0.1);
padding: 10px;
border-radius: @panel_radius @panel_radius 0 0;
color: white;
}
.dialog-head-title {
font-size: 20px;
text-transform: uppercase;
}