-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: yaacov <[email protected]>
- Loading branch information
Showing
126 changed files
with
11,870 additions
and
122 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,8 @@ | |
"build": "tsx scripts/build.ts", | ||
"serve": "tsx scripts/serve.ts", | ||
"lint": "eslint ./src/", | ||
"lint:fix": "eslint ./src/ --fix" | ||
"lint:fix": "eslint ./src/ --fix", | ||
"clean": "rm -rf build" | ||
}, | ||
"author": "Yaacov Zamir<[email protected]>", | ||
"license": "Apache-2.0", | ||
|
@@ -25,6 +26,7 @@ | |
"typescript-eslint": "^8.0.0" | ||
}, | ||
"dependencies": { | ||
"@patternfly/patternfly": "^5.3.1", | ||
"lit": "^3.1.4" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
client/src/assets/styles/assets/fontawesome/_animated.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Animated icons | ||
// -------------------------- | ||
|
||
.#{$fa-css-prefix}-spin { | ||
animation: fa-spin 2s infinite linear; | ||
} | ||
|
||
.#{$fa-css-prefix}-pulse { | ||
animation: fa-spin 1s infinite steps(8); | ||
} | ||
|
||
@keyframes fa-spin { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
client/src/assets/styles/assets/fontawesome/_bordered-pulled.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Bordered & pulled | ||
// ------------------------- | ||
|
||
.#{$fa-css-prefix}-border { | ||
border: solid .08em $fa-border-color; | ||
border-radius: .1em; | ||
padding: .2em .25em .15em; | ||
} | ||
|
||
.#{$fa-css-prefix}-pull-left { float: left; } | ||
.#{$fa-css-prefix}-pull-right { float: right; } | ||
|
||
.#{$fa-css-prefix}, | ||
.fas, | ||
.far, | ||
.fal, | ||
.fab { | ||
&.#{$fa-css-prefix}-pull-left { margin-right: .3em; } | ||
&.#{$fa-css-prefix}-pull-right { margin-left: .3em; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Base class definition | ||
// ------------------------- | ||
|
||
.#{$fa-css-prefix}, | ||
.fas, | ||
.far, | ||
.fal, | ||
.fab { | ||
-moz-osx-font-smoothing: grayscale; | ||
-webkit-font-smoothing: antialiased; | ||
display: inline-block; | ||
font-style: normal; | ||
font-variant: normal; | ||
text-rendering: auto; | ||
line-height: 1; | ||
} | ||
|
||
%fa-icon { | ||
@include fa-icon; | ||
} |
6 changes: 6 additions & 0 deletions
6
client/src/assets/styles/assets/fontawesome/_fixed-width.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// Fixed width icons | ||
// ------------------------- | ||
.#{$fa-css-prefix}-fw { | ||
text-align: center; | ||
width: $fa-fw-width; | ||
} |
Oops, something went wrong.