Compare commits
4 Commits
feature/sq
...
033b3415c2
| Author | SHA1 | Date | |
|---|---|---|---|
| 033b3415c2 | |||
| 2ccc3821d6 | |||
| 615755ba44 | |||
| 4b09491242 |
9
main.py
9
main.py
@@ -156,6 +156,15 @@ def index():
|
|||||||
background: rgba(255,255,255,0.2);
|
background: rgba(255,255,255,0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Sub-sequence accent (teal) */
|
||||||
|
.body--dark .subsegment-card > .q-expansion-item__container > .q-item {
|
||||||
|
border-left: 6px solid #06B6D4;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
.body--dark .subsegment-card .q-expansion-item__toggle-icon {
|
||||||
|
color: #06B6D4 !important;
|
||||||
|
}
|
||||||
|
|
||||||
/* Secondary pane teal accent */
|
/* Secondary pane teal accent */
|
||||||
.pane-secondary .q-field--outlined.q-field--focused .q-field__control:after {
|
.pane-secondary .q-field--outlined.q-field--focused .q-field__control:after {
|
||||||
border-color: #06B6D4 !important;
|
border-color: #06B6D4 !important;
|
||||||
|
|||||||
@@ -327,7 +327,8 @@ def _render_sequence_card(i, seq, batch_list, data, file_path, state,
|
|||||||
else:
|
else:
|
||||||
label = f'Sequence #{seq_num}'
|
label = f'Sequence #{seq_num}'
|
||||||
|
|
||||||
with ui.expansion(label, icon='movie').classes('w-full'):
|
exp_classes = 'w-full subsegment-card' if is_subsegment(seq_num) else 'w-full'
|
||||||
|
with ui.expansion(label, icon='movie').classes(exp_classes):
|
||||||
# --- Action row ---
|
# --- Action row ---
|
||||||
with ui.row().classes('w-full q-gutter-sm action-row'):
|
with ui.row().classes('w-full q-gutter-sm action-row'):
|
||||||
# Copy from source
|
# Copy from source
|
||||||
|
|||||||
Reference in New Issue
Block a user