mirror of
https://github.com/zotero/zotero.git
synced 2026-09-07 08:26:14 +00:00
35 lines
447 B
SCSS
35 lines
447 B
SCSS
.create-parent-container {
|
|
.title {
|
|
font-size: 1.4em;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.body {
|
|
margin: 1em 0;
|
|
position: relative;
|
|
display: flex;
|
|
|
|
input {
|
|
flex: 1;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.downloadProgress {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
right: -1em;
|
|
transform: translateY(-100%);
|
|
|
|
&.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.progress-bar {
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
}
|
|
}
|