2020-11-20 21:17:48 +00:00
|
|
|
.create-parent-container {
|
|
|
|
.title {
|
|
|
|
font-size: 1.4em;
|
|
|
|
font-weight: 700;
|
2024-06-08 08:38:39 +00:00
|
|
|
// Let the dialog get a little wider if the title is long
|
|
|
|
max-width: 550px;
|
2020-11-20 21:17:48 +00:00
|
|
|
}
|
2024-06-08 08:38:39 +00:00
|
|
|
|
|
|
|
.intro {
|
|
|
|
// Text is added asynchonously, so set a height for dialog auto-sizing
|
|
|
|
min-height: 1em;
|
|
|
|
margin-bottom: .5em;
|
|
|
|
}
|
|
|
|
|
2020-11-20 21:17:48 +00:00
|
|
|
.body {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
2024-06-08 08:38:39 +00:00
|
|
|
margin-bottom: 1em;
|
2020-11-20 21:17:48 +00:00
|
|
|
|
|
|
|
input {
|
|
|
|
flex: 1;
|
|
|
|
font-size: 14px;
|
2024-06-08 08:38:39 +00:00
|
|
|
margin-left: 0;
|
2020-11-20 21:17:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.downloadProgress {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
right: -1em;
|
|
|
|
transform: translateY(-100%);
|
|
|
|
|
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.progress-bar {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|