Skip to content

Commit 6686bdf

Browse files
committed
use font-size-small css variable
1 parent 32ca4b0 commit 6686bdf

File tree

8 files changed

+11
-12
lines changed

8 files changed

+11
-12
lines changed

src/@batch-flask/ui/buttons/button.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ bl-button {
174174
}
175175

176176
.btn-tooltip {
177-
font-size: 11px !important
177+
font-size: $font-size-small !important
178178
}
179179

180180
@media (forced-colors: active) {

src/@batch-flask/ui/metrics-monitor/metrics-monitor.scss

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,15 @@ bl-metrics-monitor {
2424
margin-left: 5px;
2525

2626
> .label {
27-
font-size: 11px;
27+
font-size: $font-size-small;
2828
line-height: 11px;
2929
margin-bottom: 3px;
3030
}
3131

3232
> .status {
33-
font-size: 11px;
33+
font-size: $font-size-small;
3434
color: $secondary-text;
3535
}
36-
3736
}
3837

3938
> .graph {

src/@batch-flask/ui/quotas/quota-display/quota-display.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ bl-quota-display {
3939

4040
&[type="normal"] {
4141
> .details > .label {
42-
font-size: 11px;
42+
font-size: $font-size-small;
4343
height: 35%;
4444
margin: 3px 5px 0;
4545
}

src/@batch-flask/ui/tags/tag-list/tag-list.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ bl-tag-list {
55
align-items: center;
66

77
.tag {
8-
font-size: 11px;
8+
font-size: $font-size-small;
99
color: $primary-contrast-color;
1010
background: $primary-color;
1111
padding: 0 5px;

src/@batch-flask/ui/toolbar/toolbar.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ bl-toolbar {
2222
> [toolbarLabel] {
2323
display: inline-block;
2424
flex: 1;
25-
font-size: 11px;
25+
font-size: $font-size-small;
2626
color: $secondary-text;
2727
font-weight: 700;
2828
user-select: none;

src/app/components/gallery/application-list/gallery-application-list.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ bl-gallery-application-list {
4747
}
4848

4949
.tooltip {
50-
font-size: 11px;
50+
font-size: $font-size-small;
5151
}
5252
}

src/app/components/pool/action/add/app-license-picker/app-license-picker.scss

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ bl-app-license-picker {
99
color: #333333;
1010

1111
> .summary-container {
12-
1312
&.standard {
1413
height: unset;
1514
}
@@ -52,7 +51,7 @@ bl-app-license-picker {
5251
}
5352

5453
.note {
55-
font-size: 11px;
54+
font-size: $font-size-small;
5655
font-weight: bold;
5756
padding-top: 5px;
5857
}
@@ -81,8 +80,8 @@ bl-app-license-picker {
8180
}
8281

8382
ol li span {
84-
font-weight:bold;
85-
margin-right:5px;
83+
font-weight: bold;
84+
margin-right: 5px;
8685
border-bottom: 1px solid $primary-text;
8786
}
8887
}

src/app/styles/variables.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ $link-color-hover : $primary-color-dark;
99
$validation-error-color : $danger-color;
1010

1111

12+
$font-size-small : 11px;
1213
$font-size-base : 13px;
1314
$font-size-large : 15px;
1415
$baseLineHeight : 1.4em;

0 commit comments

Comments
 (0)