mirror of
https://github.com/flarum/framework.git
synced 2024-12-02 15:03:44 +08:00
795a500adb
* feat: Queue package manager commands * adjust tests * fix: force run whynot command synchronously * chore: maximize command output box's height * chore: more user instructions on background queue * feat: track command peak memory usage * feat: exit of CLI php version doesn't match web php version * chore: install deps * chore: format and typing workflow fix Signed-off-by: Sami Mazouz <ilyasmazouz@gmail.com>
30 lines
559 B
Plaintext
Executable File
30 lines
559 B
Plaintext
Executable File
@import "admin/Label";
|
|
@import "admin/TaskOutputModal";
|
|
@import "admin/QueueSection";
|
|
@import "admin/ControlSection";
|
|
|
|
.PackageManager-controlSection, .PackageManager-queueSection {
|
|
> .container {
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.FormControl-container {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 4px;
|
|
}
|
|
|
|
.Form-group--danger {
|
|
border: 2px solid var(--alert-error-bg);
|
|
border-radius: var(--border-radius);
|
|
background-color: transparent;
|
|
}
|
|
|
|
// @TODO add to core
|
|
.Checkbox--switch.disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|