Run scheduled scripts
This commit is contained in:
parent
6d05152ab2
commit
ef0a20ffe0
7 changed files with 294 additions and 28 deletions
|
|
@ -245,6 +245,8 @@ select:focus {
|
|||
grid-template-columns: 24px 1fr;
|
||||
grid-gap: 8px;
|
||||
align-items: center;
|
||||
background-color: #f0f0f0;
|
||||
padding: 16px;
|
||||
}
|
||||
#connected-nodes .connected-nodes .type-group .type-name {
|
||||
font-weight: bold;
|
||||
|
|
@ -259,10 +261,10 @@ select:focus {
|
|||
height: 24px;
|
||||
}
|
||||
#script-hooks .scripts-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, min-content);
|
||||
align-items: center;
|
||||
grid-gap: 2px 0px;
|
||||
display: flex;
|
||||
align-items: start;
|
||||
flex-flow: row wrap;
|
||||
gap: 32px;
|
||||
}
|
||||
#script-hooks .scripts-grid .header {
|
||||
font-weight: bold;
|
||||
|
|
@ -272,12 +274,19 @@ select:focus {
|
|||
white-space: nowrap;
|
||||
}
|
||||
#script-hooks .scripts-grid .script-group {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, min-content);
|
||||
align-items: center;
|
||||
grid-gap: 2px 0px;
|
||||
padding: 16px;
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
#script-hooks .scripts-grid .script-group-title {
|
||||
grid-column: 1 / -1;
|
||||
font-weight: bold;
|
||||
margin-top: 8px;
|
||||
}
|
||||
#script-hooks .scripts-grid .script-unhook img,
|
||||
#script-hooks .scripts-grid .script-run img {
|
||||
#script-hooks .scripts-grid .script-schedule img {
|
||||
display: block;
|
||||
height: 24px;
|
||||
cursor: pointer;
|
||||
|
|
@ -288,6 +297,10 @@ select:focus {
|
|||
}
|
||||
#script-hooks .scripts-grid .script-ssh {
|
||||
cursor: pointer;
|
||||
color: #555;
|
||||
}
|
||||
#script-hooks .scripts-grid .script-schedule.disabled {
|
||||
filter: invert(50%);
|
||||
}
|
||||
#script-hooks > .label {
|
||||
display: grid;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue