mirror of
https://github.com/go-gitea/gitea
synced 2024-11-06 14:19:03 +01:00
83022013c8
Ref: https://github.com/go-gitea/gitea/pull/24315#pullrequestreview-1403034993 And fix the incorrect layout for "dasbboard", the "form" shouldn't follow `<h4 class="ui top attached header">`, so move it to inner. Diff with ignoring spaces: https://github.com/go-gitea/gitea/pull/24370/files?diff=unified&w=1 A known bug: the adapt/delete button doesn't work due to a historical messy logic, will fix it in next PR (#24374) ![image](https://user-images.githubusercontent.com/2114189/234754656-d160b098-b8d4-4783-962a-27d5c764863c.png) ![image](https://user-images.githubusercontent.com/2114189/234762327-3e77e2e4-a156-4498-8a8b-092e14cf9204.png) ![image](https://user-images.githubusercontent.com/2114189/234767811-74b7272c-e40c-4850-8e3c-499e3b53b827.png) ![image](https://user-images.githubusercontent.com/2114189/234761247-e6aad889-dcad-443c-948f-2d44df68725b.png)
58 lines
1.1 KiB
CSS
58 lines
1.1 KiB
CSS
.runner-container {
|
|
padding-bottom: 30px;
|
|
}
|
|
|
|
.runner-container .ui.table.segment {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.runner-container .runner-ops > a {
|
|
margin-left: 0.5em;
|
|
}
|
|
|
|
.runner-container .runner-ops-delete {
|
|
color: var(--color-red-light);
|
|
}
|
|
|
|
.runner-container .runner-basic-info .gt-dib {
|
|
margin-right: 1em;
|
|
}
|
|
|
|
.runner-container .runner-status-online {
|
|
padding: 0.3em 0.5em;
|
|
background-color: var(--color-green);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.runner-container .runner-new-text {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.runner-container #runner-new:hover .runner-new-text {
|
|
color: var(--color-white) !important;
|
|
}
|
|
|
|
.runner-container .runner-new-menu {
|
|
width: 300px;
|
|
}
|
|
|
|
.runner-container .task-status-success {
|
|
background-color: var(--color-green);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.runner-container .task-status-failure {
|
|
background-color: var(--color-red-light);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.runner-container .task-status-running {
|
|
background-color: var(--color-blue);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.runner-container .task-status-cancelled,
|
|
.runner-container .task-status-blocked {
|
|
background-color: var(--color-yellow);
|
|
color: var(--color-white);
|
|
}
|