-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
315 changed files
with
315,610 additions
and
0 deletions.
There are no files selected for viewing
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 @@ | ||
v0.10.0 |
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,35 @@ | ||
:root, :host { | ||
--fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; | ||
--fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Font Awesome 6 Free'; | ||
font-style: normal; | ||
font-weight: 400; | ||
font-display: block; | ||
src: url('@{iplWebAssets}/font/awesome/fa-regular-400.woff2') format('woff2'), | ||
url('@{iplWebAssets}/font/awesome/fa-regular-400.ttf') format('truetype'); | ||
} | ||
|
||
.far, | ||
.fa-regular { | ||
font-family: 'Font Awesome 6 Free'; | ||
font-weight: 400; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Font Awesome 6 Free'; | ||
font-style: normal; | ||
font-weight: 900; | ||
font-display: block; | ||
src: url('@{iplWebAssets}/font/awesome/fa-solid-900.woff2') format('woff2'), | ||
url('@{iplWebAssets}/font/awesome/fa-solid-900.ttf') format('truetype'); | ||
} | ||
|
||
.fa, | ||
.fas, | ||
.fa-solid { | ||
font-family: 'Font Awesome 6 Free'; | ||
font-weight: 900; | ||
} |
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,148 @@ | ||
@ball-pad: 1/6em; | ||
|
||
.ball { | ||
border-radius: 50%; | ||
display: inline-block; | ||
text-align: center; | ||
} | ||
|
||
.ball-size-xs { | ||
height: 1/3em; | ||
width: 1/3em; | ||
} | ||
|
||
.ball-size-s { | ||
height: 0.5em; | ||
width: 0.5em; | ||
} | ||
|
||
.ball-size-m { | ||
height: 0.75em; | ||
width: 0.75em; | ||
line-height: 0; | ||
|
||
i.icon:before { | ||
font-size: .75 - @ball-pad * 2; | ||
line-height: 1em; | ||
} | ||
} | ||
|
||
.ball-size-ml { | ||
height: 1em; | ||
width: 1em; | ||
line-height: 0; | ||
|
||
i.icon { | ||
line-height: 0.3; | ||
|
||
&:before { | ||
font-size: 0.8 - @ball-pad * 2; | ||
line-height: 1 - @ball-pad * 2; | ||
} | ||
} | ||
} | ||
|
||
.ball-size-l { | ||
height: 1.5em; | ||
width: 1.5em; | ||
line-height: 1em; | ||
|
||
i.icon:before { | ||
font-size: 1 - @ball-pad * 2; | ||
line-height: 1.5 - @ball-pad * 2; | ||
} | ||
} | ||
|
||
.ball-size-xl { | ||
width: 2em; | ||
height: 2em; | ||
|
||
i.icon:before { | ||
line-height: 2 - @ball-pad * 2; | ||
} | ||
} | ||
|
||
.ball-outline(@color) { | ||
border: @ball-pad solid @color; | ||
color: @color; | ||
} | ||
|
||
.ball-solid(@color) { | ||
background-color: @color; | ||
color: var(--default-text-color-inverted, @default-text-color-inverted); | ||
padding: @ball-pad; | ||
} | ||
|
||
.state-ball { | ||
.ball(); | ||
|
||
&.state-pending:not(.ball-size-l):not(.ball-size-xl) { | ||
.ball-solid(var(--state-pending, @state-pending)); | ||
} | ||
|
||
&.state-pending.ball-size-l, | ||
&.state-pending.ball-size-xl { | ||
.ball-outline(var(--state-pending, @state-pending)); | ||
} | ||
|
||
&.state-up:not(.ball-size-l):not(.ball-size-xl) { | ||
.ball-solid(var(--state-up, @state-up)); | ||
} | ||
|
||
&.state-up.ball-size-l, | ||
&.state-up.ball-size-xl { | ||
.ball-outline(var(--state-up, @state-up)); | ||
} | ||
|
||
&.state-down { | ||
.ball-solid(var(--state-down, @state-down)); | ||
} | ||
|
||
&.state-ok:not(.ball-size-l):not(.ball-size-xl) { | ||
.ball-solid(var(--state-ok, @state-ok)); | ||
} | ||
|
||
&.state-ok.ball-size-l, | ||
&.state-ok.ball-size-xl { | ||
.ball-outline(var(--state-ok, @state-ok)); | ||
} | ||
|
||
&.state-warning { | ||
.ball-solid(var(--state-warning, @state-warning)); | ||
} | ||
|
||
&.state-critical { | ||
.ball-solid(var(--state-critical, @state-critical)); | ||
} | ||
|
||
&.state-unknown { | ||
.ball-solid(var(--state-unknown, @state-unknown)); | ||
} | ||
|
||
&.handled { | ||
opacity: 0.6; | ||
} | ||
|
||
i { | ||
text-align: center; | ||
display: block; | ||
|
||
&:before { | ||
margin-right: 0; | ||
} | ||
} | ||
|
||
// Specific icon styles | ||
&.ball-size-l i { | ||
&.fa-sitemap:before { | ||
font-size: 8px; // px to ignore browser min font-size | ||
} | ||
} | ||
|
||
&.ball-size-xl i { | ||
&.fa-sitemap:before { | ||
font-size: .857em; | ||
line-height: (2 - @ball-pad * 2) / .857; | ||
} | ||
} | ||
} |
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,34 @@ | ||
.cancel-button { | ||
display: inline-flex; | ||
align-items: baseline; | ||
padding: .5em 1em; | ||
|
||
.appearance(none); | ||
.rounded-corners(); | ||
line-height: normal; | ||
cursor: pointer; | ||
|
||
background: var(--cancel-button-bg, @cancel-button-bg); | ||
border: 1px solid var(--cancel-button-border-color, @cancel-button-border-color); | ||
color: var(--cancel-button-color, @cancel-button-color); | ||
|
||
&:focus, | ||
&:hover { | ||
background-color: var(--cancel-button-hover-bg, @cancel-button-hover-bg); | ||
color: var(--cancel-button-hover-color, @cancel-button-hover-color); | ||
} | ||
|
||
&[disabled] { | ||
background: none; | ||
cursor: default; | ||
|
||
border: 1px solid var(--control-disabled-color, @control-disabled-color); | ||
color: var(--control-disabled-color, @control-disabled-color); | ||
|
||
&:focus, | ||
&:hover { | ||
background: none; | ||
color: var(--control-disabled-color, @control-disabled-color); | ||
} | ||
} | ||
} |
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,76 @@ | ||
.pagination-control { | ||
li > a { | ||
color: var(--control-color, @control-color); | ||
border-radius: .25em; | ||
} | ||
|
||
li > a:hover { | ||
background: var(--control-hover-bg, @control-hover-bg); | ||
} | ||
|
||
.previous-page, | ||
.next-page { | ||
padding: .5em .25em; | ||
|
||
i { | ||
display: block; | ||
} | ||
|
||
i:before { | ||
margin: 0; | ||
} | ||
} | ||
|
||
.previous-page > i { | ||
margin-left: -.125em; | ||
} | ||
|
||
.next-page > i { | ||
margin-right: -.125em; | ||
} | ||
} | ||
|
||
// Style | ||
|
||
.control-button { | ||
.appearance(none); | ||
background: none; | ||
border: none; | ||
color: var(--control-color, @control-color); | ||
.rounded-corners(); | ||
|
||
&:hover, &:focus, &.active { | ||
background-color: var(--control-hover-bg, @control-hover-bg); | ||
text-decoration: none; | ||
} | ||
|
||
&.disabled { | ||
color: var(--control-disabled-color, @control-disabled-color); | ||
|
||
&:hover { | ||
background: none; | ||
} | ||
} | ||
|
||
i.icon:before { | ||
color: inherit; | ||
} | ||
} | ||
|
||
// Layout | ||
|
||
.control-button { | ||
display: inline-block; | ||
padding: .25em .5em; | ||
|
||
> i.icon { | ||
display: inline-flex; | ||
align-items: center; | ||
height: 100%; | ||
} | ||
|
||
i.icon:before { | ||
margin-right: 0; | ||
} | ||
} | ||
|
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,9 @@ | ||
.flatpickr-input + .input { | ||
padding-right: 2em; | ||
|
||
& + .fa-calendar { | ||
margin: .5em 1em 0 -3.5em; | ||
padding: 0 .5em 0 1em; | ||
pointer-events: none; | ||
} | ||
} |
Oops, something went wrong.