2017-04-05 22:25:26 +08:00
|
|
|
@import "../../../stylesheets/variables/_all";
|
2016-09-01 03:52:17 +08:00
|
|
|
|
|
|
|
.modal {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-self: flex-start;
|
2018-10-19 04:37:14 +08:00
|
|
|
padding: calc(var(--line-height-computed) / 2) var(--line-height-computed);
|
2017-09-16 02:29:56 +08:00
|
|
|
outline: none;
|
2017-12-19 19:13:37 +08:00
|
|
|
@include mq($small-only) {
|
2018-10-19 04:37:14 +08:00
|
|
|
width: 100%;
|
2018-12-14 20:33:58 +08:00
|
|
|
height: 100%;
|
2017-12-19 19:13:37 +08:00
|
|
|
}
|
2016-09-01 03:52:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
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
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
display: flex;
|
2018-10-19 04:37:14 +08:00
|
|
|
padding: var(--line-height-computed) 0;
|
|
|
|
border-bottom: var(--border-size) solid var(--color-gray-lighter);
|
2016-09-01 03:52:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
flex: 0 1 35%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
@extend %text-elipsis;
|
|
|
|
flex: 1;
|
|
|
|
margin: 0;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
%btn {
|
|
|
|
flex: 0 1 48%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dismiss,
|
|
|
|
.confirm {
|
|
|
|
@extend %btn;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dismiss {
|
|
|
|
}
|
|
|
|
|
|
|
|
.confirm {
|
2018-10-19 04:37:14 +08:00
|
|
|
color: var(--color-white) !important;
|
|
|
|
background-color: var(--color-link) !important;
|
2016-09-01 03:52:17 +08:00
|
|
|
}
|