mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-06 07:47:53 +10:00
WIP: checkpoint working tree before rebasing onto dev
This commit is contained in:
@@ -78,6 +78,7 @@ textarea, select, input[type="text"] {
|
||||
box-shadow: 4px 4px 4px rgba(0,0,0,0.02);
|
||||
width: 100%;
|
||||
padding: 8px 12px;
|
||||
font-family: inherit;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@@ -85,6 +86,10 @@ textarea {
|
||||
min-height: 300px;
|
||||
}
|
||||
|
||||
input[type="text"] {
|
||||
min-height: 42px;
|
||||
}
|
||||
|
||||
textarea[rows="3"] {
|
||||
min-height: 80px;
|
||||
}
|
||||
@@ -153,6 +158,13 @@ select {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.settings-row {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(260px, 340px) minmax(420px, 1fr);
|
||||
gap: 18px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.form-field label {
|
||||
display: block;
|
||||
font-size: 16px;
|
||||
@@ -160,6 +172,234 @@ select {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.field-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.field-header label {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.url-workbench {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
|
||||
gap: 18px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.url-editor-column {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.url-editor-shell {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.url-editor-shell textarea[name="url"] {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
background: transparent;
|
||||
color: #1f2937;
|
||||
-webkit-text-fill-color: #1f2937;
|
||||
caret-color: #1f2937;
|
||||
min-height: 240px;
|
||||
height: 240px;
|
||||
line-height: 1.5;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.url-editor-shell textarea[name="url"]::selection {
|
||||
background: rgba(0, 72, 130, 0.18);
|
||||
}
|
||||
|
||||
.url-highlight-layer {
|
||||
position: absolute;
|
||||
inset: 2px;
|
||||
z-index: 1;
|
||||
margin: 0;
|
||||
padding: 8px 12px;
|
||||
overflow: auto;
|
||||
pointer-events: none;
|
||||
white-space: pre-wrap;
|
||||
overflow-wrap: anywhere;
|
||||
word-break: break-word;
|
||||
font-family: inherit;
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
color: transparent;
|
||||
background: transparent;
|
||||
border-radius: 2px;
|
||||
scrollbar-width: none;
|
||||
}
|
||||
|
||||
.url-highlight-layer::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.url-highlight-segment {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.detected-urls-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 240px;
|
||||
padding: 12px 14px;
|
||||
background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
|
||||
border: 1px solid #d7e2eb;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.detected-urls-header {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.detected-urls-summary {
|
||||
font-size: 12px;
|
||||
color: #5f6c78;
|
||||
}
|
||||
|
||||
.detected-urls-list {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
display: grid;
|
||||
align-content: start;
|
||||
gap: 8px;
|
||||
overflow: auto;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.detected-urls-empty {
|
||||
padding: 8px 0;
|
||||
color: #6b7280;
|
||||
font-size: 13px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.detected-url-item {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
padding: 10px 12px;
|
||||
border-left: 4px solid var(--detected-url-border, #d0d7de);
|
||||
border-radius: 6px;
|
||||
background: linear-gradient(90deg, var(--detected-url-bg, rgba(0, 0, 0, 0.03)), rgba(255, 255, 255, 0.96) 28%);
|
||||
}
|
||||
|
||||
.detected-url-topline {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.detected-url-controls {
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
gap: 6px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.detected-url-number {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 999px;
|
||||
background: rgba(15, 23, 42, 0.08);
|
||||
color: #24303b;
|
||||
font-size: 10px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.detected-url-body {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.detected-url-value {
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
line-height: 1.45;
|
||||
color: #1f2937;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
.detected-url-toggle-btn {
|
||||
flex: 0 0 auto;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 4px 8px;
|
||||
min-height: 24px;
|
||||
border: 1px solid rgba(148, 163, 184, 0.4);
|
||||
border-radius: 999px;
|
||||
background: rgba(148, 163, 184, 0.12);
|
||||
color: #64748b;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
line-height: 1;
|
||||
white-space: nowrap;
|
||||
transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.detected-url-toggle-btn:hover {
|
||||
background: rgba(15, 23, 42, 0.08);
|
||||
}
|
||||
|
||||
.detected-url-toggle-btn-inactive:hover {
|
||||
border-color: rgba(180, 35, 24, 0.28);
|
||||
background: rgba(180, 35, 24, 0.10);
|
||||
color: #b42318;
|
||||
}
|
||||
|
||||
.detected-url-toggle-btn-active:hover {
|
||||
border-color: rgba(22, 101, 52, 0.28);
|
||||
background: rgba(22, 101, 52, 0.10);
|
||||
color: #166534;
|
||||
}
|
||||
|
||||
.detected-url-toggle-btn-disabled,
|
||||
.detected-url-toggle-btn-disabled:hover {
|
||||
border-color: rgba(203, 213, 225, 0.55);
|
||||
background: rgba(226, 232, 240, 0.45);
|
||||
color: #94a3b8;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.detected-url-message {
|
||||
margin-top: 4px;
|
||||
font-size: 11px;
|
||||
color: #617080;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.detected-url-allowlisted .detected-url-value {
|
||||
color: #166534;
|
||||
}
|
||||
|
||||
.detected-url-denied .detected-url-value {
|
||||
color: #b42318;
|
||||
text-decoration: line-through;
|
||||
text-decoration-thickness: 1.5px;
|
||||
}
|
||||
|
||||
.detected-url-denied .detected-url-message {
|
||||
color: #b42318;
|
||||
}
|
||||
|
||||
.detected-url-filtered .detected-url-value {
|
||||
color: #6b7280;
|
||||
}
|
||||
|
||||
.form-field .help-text {
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
@@ -173,7 +413,137 @@ select {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
/* Checkbox fields (for overwrite, update, index_only) */
|
||||
.tag-editor-container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 8px 12px;
|
||||
min-height: 44px;
|
||||
background: #fff;
|
||||
border: 2px solid #004882;
|
||||
border-radius: 4px;
|
||||
box-shadow: 4px 4px 4px rgba(0,0,0,0.02);
|
||||
cursor: text;
|
||||
}
|
||||
|
||||
.tag-editor-container:focus-within {
|
||||
border-color: #2c7ec1;
|
||||
}
|
||||
|
||||
.tag-pills {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.tag-pill {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
padding: 4px 8px 4px 10px;
|
||||
background: var(--tag-bg, #e2e8f0);
|
||||
color: var(--tag-fg, #1e293b);
|
||||
border-radius: 16px;
|
||||
border: 1px solid var(--tag-border, #cbd5e1);
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.tag-remove-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 1px solid rgba(15, 23, 42, 0.12);
|
||||
border-radius: 50%;
|
||||
background: rgba(15, 23, 42, 0.08);
|
||||
color: inherit;
|
||||
font-size: 14px;
|
||||
line-height: 1;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tag-inline-input {
|
||||
flex: 1;
|
||||
min-width: 120px;
|
||||
padding: 4px 0;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
outline: none;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.tag-inline-input::placeholder {
|
||||
color: #7c8b98;
|
||||
}
|
||||
|
||||
.url-filters-widget textarea {
|
||||
min-height: 58px;
|
||||
font-family: monospace;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.url-filters-field > label {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.url-filters-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.url-filter-label-row {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
flex-wrap: nowrap;
|
||||
gap: 10px;
|
||||
width: 100%;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.url-filters-column .url-filter-label {
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.url-filter-label-main {
|
||||
font-weight: 600;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.url-filter-label-note {
|
||||
display: inline-block;
|
||||
flex: 0 0 auto;
|
||||
margin-left: auto;
|
||||
font-size: 12px;
|
||||
color: #7a7a7a;
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
text-align: right;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.url-filters-toggle {
|
||||
display: inline-flex !important;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-top: 10px;
|
||||
font-size: 14px !important;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.url-filters-toggle input[type="checkbox"] {
|
||||
width: auto;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.checkbox-field {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@@ -193,7 +563,6 @@ select {
|
||||
/* URL Counter */
|
||||
.url-counter {
|
||||
display: inline-block;
|
||||
margin-top: 8px;
|
||||
padding: 4px 10px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
@@ -209,13 +578,27 @@ select {
|
||||
border-color: #c3e6cb;
|
||||
}
|
||||
|
||||
@media (max-width: 1020px) {
|
||||
.settings-row {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.url-workbench {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.url-filters-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
/* Plugin Presets */
|
||||
.plugin-presets {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 18px;
|
||||
padding: 15px;
|
||||
background-color: #f8f9fa;
|
||||
border: 1px solid #dee2e6;
|
||||
@@ -254,11 +637,18 @@ select {
|
||||
|
||||
/* Plugin groups */
|
||||
.plugin-group {
|
||||
margin-bottom: 20px;
|
||||
padding: 15px;
|
||||
padding: 14px 16px;
|
||||
background-color: white;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 6px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.plugin-groups-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(280px, 1fr));
|
||||
gap: 16px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.plugin-group-header {
|
||||
@@ -268,6 +658,7 @@ select {
|
||||
margin-bottom: 12px;
|
||||
padding-bottom: 8px;
|
||||
border-bottom: 2px solid #004882;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.plugin-group-header label {
|
||||
@@ -277,6 +668,12 @@ select {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.plugin-group-note {
|
||||
font-size: 12px;
|
||||
color: #7a7a7a;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.select-all-btn {
|
||||
padding: 4px 12px;
|
||||
font-size: 12px;
|
||||
@@ -293,42 +690,105 @@ select {
|
||||
|
||||
.plugin-checkboxes {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
||||
gap: 8px;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.plugin-checkboxes ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: contents;
|
||||
.plugin-checkboxes > div {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 6px 10px;
|
||||
}
|
||||
|
||||
.plugin-checkboxes li {
|
||||
.plugin-checkboxes > div > div {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 6px;
|
||||
padding: 6px 8px;
|
||||
border: 1px solid #e3e8ef;
|
||||
background-color: #fff;
|
||||
border-radius: 4px;
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
|
||||
.plugin-checkboxes li:hover {
|
||||
.plugin-checkboxes > div > div:hover {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
.plugin-checkboxes input[type="checkbox"] {
|
||||
grid-column: 2;
|
||||
grid-row: 1 / span 2;
|
||||
margin: 0;
|
||||
margin-top: 2px;
|
||||
width: auto;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.plugin-checkboxes label {
|
||||
#add-form .plugin-checkboxes label {
|
||||
display: grid !important;
|
||||
grid-template-columns: 18px 16px minmax(0, 1fr);
|
||||
column-gap: 8px;
|
||||
row-gap: 3px;
|
||||
align-items: start;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.plugin-choice-name {
|
||||
grid-column: 3;
|
||||
grid-row: 1;
|
||||
font-weight: 500;
|
||||
color: #1f2937;
|
||||
}
|
||||
|
||||
#add-form .plugin-choice-icon {
|
||||
grid-column: 1;
|
||||
grid-row: 1 / span 2;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #7a7a7a;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
#add-form .plugin-choice-icon .abx-output-icon {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#add-form .plugin-choice-icon svg {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
#add-form .plugin-choice-description {
|
||||
grid-column: 3;
|
||||
grid-row: 2;
|
||||
margin-left: 0;
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
color: #7a7a7a !important;
|
||||
text-decoration: none !important;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#add-form .plugin-checkboxes label a.plugin-choice-description:link,
|
||||
#add-form .plugin-checkboxes label a.plugin-choice-description:visited,
|
||||
#add-form .plugin-checkboxes label a.plugin-choice-description:active {
|
||||
color: #7a7a7a !important;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
#add-form .plugin-checkboxes label a.plugin-choice-description:hover,
|
||||
#add-form .plugin-checkboxes label a.plugin-choice-description:focus {
|
||||
color: #4b5563 !important;
|
||||
text-decoration: underline !important;
|
||||
}
|
||||
|
||||
/* Advanced section (collapsible) */
|
||||
.advanced-section {
|
||||
background-color: white;
|
||||
@@ -388,6 +848,14 @@ input:focus, select:focus, textarea:focus, button:focus {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.plugin-groups-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.plugin-checkboxes > div {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.plugin-group-header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
|
||||
@@ -477,6 +477,10 @@ body.model-snapshot.change-list #content .object-tools {
|
||||
max-width: 220px;
|
||||
}
|
||||
|
||||
#content td.field-tags_inline .tag-editor-inline.readonly {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
#content th.field-tags_inline,
|
||||
#content td.field-tags_inline {
|
||||
max-width: 220px;
|
||||
@@ -610,6 +614,56 @@ body.model-snapshot.change-list #content .object-tools {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
body.model-archiveresult.change-list #result_list td.field-cmd_str {
|
||||
width: 300px !important;
|
||||
max-width: 300px !important;
|
||||
min-width: 300px !important;
|
||||
}
|
||||
|
||||
body.model-archiveresult.change-list #result_list td.field-cmd_str > div,
|
||||
body.model-archiveresult.change-list #result_list td.field-cmd_str code {
|
||||
max-width: 300px !important;
|
||||
}
|
||||
|
||||
body.model-archiveresult.change-list #result_list {
|
||||
table-layout: fixed;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
body.model-archiveresult.change-list #result_list th.column-cmd_str,
|
||||
body.model-archiveresult.change-list #result_list td.field-cmd_str {
|
||||
width: 300px !important;
|
||||
max-width: 300px !important;
|
||||
min-width: 300px !important;
|
||||
overflow: hidden !important;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body.model-archiveresult.change-list #result_list th.column-process_link,
|
||||
body.model-archiveresult.change-list #result_list td.field-process_link {
|
||||
width: 72px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
body.model-archiveresult.change-list #result_list th.column-machine_link,
|
||||
body.model-archiveresult.change-list #result_list td.field-machine_link {
|
||||
width: 180px;
|
||||
}
|
||||
|
||||
body.model-archiveresult.change-list #result_list td.field-snapshot_info a {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
body.model-archiveresult.change-list #result_list td.field-cmd_str > div,
|
||||
body.model-archiveresult.change-list #result_list td.field-cmd_str code {
|
||||
width: 300px !important;
|
||||
min-width: 300px !important;
|
||||
max-width: 300px !important;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body.filters-collapsed #content #changelist-filter {
|
||||
display: none !important;
|
||||
}
|
||||
@@ -637,10 +691,49 @@ body.filters-collapsed .filtered div.xfull {
|
||||
font-variant: small-caps;
|
||||
}
|
||||
|
||||
#result_list tbody td.field-status {
|
||||
#result_list tbody td.field-status,
|
||||
#result_list tbody td.field-status_badge {
|
||||
font-variant: small-caps;
|
||||
}
|
||||
|
||||
body.model-archiveresult.filters-collapsed.change-list #changelist .changelist-form-container {
|
||||
gap: 0 !important;
|
||||
}
|
||||
|
||||
body.model-archiveresult.filters-collapsed.change-list #changelist .changelist-form-container > div,
|
||||
body.model-archiveresult.filters-collapsed.change-list #changelist .results,
|
||||
body.model-archiveresult.filters-collapsed.change-list #changelist .paginator,
|
||||
body.model-archiveresult.filters-collapsed.change-list #changelist #toolbar,
|
||||
body.model-archiveresult.filters-collapsed.change-list #changelist #changelist-form,
|
||||
body.model-archiveresult.filters-collapsed.change-list #changelist #result_list {
|
||||
width: 100% !important;
|
||||
max-width: 100% !important;
|
||||
margin-right: 0 !important;
|
||||
}
|
||||
|
||||
body.model-archiveresult.change-list #result_list tbody tr {
|
||||
transition: background-color 0.15s ease, opacity 0.15s ease;
|
||||
}
|
||||
|
||||
body.model-archiveresult.change-list #result_list tbody tr:has(td.field-status_badge .status-badge.started),
|
||||
body.model-archiveresult.change-list #result_list tbody tr:has(td.field-status_badge .status-badge.backoff) {
|
||||
background: rgba(251, 191, 36, 0.14);
|
||||
}
|
||||
|
||||
body.model-archiveresult.change-list #result_list tbody tr:has(td.field-status_badge .status-badge.failed) {
|
||||
background: rgba(239, 68, 68, 0.12);
|
||||
}
|
||||
|
||||
body.model-archiveresult.change-list #result_list tbody tr:has(td.field-status_badge .status-badge.succeeded) {
|
||||
background: rgba(34, 197, 94, 0.11);
|
||||
}
|
||||
|
||||
body.model-archiveresult.change-list #result_list tbody tr:has(td.field-status_badge .status-badge.skipped),
|
||||
body.model-archiveresult.change-list #result_list tbody tr:has(td.field-status_badge .status-badge.noresults) {
|
||||
background: rgba(148, 163, 184, 0.10);
|
||||
opacity: 0.82;
|
||||
}
|
||||
|
||||
.inline-group .tabular td.original p {
|
||||
margin-top: -28px;
|
||||
}
|
||||
@@ -697,6 +790,7 @@ tbody .output-link:hover {opacity: 1;}
|
||||
.status-badge.failed { background: #fee2e2; color: #ef4444; }
|
||||
.status-badge.backoff { background: #fef3c7; color: #f59e0b; }
|
||||
.status-badge.skipped { background: #f3f4f6; color: #6b7280; }
|
||||
.status-badge.noresults { background: #f1f5f9; color: #64748b; }
|
||||
|
||||
/* Progress Bar */
|
||||
.snapshot-progress-bar {
|
||||
|
||||
Reference in New Issue
Block a user