Skip to content

Commit 6ec8866

Browse files
committed
#101 added smaller fonts for job class and misfire instructions
1 parent f96e356 commit 6ec8866

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

quartz-manager-frontend/src/app/components/simple-trigger-config/simple-trigger-config.component.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
>
3636
<mat-label>Job Class</mat-label>
3737
<mat-select id="jobClass" name="jobClass" formControlName="jobClass">
38-
<mat-option *ngFor="let job of jobs" [value]="job">
38+
<mat-option *ngFor="let job of jobs" [value]="job" class="font-13">
3939
{{job}}
4040
</mat-option>
4141
</mat-select>
@@ -51,17 +51,17 @@
5151
>
5252
<mat-label>Misfire Instruction</mat-label>
5353
<mat-select id="misfireInstruction" name="misfireInstruction" formControlName="misfireInstruction">
54-
<mat-option value="MISFIRE_INSTRUCTION_FIRE_NOW">FIRE NOW</mat-option>
55-
<mat-option value="MISFIRE_INSTRUCTION_RESCHEDULE_NOW_WITH_EXISTING_REPEAT_COUNT">RESCHEDULE NOW WITH
54+
<mat-option class="font-13" value="MISFIRE_INSTRUCTION_FIRE_NOW">FIRE NOW</mat-option>
55+
<mat-option class="font-13" value="MISFIRE_INSTRUCTION_RESCHEDULE_NOW_WITH_EXISTING_REPEAT_COUNT">RESCHEDULE NOW WITH
5656
EXISTING REPEAT COUNT
5757
</mat-option>
58-
<mat-option value="MISFIRE_INSTRUCTION_RESCHEDULE_NOW_WITH_REMAINING_REPEAT_COUNT">RESCHEDULE NOW WITH
58+
<mat-option class="font-13" value="MISFIRE_INSTRUCTION_RESCHEDULE_NOW_WITH_REMAINING_REPEAT_COUNT">RESCHEDULE NOW WITH
5959
REMAINING REPEAT COUNT
6060
</mat-option>
61-
<mat-option value="MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_REMAINING_COUNT">RESCHEDULE NEXT WITH
61+
<mat-option class="font-13" value="MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_REMAINING_COUNT">RESCHEDULE NEXT WITH
6262
REMAINING COUNT
6363
</mat-option>
64-
<mat-option value="MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_EXISTING_COUNT">RESCHEDULE NEXT WITH EXISTING
64+
<mat-option class="font-13" value="MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_EXISTING_COUNT">RESCHEDULE NEXT WITH EXISTING
6565
COUNT
6666
</mat-option>
6767
</mat-select>

quartz-manager-frontend/src/styles.css

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ body {
1616
/**
1717
TODO: Remove the below utility classes once tailwind is integrated.
1818
*/
19+
.font-13 {
20+
font-size: 13px;
21+
}
22+
1923
.font-large {
2024
font-size: large;
2125
}

0 commit comments

Comments
 (0)