
* Fixed an issue where the window size did not match the content * Replaced the semi-transparent progress bar with a spinner * Fixed a problem that allowed triggering a search while one was already in progress * Reduced code complexity
24 lines
443 B
SCSS
24 lines
443 B
SCSS
#zotero-create-parent-container {
|
|
.title {
|
|
font-size: 1.4em;
|
|
font-weight: 700;
|
|
// Let the dialog get a little wider if the title is long
|
|
max-width: 550px;
|
|
}
|
|
|
|
.intro {
|
|
margin-bottom: .5em;
|
|
max-width: 550px; // Avoid expanding the dialog too wide; instead, in some languages, the intro text will wrap.
|
|
}
|
|
|
|
.body {
|
|
align-items: center;
|
|
display: flex;
|
|
margin-bottom: 1em;
|
|
|
|
input {
|
|
flex: 1;
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
}
|