Skip to content

Commit

Permalink
stylelint: string-quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
jelly authored and martinpitt committed Jun 24, 2022
1 parent ca9fe32 commit ee5dd59
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion .stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@
"selector-pseudo-element-colon-notation": null,
"selector-type-case": null,
"shorthand-property-no-redundant-values": null,
"string-quotes": null,
"keyframes-name-pattern": null,
"value-keyword-case": null,
"value-list-comma-newline-after": null,
Expand Down
2 changes: 1 addition & 1 deletion pkg/lib/journal.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
}

.cockpit-log-panel .panel-body .panel-heading:not(:first-child)::after {
content: '\a0';
content: "\a0";
display: block;
flex: auto;
background: linear-gradient(var(--ct-color-bg) 50%, var(--ct-color-border) calc(50% + 1px), var(--ct-color-bg) calc(50% + 2px));
Expand Down
4 changes: 2 additions & 2 deletions pkg/static/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
font-family: RedHatText;
font-style: normal;
font-weight: 400;
src: url(fonts/RedHatText-Regular.woff2) format('woff2');
src: url(fonts/RedHatText-Regular.woff2) format("woff2");
}

@font-face {
font-family: RedHatText;
font-style: normal;
font-weight: 700;
src: url(fonts/RedHatText-Medium.woff2) format('woff2');
src: url(fonts/RedHatText-Medium.woff2) format("woff2");
}

*,
Expand Down
2 changes: 1 addition & 1 deletion pkg/systemd/overview-cards/lastLogin.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@import "global-variables";
@import '@patternfly/patternfly/utilities/Text/text.scss';
@import "@patternfly/patternfly/utilities/Text/text.scss";

.system-information-failed-login-warning-icon {
color: var(--pf-global--warning-color--100);
Expand Down
4 changes: 2 additions & 2 deletions pkg/systemd/services/service-details.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@use 'ct-card';
@use '../../lib/journal.css';
@use "ct-card";
@use "../../lib/journal.css";
@use "_global-variables.scss";

#service-details .pf-l-gallery {
Expand Down

0 comments on commit ee5dd59

Please sign in to comment.