mirror of
https://github.com/flarum/core.git
synced 2025-08-08 09:26:34 +02:00
feat: Queue package manager commands (#3418)
* 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>
This commit is contained in:
57
extensions/package-manager/less/admin/QueueSection.less
Normal file
57
extensions/package-manager/less/admin/QueueSection.less
Normal file
@@ -0,0 +1,57 @@
|
||||
.PackageManager-queueSection {
|
||||
&-header > .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
&::before, &::after {
|
||||
content: none;
|
||||
}
|
||||
}
|
||||
|
||||
.Label {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.Table {
|
||||
width: 100%;
|
||||
|
||||
// @TODO move to core
|
||||
height: 100%;
|
||||
|
||||
&-controls-item {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.PackageManager-queueTable {
|
||||
&-package {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
|
||||
&-icon {
|
||||
--size: 30px;
|
||||
}
|
||||
|
||||
&-details {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
&-name {
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
}
|
||||
|
||||
&-operation {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
|
||||
&-icon {
|
||||
width: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user