diff options
Diffstat (limited to 'asset/css')
-rw-r--r-- | asset/css/fontawesome.css | 17 | ||||
-rw-r--r-- | asset/css/icons-base.less | 8 | ||||
-rw-r--r-- | asset/css/mixin/mixins.less | 4 |
3 files changed, 20 insertions, 9 deletions
diff --git a/asset/css/fontawesome.css b/asset/css/fontawesome.css index b35a770..ca00c63 100644 --- a/asset/css/fontawesome.css +++ b/asset/css/fontawesome.css @@ -1,7 +1,7 @@ /*! - * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2023 Fonticons, Inc. + * Copyright 2024 Fonticons, Inc. */ .fa { font-family: var(--fa-style-family, "Font Awesome 6 Free"); @@ -463,8 +463,8 @@ transform: scale(-1, -1); } .fa-rotate-by { - -webkit-transform: rotate(var(--fa-rotate-angle, none)); - transform: rotate(var(--fa-rotate-angle, none)); } + -webkit-transform: rotate(var(--fa-rotate-angle, 0)); + transform: rotate(var(--fa-rotate-angle, 0)); } .fa-stack { display: inline-block; @@ -2768,6 +2768,9 @@ readers do not read off random characters that represent icons */ .fa-italic::before { content: "\f033"; } +.fa-table-cells-column-lock::before { + content: "\e678"; } + .fa-church::before { content: "\f51d"; } @@ -4940,6 +4943,9 @@ readers do not read off random characters that represent icons */ .fa-font::before { content: "\f031"; } +.fa-table-cells-row-lock::before { + content: "\e67a"; } + .fa-rupiah-sign::before { content: "\e23d"; } @@ -5969,9 +5975,6 @@ readers do not read off random characters that represent icons */ .fa-share::before { content: "\f064"; } -.fa-arrow-turn-right::before { - content: "\f064"; } - .fa-mail-forward::before { content: "\f064"; } diff --git a/asset/css/icons-base.less b/asset/css/icons-base.less index 301c505..1d8e871 100644 --- a/asset/css/icons-base.less +++ b/asset/css/icons-base.less @@ -1,8 +1,12 @@ i.icon { vertical-align: middle; // Firefox will place icons weird otherwise + display: inline-block; - &:before { - display: inline-block; + font-style: normal; + line-height: 1; + + &::before { + display: block; min-width: 1em; margin-right: .2em; diff --git a/asset/css/mixin/mixins.less b/asset/css/mixin/mixins.less index ca30dd0..58b9567 100644 --- a/asset/css/mixin/mixins.less +++ b/asset/css/mixin/mixins.less @@ -35,3 +35,7 @@ overflow: hidden; text-overflow: ellipsis; } + +.monospace-font() { + font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; +} |