Skip to content

Commit

Permalink
Fix font icon style assignment (bsc#1231378)
Browse files Browse the repository at this point in the history
  • Loading branch information
Etheryte committed Oct 9, 2024
1 parent f72efa4 commit 350d8c3
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions java/spacewalk-java.changes.eth.fa2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Ensure icon fonts are loaded correctly on buttons (bsc#1231378)
8 changes: 8 additions & 0 deletions web/html/src/branding/css/susemanager/components/icons.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.fa,
[class^="fa-"] {
font-family: "FontAwesome";
}

[class*="spacewalk-icon-"] {
font-family: "spacewalk-icon";
}
8 changes: 8 additions & 0 deletions web/html/src/branding/css/susemanager/components/icons.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.fa,
[class^="fa-"] {
font-family: "FontAwesome";
}

[class*="spacewalk-icon-"] {
font-family: "spacewalk-icon";
}
1 change: 1 addition & 0 deletions web/html/src/branding/css/susemanager/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
@import "./components/date-time-picker.less";
@import "./components/header.less";
@import "./components/address.less";
@import "./components/icons.less";

// Responsive overrides
@import "../base/responsive-rules.less";
1 change: 1 addition & 0 deletions web/html/src/branding/css/susemanager/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
@import "./components/legend.scss";
@import "./components/help-block.scss";
@import "./components/collapse.scss";
@import "./components/icons.scss";

@import "./bootstrap-fixes.scss";

Expand Down
1 change: 1 addition & 0 deletions web/spacewalk-web.changes.eth.fa2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Ensure icon fonts are loaded correctly on buttons (bsc#1231378)

0 comments on commit 350d8c3

Please sign in to comment.