2016-10-27 16:14:30 +00:00
|
|
|
.modal {
|
|
|
|
&__background {
|
2017-01-19 18:00:08 +00:00
|
|
|
@include position(fixed, 0 0 0 0);
|
2020-12-04 20:19:08 +00:00
|
|
|
background-color: rgba($core-fleet-black, 0.4);
|
|
|
|
z-index: 101;
|
|
|
|
overflow: scroll;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2016-10-27 16:14:30 +00:00
|
|
|
}
|
2016-10-28 21:25:57 +00:00
|
|
|
|
2016-10-27 16:14:30 +00:00
|
|
|
&__content {
|
2021-04-14 09:20:56 +00:00
|
|
|
margin-top: $pad-large;
|
2020-12-10 21:09:05 +00:00
|
|
|
font-size: $x-small;
|
2017-02-24 15:08:59 +00:00
|
|
|
|
2016-12-21 18:22:18 +00:00
|
|
|
.input-field {
|
|
|
|
width: 100%;
|
2021-12-02 15:03:56 +00:00
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
font-style: italic;
|
|
|
|
font-size: $x-small;
|
|
|
|
}
|
2016-12-21 18:22:18 +00:00
|
|
|
}
|
2016-10-27 16:14:30 +00:00
|
|
|
}
|
2016-10-28 21:25:57 +00:00
|
|
|
|
2016-10-27 16:14:30 +00:00
|
|
|
&__ex {
|
|
|
|
text-decoration: none;
|
2021-08-03 18:06:09 +00:00
|
|
|
padding-left: $pad-xsmall;
|
2016-12-21 18:22:18 +00:00
|
|
|
|
2021-06-03 13:20:06 +00:00
|
|
|
.button::after {
|
2021-05-10 20:00:34 +00:00
|
|
|
content: url("../assets/images/icon-close-fleet-blue-16x16@2x.png");
|
2021-06-03 13:20:06 +00:00
|
|
|
transform: scale(0.5);
|
2021-05-10 20:00:34 +00:00
|
|
|
border-radius: 0px;
|
|
|
|
}
|
2017-01-19 18:00:08 +00:00
|
|
|
|
2021-06-03 13:20:06 +00:00
|
|
|
.button:hover::after {
|
2021-05-10 20:00:34 +00:00
|
|
|
content: url("../assets/images/icon-close-vibrant-blue-16x16@2x.png");
|
2021-06-03 13:20:06 +00:00
|
|
|
transform: scale(0.5);
|
2021-05-10 20:00:34 +00:00
|
|
|
border-radius: 0px;
|
2016-12-21 18:22:18 +00:00
|
|
|
}
|
2016-10-27 16:14:30 +00:00
|
|
|
}
|
2016-10-28 21:25:57 +00:00
|
|
|
|
2016-10-27 16:14:30 +00:00
|
|
|
&__header {
|
2020-12-04 20:19:08 +00:00
|
|
|
font-size: $large;
|
2020-11-20 00:51:22 +00:00
|
|
|
font-weight: $regular;
|
2017-01-19 18:00:08 +00:00
|
|
|
text-align: left;
|
2021-08-03 18:06:09 +00:00
|
|
|
padding-bottom: $pad-xsmall;
|
2021-04-09 19:04:11 +00:00
|
|
|
border-bottom: 1px solid $ui-fleet-blue-15;
|
2020-12-04 20:19:08 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2021-08-03 18:06:09 +00:00
|
|
|
|
|
|
|
span {
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2016-10-27 16:14:30 +00:00
|
|
|
}
|
2016-10-28 21:25:57 +00:00
|
|
|
|
2016-10-27 16:14:30 +00:00
|
|
|
&__modal_container {
|
2020-12-04 20:19:08 +00:00
|
|
|
@include position(absolute, 22px null null null);
|
2021-04-09 19:04:11 +00:00
|
|
|
background-color: $core-white;
|
2020-12-04 20:19:08 +00:00
|
|
|
width: 658px;
|
2021-04-10 00:30:42 +00:00
|
|
|
padding: $pad-xxlarge;
|
2020-12-04 20:19:08 +00:00
|
|
|
border-radius: 8px;
|
2016-10-27 16:14:30 +00:00
|
|
|
}
|
|
|
|
}
|