2017-07-18 02:21:45 +08:00
|
|
|
@import "/imports/ui/stylesheets/variables/_all";
|
2017-04-19 03:06:51 +08:00
|
|
|
@import "../base/styles";
|
2016-09-01 03:52:17 +08:00
|
|
|
|
|
|
|
.modal {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2016-12-06 05:15:12 +08:00
|
|
|
padding: ($line-height-computed / 2) $line-height-computed;
|
2017-09-29 21:38:10 +08:00
|
|
|
box-shadow : 0px 0px 15px rgba(0, 0, 0, 0.5);
|
2016-09-01 03:52:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
overflow: auto;
|
|
|
|
color: $color-text;
|
|
|
|
font-weight: normal;
|
|
|
|
padding: $line-height-computed 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
display: flex;
|
2017-04-19 03:06:51 +08:00
|
|
|
padding: ($line-height-computed / 2) 0;
|
2016-09-01 03:52:17 +08:00
|
|
|
border-bottom: $border-size solid $color-gray-lighter;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
@extend %text-elipsis;
|
|
|
|
flex: 1;
|
|
|
|
margin: 0;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dismiss {
|
2017-04-19 03:06:51 +08:00
|
|
|
flex: 0;
|
|
|
|
> span:first-child {
|
|
|
|
border-color: transparent;
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
|
|
> i { color: $color-text; }
|
|
|
|
}
|
2016-09-01 03:52:17 +08:00
|
|
|
}
|
|
|
|
|
2017-04-05 22:25:26 +08:00
|
|
|
.overlay {
|
2017-04-19 03:06:51 +08:00
|
|
|
@extend .overlay;
|
2017-04-05 22:25:26 +08:00
|
|
|
background-color: rgba(0, 0, 0, .5);
|
2016-09-01 03:52:17 +08:00
|
|
|
}
|