Skip to content

Commit f82c486

Browse files
ran yarn lint:fix
1 parent 43bef11 commit f82c486

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

src/main/scss/components/_system-message.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
&__content {
3030
flex: 1;
31-
min-width: 0;
31+
min-width: 0;
3232

3333
p {
3434
margin: 0;
@@ -78,7 +78,7 @@
7878

7979
&--maintenance {
8080
background-color: color-mix(in sRGB, var(--orange) 10%, transparent);
81-
border: 2.5px solid rgba(255, 202, 160, 1); //ffdabf
81+
border: 2.5px solid rgb(255 202 160 / 1); // ffdabf
8282
color: color-mix(in sRGB, var(--orange) 80%, var(--text-color));
8383

8484
.system-message__icon {

src/main/scss/pages/_dashboard.scss

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -98,16 +98,14 @@ $min-button-size: 2.375rem;
9898
grid-template-columns: auto 1fr;
9999
gap: 1rem;
100100
text-decoration: none !important;
101-
overflow-x: hidden;
102-
overflow-y: visible;
101+
overflow: hidden visible;
103102
}
104103

105104
&__details__text {
106105
display: flex;
107106
flex-direction: column;
108107
gap: 0.5rem;
109-
overflow-x: hidden;
110-
overflow-y: visible;
108+
overflow: hidden visible;
111109
}
112110

113111
&__actions {
@@ -214,7 +212,7 @@ div.listview-jobs {
214212
}
215213

216214
#main-panel {
217-
padding-top: .75rem;
215+
padding-top: 0.75rem;
218216
}
219217

220218
.app-build-bar {
@@ -226,7 +224,7 @@ div.listview-jobs {
226224
}
227225

228226
.app-build-content > *:first-child {
229-
margin-top: 1rem;
227+
margin-top: 1rem;
230228
}
231229

232230
/* System and shutdown messages styling */
@@ -239,17 +237,16 @@ div.listview-jobs {
239237
margin: 1.25rem var(--section-padding);
240238
padding: 1.25rem 1.75rem;
241239
border-radius: var(--form-input-border-radius);
242-
background: var(--alert-danger-bg, #ff0000);
240+
background: var(--alert-danger-bg, #f00);
243241
border: 1px solid var(--alert-danger-border, #f1f1f1);
244242
color: var(--alert-danger-text, #721c24);
245243
}
246244

247-
:where(#main-panel) :where(.alert, .jenkins-alert, [class*="message"])
248-
{
245+
:where(#main-panel) :where(.alert, .jenkins-alert, [class*="message"]) {
249246
position: relative;
250247
z-index: 150;
251248
display: block;
252249
visibility: visible;
253250
overflow: visible;
254251
max-height: none;
255-
}
252+
}

0 commit comments

Comments
 (0)