Skip to content

Commit 5b1c147

Browse files
committed
refactor(multi): updated workflow, scss, img & css
- updated workflow handle-new-issue-comment & issue-staler - updated scss form-select & nav - removed img man-with-laptop-light - updated css core & theme-default
1 parent 2206ce1 commit 5b1c147

File tree

7 files changed

+24
-20
lines changed

7 files changed

+24
-20
lines changed

.github/workflows/handle-new-issue-comment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Handle new issue comment'
1+
name: '💬 Handle new issue comment'
22
on:
33
issue_comment:
44
types: [created]
@@ -9,6 +9,6 @@ jobs:
99
name: Handle new issue comment
1010
steps:
1111
- name: Toggle awaiting-reply label
12-
uses: jd-solanki/[email protected].0
12+
uses: jd-solanki/[email protected].2
1313
with:
1414
label: awaiting-reply

.github/workflows/issue-staler.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Close stale issues and PRs'
1+
name: '😶‍🌫️ Close stale issues and PRs'
22
on:
33
schedule:
44
- cron: '30 1 * * *'

src/scss/_bootstrap-extended/_nav.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,10 @@
297297
border-left: $nav-tabs-border-width solid $nav-tabs-border-color;
298298
}
299299
}
300-
border-right: $border-width solid $border-color;
301-
& .nav-link:not(.active):hover {
302-
border-right: 2px solid $nav-pills-link-hover-bg !important;
303-
padding-right: calc($nav-link-padding-x - 0.125rem);
300+
border-right: $border-width solid $border-color;
301+
& .nav-link:not(.active):hover {
302+
border-right: 2px solid $nav-pills-link-hover-bg !important;
303+
padding-right: calc($nav-link-padding-x - 0.125rem);
304304
}
305305
}
306306
> .nav .nav-item,

src/scss/_bootstrap-extended/forms/_form-select.scss

+3-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@
1515
}
1616
&:focus {
1717
border-width: $input-focus-border-width;
18-
padding: calc($form-select-padding-y - $input-focus-border-width)
19-
calc($form-select-padding-x * 3 - $input-focus-border-width)
20-
calc($form-select-padding-y - $input-focus-border-width)
21-
calc($form-select-padding-x - $input-focus-border-width);
18+
padding: calc($form-select-padding-y - $input-focus-border-width)
19+
calc($form-select-padding-x * 3 - $input-focus-border-width)
20+
calc($form-select-padding-y - $input-focus-border-width) calc($form-select-padding-x - $input-focus-border-width);
2221
background-position: right calc($form-select-padding-x - 1px) center;
2322
}
2423
&.form-select-lg {
Binary file not shown.

wwwroot/vendor/css/core.css

+14-8
Original file line numberDiff line numberDiff line change
@@ -7729,7 +7729,6 @@ label.btn {
77297729
.show > .btn-outline-secondary.dropdown-toggle .badge {
77307730
background: #fff;
77317731
border-color: #fff;
7732-
color: #8592a3;
77337732
}
77347733

77357734
.btn-success {
@@ -7809,7 +7808,6 @@ label.btn {
78097808
.show > .btn-outline-success.dropdown-toggle .badge {
78107809
background: #fff;
78117810
border-color: #fff;
7812-
color: #71dd37;
78137811
}
78147812

78157813
.btn-info {
@@ -7889,7 +7887,6 @@ label.btn {
78897887
.show > .btn-outline-info.dropdown-toggle .badge {
78907888
background: #fff;
78917889
border-color: #fff;
7892-
color: #03c3ec;
78937890
}
78947891

78957892
.btn-warning {
@@ -7969,7 +7966,6 @@ label.btn {
79697966
.show > .btn-outline-warning.dropdown-toggle .badge {
79707967
background: #fff;
79717968
border-color: #fff;
7972-
color: #ffab00;
79737969
}
79747970

79757971
.btn-danger {
@@ -8049,7 +8045,6 @@ label.btn {
80498045
.show > .btn-outline-danger.dropdown-toggle .badge {
80508046
background: #fff;
80518047
border-color: #fff;
8052-
color: #ff3e1d;
80538048
}
80548049

80558050
.btn-light {
@@ -8129,7 +8124,6 @@ label.btn {
81298124
.show > .btn-outline-light.dropdown-toggle .badge {
81308125
background: #22303e;
81318126
border-color: #22303e;
8132-
color: #dbdee0;
81338127
}
81348128

81358129
.btn-dark {
@@ -8209,7 +8203,6 @@ label.btn {
82098203
.show > .btn-outline-dark.dropdown-toggle .badge {
82108204
background: #fff;
82118205
border-color: #fff;
8212-
color: #2b2c40;
82138206
}
82148207

82158208
.btn-gray {
@@ -8289,7 +8282,6 @@ label.btn {
82898282
.show > .btn-outline-gray.dropdown-toggle .badge {
82908283
background: #fff;
82918284
border-color: #fff;
8292-
color: rgba(34, 48, 62, 0.5);
82938285
}
82948286

82958287
.btn-icon {
@@ -9118,6 +9110,17 @@ li:not(:first-child) .dropdown-item, .dropdown-menu .dropdown-item:not(:first-ch
91189110
.form-control:hover:not([disabled]):not([focus]) {
91199111
border-color: #7a838b;
91209112
}
9113+
.input-group .form-control[type=number] {
9114+
line-height: 1.375rem;
9115+
min-height: 2.375rem;
9116+
}
9117+
.input-group-lg .form-control[type=number] {
9118+
line-height: 1.5rem;
9119+
min-height: 3rem;
9120+
}
9121+
.input-group-sm .form-control[type=number] {
9122+
min-height: 1.875rem;
9123+
}
91219124
.form-control:focus {
91229125
border-width: 2px;
91239126
padding: calc(0.543rem - 2px) calc(0.9375rem - 2px);
@@ -9209,6 +9212,9 @@ li:not(:first-child) .dropdown-item, .dropdown-menu .dropdown-item:not(:first-ch
92099212
.form-select.form-select-sm:focus {
92109213
padding: calc(0.3165rem - 2px) calc(2.4375rem - 2px) calc(0.3165rem - 2px) calc(0.8125rem - 2px);
92119214
}
9215+
.form-select[multiple]:focus {
9216+
padding-inline-end: 0.875rem !important;
9217+
}
92129218

92139219
.form-range::-webkit-slider-thumb {
92149220
box-shadow: 0 0.112rem 0.375rem 0 rgba(34, 48, 62, 0.08);

wwwroot/vendor/css/theme-default.css

-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,6 @@ button.list-group-item-primary.active {
302302
.show > .btn-outline-primary.dropdown-toggle .badge {
303303
background: #fff;
304304
border-color: #fff;
305-
color: #696cff;
306305
}
307306

308307
.dropdown-item:not(.disabled).active, .dropdown-item:not(.disabled):active {

0 commit comments

Comments
 (0)