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;
|
2018-10-25 03:32:09 +08:00
|
|
|
padding: calc(var(--line-height-computed) / 2) var(--line-height-computed);
|
2018-10-19 04:37:14 +08:00
|
|
|
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
|
2016-09-01 03:52:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
overflow: auto;
|
2018-10-19 04:37:14 +08:00
|
|
|
color: var(--color-text);
|
2016-09-01 03:52:17 +08:00
|
|
|
font-weight: normal;
|
2018-10-19 04:37:14 +08:00
|
|
|
padding: var(--line-height-computed) 0;
|
2016-09-01 03:52:17 +08:00
|
|
|
}
|
|
|
|
|
2018-12-22 02:53:21 +08:00
|
|
|
.headerNoBorder, .header {
|
2016-09-01 03:52:17 +08:00
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
2018-12-22 02:53:21 +08:00
|
|
|
.header {
|
|
|
|
padding: calc(var(--line-height-computed) / 2) 0;
|
|
|
|
border-bottom: var(--border-size) solid var(--color-gray-lighter);
|
2018-12-03 14:01:19 +08:00
|
|
|
}
|
|
|
|
|
2016-09-01 03:52:17 +08:00
|
|
|
.title {
|
|
|
|
@extend %text-elipsis;
|
|
|
|
flex: 1;
|
|
|
|
margin: 0;
|
|
|
|
font-weight: 400;
|
2019-01-18 03:11:16 +08:00
|
|
|
font-size: var(--font-size-large);
|
|
|
|
text-align: center;
|
2019-01-18 03:33:58 +08:00
|
|
|
align-self: flex-end;
|
2016-09-01 03:52:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.dismiss {
|
2017-04-19 03:06:51 +08:00
|
|
|
flex: 0;
|
|
|
|
> span:first-child {
|
|
|
|
border-color: transparent;
|
|
|
|
background-color: transparent;
|
|
|
|
|
2018-10-19 04:37:14 +08:00
|
|
|
> i { color: var(--color-text); }
|
2017-04-19 03:06:51 +08:00
|
|
|
}
|
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;
|
2018-09-26 04:29:54 +08:00
|
|
|
background-color: rgba(6, 23, 42, 0.75);
|
2016-09-01 03:52:17 +08:00
|
|
|
}
|