From f9edc51804c553b1d4ca45d1ad95538471b2ef26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Thu, 15 Dec 2022 10:00:16 +0100 Subject: [PATCH 01/18] Revert "fix single quotes" --- .stylelintrc.js | 2 +- src/definitions/collections/grid.less | 10 +- src/definitions/collections/menu.less | 4 +- src/definitions/elements/button.less | 18 +-- src/definitions/elements/emoji.less | 4 +- src/definitions/elements/flag.less | 8 +- src/definitions/elements/icon.less | 4 +- src/definitions/elements/label.less | 4 +- src/definitions/elements/list.less | 2 +- src/definitions/elements/segment.less | 2 +- src/definitions/modules/dropdown.less | 2 +- src/definitions/modules/nag.less | 2 +- src/definitions/modules/toast.less | 6 +- src/semantic.less | 104 +++++++++--------- src/theme.less | 24 ++-- src/themes/basic/elements/icon.variables | 4 +- src/themes/default/collections/grid.variables | 2 +- src/themes/default/collections/menu.variables | 4 +- .../default/collections/table.variables | 2 +- .../default/elements/container.variables | 18 +-- src/themes/default/elements/divider.variables | 4 +- src/themes/default/elements/emoji.variables | 4 +- src/themes/default/elements/flag.variables | 4 +- src/themes/default/elements/icon.variables | 12 +- src/themes/default/elements/label.variables | 30 ++--- src/themes/default/elements/list.variables | 6 +- src/themes/default/elements/rail.variables | 4 +- src/themes/default/elements/segment.variables | 2 +- src/themes/default/elements/step.variables | 2 +- src/themes/default/globals/site.variables | 38 +++---- src/themes/default/modules/dimmer.variables | 2 +- src/themes/default/modules/dropdown.overrides | 12 +- src/themes/default/modules/dropdown.variables | 4 +- src/themes/default/modules/flyout.variables | 2 +- src/themes/default/modules/popup.variables | 2 +- src/themes/default/modules/search.variables | 2 +- src/themes/default/modules/sidebar.variables | 2 +- src/themes/default/modules/toast.variables | 2 +- src/themes/default/views/card.variables | 22 ++-- src/themes/famfamfam/elements/flag.variables | 2 +- src/themes/flat/collections/form.variables | 2 +- src/themes/flat/globals/site.variables | 8 +- src/themes/github/elements/icon.variables | 2 +- src/themes/github/modules/dropdown.overrides | 4 +- src/themes/joypixels/elements/emoji.variables | 4 +- src/themes/material/elements/icon.variables | 4 +- src/themes/material/modules/modal.variables | 2 +- src/themes/twitter/elements/emoji.variables | 4 +- 48 files changed, 207 insertions(+), 207 deletions(-) diff --git a/.stylelintrc.js b/.stylelintrc.js index 0d7f06856e..d23f4cf801 100644 --- a/.stylelintrc.js +++ b/.stylelintrc.js @@ -24,7 +24,7 @@ module.exports = { 'number-max-precision': 5, 'property-case': null, 'rule-empty-line-before': null, - 'string-quotes': null, + 'string-quotes': 'double', 'value-keyword-case': null, // TODO rules to be removed/fixed in v2.10.0 as fixes are not compatible with IE11 diff --git a/src/definitions/collections/grid.less b/src/definitions/collections/grid.less index 29fa604e70..b9489c16b9 100755 --- a/src/definitions/collections/grid.less +++ b/src/definitions/collections/grid.less @@ -141,7 +141,7 @@ margin: (@rowSpacing / 2) (@gutterWidth / 2); } .ui.grid .column + .ui.vertical.divider { - height: e(%('calc(50%% - %d)', (@rowSpacing / 2))); + height: e(%("calc(50%% - %d)", (@rowSpacing / 2))); } /* Remove Border on Last Horizontal Segment */ @@ -1092,10 +1092,10 @@ } .ui[class*="vertically divided"].grid > .row::before { position: absolute; - content: ''; + content: ""; top: 0; left: 0; - width: e(%('calc(100%% - %d)', @gutterWidth)); + width: e(%("calc(100%% - %d)", @gutterWidth)); height: 1px; margin: 0 (@gutterWidth / 2); box-shadow: @verticallyDividedBorder; @@ -1136,13 +1136,13 @@ .ui.relaxed[class*="vertically divided"].grid > .row::before { margin-left: (@relaxedGutterWidth / 2); margin-right: (@relaxedGutterWidth / 2); - width: e(%('calc(100%% - %d)', @relaxedGutterWidth)); + width: e(%("calc(100%% - %d)", @relaxedGutterWidth)); } & when (@variationGridVeryRelaxed) { .ui[class*="very relaxed"][class*="vertically divided"].grid > .row::before { margin-left: (@veryRelaxedGutterWidth / 2); margin-right: (@veryRelaxedGutterWidth / 2); - width: e(%('calc(100%% - %d)', @veryRelaxedGutterWidth)); + width: e(%("calc(100%% - %d)", @veryRelaxedGutterWidth)); } } } diff --git a/src/definitions/collections/menu.less b/src/definitions/collections/menu.less index 4e83db488c..43a739953b 100755 --- a/src/definitions/collections/menu.less +++ b/src/definitions/collections/menu.less @@ -207,7 +207,7 @@ /* Menu */ .ui.menu .dropdown.item .menu { - min-width: e('calc(100% - 1px)'); + min-width: e("calc(100% - 1px)"); border-radius: 0 0 @dropdownMenuBorderRadius @dropdownMenuBorderRadius; background: @dropdownBackground; margin: @dropdownMenuDistance 0 0; @@ -281,7 +281,7 @@ /* Vertical */ .ui.vertical.menu .dropdown.item > i.icon { float: right; - content: '\f0da'; + content: "\f0da"; margin-left: 1em; } .ui.vertical.menu .dropdown.item .menu { diff --git a/src/definitions/elements/button.less b/src/definitions/elements/button.less index d740401366..2f754388fd 100755 --- a/src/definitions/elements/button.less +++ b/src/definitions/elements/button.less @@ -1725,13 +1725,13 @@ each(@variationButtonConsequences, { @consequence: @value; - @_backgroundColor: '@{consequence}Color'; - @_backgroundColorHover: '@{consequence}ColorHover'; - @_backgroundColorFocus: '@{consequence}ColorFocus'; - @_backgroundColorDown: '@{consequence}ColorDown'; - @_backgroundColorActive: '@{consequence}ColorActive'; - @_textColor: '@{consequence}TextColor'; - @_textShadow: '@{consequence}TextShadow'; + @_backgroundColor: "@{consequence}Color"; + @_backgroundColorHover: "@{consequence}ColorHover"; + @_backgroundColorFocus: "@{consequence}ColorFocus"; + @_backgroundColorDown: "@{consequence}ColorDown"; + @_backgroundColorActive: "@{consequence}ColorActive"; + @_textColor: "@{consequence}TextColor"; + @_textShadow: "@{consequence}TextShadow"; /* Standard */ .ui.@{consequence}.buttons .button, @@ -1827,7 +1827,7 @@ /* Clearfix */ .ui.buttons::after { - content: '.'; + content: "."; display: block; height: 0; clear: both; @@ -1975,7 +1975,7 @@ } & when (@variationButtonInverted) { .ui.spaced.basic.inverted.buttons .basic.button { - margin-bottom: e(%('calc(%d + %d)', @spacedMargin, @basicColoredBorderSize)); + margin-bottom: e(%("calc(%d + %d)", @spacedMargin, @basicColoredBorderSize)); margin-top: @basicColoredBorderSize; } } diff --git a/src/definitions/elements/emoji.less b/src/definitions/elements/emoji.less index 4042eaeb2b..dc59dd31f4 100644 --- a/src/definitions/elements/emoji.less +++ b/src/definitions/elements/emoji.less @@ -80,12 +80,12 @@ each(@size-map, { each(@emoji-map, { & when (@variationEmojiColons) { em[data-emoji=":@{value}:"]::before { - background-image: url('@{emojiPath}@{key}.@{emojiFileType}'); + background-image: url("@{emojiPath}@{key}.@{emojiFileType}"); } em[data-emoji="@{value}"]::before:extend(em[data-emoji=":@{value}:"]::before) when (@variationEmojiNoColons) {} } em[data-emoji="@{value}"]::before when (@variationEmojiNoColons) and not (@variationEmojiColons) { - background-image: url('@{emojiPath}@{key}.@{emojiFileType}'); + background-image: url("@{emojiPath}@{key}.@{emojiFileType}"); } }); diff --git a/src/definitions/elements/flag.less b/src/definitions/elements/flag.less index 9a50a22022..cab45f96d5 100755 --- a/src/definitions/elements/flag.less +++ b/src/definitions/elements/flag.less @@ -55,20 +55,20 @@ each(@flags, { @alias2: replace(@flags[@@unicode][aliasClass2], '_', '.', 'g'); & when (@cls = false){ i.flag.@{cc}::before { - background-image: url('@{flagPath}@{unicode}.@{flagFileType}'); + background-image: url("@{flagPath}@{unicode}.@{flagFileType}"); } } & when not (@cls = false) and (@alias = false) { i.flag.@{cc}::before, i.flag.@{cls}::before { - background-image: url('@{flagPath}@{unicode}.@{flagFileType}'); + background-image: url("@{flagPath}@{unicode}.@{flagFileType}"); } } & when not (@cls = false) and not (@alias = false) and (@alias2 = false) { i.flag.@{cc}::before, i.flag.@{cls}::before, i.flag.@{alias}::before { - background-image: url('@{flagPath}@{unicode}.@{flagFileType}'); + background-image: url("@{flagPath}@{unicode}.@{flagFileType}"); } } & when not (@alias2 = false) { @@ -76,7 +76,7 @@ each(@flags, { i.flag.@{cls}::before, i.flag.@{alias}::before, i.flag.@{alias2}::before { - background-image: url('@{flagPath}@{unicode}.@{flagFileType}'); + background-image: url("@{flagPath}@{unicode}.@{flagFileType}"); } } }); diff --git a/src/definitions/elements/icon.less b/src/definitions/elements/icon.less index 70dac70fe0..fccf7125e7 100755 --- a/src/definitions/elements/icon.less +++ b/src/definitions/elements/icon.less @@ -518,7 +518,7 @@ and ((@variationIconBordered) or (@variationIconCircular)) { @escapedKey: replace(@key, '^([0-9])', '\3$1 '); @normalizedKey: replace(@escapedKey, '_', '.', 'g'); i.icon.@{normalizedKey}::before { - content: '@{value}'; + content: "@{value}"; & when not (@fontFamily = false) { font-family: @fontFamily; } @@ -531,7 +531,7 @@ and ((@variationIconBordered) or (@variationIconCircular)) { @escapedKey: replace(@key, '^([0-9])', '\3$1 '); @normalizedKey: replace(@escapedKey, '_', '.', 'g'); i.icon.@{normalizedKey}::after { - content: '@{value}'; + content: "@{value}"; } }); }; diff --git a/src/definitions/elements/label.less b/src/definitions/elements/label.less index 9af07276e3..22cb991a3a 100755 --- a/src/definitions/elements/label.less +++ b/src/definitions/elements/label.less @@ -308,7 +308,7 @@ a.ui.label { } .ui.corner.label::after { position: absolute; - content: ''; + content: ""; right: 0; top: 0; z-index: -1; @@ -799,7 +799,7 @@ a.ui.active.label:hover::before { border-width: @invertedBorderSize 0 0 @invertedBorderSize; border-style: inherit; background-color: @invertedBackground; - right: e(%('calc(100%% + %d)', @invertedBorderSize)); + right: e(%("calc(100%% + %d)", @invertedBorderSize)); } } } diff --git a/src/definitions/elements/list.less b/src/definitions/elements/list.less index e2e1e73124..c21156373d 100755 --- a/src/definitions/elements/list.less +++ b/src/definitions/elements/list.less @@ -169,7 +169,7 @@ ol.ui.list ol li, & when (@variationListIcon) { .ui.list .list > .item > i.loading.icon + .content, .ui.list > .item > i.loading.icon + .content { - padding-left: e(%('calc(%d + %d)', @iconDistance, @contentDistance)); + padding-left: e(%("calc(%d + %d)", @iconDistance, @contentDistance)); } } & when (@variationListImage) { diff --git a/src/definitions/elements/segment.less b/src/definitions/elements/segment.less index d3e3e302e1..c5e54662cc 100755 --- a/src/definitions/elements/segment.less +++ b/src/definitions/elements/segment.less @@ -574,7 +574,7 @@ -------------------- */ .ui.clearing.segment::after { - content: ''; + content: ""; display: block; clear: both; } diff --git a/src/definitions/modules/dropdown.less b/src/definitions/modules/dropdown.less index d0786e919c..02208877cc 100755 --- a/src/definitions/modules/dropdown.less +++ b/src/definitions/modules/dropdown.less @@ -1325,7 +1325,7 @@ select.ui.dropdown { @media all and (-ms-high-contrast: none) { .ui.scrolling.dropdown .menu, .ui.dropdown .scrolling.menu { - min-width: e(%('calc(100%% - %d)', @scrollbarWidth)); + min-width: e(%("calc(100%% - %d)", @scrollbarWidth)); } } } diff --git a/src/definitions/modules/nag.less b/src/definitions/modules/nag.less index 2cd59b63d2..022728ae25 100755 --- a/src/definitions/modules/nag.less +++ b/src/definitions/modules/nag.less @@ -142,7 +142,7 @@ a.ui.nag { -------------------- */ each(@variationNagSizes, { @s: @@value; - @sr: '@{value}Raw'; + @sr: "@{value}Raw"; .ui.@{value}.nag, .ui.@{value}.nags .nag { font-size: @s; diff --git a/src/definitions/modules/toast.less b/src/definitions/modules/toast.less index 938a8bd3f4..d787bcc724 100644 --- a/src/definitions/modules/toast.less +++ b/src/definitions/modules/toast.less @@ -200,7 +200,7 @@ } &:not(.vertical) { &.actions > i.icon:not(.close) when (@variationToastActions) and (@variationToastIcon) { - top: e(%('calc(50%% - %d)', @toastIconCenteredAdjustment)); + top: e(%("calc(50%% - %d)", @toastIconCenteredAdjustment)); transform: none; } &.icon.icon.icon when (@variationToastIcon) { @@ -519,10 +519,10 @@ } } &.actions > .centered.image when (@variationToastActions) and (@variationToastImage) { - top: e(%('calc(50%% - %d)', @toastImageCenteredAdjustment)); + top: e(%("calc(50%% - %d)", @toastImageCenteredAdjustment)); } &.actions > .centered.icon when (@variationToastActions) and (@variationToastIcon) { - top: e(%('calc(50%% - %d)', @toastIconCenteredAdjustment)); + top: e(%("calc(50%% - %d)", @toastIconCenteredAdjustment)); } } &.vertical when (@variationToastVertical) { diff --git a/src/semantic.less b/src/semantic.less index 00f642a250..3b3cc90922 100644 --- a/src/semantic.less +++ b/src/semantic.less @@ -13,63 +13,63 @@ // stylelint-disable no-invalid-position-at-import-rule /* Global */ -& { @import 'definitions/globals/reset'; } -& { @import 'definitions/globals/site'; } +& { @import "definitions/globals/reset"; } +& { @import "definitions/globals/site"; } /* Elements */ -& { @import 'definitions/elements/button'; } -& { @import 'definitions/elements/container'; } -& { @import 'definitions/elements/divider'; } -& { @import 'definitions/elements/emoji'; } -& { @import 'definitions/elements/flag'; } -& { @import 'definitions/elements/header'; } -& { @import 'definitions/elements/icon'; } -& { @import 'definitions/elements/image'; } -& { @import 'definitions/elements/input'; } -& { @import 'definitions/elements/label'; } -& { @import 'definitions/elements/list'; } -& { @import 'definitions/elements/loader'; } -& { @import 'definitions/elements/placeholder'; } -& { @import 'definitions/elements/rail'; } -& { @import 'definitions/elements/reveal'; } -& { @import 'definitions/elements/segment'; } -& { @import 'definitions/elements/step'; } -& { @import 'definitions/elements/text'; } +& { @import "definitions/elements/button"; } +& { @import "definitions/elements/container"; } +& { @import "definitions/elements/divider"; } +& { @import "definitions/elements/emoji"; } +& { @import "definitions/elements/flag"; } +& { @import "definitions/elements/header"; } +& { @import "definitions/elements/icon"; } +& { @import "definitions/elements/image"; } +& { @import "definitions/elements/input"; } +& { @import "definitions/elements/label"; } +& { @import "definitions/elements/list"; } +& { @import "definitions/elements/loader"; } +& { @import "definitions/elements/placeholder"; } +& { @import "definitions/elements/rail"; } +& { @import "definitions/elements/reveal"; } +& { @import "definitions/elements/segment"; } +& { @import "definitions/elements/step"; } +& { @import "definitions/elements/text"; } /* Collections */ -& { @import 'definitions/collections/breadcrumb'; } -& { @import 'definitions/collections/form'; } -& { @import 'definitions/collections/grid'; } -& { @import 'definitions/collections/menu'; } -& { @import 'definitions/collections/message'; } -& { @import 'definitions/collections/table'; } +& { @import "definitions/collections/breadcrumb"; } +& { @import "definitions/collections/form"; } +& { @import "definitions/collections/grid"; } +& { @import "definitions/collections/menu"; } +& { @import "definitions/collections/message"; } +& { @import "definitions/collections/table"; } /* Views */ -& { @import 'definitions/views/ad'; } -& { @import 'definitions/views/card'; } -& { @import 'definitions/views/comment'; } -& { @import 'definitions/views/feed'; } -& { @import 'definitions/views/item'; } -& { @import 'definitions/views/statistic'; } +& { @import "definitions/views/ad"; } +& { @import "definitions/views/card"; } +& { @import "definitions/views/comment"; } +& { @import "definitions/views/feed"; } +& { @import "definitions/views/item"; } +& { @import "definitions/views/statistic"; } /* Modules */ -& { @import 'definitions/modules/accordion'; } -& { @import 'definitions/modules/calendar'; } -& { @import 'definitions/modules/checkbox'; } -& { @import 'definitions/modules/dimmer'; } -& { @import 'definitions/modules/dropdown'; } -& { @import 'definitions/modules/embed'; } -& { @import 'definitions/modules/flyout'; } -& { @import 'definitions/modules/modal'; } -& { @import 'definitions/modules/nag'; } -& { @import 'definitions/modules/popup'; } -& { @import 'definitions/modules/progress'; } -& { @import 'definitions/modules/slider'; } -& { @import 'definitions/modules/rating'; } -& { @import 'definitions/modules/search'; } -& { @import 'definitions/modules/shape'; } -& { @import 'definitions/modules/sidebar'; } -& { @import 'definitions/modules/sticky'; } -& { @import 'definitions/modules/tab'; } -& { @import 'definitions/modules/toast'; } -& { @import 'definitions/modules/transition'; } +& { @import "definitions/modules/accordion"; } +& { @import "definitions/modules/calendar"; } +& { @import "definitions/modules/checkbox"; } +& { @import "definitions/modules/dimmer"; } +& { @import "definitions/modules/dropdown"; } +& { @import "definitions/modules/embed"; } +& { @import "definitions/modules/flyout"; } +& { @import "definitions/modules/modal"; } +& { @import "definitions/modules/nag"; } +& { @import "definitions/modules/popup"; } +& { @import "definitions/modules/progress"; } +& { @import "definitions/modules/slider"; } +& { @import "definitions/modules/rating"; } +& { @import "definitions/modules/search"; } +& { @import "definitions/modules/shape"; } +& { @import "definitions/modules/sidebar"; } +& { @import "definitions/modules/sticky"; } +& { @import "definitions/modules/tab"; } +& { @import "definitions/modules/toast"; } +& { @import "definitions/modules/transition"; } diff --git a/src/theme.less b/src/theme.less index 1d117e9b65..3dc6689b5a 100644 --- a/src/theme.less +++ b/src/theme.less @@ -13,41 +13,41 @@ --------------------- */ /* Default site.variables */ -@import '@{themesFolder}/default/globals/site.variables'; +@import "@{themesFolder}/default/globals/site.variables"; /* Packaged site.variables */ -@import (optional) '@{themesFolder}/@{site}/globals/site.variables'; +@import (optional) "@{themesFolder}/@{site}/globals/site.variables"; /* Component's site.variables */ & when not (@theme = 'default') { - @import (optional) '@{themesFolder}/@{theme}/globals/site.variables'; + @import (optional) "@{themesFolder}/@{theme}/globals/site.variables"; } /* Site theme site.variables */ -@import (optional) '@{siteFolder}/globals/site.variables'; +@import (optional) "@{siteFolder}/globals/site.variables"; /* ------------------- Component Variables --------------------- */ /* Default */ -@import '@{themesFolder}/default/@{type}s/@{element}.variables'; +@import "@{themesFolder}/default/@{type}s/@{element}.variables"; /* Packaged Theme */ -@import (optional) '@{themesFolder}/@{theme}/@{type}s/@{element}.variables'; +@import (optional) "@{themesFolder}/@{theme}/@{type}s/@{element}.variables"; /* Site Theme */ -@import (optional) '@{siteFolder}/@{type}s/@{element}.variables'; +@import (optional) "@{siteFolder}/@{type}s/@{element}.variables"; /* ------------------------- Central Color Map ------------------------- */ /* Default */ -@import '@{themesFolder}/default/globals/colors.less'; +@import "@{themesFolder}/default/globals/colors.less"; /* Site Theme */ -@import (optional) '@{themesFolder}/@{site}/globals/colors.less'; +@import (optional) "@{themesFolder}/@{site}/globals/colors.less"; /******************************* Mix-ins @@ -78,8 +78,8 @@ .loadUIOverrides() { & when not (@theme = 'default') { - @import (optional) '@{themesFolder}/default/@{type}s/@{element}.overrides'; + @import (optional) "@{themesFolder}/default/@{type}s/@{element}.overrides"; } - @import (optional) '@{themesFolder}/@{theme}/@{type}s/@{element}.overrides'; - @import (optional) '@{siteFolder}/@{type}s/@{element}.overrides'; + @import (optional) "@{themesFolder}/@{theme}/@{type}s/@{element}.overrides"; + @import (optional) "@{siteFolder}/@{type}s/@{element}.overrides"; } diff --git a/src/themes/basic/elements/icon.variables b/src/themes/basic/elements/icon.variables index f4c985befb..69d2868736 100644 --- a/src/themes/basic/elements/icon.variables +++ b/src/themes/basic/elements/icon.variables @@ -2,12 +2,12 @@ Icon Variables -------------------- */ -@fontPath: '../../themes/basic/assets/fonts'; +@fontPath: "../../themes/basic/assets/fonts"; @fonts: { @solid: { font-family: @fontName; - src: url('@{fontPath}/@{fontName}.woff') format('woff'); + src: url("@{fontPath}/@{fontName}.woff") format('woff'); font-style: normal; font-weight: @normal; font-variant: normal; diff --git a/src/themes/default/collections/grid.variables b/src/themes/default/collections/grid.variables index b28eca35ed..ec379b3398 100644 --- a/src/themes/default/collections/grid.variables +++ b/src/themes/default/collections/grid.variables @@ -19,7 +19,7 @@ @gutterWidth: 2rem; @rowSpacing: 2rem; -@tableWidth: e(%('calc(100%% + %d)', @gutterWidth)); +@tableWidth: e(%("calc(100%% + %d)", @gutterWidth)); @columnMaxImageWidth: 100%; @consecutiveGridDistance: (@rowSpacing / 2); diff --git a/src/themes/default/collections/menu.variables b/src/themes/default/collections/menu.variables index 71a4172b1a..4f778d53ab 100644 --- a/src/themes/default/collections/menu.variables +++ b/src/themes/default/collections/menu.variables @@ -321,7 +321,7 @@ @tabularVerticalBackground: none @tabularBackgroundColor; @tabularFluidOffset: 1px; -@tabularFluidWidth: e(%('calc(100%% + %d)', @tabularFluidOffset * 2)); +@tabularFluidWidth: e(%("calc(100%% + %d)", @tabularFluidOffset * 2)); @tabularActiveBackground: none @white; @tabularActiveColor: @selectedTextColor; @@ -426,7 +426,7 @@ @attachedTopOffset: 0; @attachedBottomOffset: 0; @attachedHorizontalOffset: -@borderWidth; -@attachedWidth: e(%('calc(100%% + %d)', -@attachedHorizontalOffset * 2)); +@attachedWidth: e(%("calc(100%% + %d)", -@attachedHorizontalOffset * 2)); @attachedBoxShadow: none; @attachedBorder: @borderWidth solid @solidBorderColor; @attachedBottomBoxShadow: diff --git a/src/themes/default/collections/table.variables b/src/themes/default/collections/table.variables index 6d0e1d7040..5d5f7e6e22 100644 --- a/src/themes/default/collections/table.variables +++ b/src/themes/default/collections/table.variables @@ -164,7 +164,7 @@ @attachedTopOffset: 0; @attachedBottomOffset: 0; @attachedHorizontalOffset: -@borderWidth; -@attachedWidth: e(%('calc(100%% + %d)', -@attachedHorizontalOffset * 2)); +@attachedWidth: e(%("calc(100%% + %d)", -@attachedHorizontalOffset * 2)); @attachedBoxShadow: none; @attachedBorder: @borderWidth solid @solidBorderColor; @attachedBottomBoxShadow: diff --git a/src/themes/default/elements/container.variables b/src/themes/default/elements/container.variables index 59ac54bc5e..c7a5af3720 100644 --- a/src/themes/default/elements/container.variables +++ b/src/themes/default/elements/container.variables @@ -37,19 +37,19 @@ @veryRelaxedGridGutterWidth: 5rem; @mobileGridWidth: @mobileWidth; -@tabletGridWidth: e(%('calc(%d + %d)', @tabletWidth, @gridGutterWidth)); -@computerGridWidth: e(%('calc(%d + %d)', @computerWidth, @gridGutterWidth)); -@largeMonitorGridWidth: e(%('calc(%d + %d)', @largeMonitorWidth, @gridGutterWidth)); +@tabletGridWidth: e(%("calc(%d + %d)", @tabletWidth, @gridGutterWidth)); +@computerGridWidth: e(%("calc(%d + %d)", @computerWidth, @gridGutterWidth)); +@largeMonitorGridWidth: e(%("calc(%d + %d)", @largeMonitorWidth, @gridGutterWidth)); @mobileRelaxedGridWidth: @mobileWidth; -@tabletRelaxedGridWidth: e(%('calc(%d + %d)', @tabletWidth, @relaxedGridGutterWidth)); -@computerRelaxedGridWidth: e(%('calc(%d + %d)', @computerWidth, @relaxedGridGutterWidth)); -@largeMonitorRelaxedGridWidth: e(%('calc(%d + %d)', @largeMonitorWidth, @relaxedGridGutterWidth)); +@tabletRelaxedGridWidth: e(%("calc(%d + %d)", @tabletWidth, @relaxedGridGutterWidth)); +@computerRelaxedGridWidth: e(%("calc(%d + %d)", @computerWidth, @relaxedGridGutterWidth)); +@largeMonitorRelaxedGridWidth: e(%("calc(%d + %d)", @largeMonitorWidth, @relaxedGridGutterWidth)); @mobileVeryRelaxedGridWidth: @mobileWidth; -@tabletVeryRelaxedGridWidth: e(%('calc(%d + %d)', @tabletWidth, @veryRelaxedGridGutterWidth)); -@computerVeryRelaxedGridWidth: e(%('calc(%d + %d)', @computerWidth, @veryRelaxedGridGutterWidth)); -@largeMonitorVeryRelaxedGridWidth: e(%('calc(%d + %d)', @largeMonitorWidth, @veryRelaxedGridGutterWidth)); +@tabletVeryRelaxedGridWidth: e(%("calc(%d + %d)", @tabletWidth, @veryRelaxedGridGutterWidth)); +@computerVeryRelaxedGridWidth: e(%("calc(%d + %d)", @computerWidth, @veryRelaxedGridGutterWidth)); +@largeMonitorVeryRelaxedGridWidth: e(%("calc(%d + %d)", @largeMonitorWidth, @veryRelaxedGridGutterWidth)); /* ------------------- Types diff --git a/src/themes/default/elements/divider.variables b/src/themes/default/elements/divider.variables index 2bde65c25d..f7920900a9 100644 --- a/src/themes/default/elements/divider.variables +++ b/src/themes/default/elements/divider.variables @@ -36,10 +36,10 @@ /* Horizontal / Vertical */ @horizontalMargin: ''; @horizontalDividerMargin: 1em; -@horizontalRulerOffset: e(%('calc(-50%% - %d)', @horizontalDividerMargin)); +@horizontalRulerOffset: e(%("calc(-50%% - %d)", @horizontalDividerMargin)); @verticalDividerMargin: 1rem; -@verticalDividerHeight: e(%('calc(100%% - %d)', @verticalDividerMargin)); +@verticalDividerHeight: e(%("calc(100%% - %d)", @verticalDividerMargin)); /* Inverted */ @invertedTextColor: @white; diff --git a/src/themes/default/elements/emoji.variables b/src/themes/default/elements/emoji.variables index 7930972815..05b647a15f 100644 --- a/src/themes/default/elements/emoji.variables +++ b/src/themes/default/elements/emoji.variables @@ -10,8 +10,8 @@ /* -------------- Path --------------- */ -@emojiPath: 'https://twemoji.maxcdn.com/v/latest/svg/'; -@emojiFileType: 'svg'; +@emojiPath: "https://twemoji.maxcdn.com/v/latest/svg/"; +@emojiFileType: "svg"; /* -------------- Definition diff --git a/src/themes/default/elements/flag.variables b/src/themes/default/elements/flag.variables index aca25bbee5..8a5f797759 100644 --- a/src/themes/default/elements/flag.variables +++ b/src/themes/default/elements/flag.variables @@ -5,8 +5,8 @@ /* -------------- Path --------------- */ -@flagPath: 'https://twemoji.maxcdn.com/v/latest/svg/'; -@flagFileType: 'svg'; +@flagPath: "https://twemoji.maxcdn.com/v/latest/svg/"; +@flagFileType: "svg"; /* ------------------- Element diff --git a/src/themes/default/elements/icon.variables b/src/themes/default/elements/icon.variables index 55c38d2e8c..e3b29b42f9 100644 --- a/src/themes/default/elements/icon.variables +++ b/src/themes/default/elements/icon.variables @@ -45,8 +45,8 @@ Icons are order A-Z in their group, Solid, Outline, Thin (Pro only) and Brand @fonts: { @solid: { font-family: @fontName; - src: url('@{fontPath}/@{fontName}.woff2') format('woff2') - if(@supportIE, e(',') url('@{fontPath}/@{fontName}.woff') format('woff')); + src: url("@{fontPath}/@{fontName}.woff2") format('woff2') + if(@supportIE, e(',') url("@{fontPath}/@{fontName}.woff") format('woff')); font-style: normal; font-weight: @normal; font-display: block; @@ -56,8 +56,8 @@ Icons are order A-Z in their group, Solid, Outline, Thin (Pro only) and Brand }; @outline: { font-family: @outlineFontName; - src: url('@{fontPath}/@{outlineFontName}.woff2') format('woff2') - if(@supportIE, e(',') url('@{fontPath}/@{outlineFontName}.woff') format('woff')); + src: url("@{fontPath}/@{outlineFontName}.woff2") format('woff2') + if(@supportIE, e(',') url("@{fontPath}/@{outlineFontName}.woff") format('woff')); font-style: normal; font-weight: @normal; font-display: block; @@ -67,8 +67,8 @@ Icons are order A-Z in their group, Solid, Outline, Thin (Pro only) and Brand }; @brand: { font-family: @brandFontName; - src: url('@{fontPath}/@{brandFontName}.woff2') format('woff2') - if(@supportIE, e(',') url('@{fontPath}/@{brandFontName}.woff') format('woff')); + src: url("@{fontPath}/@{brandFontName}.woff2") format('woff2') + if(@supportIE, e(',') url("@{fontPath}/@{brandFontName}.woff") format('woff')); font-style: normal; font-weight: @normal; font-display: block; diff --git a/src/themes/default/elements/label.variables b/src/themes/default/elements/label.variables index 2570c03c8e..c84fe1854e 100644 --- a/src/themes/default/elements/label.variables +++ b/src/themes/default/elements/label.variables @@ -105,7 +105,7 @@ @basicBackground: none @white; @basicBorderWidth: 1px; @basicBorderWidthOffset: -@basicBorderWidth; -@basicBorderFullWidthOffset: e(%('calc(100%% + %d)', @basicBorderWidth)); +@basicBorderFullWidthOffset: e(%("calc(100%% + %d)", @basicBorderWidth)); @basicBorder: @basicBorderWidth solid @borderColor; @basicColor: @textColor; @basicBoxShadow: none; @@ -115,9 +115,9 @@ @basicHoverBorder: @basicBorder; @basicHoverBoxShadow: @basicBoxShadow; -@basicVerticalPadding: e(%('calc(%d - %d)', @verticalPadding, @basicBorderWidth)); -@basicHorizontalPadding: e(%('calc(%d - %d)', @horizontalPadding, @basicBorderWidth)); -@basicImageLabelPadding: e(%('calc(%d - %d)', @imageLabelTextDistance, @basicBorderWidth)); +@basicVerticalPadding: e(%("calc(%d - %d)", @verticalPadding, @basicBorderWidth)); +@basicHorizontalPadding: e(%("calc(%d - %d)", @horizontalPadding, @basicBorderWidth)); +@basicImageLabelPadding: e(%("calc(%d - %d)", @imageLabelTextDistance, @basicBorderWidth)); /* Tag */ @tagCircleColor: @white; @@ -133,24 +133,24 @@ /* Ribbon */ @ribbonTriangleSize: 1.2em; -@basicRibbonTriangleSize: e(%('calc(%d - %d)', @ribbonTriangleSize, @basicBorderWidth)); -@basicRibbonTriangleSizeOffset: e(%('calc(1rem + %d - %d)', @ribbonTriangleSize, @basicBorderWidth)); +@basicRibbonTriangleSize: e(%("calc(%d - %d)", @ribbonTriangleSize, @basicBorderWidth)); +@basicRibbonTriangleSizeOffset: e(%("calc(1rem + %d - %d)", @ribbonTriangleSize, @basicBorderWidth)); @ribbonShadowColor: rgba(0, 0, 0, 0.15); @ribbonMargin: 1rem; -@ribbonOffset: e(%('calc(%d - %d)', -@ribbonMargin, @ribbonTriangleSize)); -@basicRibbonOffset: e(%('calc(%d - %d)', @verticalPadding, @basicBorderWidth)); -@ribbonDistance: e(%('calc(%d + %d)', @ribbonMargin, @ribbonTriangleSize)); -@rightRibbonOffset: e(%('calc(100%% + %d + %d)', @ribbonMargin, @ribbonTriangleSize)); +@ribbonOffset: e(%("calc(%d - %d)", -@ribbonMargin, @ribbonTriangleSize)); +@basicRibbonOffset: e(%("calc(%d - %d)", @verticalPadding, @basicBorderWidth)); +@ribbonDistance: e(%("calc(%d + %d)", @ribbonMargin, @ribbonTriangleSize)); +@rightRibbonOffset: e(%("calc(100%% + %d + %d)", @ribbonMargin, @ribbonTriangleSize)); @ribbonImageTopDistance: 1rem; @ribbonImageMargin: -0.05rem; /* Rounding Offset on Triangle */ -@ribbonImageOffset: e(%('calc(%d - %d)', -@ribbonImageMargin, @ribbonTriangleSize)); -@rightRibbonImageOffset: e(%('calc(100%% + %d + %d)', @ribbonImageMargin, @ribbonTriangleSize)); +@ribbonImageOffset: e(%("calc(%d - %d)", -@ribbonImageMargin, @ribbonTriangleSize)); +@rightRibbonImageOffset: e(%("calc(100%% + %d + %d)", @ribbonImageMargin, @ribbonTriangleSize)); @ribbonTableMargin: @relativeMedium; /* Rounding Offset on Triangle */ -@ribbonTableOffset: e(%('calc(%d - %d)', -@ribbonTableMargin, @ribbonTriangleSize)); -@rightRibbonTableOffset: e(%('calc(100%% + %d + %d)', @ribbonTableMargin, @ribbonTriangleSize)); +@ribbonTableOffset: e(%("calc(%d - %d)", -@ribbonTableMargin, @ribbonTriangleSize)); +@rightRibbonTableOffset: e(%("calc(100%% + %d + %d)", @ribbonTableMargin, @ribbonTriangleSize)); /* Inverted */ @invertedBackgroundColor: darken(@backgroundColor, 20); @@ -204,7 +204,7 @@ @attachedBorderRadius: @borderRadius; @attachedOffset: -@borderWidth; -@attachedWidthOffset: e(%('calc(100%% + %d)', @borderWidth * 2)); +@attachedWidthOffset: e(%("calc(100%% + %d)", @borderWidth * 2)); /* Corner */ @cornerSizeRatio: 1; diff --git a/src/themes/default/elements/list.variables b/src/themes/default/elements/list.variables index e62e83ac0f..ac6f06b72a 100644 --- a/src/themes/default/elements/list.variables +++ b/src/themes/default/elements/list.variables @@ -174,9 +174,9 @@ /* Ordered List */ @orderedCountName: ordered; -@orderedCountSeparator: '.'; -@orderedCountSuffix: '.'; -@orderedCountContent: counters(@orderedCountName, @orderedCountSeparator) ' '; +@orderedCountSeparator: "."; +@orderedCountSuffix: "."; +@orderedCountContent: counters(@orderedCountName, @orderedCountSeparator) " "; @orderedCountContentSuffixed: counters(@orderedCountName, @orderedCountSeparator) @orderedCountSuffix; @orderedCountColor: @textColor; @orderedCountDistance: 1.25rem; diff --git a/src/themes/default/elements/rail.variables b/src/themes/default/elements/rail.variables index 9c83789205..2a2f8c6d8d 100644 --- a/src/themes/default/elements/rail.variables +++ b/src/themes/default/elements/rail.variables @@ -23,8 +23,8 @@ @splitCloseDistance: (@closeDistance / 2); @splitVeryCloseDistance: (@veryCloseDistance / 2); -@closeWidth: e(%('calc(%d + %d)', @width, @splitCloseDistance)); -@veryCloseWidth: e(%('calc(%d + %d)', @width, @splitVeryCloseDistance)); +@closeWidth: e(%("calc(%d + %d)", @width, @splitCloseDistance)); +@veryCloseWidth: e(%("calc(%d + %d)", @width, @splitVeryCloseDistance)); /* Dividing */ @dividingBorder: 1px solid @borderColor; diff --git a/src/themes/default/elements/segment.variables b/src/themes/default/elements/segment.variables index 2dadcc4a5c..8544760767 100644 --- a/src/themes/default/elements/segment.variables +++ b/src/themes/default/elements/segment.variables @@ -101,7 +101,7 @@ @attachedTopOffset: 0; @attachedBottomOffset: 0; @attachedHorizontalOffset: -@borderWidth; -@attachedWidth: e(%('calc(100%% + %d)', -@attachedHorizontalOffset * 2)); +@attachedWidth: e(%("calc(100%% + %d)", -@attachedHorizontalOffset * 2)); @attachedBoxShadow: none; @attachedBorder: @borderWidth solid @solidBorderColor; @attachedBottomBoxShadow: diff --git a/src/themes/default/elements/step.variables b/src/themes/default/elements/step.variables index 2a47624281..bbc0996d81 100644 --- a/src/themes/default/elements/step.variables +++ b/src/themes/default/elements/step.variables @@ -97,7 +97,7 @@ @attachedHorizontalOffset: -@borderWidth; @attachedVerticalOffset: 0; -@attachedWidth: e(%('calc(100%% + %d)', -@attachedHorizontalOffset * 2)); +@attachedWidth: e(%("calc(100%% + %d)", -@attachedHorizontalOffset * 2)); @orderedFontFamily: inherit; @orderedFontWeight: @bold; diff --git a/src/themes/default/globals/site.variables b/src/themes/default/globals/site.variables index 502a8a2584..cf5f0dd759 100755 --- a/src/themes/default/globals/site.variables +++ b/src/themes/default/globals/site.variables @@ -2,7 +2,7 @@ Site Settings *******************************/ -@import 'variation.variables'; +@import "variation.variables"; @supportIE: true; /* ------------------- @@ -14,7 +14,7 @@ @fontFileNameSupplement: 'Lato'; // based on https://github.com/twbs/bootstrap/blob/v5.1.3/scss/_variables.scss#L577 list -@fallbackFonts: system-ui, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; +@fallbackFonts: system-ui, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; @headerFont: @fontName, @fallbackFonts; @pageFont: @fontName, @fallbackFonts; @@ -28,8 +28,8 @@ @fonts: { @regularLatin: { font-family: @fontName; - src: url('@{fontPath}/@{fontFileNameLatin}-Regular.woff2') format('woff2') - if(@supportIE, e(',') url('@{fontPath}/@{fontFileNameLatin}-Regular.woff') format('woff')); + src: url("@{fontPath}/@{fontFileNameLatin}-Regular.woff2") format('woff2') + if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameLatin}-Regular.woff") format('woff')); font-style: normal; font-weight: @normal; font-display: @fontDisplay; @@ -38,8 +38,8 @@ }; @boldLatin: { font-family: @fontName; - src: url('@{fontPath}/@{fontFileNameLatin}-Bold.woff2') format('woff2') - if(@supportIE, e(',') url('@{fontPath}/@{fontFileNameLatin}-Bold.woff') format('woff')); + src: url("@{fontPath}/@{fontFileNameLatin}-Bold.woff2") format('woff2') + if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameLatin}-Bold.woff") format('woff')); font-style: normal; font-weight: @bold; font-display: @fontDisplay; @@ -48,8 +48,8 @@ }; @italicLatin: { font-family: @fontName; - src: url('@{fontPath}/@{fontFileNameLatin}-Italic.woff2') format('woff2') - if(@supportIE, e(',') url('@{fontPath}/@{fontFileNameLatin}-Italic.woff') format('woff')); + src: url("@{fontPath}/@{fontFileNameLatin}-Italic.woff2") format('woff2') + if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameLatin}-Italic.woff") format('woff')); font-style: italic; font-weight: @normal; font-display: @fontDisplay; @@ -58,8 +58,8 @@ }; @boldItalicLatin: { font-family: @fontName; - src: url('@{fontPath}/@{fontFileNameLatin}-BoldItalic.woff2') format('woff2') - if(@supportIE, e(',') url('@{fontPath}/@{fontFileNameLatin}-BoldItalic.woff') format('woff')); + src: url("@{fontPath}/@{fontFileNameLatin}-BoldItalic.woff2") format('woff2') + if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameLatin}-BoldItalic.woff") format('woff')); font-style: italic; font-weight: @bold; font-display: @fontDisplay; @@ -68,8 +68,8 @@ }; @regularSupplement: { font-family: @fontName; - src: url('@{fontPath}/@{fontFileNameSupplement}-Regular.woff2') format('woff2') - if(@supportIE, e(',') url('@{fontPath}/@{fontFileNameSupplement}-Regular.woff') format('woff')); + src: url("@{fontPath}/@{fontFileNameSupplement}-Regular.woff2") format('woff2') + if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameSupplement}-Regular.woff") format('woff')); font-style: normal; font-weight: @normal; font-display: @fontDisplay; @@ -78,8 +78,8 @@ }; @boldSupplement: { font-family: @fontName; - src: url('@{fontPath}/@{fontFileNameSupplement}-Bold.woff2') format('woff2') - if(@supportIE, e(',') url('@{fontPath}/@{fontFileNameSupplement}-Bold.woff') format('woff')); + src: url("@{fontPath}/@{fontFileNameSupplement}-Bold.woff2") format('woff2') + if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameSupplement}-Bold.woff") format('woff')); font-style: normal; font-weight: @bold; font-display: @fontDisplay; @@ -88,8 +88,8 @@ }; @italicSupplement: { font-family: @fontName; - src: url('@{fontPath}/@{fontFileNameSupplement}-Italic.woff2') format('woff2') - if(@supportIE, e(',') url('@{fontPath}/@{fontFileNameSupplement}-Italic.woff') format('woff')); + src: url("@{fontPath}/@{fontFileNameSupplement}-Italic.woff2") format('woff2') + if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameSupplement}-Italic.woff") format('woff')); font-style: italic; font-weight: @normal; font-display: @fontDisplay; @@ -98,8 +98,8 @@ }; @boldItalicSupplement: { font-family: @fontName; - src: url('@{fontPath}/@{fontFileNameSupplement}-BoldItalic.woff2') format('woff2') - if(@supportIE, e(',') url('@{fontPath}/@{fontFileNameSupplement}-BoldItalic.woff') format('woff')); + src: url("@{fontPath}/@{fontFileNameSupplement}-BoldItalic.woff2") format('woff2') + if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameSupplement}-BoldItalic.woff") format('woff')); font-style: italic; font-weight: @bold; font-display: @fontDisplay; @@ -869,7 +869,7 @@ @headerLineHeightOffset: ((@headerLineHeight - 1em) / 2); /* Header Spacing */ -@headerTopMargin: e(%('calc(2rem - %d)', @headerLineHeightOffset)); +@headerTopMargin: e(%("calc(2rem - %d)", @headerLineHeightOffset)); @headerBottomMargin: 1rem; @headerMargin: @headerTopMargin 0 @headerBottomMargin; diff --git a/src/themes/default/modules/dimmer.variables b/src/themes/default/modules/dimmer.variables index c51b64c163..c89314305f 100644 --- a/src/themes/default/modules/dimmer.variables +++ b/src/themes/default/modules/dimmer.variables @@ -21,7 +21,7 @@ @overflow: hidden; @blurredStartFilter: initial; -@blurredEndFilter: e('blur(5px) grayscale(0.7)'); +@blurredEndFilter: e("blur(5px) grayscale(0.7)"); @blurredTransition: 800ms filter @defaultEasing; @blurredBackgroundColor: rgba(0, 0, 0, 0.6); diff --git a/src/themes/default/modules/dropdown.overrides b/src/themes/default/modules/dropdown.overrides index 8b2688b1c5..c6cdda3621 100644 --- a/src/themes/default/modules/dropdown.overrides +++ b/src/themes/default/modules/dropdown.overrides @@ -35,25 +35,25 @@ .ui.dropdown .item .left.dropdown.icon::before, .ui.dropdown .left.menu .item .dropdown.icon::before { - content: '\f0d9'/*rtl:'\f0da'*/; + content: "\f0d9"/*rtl:"\f0da"*/; } /* Vertical Menu Dropdown */ .ui.vertical.menu .dropdown.item > .dropdown.icon::before { - content: '\f0da'/*rtl:'\f0d9'*/; + content: "\f0da"/*rtl:"\f0d9"*/; } /* Icons for Reference .dropdown.down.icon { - content: '\f0d7'; + content: "\f0d7"; } .dropdown.up.icon { - content: '\f0d8'; + content: "\f0d8"; } .dropdown.left.icon { - content: '\f0d9'; + content: "\f0d9"; } .dropdown.icon.icon { - content: '\f0da'; + content: "\f0da"; } */ diff --git a/src/themes/default/modules/dropdown.variables b/src/themes/default/modules/dropdown.variables index 587e6cb551..49033d876f 100755 --- a/src/themes/default/modules/dropdown.variables +++ b/src/themes/default/modules/dropdown.variables @@ -39,7 +39,7 @@ @menuBoxShadow: @raisedShadow; @menuBorderRadius: @borderRadius; @menuTransition: opacity @defaultDuration @defaultEasing; -@menuMinWidth: e(%('calc(100%% + %d)', @menuBorderWidth * 2)); +@menuMinWidth: e(%("calc(100%% + %d)", @menuBorderWidth * 2)); @menuZIndex: 11; /* Text */ @@ -329,7 +329,7 @@ /* Scrolling */ @scrollingMenuWidth: 100%; @scrollingMenuItemBorder: none; -@scrollingMenuRightItemPadding: e(%('calc(%d + %d)', @itemHorizontalPadding, @scrollbarWidth)); +@scrollingMenuRightItemPadding: e(%("calc(%d + %d)", @itemHorizontalPadding, @scrollbarWidth)); @scrollingMobileMaxItems: 4; @scrollingTabletMaxItems: 6; diff --git a/src/themes/default/modules/flyout.variables b/src/themes/default/modules/flyout.variables index e7bd830f5b..56ca00a4a7 100644 --- a/src/themes/default/modules/flyout.variables +++ b/src/themes/default/modules/flyout.variables @@ -16,7 +16,7 @@ @dimmerTransition: all @duration; @blurredBackgroundColor: rgba(0, 0, 0, 0.6); -@blurredEndFilter: e('blur(5px) grayscale(0.7)'); +@blurredEndFilter: e("blur(5px) grayscale(0.7)"); /* Color below page */ @canvasBackground: @lightBlack; diff --git a/src/themes/default/modules/popup.variables b/src/themes/default/modules/popup.variables index d13fed3079..82803e7e34 100644 --- a/src/themes/default/modules/popup.variables +++ b/src/themes/default/modules/popup.variables @@ -103,7 +103,7 @@ /* Grid Inside Popup */ @nestedGridMargin: -0.7rem -0.875rem; /* (padding * @medium) */ -@nestedGridWidth: e('calc(100% + 1.75rem)'); +@nestedGridWidth: e("calc(100% + 1.75rem)"); /* ------------------- States diff --git a/src/themes/default/modules/search.variables b/src/themes/default/modules/search.variables index a8e7547b90..4dacd5b3db 100644 --- a/src/themes/default/modules/search.variables +++ b/src/themes/default/modules/search.variables @@ -21,7 +21,7 @@ @promptBoxShadow: 0 0 0 0 transparent inset; /* Mobile */ -@mobileMaxWidth: e('calc(100vw - 2rem)'); +@mobileMaxWidth: e("calc(100vw - 2rem)"); /* Result Box */ @resultsWidth: 18em; diff --git a/src/themes/default/modules/sidebar.variables b/src/themes/default/modules/sidebar.variables index 1c1780846e..749efbdddd 100644 --- a/src/themes/default/modules/sidebar.variables +++ b/src/themes/default/modules/sidebar.variables @@ -16,7 +16,7 @@ @dimmerTransition: all @duration; @blurredBackgroundColor: rgba(0, 0, 0, 0.6); -@blurredEndFilter: e('blur(5px) grayscale(0.7)'); +@blurredEndFilter: e("blur(5px) grayscale(0.7)"); /* Color below page */ @canvasBackground: @lightBlack; diff --git a/src/themes/default/modules/toast.variables b/src/themes/default/modules/toast.variables index 90faa8a60e..326fd85974 100644 --- a/src/themes/default/modules/toast.variables +++ b/src/themes/default/modules/toast.variables @@ -58,7 +58,7 @@ @toastIconCenteredAdjustment: 1.2em; @toastImageCenteredAdjustment: 2em; -@toastImageMiniImageAdjustment: e(%('calc(%d + %d)', @inputVerticalPadding, @toastMiniImageHeight)); +@toastImageMiniImageAdjustment: e(%("calc(%d + %d)", @inputVerticalPadding, @toastMiniImageHeight)); @toastImageMiniImagePadding: 4.4em; /* Progressbar Colors */ diff --git a/src/themes/default/views/card.variables b/src/themes/default/views/card.variables index 4fa721eac0..2a4499b173 100644 --- a/src/themes/default/views/card.variables +++ b/src/themes/default/views/card.variables @@ -139,7 +139,7 @@ /* Buttons */ @buttonMargin: 0 -@borderWidth; -@buttonWidth: e(%('calc(100%% + %d)', @borderWidth * 2)); +@buttonWidth: e(%("calc(100%% + %d)", @borderWidth * 2)); /******************************* States @@ -212,29 +212,29 @@ @oneCard: @oneColumn; @oneCardOffset: 0; -@twoCard: e(%('calc(%d - %d)', @twoColumn, @twoCardSpacing * 2)); +@twoCard: e(%("calc(%d - %d)", @twoColumn, @twoCardSpacing * 2)); @twoCardOffset: -@twoCardSpacing; -@threeCard: e(%('calc(%d - %d)', @threeColumn, @threeCardSpacing * 2)); +@threeCard: e(%("calc(%d - %d)", @threeColumn, @threeCardSpacing * 2)); @threeCardOffset: -@threeCardSpacing; -@fourCard: e(%('calc(%d - %d)', @fourColumn, @fourCardSpacing * 2)); +@fourCard: e(%("calc(%d - %d)", @fourColumn, @fourCardSpacing * 2)); @fourCardOffset: -@fourCardSpacing; -@fiveCard: e(%('calc(%d - %d)', @fiveColumn, @fiveCardSpacing * 2)); +@fiveCard: e(%("calc(%d - %d)", @fiveColumn, @fiveCardSpacing * 2)); @fiveCardOffset: -@fiveCardSpacing; -@sixCard: e(%('calc(%d - %d)', @sixColumn, @sixCardSpacing * 2)); +@sixCard: e(%("calc(%d - %d)", @sixColumn, @sixCardSpacing * 2)); @sixCardOffset: -@sixCardSpacing; -@sevenCard: e(%('calc(%d - %d)', @sevenColumn, @sevenCardSpacing * 2)); +@sevenCard: e(%("calc(%d - %d)", @sevenColumn, @sevenCardSpacing * 2)); @sevenCardOffset: -@sevenCardSpacing; -@eightCard: e(%('calc(%d - %d)', @eightColumn, @sevenCardSpacing * 2)); +@eightCard: e(%("calc(%d - %d)", @eightColumn, @sevenCardSpacing * 2)); @eightCardOffset: -@sevenCardSpacing; -@nineCard: e(%('calc(%d - %d)', @nineColumn, @nineCardSpacing * 2)); +@nineCard: e(%("calc(%d - %d)", @nineColumn, @nineCardSpacing * 2)); @nineCardOffset: -@nineCardSpacing; -@tenCard: e(%('calc(%d - %d)', @tenColumn, @tenCardSpacing * 2)); +@tenCard: e(%("calc(%d - %d)", @tenColumn, @tenCardSpacing * 2)); @tenCardOffset: -@tenCardSpacing; /* Stackable */ @stackableRowSpacing: 1em; @stackableCardSpacing: 1em; -@stackableMargin: e(%('calc(%d - %d)', @oneColumn, @stackableCardSpacing * 2)); +@stackableMargin: e(%("calc(%d - %d)", @oneColumn, @stackableCardSpacing * 2)); /* Sizes */ @medium: 1em; diff --git a/src/themes/famfamfam/elements/flag.variables b/src/themes/famfamfam/elements/flag.variables index 158f3bbfc0..46b312f3c7 100644 --- a/src/themes/famfamfam/elements/flag.variables +++ b/src/themes/famfamfam/elements/flag.variables @@ -8,7 +8,7 @@ Element -------------------- */ -@spritePath: '@{imagePath}/flags.png'; +@spritePath: "@{imagePath}/flags.png"; @width: 16px; @height: 11px; @verticalAlign: baseline; diff --git a/src/themes/flat/collections/form.variables b/src/themes/flat/collections/form.variables index 77fe86ebf7..a7c69a3abb 100644 --- a/src/themes/flat/collections/form.variables +++ b/src/themes/flat/collections/form.variables @@ -66,7 +66,7 @@ /* Loading */ @formLoaderDimmerColor: rgba(255, 255, 255, 0.6); -@formLoaderPath: '@{imagePath}/loader-large.gif'; +@formLoaderPath: "@{imagePath}/loader-large.gif"; @formLoaderPosition: 50% 50%; /* (x) Wide Field */ diff --git a/src/themes/flat/globals/site.variables b/src/themes/flat/globals/site.variables index 893da01f05..9bdb62affc 100644 --- a/src/themes/flat/globals/site.variables +++ b/src/themes/flat/globals/site.variables @@ -6,15 +6,15 @@ Paths -------------------- */ -@imagePath: '../../themes/default/assets/images'; -@fontPath: '../../themes/default/assets/fonts'; +@imagePath: "../../themes/default/assets/images"; +@fontPath: "../../themes/default/assets/fonts"; /* ------------------- Fonts -------------------- */ -@headerFont: 'Open Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif; -@pageFont: 'Open Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif; +@headerFont: "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif; +@pageFont: "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif; /* ------------------- Site Colors diff --git a/src/themes/github/elements/icon.variables b/src/themes/github/elements/icon.variables index 7be316001a..87329a24ee 100644 --- a/src/themes/github/elements/icon.variables +++ b/src/themes/github/elements/icon.variables @@ -3,7 +3,7 @@ @fonts: { @solid: { font-family: @fontName; - src: url('@{fontPath}/@{fontName}.woff2') format('woff'); + src: url("@{fontPath}/@{fontName}.woff2") format('woff'); font-style: normal; font-weight: @normal; font-variant: normal; diff --git a/src/themes/github/modules/dropdown.overrides b/src/themes/github/modules/dropdown.overrides index a89f396e7e..60327cc5fa 100644 --- a/src/themes/github/modules/dropdown.overrides +++ b/src/themes/github/modules/dropdown.overrides @@ -40,10 +40,10 @@ .ui.dropdown .item .left.dropdown.icon::before, .ui.dropdown .left.menu .item .dropdown.icon::before { - content: '\f0d9'/*rtl:'\f0da'*/; + content: "\f0d9"/*rtl:"\f0da"*/; } /* Vertical Menu Dropdown */ .ui.vertical.menu .dropdown.item > .dropdown.icon::before { - content: '\f0da'/*rtl:'\f0d9'*/; + content: "\f0da"/*rtl:"\f0d9"*/; } diff --git a/src/themes/joypixels/elements/emoji.variables b/src/themes/joypixels/elements/emoji.variables index 588193bd14..ccb576256f 100644 --- a/src/themes/joypixels/elements/emoji.variables +++ b/src/themes/joypixels/elements/emoji.variables @@ -13,8 +13,8 @@ Downloading and hosting the joxpixels assets locally may require an additional license depending on the usage Find joypixels licenses at https://www.joypixels.com/licenses */ -@emojiPath: 'https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/128/'; -@emojiFileType: 'png'; +@emojiPath: "https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/128/"; +@emojiFileType: "png"; /* -------------- Definition diff --git a/src/themes/material/elements/icon.variables b/src/themes/material/elements/icon.variables index 9e55eb6d8b..fd8a625f2f 100644 --- a/src/themes/material/elements/icon.variables +++ b/src/themes/material/elements/icon.variables @@ -2,8 +2,8 @@ @fonts: { @solid: { font-family: @fontName; - src: url('@{fontPath}/@{fontName}.woff2') format('woff2') - if(@supportIE, e(',') url('@{fontPath}/@{fontName}.woff') format('woff')); + src: url("@{fontPath}/@{fontName}.woff2") format('woff2') + if(@supportIE, e(',') url("@{fontPath}/@{fontName}.woff") format('woff')); font-style: normal; font-weight: @normal; font-variant: normal; diff --git a/src/themes/material/modules/modal.variables b/src/themes/material/modules/modal.variables index e84adf5e48..29ceb02387 100644 --- a/src/themes/material/modules/modal.variables +++ b/src/themes/material/modules/modal.variables @@ -5,7 +5,7 @@ @headerVerticalPadding: 1.7142rem; @headerHorizontalPadding: 1.7142rem; @headerFontWeight: 400; -@headerFontFamily: 'Roboto', 'Helvetica Neue', Arial, sans-serif; +@headerFontFamily: 'Roboto', "Helvetica Neue", Arial, sans-serif; @headerBorder: none; @contentPadding: 1rem 2rem 2rem; diff --git a/src/themes/twitter/elements/emoji.variables b/src/themes/twitter/elements/emoji.variables index 474a6aee70..b4885c4239 100644 --- a/src/themes/twitter/elements/emoji.variables +++ b/src/themes/twitter/elements/emoji.variables @@ -5,8 +5,8 @@ /* -------------- Path --------------- */ -@emojiPath: 'https://twemoji.maxcdn.com/v/latest/svg/'; -@emojiFileType: 'svg'; +@emojiPath: "https://twemoji.maxcdn.com/v/latest/svg/"; +@emojiFileType: "svg"; /* -------------- Definition From 267ddf4af1b63279e11ecac7e6a2ec60788a5682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Thu, 15 Dec 2022 10:03:22 +0100 Subject: [PATCH 02/18] strictly autofix quotes by stylelint --- src/definitions/collections/breadcrumb.less | 2 +- src/definitions/collections/form.less | 6 +- src/definitions/collections/grid.less | 2 +- src/definitions/collections/menu.less | 12 +- src/definitions/collections/message.less | 4 +- src/definitions/collections/table.less | 4 +- src/definitions/elements/button.less | 6 +- src/definitions/elements/container.less | 2 +- src/definitions/elements/divider.less | 8 +- src/definitions/elements/emoji.less | 4 +- src/definitions/elements/flag.less | 14 +- src/definitions/elements/header.less | 6 +- src/definitions/elements/icon.less | 10 +- src/definitions/elements/image.less | 2 +- src/definitions/elements/input.less | 6 +- src/definitions/elements/label.less | 10 +- src/definitions/elements/list.less | 4 +- src/definitions/elements/loader.less | 6 +- src/definitions/elements/placeholder.less | 8 +- src/definitions/elements/rail.less | 2 +- src/definitions/elements/reveal.less | 2 +- src/definitions/elements/segment.less | 10 +- src/definitions/elements/step.less | 4 +- src/definitions/elements/text.less | 2 +- src/definitions/globals/reset.less | 2 +- src/definitions/globals/site.less | 2 +- src/definitions/modules/accordion.less | 2 +- src/definitions/modules/calendar.less | 2 +- src/definitions/modules/checkbox.less | 16 +- src/definitions/modules/dimmer.less | 2 +- src/definitions/modules/dropdown.less | 10 +- src/definitions/modules/embed.less | 4 +- src/definitions/modules/flyout.less | 4 +- src/definitions/modules/modal.less | 4 +- src/definitions/modules/nag.less | 2 +- src/definitions/modules/popup.less | 6 +- src/definitions/modules/progress.less | 6 +- src/definitions/modules/rating.less | 2 +- src/definitions/modules/search.less | 6 +- src/definitions/modules/shape.less | 2 +- src/definitions/modules/sidebar.less | 4 +- src/definitions/modules/slider.less | 4 +- src/definitions/modules/sticky.less | 2 +- src/definitions/modules/tab.less | 6 +- src/definitions/modules/toast.less | 2 +- src/definitions/modules/transition.less | 2 +- src/definitions/views/ad.less | 2 +- src/definitions/views/card.less | 10 +- src/definitions/views/comment.less | 2 +- src/definitions/views/feed.less | 2 +- src/definitions/views/item.less | 8 +- src/definitions/views/statistic.less | 4 +- src/theme.less | 2 +- src/themes/basic/elements/icon.overrides | 296 +- src/themes/basic/elements/icon.variables | 2 +- src/themes/bookish/elements/header.overrides | 2 +- src/themes/chubby/elements/button.overrides | 2 +- src/themes/chubby/elements/header.overrides | 2 +- src/themes/default/elements/divider.overrides | 4 +- src/themes/default/elements/icon.variables | 3924 ++++++++--------- src/themes/default/elements/step.overrides | 4 +- src/themes/default/globals/site.variables | 32 +- .../default/modules/accordion.overrides | 4 +- src/themes/default/modules/checkbox.overrides | 6 +- src/themes/default/modules/dropdown.overrides | 6 +- src/themes/famfamfam/elements/flag.overrides | 2 +- src/themes/github/elements/icon.overrides | 358 +- src/themes/github/elements/icon.variables | 2 +- src/themes/github/modules/dropdown.overrides | 6 +- src/themes/instagram/views/card.overrides | 2 +- .../material/collections/menu.overrides | 2 +- src/themes/material/elements/button.overrides | 2 +- src/themes/material/elements/header.overrides | 2 +- src/themes/material/elements/icon.overrides | 1864 ++++---- src/themes/material/elements/icon.variables | 4 +- .../material/modules/dropdown.overrides | 2 +- src/themes/material/modules/modal.overrides | 2 +- src/themes/resetcss/globals/reset.overrides | 2 +- src/themes/rtl/globals/site.overrides | 2 +- 79 files changed, 3397 insertions(+), 3397 deletions(-) diff --git a/src/definitions/collections/breadcrumb.less b/src/definitions/collections/breadcrumb.less index f4afa9a1ee..bcf4a137d9 100755 --- a/src/definitions/collections/breadcrumb.less +++ b/src/definitions/collections/breadcrumb.less @@ -15,7 +15,7 @@ @type: 'collection'; @element: 'breadcrumb'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Breadcrumb diff --git a/src/definitions/collections/form.less b/src/definitions/collections/form.less index 02a37b227c..9bcc21c10f 100755 --- a/src/definitions/collections/form.less +++ b/src/definitions/collections/form.less @@ -15,7 +15,7 @@ @type: 'collection'; @element: 'form'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Elements @@ -775,7 +775,7 @@ } .ui.loading.form::before { position: absolute; - content: ''; + content: ""; top: 0; left: 0; background: @loaderDimmerColor; @@ -790,7 +790,7 @@ .ui.loading.form::after { position: absolute; - content: ''; + content: ""; top: 50%; left: 50%; margin: @loaderMargin; diff --git a/src/definitions/collections/grid.less b/src/definitions/collections/grid.less index b9489c16b9..cc2e1bdd74 100755 --- a/src/definitions/collections/grid.less +++ b/src/definitions/collections/grid.less @@ -15,7 +15,7 @@ @type: 'collection'; @element: 'grid'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Standard diff --git a/src/definitions/collections/menu.less b/src/definitions/collections/menu.less index 43a739953b..27ad88f800 100755 --- a/src/definitions/collections/menu.less +++ b/src/definitions/collections/menu.less @@ -16,7 +16,7 @@ @type: 'collection'; @element: 'menu'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Standard @@ -39,7 +39,7 @@ } .ui.menu::after { - content: ''; + content: ""; display: block; height: 0; clear: both; @@ -97,7 +97,7 @@ /* Border */ .ui.menu .item::before { position: absolute; - content: ''; + content: ""; top: 0; right: 0; height: 100%; @@ -569,7 +569,7 @@ Floated Menu / Item /* --- Border --- */ .ui.vertical.menu .item::before { position: absolute; - content: ''; + content: ""; top: 0; left: 0; width: 100%; @@ -1319,7 +1319,7 @@ Floated Menu / Item } .ui.stackable.menu .item::before { position: absolute; - content: ''; + content: ""; top: auto; bottom: 0; left: 0; @@ -1756,7 +1756,7 @@ Floated Menu / Item .ui.pointing.menu .item::after { visibility: hidden; position: absolute; - content: ''; + content: ""; top: 100%; left: 50%; transform: translateX(-50%) translateY(-50%) rotate(45deg); diff --git a/src/definitions/collections/message.less b/src/definitions/collections/message.less index 490e31d2e0..f385e3bc77 100755 --- a/src/definitions/collections/message.less +++ b/src/definitions/collections/message.less @@ -15,7 +15,7 @@ @type: 'collection'; @element: 'message'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Message @@ -95,7 +95,7 @@ } .ui.message .list:not(.ui) li::before { position: absolute; - content: '•'; + content: "•"; left: -1em; height: 100%; vertical-align: baseline; diff --git a/src/definitions/collections/table.less b/src/definitions/collections/table.less index 6a96940a62..59e3647d39 100755 --- a/src/definitions/collections/table.less +++ b/src/definitions/collections/table.less @@ -15,7 +15,7 @@ @type: 'collection'; @element: 'table'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Table @@ -1456,7 +1456,7 @@ font-style: normal; font-weight: @normal; text-decoration: inherit; - content: ''; + content: ""; height: 1em; width: @sortableIconWidth; opacity: @sortableIconOpacity; diff --git a/src/definitions/elements/button.less b/src/definitions/elements/button.less index 2f754388fd..a9d4cf8bad 100755 --- a/src/definitions/elements/button.less +++ b/src/definitions/elements/button.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'button'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Button @@ -131,7 +131,7 @@ } .ui.loading.button::before { position: absolute; - content: ''; + content: ""; top: 50%; left: 50%; margin: @loaderMargin; @@ -142,7 +142,7 @@ } .ui.loading.button::after { position: absolute; - content: ''; + content: ""; top: 50%; left: 50%; margin: @loaderMargin; diff --git a/src/definitions/elements/container.less b/src/definitions/elements/container.less index 550e0fa0b9..2602331991 100644 --- a/src/definitions/elements/container.less +++ b/src/definitions/elements/container.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'container'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Container diff --git a/src/definitions/elements/divider.less b/src/definitions/elements/divider.less index a191df0083..00ae632e0e 100755 --- a/src/definitions/elements/divider.less +++ b/src/definitions/elements/divider.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'divider'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Divider @@ -68,7 +68,7 @@ .ui.horizontal.divider::before, .ui.horizontal.divider::after { - content: ''; + content: ""; display: table-cell; position: relative; top: 50%; @@ -107,7 +107,7 @@ .ui.vertical.divider::after { position: absolute; left: 50%; - content: ''; + content: ""; z-index: 3; border-left: @shadowWidth @borderStyle @shadowColor; border-right: @highlightWidth @borderStyle @highlightColor; @@ -148,7 +148,7 @@ left: 0; border-left: none; border-right: none; - content: ''; + content: ""; display: table-cell; position: relative; top: 50%; diff --git a/src/definitions/elements/emoji.less b/src/definitions/elements/emoji.less index dc59dd31f4..2dab52c7c5 100644 --- a/src/definitions/elements/emoji.less +++ b/src/definitions/elements/emoji.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'emoji'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Emoji @@ -28,7 +28,7 @@ em[data-emoji] { } em[data-emoji]::before { - content: '\00A0\00A0\00A0\00A0\00A0\00A0\00A0'; + content: "\00A0\00A0\00A0\00A0\00A0\00A0\00A0"; display: inline-block; line-height: @emojiLineHeight; background-repeat: no-repeat; diff --git a/src/definitions/elements/flag.less b/src/definitions/elements/flag.less index cab45f96d5..853935f74b 100755 --- a/src/definitions/elements/flag.less +++ b/src/definitions/elements/flag.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'flag'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Flag @@ -27,7 +27,7 @@ i.flag:not(.icon) { } i.flag:not(.icon)::before { - content: '\00A0\00A0\00A0\00A0\00A0\00A0\00A0'; + content: "\00A0\00A0\00A0\00A0\00A0\00A0\00A0"; display: inline-block; line-height: @flagLineHeight; background-repeat: no-repeat; @@ -48,11 +48,11 @@ each(@size-map, { // for simplicity, class and alias names have to be unique and different to countrycode otherwise false each(@flags, { - @unicode: replace(@key, '@', ''); - @cc: replace(@flags[@@unicode][countrycode], '_', '.', 'g'); - @cls: replace(@flags[@@unicode][class], '_', '.', 'g'); - @alias: replace(@flags[@@unicode][aliasClass], '_', '.', 'g'); - @alias2: replace(@flags[@@unicode][aliasClass2], '_', '.', 'g'); + @unicode: replace(@key, "@", ""); + @cc: replace(@flags[@@unicode][countrycode], "_", ".", "g"); + @cls: replace(@flags[@@unicode][class], "_", ".", "g"); + @alias: replace(@flags[@@unicode][aliasClass], "_", ".", "g"); + @alias2: replace(@flags[@@unicode][aliasClass2], "_", ".", "g"); & when (@cls = false){ i.flag.@{cc}::before { background-image: url("@{flagPath}@{unicode}.@{flagFileType}"); diff --git a/src/definitions/elements/header.less b/src/definitions/elements/header.less index 0ae3daa826..88e721998f 100755 --- a/src/definitions/elements/header.less +++ b/src/definitions/elements/header.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'header'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Header @@ -207,7 +207,7 @@ margin: @iconHeaderTopMargin 0 @iconHeaderBottomMargin; } .ui.icon.header::after { - content: ''; + content: ""; display: block; height: 0; clear: both; @@ -358,7 +358,7 @@ } .ui.justified.header::after { display: inline-block; - content: ''; + content: ""; width: 100%; } } diff --git a/src/definitions/elements/icon.less b/src/definitions/elements/icon.less index fccf7125e7..6f6ebe26c9 100755 --- a/src/definitions/elements/icon.less +++ b/src/definitions/elements/icon.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'icon'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Icon @@ -515,8 +515,8 @@ and ((@variationIconBordered) or (@variationIconCircular)) { .generateIcons(@map, @fontFamily) { each(@map, { - @escapedKey: replace(@key, '^([0-9])', '\3$1 '); - @normalizedKey: replace(@escapedKey, '_', '.', 'g'); + @escapedKey: replace(@key, "^([0-9])", "\3$1 "); + @normalizedKey: replace(@escapedKey, "_", ".", "g"); i.icon.@{normalizedKey}::before { content: "@{value}"; & when not (@fontFamily = false) { @@ -528,8 +528,8 @@ and ((@variationIconBordered) or (@variationIconCircular)) { .generateSecondaryIcons(@map) { each(@map, { - @escapedKey: replace(@key, '^([0-9])', '\3$1 '); - @normalizedKey: replace(@escapedKey, '_', '.', 'g'); + @escapedKey: replace(@key, "^([0-9])", "\3$1 "); + @normalizedKey: replace(@escapedKey, "_", ".", "g"); i.icon.@{normalizedKey}::after { content: "@{value}"; } diff --git a/src/definitions/elements/image.less b/src/definitions/elements/image.less index 5376f854ee..794099486b 100755 --- a/src/definitions/elements/image.less +++ b/src/definitions/elements/image.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'image'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Image diff --git a/src/definitions/elements/input.less b/src/definitions/elements/input.less index 47393eac3c..a77bde474d 100755 --- a/src/definitions/elements/input.less +++ b/src/definitions/elements/input.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'input'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Standard @@ -113,7 +113,7 @@ .ui.loading.loading.input > i.icon::before { position: absolute; - content: ''; + content: ""; top: 50%; left: 50%; margin: @loaderMargin; @@ -124,7 +124,7 @@ } .ui.loading.loading.input > i.icon::after { position: absolute; - content: ''; + content: ""; top: 50%; left: 50%; margin: @loaderMargin; diff --git a/src/definitions/elements/label.less b/src/definitions/elements/label.less index 22cb991a3a..b51ddc2cb1 100755 --- a/src/definitions/elements/label.less +++ b/src/definitions/elements/label.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'label'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Label @@ -247,7 +247,7 @@ a.ui.label { transform: translateY(-50%) translateX(50%) rotate(-45deg); top: @tagTriangleTopOffset; right: @tagTriangleRightOffset; - content: ''; + content: ""; background-color: inherit; background-image: @tagTriangleBackgroundImage; width: @tagTriangleSize; @@ -258,7 +258,7 @@ a.ui.label { .ui.tag.labels .label::after, .ui.tag.label::after { position: absolute; - content: ''; + content: ""; top: 50%; left: -(@tagCircleSize / 2); margin-top: -(@tagCircleSize / 2); @@ -377,7 +377,7 @@ a.ui.label { .ui.ribbon.label::after { position: absolute; - content: ''; + content: ""; top: 100%; left: 0; background-color: transparent; @@ -868,7 +868,7 @@ a.ui.active.label:hover::before { /* Arrow */ .ui.pointing.label::before { position: absolute; - content: ''; + content: ""; transform: rotate(45deg); background-image: none; z-index: @pointingTriangleZIndex; diff --git a/src/definitions/elements/list.less b/src/definitions/elements/list.less index c21156373d..2a436031d7 100755 --- a/src/definitions/elements/list.less +++ b/src/definitions/elements/list.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'list'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* List @@ -64,7 +64,7 @@ ul.ui.list > li:first-child::after, ol.ui.list > li:first-child::after, .ui.list > .list > .item::after, .ui.list > .item::after { - content: ''; + content: ""; display: block; height: 0; clear: both; diff --git a/src/definitions/elements/loader.less b/src/definitions/elements/loader.less index 1db796e21e..b6e60aabe0 100755 --- a/src/definitions/elements/loader.less +++ b/src/definitions/elements/loader.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'loader'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Loader @@ -36,7 +36,7 @@ /* Static Shape */ .ui.loader::before { position: absolute; - content: ''; + content: ""; top: 0; left: 50%; width: 100%; @@ -48,7 +48,7 @@ /* Active Shape */ .ui.loader::after { position: absolute; - content: ''; + content: ""; top: 0; left: 50%; width: 100%; diff --git a/src/definitions/elements/placeholder.less b/src/definitions/elements/placeholder.less index b652b545ac..9d80ab94b1 100644 --- a/src/definitions/elements/placeholder.less +++ b/src/definitions/elements/placeholder.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'placeholder'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /* ------------------- Content @@ -100,7 +100,7 @@ .ui.placeholder .line::after { top: 100%; position: absolute; - content: ''; + content: ""; background-color: inherit; } .ui.placeholder .line::before { @@ -176,7 +176,7 @@ .ui.placeholder .image.header::after { display: block; height: @placeholderLineMargin; - content: ''; + content: ""; margin-left: @placeholderImageWidth; } } @@ -192,7 +192,7 @@ .ui.placeholder .paragraph:not(:first-child)::before, .ui.placeholder .header:not(:first-child)::before { height: @placeholderSpacing; - content: ''; + content: ""; display: block; } diff --git a/src/definitions/elements/rail.less b/src/definitions/elements/rail.less index 94198c03d5..0234ee2a20 100755 --- a/src/definitions/elements/rail.less +++ b/src/definitions/elements/rail.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'rail'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Rails diff --git a/src/definitions/elements/reveal.less b/src/definitions/elements/reveal.less index 6ddb364cf2..a9f8d23a4e 100755 --- a/src/definitions/elements/reveal.less +++ b/src/definitions/elements/reveal.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'reveal'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Reveal diff --git a/src/definitions/elements/segment.less b/src/definitions/elements/segment.less index c5e54662cc..c9f77f1740 100755 --- a/src/definitions/elements/segment.less +++ b/src/definitions/elements/segment.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'segment'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Segment @@ -202,7 +202,7 @@ .ui.piled.segment::before { background-color: @white; visibility: visible; - content: ''; + content: ""; display: block; height: 100%; left: 0; @@ -254,7 +254,7 @@ .ui.stacked.segments::after, .ui.stacked.segment::before, .ui.stacked.segment::after { - content: ''; + content: ""; position: absolute; bottom: -(@stackedHeight / 2); left: 0; @@ -522,7 +522,7 @@ .ui.loading.segments::before, .ui.loading.segment::before { position: absolute; - content: ''; + content: ""; top: 0; left: 0; background: @loaderDimmerColor; @@ -534,7 +534,7 @@ .ui.loading.segments::after, .ui.loading.segment::after { position: absolute; - content: ''; + content: ""; top: 50%; left: 50%; margin: @loaderMargin; diff --git a/src/definitions/elements/step.less b/src/definitions/elements/step.less index 32bf9a7b23..a9e9809252 100755 --- a/src/definitions/elements/step.less +++ b/src/definitions/elements/step.less @@ -19,7 +19,7 @@ @type: 'element'; @element: 'step'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Plural @@ -79,7 +79,7 @@ display: none; position: absolute; z-index: 2; - content: ''; + content: ""; top: @arrowTopOffset; right: @arrowRightOffset; background-color: @arrowBackgroundColor; diff --git a/src/definitions/elements/text.less b/src/definitions/elements/text.less index c901c423f6..63f1e4ecb7 100644 --- a/src/definitions/elements/text.less +++ b/src/definitions/elements/text.less @@ -15,7 +15,7 @@ @type: 'element'; @element: 'text'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Text diff --git a/src/definitions/globals/reset.less b/src/definitions/globals/reset.less index 727f5f3e53..43a9785965 100755 --- a/src/definitions/globals/reset.less +++ b/src/definitions/globals/reset.less @@ -15,7 +15,7 @@ @type: 'global'; @element: 'reset'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Reset diff --git a/src/definitions/globals/site.less b/src/definitions/globals/site.less index 833c77e76b..2658fbf2dc 100755 --- a/src/definitions/globals/site.less +++ b/src/definitions/globals/site.less @@ -15,7 +15,7 @@ @type: 'global'; @element: 'site'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Page diff --git a/src/definitions/modules/accordion.less b/src/definitions/modules/accordion.less index 5d4fa20b65..54568fd06b 100755 --- a/src/definitions/modules/accordion.less +++ b/src/definitions/modules/accordion.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'accordion'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Accordion diff --git a/src/definitions/modules/calendar.less b/src/definitions/modules/calendar.less index b730c50db2..fcc27c1771 100644 --- a/src/definitions/modules/calendar.less +++ b/src/definitions/modules/calendar.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'calendar'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Popup diff --git a/src/definitions/modules/checkbox.less b/src/definitions/modules/checkbox.less index 8099b61cea..ae98d54b44 100755 --- a/src/definitions/modules/checkbox.less +++ b/src/definitions/modules/checkbox.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'checkbox'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Checkbox @@ -67,7 +67,7 @@ left: 0; width: @checkboxSize; height: @checkboxSize; - content: ''; + content: ""; background: @checkboxBackground; border-radius: @checkboxBorderRadius; transition: @checkboxTransition; @@ -283,7 +283,7 @@ /* Box */ .ui.radio.checkbox label::before { - content: ''; + content: ""; transform: none; width: @radioSize; height: @radioSize; @@ -295,7 +295,7 @@ /* Bullet */ .ui.radio.checkbox label::after { border: none; - content: '' !important; + content: "" !important; line-height: @radioSize; top: @bulletTop; left: @bulletLeft; @@ -362,7 +362,7 @@ .ui.slider.checkbox label::before { display: block; position: absolute; - content: ''; + content: ""; transform: none; border: none !important; left: 0; @@ -379,7 +379,7 @@ .ui.slider.checkbox label::after { background: @handleBackground; position: absolute; - content: '' !important; + content: "" !important; opacity: 1; z-index: 2; border: none; @@ -472,7 +472,7 @@ .ui.toggle.checkbox label::before { display: block; position: absolute; - content: ''; + content: ""; z-index: 1; transform: none; border: none; @@ -488,7 +488,7 @@ .ui.toggle.checkbox label::after { background: @handleBackground; position: absolute; - content: '' !important; + content: "" !important; opacity: 1; z-index: 2; border: none; diff --git a/src/definitions/modules/dimmer.less b/src/definitions/modules/dimmer.less index 3688b57a3a..f8d6690f7a 100755 --- a/src/definitions/modules/dimmer.less +++ b/src/definitions/modules/dimmer.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'dimmer'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Dimmer diff --git a/src/definitions/modules/dropdown.less b/src/definitions/modules/dropdown.less index 02208877cc..4e49c9ab9c 100755 --- a/src/definitions/modules/dropdown.less +++ b/src/definitions/modules/dropdown.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'dropdown'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Dropdown @@ -638,7 +638,7 @@ select.ui.dropdown { @media (-moz-touch-enabled), (pointer: coarse) { .ui.dropdown .scrollhint.menu:not(.hidden)::before { animation: scrollhint @scrollhintDuration @scrollhintEasing @scrollhintIteration; - content: ''; + content: ""; z-index: @scrollhintZIndex; display: block; position: absolute; @@ -998,7 +998,7 @@ select.ui.dropdown { } .ui.loading.dropdown > i.icon::before { position: absolute; - content: ''; + content: ""; top: 50%; left: 50%; margin: @loaderMargin; @@ -1009,7 +1009,7 @@ select.ui.dropdown { } .ui.loading.dropdown > i.icon::after { position: absolute; - content: ''; + content: ""; top: 50%; left: 50%; box-shadow: 0 0 0 1px transparent; @@ -1551,7 +1551,7 @@ select.ui.dropdown { display: block; position: absolute; pointer-events: none; - content: ''; + content: ""; visibility: visible; transform: rotate(45deg); width: @pointingArrowSize; diff --git a/src/definitions/modules/embed.less b/src/definitions/modules/embed.less index 5cddadd78c..7854d0089c 100644 --- a/src/definitions/modules/embed.less +++ b/src/definitions/modules/embed.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'embed'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Types @@ -91,7 +91,7 @@ width: 100%; height: 100%; z-index: 3; - content: ''; + content: ""; background: @placeholderBackground; opacity: @placeholderBackgroundOpacity; transition: @placeholderBackgroundTransition; diff --git a/src/definitions/modules/flyout.less b/src/definitions/modules/flyout.less index e0e7dd5b35..6f203c871d 100644 --- a/src/definitions/modules/flyout.less +++ b/src/definitions/modules/flyout.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'flyout'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Flyout @@ -279,7 +279,7 @@ body.pushable > .pusher { position: fixed; top: 0; right: 0; - content: ''; + content: ""; background: @dimmerColor; overflow: hidden; opacity: 0; diff --git a/src/definitions/modules/modal.less b/src/definitions/modules/modal.less index 9279ced22c..815e0df7e2 100755 --- a/src/definitions/modules/modal.less +++ b/src/definitions/modules/modal.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'modal'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Modal @@ -455,7 +455,7 @@ /* Fix for Firefox, Edge, IE11 */ .modals.dimmer .ui.scrolling.modal:not([class*="overlay fullscreen"])::after { - content: '\00A0'; + content: "\00A0"; position: absolute; height: @scrollingMargin; } diff --git a/src/definitions/modules/nag.less b/src/definitions/modules/nag.less index 022728ae25..ba27c9de97 100755 --- a/src/definitions/modules/nag.less +++ b/src/definitions/modules/nag.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'nag'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Nag diff --git a/src/definitions/modules/popup.less b/src/definitions/modules/popup.less index b1f230d524..e523343809 100755 --- a/src/definitions/modules/popup.less +++ b/src/definitions/modules/popup.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'popup'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Popup @@ -54,7 +54,7 @@ .ui.popup::before { position: absolute; - content: ''; + content: ""; width: @arrowSize; height: @arrowSize; background: @arrowBackground; @@ -81,7 +81,7 @@ [data-tooltip]::before { pointer-events: none; position: absolute; - content: ''; + content: ""; font-size: @medium; width: @arrowSize; height: @arrowSize; diff --git a/src/definitions/modules/progress.less b/src/definitions/modules/progress.less index 2964938896..ea955790e4 100755 --- a/src/definitions/modules/progress.less +++ b/src/definitions/modules/progress.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'progress'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Progress @@ -331,7 +331,7 @@ min-width: @activeMinWidth; } .ui.active.progress .bar::after { - content: ''; + content: ""; opacity: 0; position: absolute; top: 0; @@ -527,7 +527,7 @@ right: 0; } .ui.indeterminate.progress .bar::before { - content: ''; + content: ""; position: absolute; top: 0; bottom: 0; diff --git a/src/definitions/modules/rating.less b/src/definitions/modules/rating.less index 790500373f..88c0f4db79 100755 --- a/src/definitions/modules/rating.less +++ b/src/definitions/modules/rating.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'rating'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Rating diff --git a/src/definitions/modules/search.less b/src/definitions/modules/search.less index 3f3bb144a6..156d347ba2 100755 --- a/src/definitions/modules/search.less +++ b/src/definitions/modules/search.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'search'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Search @@ -192,7 +192,7 @@ .ui.loading.search .input > i.icon::before { position: absolute; - content: ''; + content: ""; top: 50%; left: 50%; margin: @loaderMargin; @@ -203,7 +203,7 @@ } .ui.loading.search .input > i.icon::after { position: absolute; - content: ''; + content: ""; top: 50%; left: 50%; margin: @loaderMargin; diff --git a/src/definitions/modules/shape.less b/src/definitions/modules/shape.less index 76816b3856..9cec875a3c 100755 --- a/src/definitions/modules/shape.less +++ b/src/definitions/modules/shape.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'shape'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Shape diff --git a/src/definitions/modules/sidebar.less b/src/definitions/modules/sidebar.less index c79672ed2a..c15b0ad19a 100755 --- a/src/definitions/modules/sidebar.less +++ b/src/definitions/modules/sidebar.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'sidebar'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Sidebar @@ -161,7 +161,7 @@ body.pushable > .pusher { position: fixed; top: 0; right: 0; - content: ''; + content: ""; background: @dimmerColor; overflow: hidden; opacity: 0; diff --git a/src/definitions/modules/slider.less b/src/definitions/modules/slider.less index 572c54d11f..7ac9e997fd 100644 --- a/src/definitions/modules/slider.less +++ b/src/definitions/modules/slider.less @@ -5,7 +5,7 @@ @type: 'module'; @element: 'slider'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; .ui.slider:not(.vertical):not(.checkbox) { width: 100%; @@ -206,7 +206,7 @@ } & when (@variationSliderTicked) { .ui.labeled.ticked.slider > .labels .label::after { - content: ' '; + content: " "; height: @labelHeight; width: @labelWidth; background: @labelColor; diff --git a/src/definitions/modules/sticky.less b/src/definitions/modules/sticky.less index 825df4e4ea..1756761ecc 100755 --- a/src/definitions/modules/sticky.less +++ b/src/definitions/modules/sticky.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'sticky'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Sticky diff --git a/src/definitions/modules/tab.less b/src/definitions/modules/tab.less index 5f50f939e4..bfb15b35ad 100755 --- a/src/definitions/modules/tab.less +++ b/src/definitions/modules/tab.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'tab'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* UI Tabs @@ -57,7 +57,7 @@ .ui.tab.loading::before, .ui.tab.loading.segment::before { position: absolute; - content: ''; + content: ""; top: @loaderDistanceFromTop; left: 50%; margin: @loaderMargin; @@ -69,7 +69,7 @@ .ui.tab.loading::after, .ui.tab.loading.segment::after { position: absolute; - content: ''; + content: ""; top: @loaderDistanceFromTop; left: 50%; margin: @loaderMargin; diff --git a/src/definitions/modules/toast.less b/src/definitions/modules/toast.less index d787bcc724..fee832cae4 100644 --- a/src/definitions/modules/toast.less +++ b/src/definitions/modules/toast.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'toast'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Toast container diff --git a/src/definitions/modules/transition.less b/src/definitions/modules/transition.less index 609695c95b..af8f45d992 100755 --- a/src/definitions/modules/transition.less +++ b/src/definitions/modules/transition.less @@ -15,7 +15,7 @@ @type: 'module'; @element: 'transition'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Transitions diff --git a/src/definitions/views/ad.less b/src/definitions/views/ad.less index 29aca9c71c..9bd2c7447f 100644 --- a/src/definitions/views/ad.less +++ b/src/definitions/views/ad.less @@ -16,7 +16,7 @@ @type: 'view'; @element: 'ad'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Advertisement diff --git a/src/definitions/views/card.less b/src/definitions/views/card.less index aa4c90e721..fe1ef82556 100755 --- a/src/definitions/views/card.less +++ b/src/definitions/views/card.less @@ -15,7 +15,7 @@ @type: 'view'; @element: 'card'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Standard @@ -78,7 +78,7 @@ .ui.cards::after, .ui.card::after { display: block; - content: ' '; + content: " "; height: 0; clear: both; overflow: hidden; @@ -156,7 +156,7 @@ .ui.cards > .card > .content::after, .ui.card > .content::after { display: block; - content: ' '; + content: " "; height: 0; clear: both; overflow: hidden; @@ -493,7 +493,7 @@ } .ui.loading.card::before { position: absolute; - content: ''; + content: ""; top: 0; left: 0; background: @loaderDimmerColor; @@ -504,7 +504,7 @@ } .ui.loading.card::after { position: absolute; - content: ''; + content: ""; top: 50%; left: 50%; margin: @loaderMargin; diff --git a/src/definitions/views/comment.less b/src/definitions/views/comment.less index a4542e8122..8e6e56378e 100755 --- a/src/definitions/views/comment.less +++ b/src/definitions/views/comment.less @@ -15,7 +15,7 @@ @type: 'view'; @element: 'comment'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Standard diff --git a/src/definitions/views/feed.less b/src/definitions/views/feed.less index 8e3bf5dd95..9a5e565377 100755 --- a/src/definitions/views/feed.less +++ b/src/definitions/views/feed.less @@ -15,7 +15,7 @@ @type: 'view'; @element: 'feed'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Activity Feed diff --git a/src/definitions/views/item.less b/src/definitions/views/item.less index 2d91741e89..5e3b55b4e7 100755 --- a/src/definitions/views/item.less +++ b/src/definitions/views/item.less @@ -15,7 +15,7 @@ @type: 'view'; @element: 'item'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Standard @@ -63,7 +63,7 @@ .ui.items > .item::after { display: block; - content: ' '; + content: " "; height: 0; clear: both; overflow: hidden; @@ -122,7 +122,7 @@ } .ui.items > .item > .content::after { display: block; - content: ' '; + content: " "; height: 0; clear: both; overflow: hidden; @@ -337,7 +337,7 @@ .ui.items > .item .extra::after { display: block; - content: ' '; + content: " "; height: 0; clear: both; overflow: hidden; diff --git a/src/definitions/views/statistic.less b/src/definitions/views/statistic.less index 8e082fe9ed..6d00eaba3e 100755 --- a/src/definitions/views/statistic.less +++ b/src/definitions/views/statistic.less @@ -15,7 +15,7 @@ @type: 'view'; @element: 'statistic'; -@import (multiple) '../../theme.config'; +@import (multiple) "../../theme.config"; /******************************* Statistic @@ -65,7 +65,7 @@ /* Clearing */ .ui.statistics::after { display: block; - content: ' '; + content: " "; height: 0; clear: both; overflow: hidden; diff --git a/src/theme.less b/src/theme.less index 3dc6689b5a..ab35fab288 100644 --- a/src/theme.less +++ b/src/theme.less @@ -59,7 +59,7 @@ .loadFonts() { & when (@importGoogleFonts) { - @import (css) url('@{googleProtocol}fonts.googleapis.com/css2?family=@{googleFontRequest}'); + @import (css) url("@{googleProtocol}fonts.googleapis.com/css2?family=@{googleFontRequest}"); } & when (@importFonts) and not (@fontName = '') { each(@fonts, { diff --git a/src/themes/basic/elements/icon.overrides b/src/themes/basic/elements/icon.overrides index 11e1cd5b21..08d4bdca6a 100644 --- a/src/themes/basic/elements/icon.overrides +++ b/src/themes/basic/elements/icon.overrides @@ -1,142 +1,142 @@ /* basic.icons available */ -i.icon.circle.attention::before { content: '\2757'; } /* '❗' */ -i.icon.circle.help::before { content: '\e704'; } /* '' */ -i.icon.circle.info::before { content: '\e705'; } /* '' */ -i.icon.add::before { content: '\2795'; } /* '➕' */ - -i.icon.chart::before { content: '📈'; } /* '\1f4c8' */ -i.icon.chart.bar::before { content: '📊'; } /* '\1f4ca' */ -i.icon.chart.pie::before { content: '\e7a2'; } /* '' */ - -i.icon.resize.full::before { content: '\e744'; } /* '' */ -i.icon.resize.horizontal::before { content: '\2b0d'; } /* '⬍' */ -i.icon.resize.small::before { content: '\e746'; } /* '' */ -i.icon.resize.vertical::before { content: '\2b0c'; } /* '⬌' */ - -i.icon.down::before { content: '\2193'; } /* '↓' */ -i.icon.down.triangle::before { content: '\25be'; } /* '▾' */ -i.icon.down.arrow::before { content: '\e75c'; } /* '' */ - -i.icon.left::before { content: '\2190'; } /* '←' */ -i.icon.left.triangle::before { content: '\25c2'; } /* '◂' */ -i.icon.left.arrow::before { content: '\e75d'; } /* '' */ - -i.icon.right::before { content: '\2192'; } /* '→' */ -i.icon.right.triangle::before { content: '\25b8'; } /* '▸' */ -i.icon.right.arrow::before { content: '\e75e'; } /* '' */ - -i.icon.up::before { content: '\2191'; } /* '↑' */ -i.icon.up.triangle::before { content: '\25b4'; } /* '▴' */ -i.icon.up.arrow::before { content: '\e75f'; } /* '' */ - -i.icon.folder::before { content: '\e810'; } /* '' */ -i.icon.open.folder::before { content: '📂'; } /* '\1f4c2' */ - -i.icon.globe::before { content: '𝌍'; } /* '\1d30d' */ -i.icon.desk.globe::before { content: '🌐'; } /* '\1f310' */ - -i.icon.star::before { content: '\e801'; } /* '' */ -i.icon.star.empty::before { content: '\e800'; } /* '' */ -i.icon.star.half::before { content: '\e701'; } /* '' */ - -i.icon.lock::before { content: '🔒'; } /* '\1f512' */ -i.icon.unlock::before { content: '🔓'; } /* '\1f513' */ - -i.icon.layout.grid::before { content: '\e80c'; } /* '' */ -i.icon.layout.block::before { content: '\e708'; } /* '' */ -i.icon.layout.list::before { content: '\e80b'; } /* '' */ - -i.icon.heart.empty::before { content: '\2661'; } /* '♡' */ -i.icon.heart::before { content: '\2665'; } /* '♥' */ - -i.icon.asterisk::before { content: '\2731'; } /* '✱' */ -i.icon.attachment::before { content: '📎'; } /* '\1f4ce' */ -i.icon.attention::before { content: '\26a0'; } /* '⚠' */ -i.icon.trophy::before { content: '🏉'; } /* '\1f3c9' */ -i.icon.barcode::before { content: '\e792'; } /* '' */ -i.icon.cart::before { content: '\e813'; } /* '' */ -i.icon.block::before { content: '🚫'; } /* '\1f6ab' */ -i.icon.book::before { content: '📖'; } -i.icon.bookmark::before { content: '🔖'; } /* '\1f516' */ -i.icon.calendar::before { content: '📅'; } /* '\1f4c5' */ -i.icon.cancel::before { content: '\2716'; } /* '✖' */ -i.icon.close::before { content: '\e80d'; } /* '' */ -i.icon.color::before { content: '\e794'; } /* '' */ -i.icon.chat::before { content: '\e720'; } /* '' */ -i.icon.check::before { content: '\2611'; } /* '☑' */ -i.icon.time::before { content: '🕔'; } /* '\1f554' */ -i.icon.cloud::before { content: '\2601'; } /* '☁' */ -i.icon.code::before { content: '\e714'; } /* '' */ -i.icon.email::before { content: '\40'; } /* '@' */ -i.icon.settings::before { content: '\26ef'; } /* '⛯' */ -i.icon.setting::before { content: '\2699'; } /* '⚙' */ -i.icon.comment::before { content: '\e802'; } /* '' */ -i.icon.clockwise.counter::before { content: '\27f2'; } /* '⟲' */ -i.icon.clockwise::before { content: '\27f3'; } /* '⟳' */ -i.icon.cube::before { content: '\e807'; } /* '' */ -i.icon.direction::before { content: '\27a2'; } /* '➢' */ -i.icon.doc::before { content: '📄'; } /* '\1f4c4' */ -i.icon.docs::before { content: '\e736'; } /* '' */ -i.icon.dollar::before { content: '💵'; } /* '\1f4b5' */ -i.icon.paint::before { content: '\e7b5'; } /* '' */ -i.icon.edit::before { content: '\270d'; } /* '✍' */ -i.icon.eject::before { content: '\2ecf'; } /* '⻏' */ -i.icon.export::before { content: '\e715'; } /* '' */ -i.icon.hide::before { content: '\e70b'; } /* '' */ -i.icon.unhide::before { content: '\e80f'; } /* '' */ -i.icon.facebook::before { content: '\f301'; } /* '' */ -i.icon.fast-forward::before { content: '\e804'; } /* '' */ -i.icon.fire::before { content: '🔥'; } /* '\1f525' */ -i.icon.flag::before { content: '\2691'; } /* '⚑' */ -i.icon.lightning::before { content: '\26a1'; } /* '⚡' */ -i.icon.lab::before { content: '\68'; } /* 'h' */ -i.icon.flight::before { content: '\2708'; } /* '✈' */ -i.icon.forward::before { content: '\27a6'; } /* '➦' */ -i.icon.gift::before { content: '🎁'; } /* '\1f381' */ -i.icon.github::before { content: '\f308'; } /* '' */ -i.icon.globe::before { content: '\e817'; } /* '' */ -i.icon.headphones::before { content: '🎧'; } /* '\1f3a7' */ -i.icon.question::before { content: '\2753'; } /* '❓' */ -i.icon.home::before { content: '\2302'; } /* '⌂' */ -i.icon.i::before { content: '\2139'; } /* 'ℹ' */ -i.icon.idea::before { content: '💡'; } /* '\1f4a1' */ -i.icon.open::before { content: '🔗'; } /* '\1f517' */ -i.icon.content::before { content: '\e782'; } /* '' */ -i.icon.location::before { content: '\e724'; } /* '' */ -i.icon.mail::before { content: '\2709'; } /* '✉' */ -i.icon.mic::before { content: '🎤'; } /* '\1f3a4' */ -i.icon.minus::before { content: '\2d'; } /* '-' */ -i.icon.money::before { content: '💰'; } /* '\1f4b0' */ -i.icon.off::before { content: '\e78e'; } /* '' */ -i.icon.pause::before { content: '\e808'; } /* '' */ -i.icon.photos::before { content: '\e812'; } /* '' */ -i.icon.photo::before { content: '🌄'; } /* '\1f304' */ -i.icon.pin::before { content: '📌'; } /* '\1f4cc' */ -i.icon.play::before { content: '\e809'; } /* '' */ -i.icon.plus::before { content: '\2b'; } /* '+' */ -i.icon.print::before { content: '\e716'; } /* '' */ -i.icon.rss::before { content: '\e73a'; } /* '' */ -i.icon.search::before { content: '🔍'; } /* '\1f50d' */ -i.icon.shuffle::before { content: '\e803'; } /* '' */ -i.icon.tag::before { content: '\e80a'; } /* '' */ -i.icon.tags::before { content: '\e70d'; } /* '' */ -i.icon.terminal::before { content: '\e7ac'; } /* '' */ -i.icon.thumbs.down::before { content: '👎'; } /* '\1f44e' */ -i.icon.thumbs.up::before { content: '👍'; } /* '\1f44d' */ -i.icon.to-end::before { content: '\e806'; } /* '' */ -i.icon.to-start::before { content: '\e805'; } /* '' */ -i.icon.top.list::before { content: '🏆'; } /* '\1f3c6' */ -i.icon.trash::before { content: '\e729'; } /* '' */ -i.icon.twitter::before { content: '\f303'; } /* '' */ -i.icon.upload::before { content: '\e711'; } /* '' */ -i.icon.user.add::before { content: '\e700'; } /* '' */ -i.icon.user::before { content: '👤'; } /* '\1f464' */ -i.icon.community::before { content: '\e814'; } /* '' */ -i.icon.users::before { content: '👥'; } /* '\1f465' */ -i.icon.id::before { content: '\e722'; } /* '' */ -i.icon.url::before { content: '🔗'; } /* '\1f517' */ -i.icon.zoom.in::before { content: '\e750'; } /* '' */ -i.icon.zoom.out::before { content: '\e751'; } /* '' */ +i.icon.circle.attention::before { content: "\2757"; } /* '❗' */ +i.icon.circle.help::before { content: "\e704"; } /* '' */ +i.icon.circle.info::before { content: "\e705"; } /* '' */ +i.icon.add::before { content: "\2795"; } /* '➕' */ + +i.icon.chart::before { content: "📈"; } /* '\1f4c8' */ +i.icon.chart.bar::before { content: "📊"; } /* '\1f4ca' */ +i.icon.chart.pie::before { content: "\e7a2"; } /* '' */ + +i.icon.resize.full::before { content: "\e744"; } /* '' */ +i.icon.resize.horizontal::before { content: "\2b0d"; } /* '⬍' */ +i.icon.resize.small::before { content: "\e746"; } /* '' */ +i.icon.resize.vertical::before { content: "\2b0c"; } /* '⬌' */ + +i.icon.down::before { content: "\2193"; } /* '↓' */ +i.icon.down.triangle::before { content: "\25be"; } /* '▾' */ +i.icon.down.arrow::before { content: "\e75c"; } /* '' */ + +i.icon.left::before { content: "\2190"; } /* '←' */ +i.icon.left.triangle::before { content: "\25c2"; } /* '◂' */ +i.icon.left.arrow::before { content: "\e75d"; } /* '' */ + +i.icon.right::before { content: "\2192"; } /* '→' */ +i.icon.right.triangle::before { content: "\25b8"; } /* '▸' */ +i.icon.right.arrow::before { content: "\e75e"; } /* '' */ + +i.icon.up::before { content: "\2191"; } /* '↑' */ +i.icon.up.triangle::before { content: "\25b4"; } /* '▴' */ +i.icon.up.arrow::before { content: "\e75f"; } /* '' */ + +i.icon.folder::before { content: "\e810"; } /* '' */ +i.icon.open.folder::before { content: "📂"; } /* '\1f4c2' */ + +i.icon.globe::before { content: "𝌍"; } /* '\1d30d' */ +i.icon.desk.globe::before { content: "🌐"; } /* '\1f310' */ + +i.icon.star::before { content: "\e801"; } /* '' */ +i.icon.star.empty::before { content: "\e800"; } /* '' */ +i.icon.star.half::before { content: "\e701"; } /* '' */ + +i.icon.lock::before { content: "🔒"; } /* '\1f512' */ +i.icon.unlock::before { content: "🔓"; } /* '\1f513' */ + +i.icon.layout.grid::before { content: "\e80c"; } /* '' */ +i.icon.layout.block::before { content: "\e708"; } /* '' */ +i.icon.layout.list::before { content: "\e80b"; } /* '' */ + +i.icon.heart.empty::before { content: "\2661"; } /* '♡' */ +i.icon.heart::before { content: "\2665"; } /* '♥' */ + +i.icon.asterisk::before { content: "\2731"; } /* '✱' */ +i.icon.attachment::before { content: "📎"; } /* '\1f4ce' */ +i.icon.attention::before { content: "\26a0"; } /* '⚠' */ +i.icon.trophy::before { content: "🏉"; } /* '\1f3c9' */ +i.icon.barcode::before { content: "\e792"; } /* '' */ +i.icon.cart::before { content: "\e813"; } /* '' */ +i.icon.block::before { content: "🚫"; } /* '\1f6ab' */ +i.icon.book::before { content: "📖"; } +i.icon.bookmark::before { content: "🔖"; } /* '\1f516' */ +i.icon.calendar::before { content: "📅"; } /* '\1f4c5' */ +i.icon.cancel::before { content: "\2716"; } /* '✖' */ +i.icon.close::before { content: "\e80d"; } /* '' */ +i.icon.color::before { content: "\e794"; } /* '' */ +i.icon.chat::before { content: "\e720"; } /* '' */ +i.icon.check::before { content: "\2611"; } /* '☑' */ +i.icon.time::before { content: "🕔"; } /* '\1f554' */ +i.icon.cloud::before { content: "\2601"; } /* '☁' */ +i.icon.code::before { content: "\e714"; } /* '' */ +i.icon.email::before { content: "\40"; } /* '@' */ +i.icon.settings::before { content: "\26ef"; } /* '⛯' */ +i.icon.setting::before { content: "\2699"; } /* '⚙' */ +i.icon.comment::before { content: "\e802"; } /* '' */ +i.icon.clockwise.counter::before { content: "\27f2"; } /* '⟲' */ +i.icon.clockwise::before { content: "\27f3"; } /* '⟳' */ +i.icon.cube::before { content: "\e807"; } /* '' */ +i.icon.direction::before { content: "\27a2"; } /* '➢' */ +i.icon.doc::before { content: "📄"; } /* '\1f4c4' */ +i.icon.docs::before { content: "\e736"; } /* '' */ +i.icon.dollar::before { content: "💵"; } /* '\1f4b5' */ +i.icon.paint::before { content: "\e7b5"; } /* '' */ +i.icon.edit::before { content: "\270d"; } /* '✍' */ +i.icon.eject::before { content: "\2ecf"; } /* '⻏' */ +i.icon.export::before { content: "\e715"; } /* '' */ +i.icon.hide::before { content: "\e70b"; } /* '' */ +i.icon.unhide::before { content: "\e80f"; } /* '' */ +i.icon.facebook::before { content: "\f301"; } /* '' */ +i.icon.fast-forward::before { content: "\e804"; } /* '' */ +i.icon.fire::before { content: "🔥"; } /* '\1f525' */ +i.icon.flag::before { content: "\2691"; } /* '⚑' */ +i.icon.lightning::before { content: "\26a1"; } /* '⚡' */ +i.icon.lab::before { content: "\68"; } /* 'h' */ +i.icon.flight::before { content: "\2708"; } /* '✈' */ +i.icon.forward::before { content: "\27a6"; } /* '➦' */ +i.icon.gift::before { content: "🎁"; } /* '\1f381' */ +i.icon.github::before { content: "\f308"; } /* '' */ +i.icon.globe::before { content: "\e817"; } /* '' */ +i.icon.headphones::before { content: "🎧"; } /* '\1f3a7' */ +i.icon.question::before { content: "\2753"; } /* '❓' */ +i.icon.home::before { content: "\2302"; } /* '⌂' */ +i.icon.i::before { content: "\2139"; } /* 'ℹ' */ +i.icon.idea::before { content: "💡"; } /* '\1f4a1' */ +i.icon.open::before { content: "🔗"; } /* '\1f517' */ +i.icon.content::before { content: "\e782"; } /* '' */ +i.icon.location::before { content: "\e724"; } /* '' */ +i.icon.mail::before { content: "\2709"; } /* '✉' */ +i.icon.mic::before { content: "🎤"; } /* '\1f3a4' */ +i.icon.minus::before { content: "\2d"; } /* '-' */ +i.icon.money::before { content: "💰"; } /* '\1f4b0' */ +i.icon.off::before { content: "\e78e"; } /* '' */ +i.icon.pause::before { content: "\e808"; } /* '' */ +i.icon.photos::before { content: "\e812"; } /* '' */ +i.icon.photo::before { content: "🌄"; } /* '\1f304' */ +i.icon.pin::before { content: "📌"; } /* '\1f4cc' */ +i.icon.play::before { content: "\e809"; } /* '' */ +i.icon.plus::before { content: "\2b"; } /* '+' */ +i.icon.print::before { content: "\e716"; } /* '' */ +i.icon.rss::before { content: "\e73a"; } /* '' */ +i.icon.search::before { content: "🔍"; } /* '\1f50d' */ +i.icon.shuffle::before { content: "\e803"; } /* '' */ +i.icon.tag::before { content: "\e80a"; } /* '' */ +i.icon.tags::before { content: "\e70d"; } /* '' */ +i.icon.terminal::before { content: "\e7ac"; } /* '' */ +i.icon.thumbs.down::before { content: "👎"; } /* '\1f44e' */ +i.icon.thumbs.up::before { content: "👍"; } /* '\1f44d' */ +i.icon.to-end::before { content: "\e806"; } /* '' */ +i.icon.to-start::before { content: "\e805"; } /* '' */ +i.icon.top.list::before { content: "🏆"; } /* '\1f3c6' */ +i.icon.trash::before { content: "\e729"; } /* '' */ +i.icon.twitter::before { content: "\f303"; } /* '' */ +i.icon.upload::before { content: "\e711"; } /* '' */ +i.icon.user.add::before { content: "\e700"; } /* '' */ +i.icon.user::before { content: "👤"; } /* '\1f464' */ +i.icon.community::before { content: "\e814"; } /* '' */ +i.icon.users::before { content: "👥"; } /* '\1f465' */ +i.icon.id::before { content: "\e722"; } /* '' */ +i.icon.url::before { content: "🔗"; } /* '\1f517' */ +i.icon.zoom.in::before { content: "\e750"; } /* '' */ +i.icon.zoom.out::before { content: "\e751"; } /* '' */ /* -------------- Spacing Fix @@ -173,16 +173,16 @@ i.icon.right { --------------- */ /* aliases for convenience */ -i.icon.delete::before { content: '\e80d'; } /* '' */ -i.icon.dropdown::before { content: '\25be'; } /* '▾' */ +i.icon.delete::before { content: "\e80d"; } /* '' */ +i.icon.dropdown::before { content: "\25be"; } /* '▾' */ -i.icon.help::before { content: '\e704'; } /* '' */ -i.icon.info::before { content: '\e705'; } /* '' */ -i.icon.error::before { content: '\e80d'; } /* '' */ +i.icon.help::before { content: "\e704"; } /* '' */ +i.icon.info::before { content: "\e705"; } /* '' */ +i.icon.error::before { content: "\e80d"; } /* '' */ -i.icon.dislike::before { content: '\2661'; } /* '♡' */ -i.icon.like::before { content: '\2665'; } /* '♥' */ +i.icon.dislike::before { content: "\2661"; } /* '♡' */ +i.icon.like::before { content: "\2665"; } /* '♥' */ -i.icon.eye::before { content: '\e80f'; } /* '' */ -i.icon.eye.hidden::before { content: '\e70b'; } /* '' */ -i.icon.date::before { content: '📅'; } /* '\1f4c5' */ +i.icon.eye::before { content: "\e80f"; } /* '' */ +i.icon.eye.hidden::before { content: "\e70b"; } /* '' */ +i.icon.date::before { content: "📅"; } /* '\1f4c5' */ diff --git a/src/themes/basic/elements/icon.variables b/src/themes/basic/elements/icon.variables index 69d2868736..ad9afdf15f 100644 --- a/src/themes/basic/elements/icon.variables +++ b/src/themes/basic/elements/icon.variables @@ -7,7 +7,7 @@ @fonts: { @solid: { font-family: @fontName; - src: url("@{fontPath}/@{fontName}.woff") format('woff'); + src: url("@{fontPath}/@{fontName}.woff") format("woff"); font-style: normal; font-weight: @normal; font-variant: normal; diff --git a/src/themes/bookish/elements/header.overrides b/src/themes/bookish/elements/header.overrides index df29348015..5d74eaa6d5 100644 --- a/src/themes/bookish/elements/header.overrides +++ b/src/themes/bookish/elements/header.overrides @@ -2,7 +2,7 @@ Overrides *******************************/ -@import (css) url('https://fonts.googleapis.com/css2?family=Karma'); +@import (css) url("https://fonts.googleapis.com/css2?family=Karma"); h1.ui.header, .ui.huge.header { diff --git a/src/themes/chubby/elements/button.overrides b/src/themes/chubby/elements/button.overrides index e5a1f0fc79..52ef8c8c65 100644 --- a/src/themes/chubby/elements/button.overrides +++ b/src/themes/chubby/elements/button.overrides @@ -2,7 +2,7 @@ Overrides *******************************/ -@import (css) url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro'); +@import (css) url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro"); .ui.labeled.icon.buttons > .button > .icon, .ui.labeled.icon.button > .icon { diff --git a/src/themes/chubby/elements/header.overrides b/src/themes/chubby/elements/header.overrides index f52bf25dec..f6b77d58d9 100644 --- a/src/themes/chubby/elements/header.overrides +++ b/src/themes/chubby/elements/header.overrides @@ -2,4 +2,4 @@ Overrides *******************************/ -@import (css) url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro'); +@import (css) url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro"); diff --git a/src/themes/default/elements/divider.overrides b/src/themes/default/elements/divider.overrides index eb618fea3b..53599158da 100644 --- a/src/themes/default/elements/divider.overrides +++ b/src/themes/default/elements/divider.overrides @@ -4,7 +4,7 @@ .ui.horizontal.divider::before, .ui.horizontal.divider::after { - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC'); + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC"); } @media only screen and (max-width: (@tabletBreakpoint - 1px)) { @@ -12,6 +12,6 @@ .ui.grid .stackable.row .ui.vertical.divider::before, .ui.stackable.grid .ui.vertical.divider::after, .ui.grid .stackable.row .ui.vertical.divider::after { - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC'); + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC"); } } diff --git a/src/themes/default/elements/icon.variables b/src/themes/default/elements/icon.variables index e3b29b42f9..5b9a213564 100644 --- a/src/themes/default/elements/icon.variables +++ b/src/themes/default/elements/icon.variables @@ -45,8 +45,8 @@ Icons are order A-Z in their group, Solid, Outline, Thin (Pro only) and Brand @fonts: { @solid: { font-family: @fontName; - src: url("@{fontPath}/@{fontName}.woff2") format('woff2') - if(@supportIE, e(',') url("@{fontPath}/@{fontName}.woff") format('woff')); + src: url("@{fontPath}/@{fontName}.woff2") format("woff2") + if(@supportIE, e(",") url("@{fontPath}/@{fontName}.woff") format("woff")); font-style: normal; font-weight: @normal; font-display: block; @@ -56,8 +56,8 @@ Icons are order A-Z in their group, Solid, Outline, Thin (Pro only) and Brand }; @outline: { font-family: @outlineFontName; - src: url("@{fontPath}/@{outlineFontName}.woff2") format('woff2') - if(@supportIE, e(',') url("@{fontPath}/@{outlineFontName}.woff") format('woff')); + src: url("@{fontPath}/@{outlineFontName}.woff2") format("woff2") + if(@supportIE, e(",") url("@{fontPath}/@{outlineFontName}.woff") format("woff")); font-style: normal; font-weight: @normal; font-display: block; @@ -67,8 +67,8 @@ Icons are order A-Z in their group, Solid, Outline, Thin (Pro only) and Brand }; @brand: { font-family: @brandFontName; - src: url("@{fontPath}/@{brandFontName}.woff2") format('woff2') - if(@supportIE, e(',') url("@{fontPath}/@{brandFontName}.woff") format('woff')); + src: url("@{fontPath}/@{brandFontName}.woff2") format("woff2") + if(@supportIE, e(",") url("@{fontPath}/@{brandFontName}.woff") format("woff")); font-style: normal; font-weight: @normal; font-display: block; @@ -82,1464 +82,1464 @@ Icons are order A-Z in their group, Solid, Outline, Thin (Pro only) and Brand /* Deprecated (In/Out Naming Conflict) */ @icon-deprecated-map: { - linkedin_in: '\f0e1'; - zoom_in: '\f00e'; - zoom_out: '\f010'; - sign_in: '\f2f6'; - in_cart: '\f218'; - log_out: '\f2f5'; - sign_out: '\f2f5'; + linkedin_in: "\f0e1"; + zoom_in: "\f00e"; + zoom_out: "\f010"; + sign_in: "\f2f6"; + in_cart: "\f218"; + log_out: "\f2f5"; + sign_out: "\f2f5"; }; /* Icons */ @icon-map: { - ad: '\f641'; - address_book: '\f2b9'; - address_card: '\f2bb'; - adjust: '\f042'; - air_freshener: '\f5d0'; - align_center: '\f037'; - align_justify: '\f039'; - align_left: '\f036'; - align_right: '\f038'; - allergies: '\f461'; - ambulance: '\f0f9'; - american_sign_language_interpreting: '\f2a3'; - anchor: '\f13d'; - angle_double_down: '\f103'; - angle_double_left: '\f100'; - angle_double_right: '\f101'; - angle_double_up: '\f102'; - angle_left: '\f104'; - angle_right: '\f105'; - angle_up: '\f106'; - angle_down: '\f107'; - angry: '\f556'; - ankh: '\f644'; - archive: '\f187'; - archway: '\f557'; - arrow_alternate_circle_down: '\f358'; - arrow_alternate_circle_left: '\f359'; - arrow_alternate_circle_right: '\f35a'; - arrow_alternate_circle_up: '\f35b'; - arrow_circle_down: '\f0ab'; - arrow_circle_left: '\f0a8'; - arrow_circle_right: '\f0a9'; - arrow_circle_up: '\f0aa'; - arrow_down: '\f063'; - arrow_left: '\f060'; - arrow_right: '\f061'; - arrow_up: '\f062'; - arrows_alternate: '\f0b2'; - arrows_alternate_horizontal: '\f337'; - arrows_alternate_vertical: '\f338'; - assistive_listening_systems: '\f2a2'; - asterisk: '\f069'; - at: '\f1fa'; - atlas: '\f558'; - atom: '\f5d2'; - audio_description: '\f29e'; - award: '\f559'; - baby: '\f77c'; - baby_carriage: '\f77d'; - backspace: '\f55a'; - backward: '\f04a'; - bacon: '\f7e5'; - bacteria: '\e059'; - bacterium: '\e05a'; - bahai: '\f666'; - balance_scale: '\f24e'; - balance_scale_left: '\f515'; - balance_scale_right: '\f516'; - ban: '\f05e'; - band_aid: '\f462'; - barcode: '\f02a'; - bars: '\f0c9'; - baseball_ball: '\f433'; - basketball_ball: '\f434'; - bath: '\f2cd'; - battery_empty: '\f244'; - battery_full: '\f240'; - battery_half: '\f242'; - battery_quarter: '\f243'; - battery_three_quarters: '\f241'; - bed: '\f236'; - beer: '\f0fc'; - bell: '\f0f3'; - bell_slash: '\f1f6'; - bezier_curve: '\f55b'; - bible: '\f647'; - bicycle: '\f206'; - biking: '\f84a'; - binoculars: '\f1e5'; - biohazard: '\f780'; - birthday_cake: '\f1fd'; - blender: '\f517'; - blender_phone: '\f6b6'; - blind: '\f29d'; - blog: '\f781'; - bold: '\f032'; - bolt: '\f0e7'; - bomb: '\f1e2'; - bone: '\f5d7'; - bong: '\f55c'; - book: '\f02d'; - book_dead: '\f6b7'; - book_medical: '\f7e6'; - book_open: '\f518'; - book_reader: '\f5da'; - bookmark: '\f02e'; - border_all: '\f84c'; - border_none: '\f850'; - border_style: '\f853'; - bowling_ball: '\f436'; - box: '\f466'; - box_open: '\f49e'; - box_tissue: '\e05b'; - boxes: '\f468'; - braille: '\f2a1'; - brain: '\f5dc'; - bread_slice: '\f7ec'; - briefcase: '\f0b1'; - briefcase_medical: '\f469'; - broadcast_tower: '\f519'; - broom: '\f51a'; - brush: '\f55d'; - bug: '\f188'; - building: '\f1ad'; - bullhorn: '\f0a1'; - bullseye: '\f140'; - burn: '\f46a'; - bus: '\f207'; - bus_alternate: '\f55e'; - business_time: '\f64a'; - calculator: '\f1ec'; - calendar: '\f133'; - calendar_alternate: '\f073'; - calendar_check: '\f274'; - calendar_day: '\f783'; - calendar_minus: '\f272'; - calendar_plus: '\f271'; - calendar_times: '\f273'; - calendar_week: '\f784'; - camera: '\f030'; - camera_retro: '\f083'; - campground: '\f6bb'; - candy_cane: '\f786'; - cannabis: '\f55f'; - capsules: '\f46b'; - car: '\f1b9'; - car_alternate: '\f5de'; - car_battery: '\f5df'; - car_crash: '\f5e1'; - car_side: '\f5e4'; - caravan: '\f8ff'; - caret_down: '\f0d7'; - caret_left: '\f0d9'; - caret_right: '\f0da'; - caret_square_down: '\f150'; - caret_square_left: '\f191'; - caret_square_right: '\f152'; - caret_square_up: '\f151'; - caret_up: '\f0d8'; - carrot: '\f787'; - cart_arrow_down: '\f218'; - cart_plus: '\f217'; - cash_register: '\f788'; - cat: '\f6be'; - certificate: '\f0a3'; - chair: '\f6c0'; - chalkboard: '\f51b'; - chalkboard_teacher: '\f51c'; - charging_station: '\f5e7'; - chart_area: '\f1fe'; - chart_bar: '\f080'; - chart_pie: '\f200'; - chartline: '\f201'; - check: '\f00c'; - check_circle: '\f058'; - check_double: '\f560'; - check_square: '\f14a'; - cheese: '\f7ef'; - chess: '\f439'; - chess_bishop: '\f43a'; - chess_board: '\f43c'; - chess_king: '\f43f'; - chess_knight: '\f441'; - chess_pawn: '\f443'; - chess_queen: '\f445'; - chess_rook: '\f447'; - chevron_circle_down: '\f13a'; - chevron_circle_left: '\f137'; - chevron_circle_right: '\f138'; - chevron_circle_up: '\f139'; - chevron_down: '\f078'; - chevron_left: '\f053'; - chevron_right: '\f054'; - chevron_up: '\f077'; - child: '\f1ae'; - church: '\f51d'; - circle: '\f111'; - circle_notch: '\f1ce'; - city: '\f64f'; - clinic_medical: '\f7f2'; - clipboard: '\f328'; - clipboard_check: '\f46c'; - clipboard_list: '\f46d'; - clock: '\f017'; - clone: '\f24d'; - closed_captioning: '\f20a'; - cloud: '\f0c2'; - cloud_download_alternate: '\f381'; - cloud_meatball: '\f73b'; - cloud_moon: '\f6c3'; - cloud_moon_rain: '\f73c'; - cloud_rain: '\f73d'; - cloud_showers_heavy: '\f740'; - cloud_sun: '\f6c4'; - cloud_sun_rain: '\f743'; - cloud_upload_alternate: '\f382'; - cocktail: '\f561'; - code: '\f121'; - code_branch: '\f126'; - coffee: '\f0f4'; - cog: '\f013'; - cogs: '\f085'; - coins: '\f51e'; - columns: '\f0db'; - comment: '\f075'; - comment_alternate: '\f27a'; - comment_dollar: '\f651'; - comment_dots: '\f4ad'; - comment_medical: '\f7f5'; - comment_slash: '\f4b3'; - comments: '\f086'; - comments_dollar: '\f653'; - compact_disc: '\f51f'; - compass: '\f14e'; - compress: '\f066'; - compress_alternate: '\f422'; - compress_arrows_alternate: '\f78c'; - concierge_bell: '\f562'; - cookie: '\f563'; - cookie_bite: '\f564'; - copy: '\f0c5'; - copyright: '\f1f9'; - couch: '\f4b8'; - credit_card: '\f09d'; - crop: '\f125'; - crop_alternate: '\f565'; - cross: '\f654'; - crosshairs: '\f05b'; - crow: '\f520'; - crown: '\f521'; - crutch: '\f7f7'; - cube: '\f1b2'; - cubes: '\f1b3'; - cut: '\f0c4'; - database: '\f1c0'; - deaf: '\f2a4'; - democrat: '\f747'; - desktop: '\f108'; - dharmachakra: '\f655'; - diagnoses: '\f470'; - dice: '\f522'; - dice_d20: '\f6cf'; - dice_d6: '\f6d1'; - dice_five: '\f523'; - dice_four: '\f524'; - dice_one: '\f525'; - dice_six: '\f526'; - dice_three: '\f527'; - dice_two: '\f528'; - digital_tachograph: '\f566'; - directions: '\f5eb'; - disease: '\f7fa'; - divide: '\f529'; - dizzy: '\f567'; - dna: '\f471'; - dog: '\f6d3'; - dollar_sign: '\f155'; - dolly: '\f472'; - dolly_flatbed: '\f474'; - donate: '\f4b9'; - door_closed: '\f52a'; - door_open: '\f52b'; - dot_circle: '\f192'; - dove: '\f4ba'; - download: '\f019'; - drafting_compass: '\f568'; - dragon: '\f6d5'; - draw_polygon: '\f5ee'; - drum: '\f569'; - drum_steelpan: '\f56a'; - drumstick_bite: '\f6d7'; - dumbbell: '\f44b'; - dumpster: '\f793'; - dumpster_fire: '\f794'; - dungeon: '\f6d9'; - edit: '\f044'; - egg: '\f7fb'; - eject: '\f052'; - ellipsis_horizontal: '\f141'; - ellipsis_vertical: '\f142'; - envelope: '\f0e0'; - envelope_open: '\f2b6'; - envelope_open_text: '\f658'; - envelope_square: '\f199'; - equals: '\f52c'; - eraser: '\f12d'; - ethernet: '\f796'; - euro_sign: '\f153'; - exchange_alternate: '\f362'; - exclamation: '\f12a'; - exclamation_circle: '\f06a'; - exclamation_triangle: '\f071'; - expand: '\f065'; - expand_alternate: '\f424'; - expand_arrows_alternate: '\f31e'; - external_alternate: '\f35d'; - external_link_square_alternate: '\f360'; - eye: '\f06e'; - eye_dropper: '\f1fb'; - eye_slash: '\f070'; - fan: '\f863'; - fast_backward: '\f049'; - fast_forward: '\f050'; - faucet: '\e005'; - fax: '\f1ac'; - feather: '\f52d'; - feather_alternate: '\f56b'; - female: '\f182'; - fighter_jet: '\f0fb'; - file: '\f15b'; - file_alternate: '\f15c'; - file_archive: '\f1c6'; - file_audio: '\f1c7'; - file_code: '\f1c9'; - file_contract: '\f56c'; - file_csv: '\f6dd'; - file_download: '\f56d'; - file_excel: '\f1c3'; - file_export: '\f56e'; - file_image: '\f1c5'; - file_import: '\f56f'; - file_invoice: '\f570'; - file_invoice_dollar: '\f571'; - file_medical: '\f477'; - file_medical_alternate: '\f478'; - file_pdf: '\f1c1'; - file_powerpoint: '\f1c4'; - file_prescription: '\f572'; - file_signature: '\f573'; - file_upload: '\f574'; - file_video: '\f1c8'; - file_word: '\f1c2'; - fill: '\f575'; - fill_drip: '\f576'; - film: '\f008'; - filter: '\f0b0'; - fingerprint: '\f577'; - fire: '\f06d'; - fire_alternate: '\f7e4'; - fire_extinguisher: '\f134'; - first_aid: '\f479'; - fish: '\f578'; - fist_raised: '\f6de'; - flag: '\f024'; - flag_checkered: '\f11e'; - flag_usa: '\f74d'; - flask: '\f0c3'; - flushed: '\f579'; - folder: '\f07b'; - folder_minus: '\f65d'; - folder_open: '\f07c'; - folder_plus: '\f65e'; - font: '\f031'; - football_ball: '\f44e'; - forward: '\f04e'; - frog: '\f52e'; - frown: '\f119'; - frown_open: '\f57a'; - fruit-apple: '\f5d1'; - funnel_dollar: '\f662'; - futbol: '\f1e3'; - gamepad: '\f11b'; - gas_pump: '\f52f'; - gavel: '\f0e3'; - gem: '\f3a5'; - genderless: '\f22d'; - ghost: '\f6e2'; - gift: '\f06b'; - gifts: '\f79c'; - glass_cheers: '\f79f'; - glass_martini: '\f000'; - glass_martini_alternate: '\f57b'; - glass_whiskey: '\f7a0'; - glasses: '\f530'; - globe: '\f0ac'; - globe_africa: '\f57c'; - globe_americas: '\f57d'; - globe_asia: '\f57e'; - globe_europe: '\f7a2'; - golf_ball: '\f450'; - gopuram: '\f664'; - graduation_cap: '\f19d'; - greater_than: '\f531'; - greater_than_equal: '\f532'; - grimace: '\f57f'; - grin: '\f580'; - grin_alternate: '\f581'; - grin_beam: '\f582'; - grin_beam_sweat: '\f583'; - grin_hearts: '\f584'; - grin_squint: '\f585'; - grin_squint_tears: '\f586'; - grin_stars: '\f587'; - grin_tears: '\f588'; - grin_tongue: '\f589'; - grin_tongue_squint: '\f58a'; - grin_tongue_wink: '\f58b'; - grin_wink: '\f58c'; - grip_horizontal: '\f58d'; - grip_lines: '\f7a4'; - grip_lines_vertical: '\f7a5'; - grip_vertical: '\f58e'; - guitar: '\f7a6'; - h_square: '\f0fd'; - hamburger: '\f805'; - hammer: '\f6e3'; - hamsa: '\f665'; - hand_holding: '\f4bd'; - hand_holding_heart: '\f4be'; - hand_holding_medical: '\e05c'; - hand_holding_usd: '\f4c0'; - hand_holding_water: '\f4c1'; - hand_lizard: '\f258'; - hand_middle_finger: '\f806'; - hand_paper: '\f256'; - hand_peace: '\f25b'; - hand_point_down: '\f0a7'; - hand_point_left: '\f0a5'; - hand_point_right: '\f0a4'; - hand_point_up: '\f0a6'; - hand_pointer: '\f25a'; - hand_rock: '\f255'; - hand_scissors: '\f257'; - hand_sparkles: '\e05d'; - hand_spock: '\f259'; - hands: '\f4c2'; - hands_helping: '\f4c4'; - hands_wash: '\e05e'; - handshake: '\f2b5'; - handshake_alternate_slash: '\e05f'; - handshake_slash: '\e060'; - hanukiah: '\f6e6'; - hard_hat: '\f807'; - hashtag: '\f292'; - hat_cowboy: '\f8c0'; - hat_cowboy_side: '\f8c1'; - hat_wizard: '\f6e8'; - hdd: '\f0a0'; - head_side_cough: '\e061'; - head_side_cough_slash: '\e062'; - head_side_mask: '\e063'; - head_side_virus: '\e064'; - heading: '\f1dc'; - headphones: '\f025'; - headphones_alternate: '\f58f'; - headset: '\f590'; - heart: '\f004'; - heart_broken: '\f7a9'; - heartbeat: '\f21e'; - helicopter: '\f533'; - highlighter: '\f591'; - hiking: '\f6ec'; - hippo: '\f6ed'; - history: '\f1da'; - hockey_puck: '\f453'; - holly_berry: '\f7aa'; - home: '\f015'; - horse: '\f6f0'; - horse_head: '\f7ab'; - hospital: '\f0f8'; - hospital_alternate: '\f47d'; - hospital_symbol: '\f47e'; - hospital_user: '\f80d'; - hot_tub: '\f593'; - hotdog: '\f80f'; - hotel: '\f594'; - hourglass: '\f254'; - hourglass_end: '\f253'; - hourglass_half: '\f252'; - hourglass_start: '\f251'; - house_damage: '\f6f1'; - house_user: '\e065'; - hryvnia: '\f6f2'; - i_cursor: '\f246'; - ice_cream: '\f810'; - icicles: '\f7ad'; - icons: '\f86d'; - id_badge: '\f2c1'; - id_card: '\f2c2'; - id_card_alternate: '\f47f'; - igloo: '\f7ae'; - image: '\f03e'; - images: '\f302'; - inbox: '\f01c'; - indent: '\f03c'; - industry: '\f275'; - infinity: '\f534'; - info: '\f129'; - info_circle: '\f05a'; - italic: '\f033'; - jedi: '\f669'; - joint: '\f595'; - journal_whills: '\f66a'; - kaaba: '\f66b'; - key: '\f084'; - keyboard: '\f11c'; - khanda: '\f66d'; - kiss: '\f596'; - kiss_beam: '\f597'; - kiss_wink_heart: '\f598'; - kiwi_bird: '\f535'; - landmark: '\f66f'; - language: '\f1ab'; - laptop: '\f109'; - laptop_code: '\f5fc'; - laptop_house: '\e066'; - laptop_medical: '\f812'; - laugh: '\f599'; - laugh_beam: '\f59a'; - laugh_squint: '\f59b'; - laugh_wink: '\f59c'; - layer_group: '\f5fd'; - leaf: '\f06c'; - lemon: '\f094'; - less_than: '\f536'; - less_than_equal: '\f537'; - level_down_alternate: '\f3be'; - level_up_alternate: '\f3bf'; - life_ring: '\f1cd'; - lightbulb: '\f0eb'; - linkify: '\f0c1'; - lira_sign: '\f195'; - list: '\f03a'; - list_alternate: '\f022'; - list_ol: '\f0cb'; - list_ul: '\f0ca'; - location_arrow: '\f124'; - lock: '\f023'; - lock_open: '\f3c1'; - long_arrow_alternate_down: '\f309'; - long_arrow_alternate_left: '\f30a'; - long_arrow_alternate_right: '\f30b'; - long_arrow_alternate_up: '\f30c'; - low_vision: '\f2a8'; - luggage_cart: '\f59d'; - lungs: '\f604'; - lungs_virus: '\e067'; - magic: '\f0d0'; - magnet: '\f076'; - mail_bulk: '\f674'; - male: '\f183'; - map: '\f279'; - map_marked: '\f59f'; - map_marked_alternate: '\f5a0'; - map_marker: '\f041'; - map_marker_alternate: '\f3c5'; - map_pin: '\f276'; - map_signs: '\f277'; - marker: '\f5a1'; - mars: '\f222'; - mars_double: '\f227'; - mars_stroke: '\f229'; - mars_stroke_horizontal: '\f22b'; - mars_stroke_vertical: '\f22a'; - mask: '\f6fa'; - medal: '\f5a2'; - medkit: '\f0fa'; - meh: '\f11a'; - meh_blank: '\f5a4'; - meh_rolling_eyes: '\f5a5'; - memory: '\f538'; - menorah: '\f676'; - mercury: '\f223'; - meteor: '\f753'; - microchip: '\f2db'; - microphone: '\f130'; - microphone_alternate: '\f3c9'; - microphone_alternate_slash: '\f539'; - microphone_slash: '\f131'; - microscope: '\f610'; - minus: '\f068'; - minus_circle: '\f056'; - minus_square: '\f146'; - mitten: '\f7b5'; - mobile: '\f10b'; - mobile_alternate: '\f3cd'; - money_bill: '\f0d6'; - money_bill_alternate: '\f3d1'; - money_bill_wave: '\f53a'; - money_bill_wave_alternate: '\f53b'; - money_check: '\f53c'; - money_check_alternate: '\f53d'; - monument: '\f5a6'; - moon: '\f186'; - mortar_pestle: '\f5a7'; - mosque: '\f678'; - motorcycle: '\f21c'; - mountain: '\f6fc'; - mouse: '\f8cc'; - mouse_pointer: '\f245'; - mug_hot: '\f7b6'; - music: '\f001'; - network_wired: '\f6ff'; - neuter: '\f22c'; - newspaper: '\f1ea'; - not_equal: '\f53e'; - notes_medical: '\f481'; - object_group: '\f247'; - object_ungroup: '\f248'; - oil_can: '\f613'; - om: '\f679'; - otter: '\f700'; - outdent: '\f03b'; - pager: '\f815'; - paint_brush: '\f1fc'; - paint_roller: '\f5aa'; - palette: '\f53f'; - pallet: '\f482'; - paper_plane: '\f1d8'; - paperclip: '\f0c6'; - parachute_box: '\f4cd'; - paragraph: '\f1dd'; - parking: '\f540'; - passport: '\f5ab'; - pastafarianism: '\f67b'; - paste: '\f0ea'; - pause: '\f04c'; - pause_circle: '\f28b'; - paw: '\f1b0'; - peace: '\f67c'; - pen: '\f304'; - pen_alternate: '\f305'; - pen_fancy: '\f5ac'; - pen_nib: '\f5ad'; - pen_square: '\f14b'; - pencil_alternate: '\f303'; - pencil_ruler: '\f5ae'; - people_arrows: '\e068'; - people_carry: '\f4ce'; - pepper_hot: '\f816'; - percent: '\f295'; - percentage: '\f541'; - person_booth: '\f756'; - phone: '\f095'; - phone_alternate: '\f879'; - phone_slash: '\f3dd'; - phone_square: '\f098'; - phone_square_alternate: '\f87b'; - phone_volume: '\f2a0'; - photo_video: '\f87c'; - piggy_bank: '\f4d3'; - pills: '\f484'; - pizza_slice: '\f818'; - place_of_worship: '\f67f'; - plane: '\f072'; - plane_arrival: '\f5af'; - plane_departure: '\f5b0'; - plane_slash: '\e069'; - play: '\f04b'; - play_circle: '\f144'; - plug: '\f1e6'; - plus: '\f067'; - plus_circle: '\f055'; - plus_square: '\f0fe'; - podcast: '\f2ce'; - poll: '\f681'; - poll_horizontal: '\f682'; - poo: '\f2fe'; - poo_storm: '\f75a'; - poop: '\f619'; - portrait: '\f3e0'; - pound_sign: '\f154'; - power_off: '\f011'; - pray: '\f683'; - praying_hands: '\f684'; - prescription: '\f5b1'; - prescription_bottle: '\f485'; - prescription_bottle_alternate: '\f486'; - print: '\f02f'; - procedures: '\f487'; - project_diagram: '\f542'; - pump_medical: '\e06a'; - pump_soap: '\e06b'; - puzzle_piece: '\f12e'; - qrcode: '\f029'; - question: '\f128'; - question_circle: '\f059'; - quidditch: '\f458'; - quote_left: '\f10d'; - quote_right: '\f10e'; - quran: '\f687'; - radiation: '\f7b9'; - radiation_alternate: '\f7ba'; - rainbow: '\f75b'; - random: '\f074'; - receipt: '\f543'; - record_vinyl: '\f8d9'; - recycle: '\f1b8'; - redo: '\f01e'; - redo_alternate: '\f2f9'; - registered: '\f25d'; - remove_format: '\f87d'; - reply: '\f3e5'; - reply_all: '\f122'; - republican: '\f75e'; - restroom: '\f7bd'; - retweet: '\f079'; - ribbon: '\f4d6'; - ring: '\f70b'; - road: '\f018'; - robot: '\f544'; - rocket: '\f135'; - route: '\f4d7'; - rss: '\f09e'; - rss_square: '\f143'; - ruble_sign: '\f158'; - ruler: '\f545'; - ruler_combined: '\f546'; - ruler_horizontal: '\f547'; - ruler_vertical: '\f548'; - running: '\f70c'; - rupee_sign: '\f156'; - sad_cry: '\f5b3'; - sad_tear: '\f5b4'; - satellite: '\f7bf'; - satellite_dish: '\f7c0'; - save: '\f0c7'; - school: '\f549'; - screwdriver: '\f54a'; - scroll: '\f70e'; - sd_card: '\f7c2'; - search: '\f002'; - search_dollar: '\f688'; - search_location: '\f689'; - search_minus: '\f010'; - search_plus: '\f00e'; - seedling: '\f4d8'; - server: '\f233'; - shapes: '\f61f'; - share: '\f064'; - share_alternate: '\f1e0'; - share_alternate_square: '\f1e1'; - share_square: '\f14d'; - shekel_sign: '\f20b'; - shield_alternate: '\f3ed'; - shield_virus: '\e06c'; - ship: '\f21a'; - shipping_fast: '\f48b'; - shoe_prints: '\f54b'; - shopping_bag: '\f290'; - shopping_basket: '\f291'; - shopping_cart: '\f07a'; - shower: '\f2cc'; - shuttle_van: '\f5b6'; - sign: '\f4d9'; - sign_in_alternate: '\f2f6'; - sign_language: '\f2a7'; - sign_out_alternate: '\f2f5'; - signal: '\f012'; - signature: '\f5b7'; - sim_card: '\f7c4'; - sink: '\e06d'; - sitemap: '\f0e8'; - skating: '\f7c5'; - skiing: '\f7c9'; - skiing_nordic: '\f7ca'; - skull: '\f54c'; - skull_crossbones: '\f714'; - slash: '\f715'; - sleigh: '\f7cc'; - sliders_horizontal: '\f1de'; - smile: '\f118'; - smile_beam: '\f5b8'; - smile_wink: '\f4da'; - smog: '\f75f'; - smoking: '\f48d'; - smoking_ban: '\f54d'; - sms: '\f7cd'; - snowboarding: '\f7ce'; - snowflake: '\f2dc'; - snowman: '\f7d0'; - snowplow: '\f7d2'; - soap: '\e06e'; - socks: '\f696'; - solar_panel: '\f5ba'; - sort: '\f0dc'; - sort_alphabet_down: '\f15d'; - sort_alphabet_down_alternate: '\f881'; - sort_alphabet_up: '\f15e'; - sort_alphabet_up_alternate: '\f882'; - sort_amount_down: '\f160'; - sort_amount_down_alternate: '\f884'; - sort_amount_up: '\f161'; - sort_amount_up_alternate: '\f885'; - sort_down: '\f0dd'; - sort_numeric_down: '\f162'; - sort_numeric_down_alternate: '\f886'; - sort_numeric_up: '\f163'; - sort_numeric_up_alternate: '\f887'; - sort_up: '\f0de'; - spa: '\f5bb'; - space_shuttle: '\f197'; - spell_check: '\f891'; - spider: '\f717'; - spinner: '\f110'; - splotch: '\f5bc'; - spray_can: '\f5bd'; - square: '\f0c8'; - square_full: '\f45c'; - square_root_alternate: '\f698'; - stamp: '\f5bf'; - star: '\f005'; - star_and_crescent: '\f699'; - star_half: '\f089'; - star_half_alternate: '\f5c0'; - star_of_david: '\f69a'; - star_of_life: '\f621'; - step_backward: '\f048'; - step_forward: '\f051'; - stethoscope: '\f0f1'; - sticky_note: '\f249'; - stop: '\f04d'; - stop_circle: '\f28d'; - stopwatch: '\f2f2'; - stopwatch_twenty: '\e06f'; - store: '\f54e'; - store_alternate: '\f54f'; - store_alternate_slash: '\e070'; - store_slash: '\e071'; - stream: '\f550'; - street_view: '\f21d'; - strikethrough: '\f0cc'; - stroopwafel: '\f551'; - subscript: '\f12c'; - subway: '\f239'; - suitcase: '\f0f2'; - suitcase_rolling: '\f5c1'; - sun: '\f185'; - superscript: '\f12b'; - surprise: '\f5c2'; - swatchbook: '\f5c3'; - swimmer: '\f5c4'; - swimming_pool: '\f5c5'; - synagogue: '\f69b'; - sync: '\f021'; - sync_alternate: '\f2f1'; - syringe: '\f48e'; - table: '\f0ce'; - table_tennis: '\f45d'; - tablet: '\f10a'; - tablet_alternate: '\f3fa'; - tablets: '\f490'; - tachometer_alternate: '\f3fd'; - tag: '\f02b'; - tags: '\f02c'; - tape: '\f4db'; - tasks: '\f0ae'; - taxi: '\f1ba'; - teeth: '\f62e'; - teeth_open: '\f62f'; - temperature_high: '\f769'; - temperature_low: '\f76b'; - tenge: '\f7d7'; - terminal: '\f120'; - text_height: '\f034'; - text_width: '\f035'; - th: '\f00a'; - th_large: '\f009'; - th_list: '\f00b'; - theater_masks: '\f630'; - thermometer: '\f491'; - thermometer_empty: '\f2cb'; - thermometer_full: '\f2c7'; - thermometer_half: '\f2c9'; - thermometer_quarter: '\f2ca'; - thermometer_three_quarters: '\f2c8'; - thumbs_down: '\f165'; - thumbs_up: '\f164'; - thumbtack: '\f08d'; - ticket_alternate: '\f3ff'; - times: '\f00d'; - times_circle: '\f057'; - tint: '\f043'; - tint_slash: '\f5c7'; - tired: '\f5c8'; - toggle_off: '\f204'; - toggle_on: '\f205'; - toilet: '\f7d8'; - toilet_paper: '\f71e'; - toilet_paper_slash: '\e072'; - toolbox: '\f552'; - tools: '\f7d9'; - tooth: '\f5c9'; - torah: '\f6a0'; - torii_gate: '\f6a1'; - tractor: '\f722'; - trademark: '\f25c'; - traffic_light: '\f637'; - trailer: '\e041'; - train: '\f238'; - tram: '\f7da'; - transgender: '\f224'; - transgender_alternate: '\f225'; - trash: '\f1f8'; - trash_alternate: '\f2ed'; - trash_restore: '\f829'; - trash_restore_alternate: '\f82a'; - tree: '\f1bb'; - trophy: '\f091'; - truck: '\f0d1'; - truck_monster: '\f63b'; - truck_moving: '\f4df'; - truck_packing: '\f4de'; - truck_pickup: '\f63c'; - tshirt: '\f553'; - tty: '\f1e4'; - tv: '\f26c'; - umbrella: '\f0e9'; - umbrella_beach: '\f5ca'; - underline: '\f0cd'; - undo: '\f0e2'; - undo_alternate: '\f2ea'; - universal_access: '\f29a'; - university: '\f19c'; - unlink: '\f127'; - unlock: '\f09c'; - unlock_alternate: '\f13e'; - upload: '\f093'; - user: '\f007'; - user_alternate: '\f406'; - user_alternate_slash: '\f4fa'; - user_astronaut: '\f4fb'; - user_check: '\f4fc'; - user_circle: '\f2bd'; - user_clock: '\f4fd'; - user_cog: '\f4fe'; - user_edit: '\f4ff'; - user_friends: '\f500'; - user_graduate: '\f501'; - user_injured: '\f728'; - user_lock: '\f502'; - user_md: '\f0f0'; - user_minus: '\f503'; - user_ninja: '\f504'; - user_nurse: '\f82f'; - user_plus: '\f234'; - user_secret: '\f21b'; - user_shield: '\f505'; - user_slash: '\f506'; - user_tag: '\f507'; - user_tie: '\f508'; - user_times: '\f235'; - users: '\f0c0'; - users_cog: '\f509'; - users_slash: '\e073'; - utensil_spoon: '\f2e5'; - utensils: '\f2e7'; - vector_square: '\f5cb'; - venus: '\f221'; - venus_double: '\f226'; - venus_mars: '\f228'; - vest: '\e085'; - vest_patches: '\e086'; - vial: '\f492'; - vials: '\f493'; - video: '\f03d'; - video_slash: '\f4e2'; - vihara: '\f6a7'; - virus: '\e074'; - virus_slash: '\e075'; - viruses: '\e076'; - voicemail: '\f897'; - volleyball_ball: '\f45f'; - volume_down: '\f027'; - volume_mute: '\f6a9'; - volume_off: '\f026'; - volume_up: '\f028'; - vote_yea: '\f772'; - vr_cardboard: '\f729'; - walking: '\f554'; - wallet: '\f555'; - warehouse: '\f494'; - water: '\f773'; - wave_square: '\f83e'; - weight: '\f496'; - weight_hanging: '\f5cd'; - wheelchair: '\f193'; - wifi: '\f1eb'; - wind: '\f72e'; - window_close: '\f410'; - window_maximize: '\f2d0'; - window_minimize: '\f2d1'; - window_restore: '\f2d2'; - wine_bottle: '\f72f'; - wine_glass: '\f4e3'; - wine_glass_alternate: '\f5ce'; - won_sign: '\f159'; - wrench: '\f0ad'; - x_ray: '\f497'; - yen_sign: '\f157'; - yin_yang: '\f6ad'; + ad: "\f641"; + address_book: "\f2b9"; + address_card: "\f2bb"; + adjust: "\f042"; + air_freshener: "\f5d0"; + align_center: "\f037"; + align_justify: "\f039"; + align_left: "\f036"; + align_right: "\f038"; + allergies: "\f461"; + ambulance: "\f0f9"; + american_sign_language_interpreting: "\f2a3"; + anchor: "\f13d"; + angle_double_down: "\f103"; + angle_double_left: "\f100"; + angle_double_right: "\f101"; + angle_double_up: "\f102"; + angle_left: "\f104"; + angle_right: "\f105"; + angle_up: "\f106"; + angle_down: "\f107"; + angry: "\f556"; + ankh: "\f644"; + archive: "\f187"; + archway: "\f557"; + arrow_alternate_circle_down: "\f358"; + arrow_alternate_circle_left: "\f359"; + arrow_alternate_circle_right: "\f35a"; + arrow_alternate_circle_up: "\f35b"; + arrow_circle_down: "\f0ab"; + arrow_circle_left: "\f0a8"; + arrow_circle_right: "\f0a9"; + arrow_circle_up: "\f0aa"; + arrow_down: "\f063"; + arrow_left: "\f060"; + arrow_right: "\f061"; + arrow_up: "\f062"; + arrows_alternate: "\f0b2"; + arrows_alternate_horizontal: "\f337"; + arrows_alternate_vertical: "\f338"; + assistive_listening_systems: "\f2a2"; + asterisk: "\f069"; + at: "\f1fa"; + atlas: "\f558"; + atom: "\f5d2"; + audio_description: "\f29e"; + award: "\f559"; + baby: "\f77c"; + baby_carriage: "\f77d"; + backspace: "\f55a"; + backward: "\f04a"; + bacon: "\f7e5"; + bacteria: "\e059"; + bacterium: "\e05a"; + bahai: "\f666"; + balance_scale: "\f24e"; + balance_scale_left: "\f515"; + balance_scale_right: "\f516"; + ban: "\f05e"; + band_aid: "\f462"; + barcode: "\f02a"; + bars: "\f0c9"; + baseball_ball: "\f433"; + basketball_ball: "\f434"; + bath: "\f2cd"; + battery_empty: "\f244"; + battery_full: "\f240"; + battery_half: "\f242"; + battery_quarter: "\f243"; + battery_three_quarters: "\f241"; + bed: "\f236"; + beer: "\f0fc"; + bell: "\f0f3"; + bell_slash: "\f1f6"; + bezier_curve: "\f55b"; + bible: "\f647"; + bicycle: "\f206"; + biking: "\f84a"; + binoculars: "\f1e5"; + biohazard: "\f780"; + birthday_cake: "\f1fd"; + blender: "\f517"; + blender_phone: "\f6b6"; + blind: "\f29d"; + blog: "\f781"; + bold: "\f032"; + bolt: "\f0e7"; + bomb: "\f1e2"; + bone: "\f5d7"; + bong: "\f55c"; + book: "\f02d"; + book_dead: "\f6b7"; + book_medical: "\f7e6"; + book_open: "\f518"; + book_reader: "\f5da"; + bookmark: "\f02e"; + border_all: "\f84c"; + border_none: "\f850"; + border_style: "\f853"; + bowling_ball: "\f436"; + box: "\f466"; + box_open: "\f49e"; + box_tissue: "\e05b"; + boxes: "\f468"; + braille: "\f2a1"; + brain: "\f5dc"; + bread_slice: "\f7ec"; + briefcase: "\f0b1"; + briefcase_medical: "\f469"; + broadcast_tower: "\f519"; + broom: "\f51a"; + brush: "\f55d"; + bug: "\f188"; + building: "\f1ad"; + bullhorn: "\f0a1"; + bullseye: "\f140"; + burn: "\f46a"; + bus: "\f207"; + bus_alternate: "\f55e"; + business_time: "\f64a"; + calculator: "\f1ec"; + calendar: "\f133"; + calendar_alternate: "\f073"; + calendar_check: "\f274"; + calendar_day: "\f783"; + calendar_minus: "\f272"; + calendar_plus: "\f271"; + calendar_times: "\f273"; + calendar_week: "\f784"; + camera: "\f030"; + camera_retro: "\f083"; + campground: "\f6bb"; + candy_cane: "\f786"; + cannabis: "\f55f"; + capsules: "\f46b"; + car: "\f1b9"; + car_alternate: "\f5de"; + car_battery: "\f5df"; + car_crash: "\f5e1"; + car_side: "\f5e4"; + caravan: "\f8ff"; + caret_down: "\f0d7"; + caret_left: "\f0d9"; + caret_right: "\f0da"; + caret_square_down: "\f150"; + caret_square_left: "\f191"; + caret_square_right: "\f152"; + caret_square_up: "\f151"; + caret_up: "\f0d8"; + carrot: "\f787"; + cart_arrow_down: "\f218"; + cart_plus: "\f217"; + cash_register: "\f788"; + cat: "\f6be"; + certificate: "\f0a3"; + chair: "\f6c0"; + chalkboard: "\f51b"; + chalkboard_teacher: "\f51c"; + charging_station: "\f5e7"; + chart_area: "\f1fe"; + chart_bar: "\f080"; + chart_pie: "\f200"; + chartline: "\f201"; + check: "\f00c"; + check_circle: "\f058"; + check_double: "\f560"; + check_square: "\f14a"; + cheese: "\f7ef"; + chess: "\f439"; + chess_bishop: "\f43a"; + chess_board: "\f43c"; + chess_king: "\f43f"; + chess_knight: "\f441"; + chess_pawn: "\f443"; + chess_queen: "\f445"; + chess_rook: "\f447"; + chevron_circle_down: "\f13a"; + chevron_circle_left: "\f137"; + chevron_circle_right: "\f138"; + chevron_circle_up: "\f139"; + chevron_down: "\f078"; + chevron_left: "\f053"; + chevron_right: "\f054"; + chevron_up: "\f077"; + child: "\f1ae"; + church: "\f51d"; + circle: "\f111"; + circle_notch: "\f1ce"; + city: "\f64f"; + clinic_medical: "\f7f2"; + clipboard: "\f328"; + clipboard_check: "\f46c"; + clipboard_list: "\f46d"; + clock: "\f017"; + clone: "\f24d"; + closed_captioning: "\f20a"; + cloud: "\f0c2"; + cloud_download_alternate: "\f381"; + cloud_meatball: "\f73b"; + cloud_moon: "\f6c3"; + cloud_moon_rain: "\f73c"; + cloud_rain: "\f73d"; + cloud_showers_heavy: "\f740"; + cloud_sun: "\f6c4"; + cloud_sun_rain: "\f743"; + cloud_upload_alternate: "\f382"; + cocktail: "\f561"; + code: "\f121"; + code_branch: "\f126"; + coffee: "\f0f4"; + cog: "\f013"; + cogs: "\f085"; + coins: "\f51e"; + columns: "\f0db"; + comment: "\f075"; + comment_alternate: "\f27a"; + comment_dollar: "\f651"; + comment_dots: "\f4ad"; + comment_medical: "\f7f5"; + comment_slash: "\f4b3"; + comments: "\f086"; + comments_dollar: "\f653"; + compact_disc: "\f51f"; + compass: "\f14e"; + compress: "\f066"; + compress_alternate: "\f422"; + compress_arrows_alternate: "\f78c"; + concierge_bell: "\f562"; + cookie: "\f563"; + cookie_bite: "\f564"; + copy: "\f0c5"; + copyright: "\f1f9"; + couch: "\f4b8"; + credit_card: "\f09d"; + crop: "\f125"; + crop_alternate: "\f565"; + cross: "\f654"; + crosshairs: "\f05b"; + crow: "\f520"; + crown: "\f521"; + crutch: "\f7f7"; + cube: "\f1b2"; + cubes: "\f1b3"; + cut: "\f0c4"; + database: "\f1c0"; + deaf: "\f2a4"; + democrat: "\f747"; + desktop: "\f108"; + dharmachakra: "\f655"; + diagnoses: "\f470"; + dice: "\f522"; + dice_d20: "\f6cf"; + dice_d6: "\f6d1"; + dice_five: "\f523"; + dice_four: "\f524"; + dice_one: "\f525"; + dice_six: "\f526"; + dice_three: "\f527"; + dice_two: "\f528"; + digital_tachograph: "\f566"; + directions: "\f5eb"; + disease: "\f7fa"; + divide: "\f529"; + dizzy: "\f567"; + dna: "\f471"; + dog: "\f6d3"; + dollar_sign: "\f155"; + dolly: "\f472"; + dolly_flatbed: "\f474"; + donate: "\f4b9"; + door_closed: "\f52a"; + door_open: "\f52b"; + dot_circle: "\f192"; + dove: "\f4ba"; + download: "\f019"; + drafting_compass: "\f568"; + dragon: "\f6d5"; + draw_polygon: "\f5ee"; + drum: "\f569"; + drum_steelpan: "\f56a"; + drumstick_bite: "\f6d7"; + dumbbell: "\f44b"; + dumpster: "\f793"; + dumpster_fire: "\f794"; + dungeon: "\f6d9"; + edit: "\f044"; + egg: "\f7fb"; + eject: "\f052"; + ellipsis_horizontal: "\f141"; + ellipsis_vertical: "\f142"; + envelope: "\f0e0"; + envelope_open: "\f2b6"; + envelope_open_text: "\f658"; + envelope_square: "\f199"; + equals: "\f52c"; + eraser: "\f12d"; + ethernet: "\f796"; + euro_sign: "\f153"; + exchange_alternate: "\f362"; + exclamation: "\f12a"; + exclamation_circle: "\f06a"; + exclamation_triangle: "\f071"; + expand: "\f065"; + expand_alternate: "\f424"; + expand_arrows_alternate: "\f31e"; + external_alternate: "\f35d"; + external_link_square_alternate: "\f360"; + eye: "\f06e"; + eye_dropper: "\f1fb"; + eye_slash: "\f070"; + fan: "\f863"; + fast_backward: "\f049"; + fast_forward: "\f050"; + faucet: "\e005"; + fax: "\f1ac"; + feather: "\f52d"; + feather_alternate: "\f56b"; + female: "\f182"; + fighter_jet: "\f0fb"; + file: "\f15b"; + file_alternate: "\f15c"; + file_archive: "\f1c6"; + file_audio: "\f1c7"; + file_code: "\f1c9"; + file_contract: "\f56c"; + file_csv: "\f6dd"; + file_download: "\f56d"; + file_excel: "\f1c3"; + file_export: "\f56e"; + file_image: "\f1c5"; + file_import: "\f56f"; + file_invoice: "\f570"; + file_invoice_dollar: "\f571"; + file_medical: "\f477"; + file_medical_alternate: "\f478"; + file_pdf: "\f1c1"; + file_powerpoint: "\f1c4"; + file_prescription: "\f572"; + file_signature: "\f573"; + file_upload: "\f574"; + file_video: "\f1c8"; + file_word: "\f1c2"; + fill: "\f575"; + fill_drip: "\f576"; + film: "\f008"; + filter: "\f0b0"; + fingerprint: "\f577"; + fire: "\f06d"; + fire_alternate: "\f7e4"; + fire_extinguisher: "\f134"; + first_aid: "\f479"; + fish: "\f578"; + fist_raised: "\f6de"; + flag: "\f024"; + flag_checkered: "\f11e"; + flag_usa: "\f74d"; + flask: "\f0c3"; + flushed: "\f579"; + folder: "\f07b"; + folder_minus: "\f65d"; + folder_open: "\f07c"; + folder_plus: "\f65e"; + font: "\f031"; + football_ball: "\f44e"; + forward: "\f04e"; + frog: "\f52e"; + frown: "\f119"; + frown_open: "\f57a"; + fruit-apple: "\f5d1"; + funnel_dollar: "\f662"; + futbol: "\f1e3"; + gamepad: "\f11b"; + gas_pump: "\f52f"; + gavel: "\f0e3"; + gem: "\f3a5"; + genderless: "\f22d"; + ghost: "\f6e2"; + gift: "\f06b"; + gifts: "\f79c"; + glass_cheers: "\f79f"; + glass_martini: "\f000"; + glass_martini_alternate: "\f57b"; + glass_whiskey: "\f7a0"; + glasses: "\f530"; + globe: "\f0ac"; + globe_africa: "\f57c"; + globe_americas: "\f57d"; + globe_asia: "\f57e"; + globe_europe: "\f7a2"; + golf_ball: "\f450"; + gopuram: "\f664"; + graduation_cap: "\f19d"; + greater_than: "\f531"; + greater_than_equal: "\f532"; + grimace: "\f57f"; + grin: "\f580"; + grin_alternate: "\f581"; + grin_beam: "\f582"; + grin_beam_sweat: "\f583"; + grin_hearts: "\f584"; + grin_squint: "\f585"; + grin_squint_tears: "\f586"; + grin_stars: "\f587"; + grin_tears: "\f588"; + grin_tongue: "\f589"; + grin_tongue_squint: "\f58a"; + grin_tongue_wink: "\f58b"; + grin_wink: "\f58c"; + grip_horizontal: "\f58d"; + grip_lines: "\f7a4"; + grip_lines_vertical: "\f7a5"; + grip_vertical: "\f58e"; + guitar: "\f7a6"; + h_square: "\f0fd"; + hamburger: "\f805"; + hammer: "\f6e3"; + hamsa: "\f665"; + hand_holding: "\f4bd"; + hand_holding_heart: "\f4be"; + hand_holding_medical: "\e05c"; + hand_holding_usd: "\f4c0"; + hand_holding_water: "\f4c1"; + hand_lizard: "\f258"; + hand_middle_finger: "\f806"; + hand_paper: "\f256"; + hand_peace: "\f25b"; + hand_point_down: "\f0a7"; + hand_point_left: "\f0a5"; + hand_point_right: "\f0a4"; + hand_point_up: "\f0a6"; + hand_pointer: "\f25a"; + hand_rock: "\f255"; + hand_scissors: "\f257"; + hand_sparkles: "\e05d"; + hand_spock: "\f259"; + hands: "\f4c2"; + hands_helping: "\f4c4"; + hands_wash: "\e05e"; + handshake: "\f2b5"; + handshake_alternate_slash: "\e05f"; + handshake_slash: "\e060"; + hanukiah: "\f6e6"; + hard_hat: "\f807"; + hashtag: "\f292"; + hat_cowboy: "\f8c0"; + hat_cowboy_side: "\f8c1"; + hat_wizard: "\f6e8"; + hdd: "\f0a0"; + head_side_cough: "\e061"; + head_side_cough_slash: "\e062"; + head_side_mask: "\e063"; + head_side_virus: "\e064"; + heading: "\f1dc"; + headphones: "\f025"; + headphones_alternate: "\f58f"; + headset: "\f590"; + heart: "\f004"; + heart_broken: "\f7a9"; + heartbeat: "\f21e"; + helicopter: "\f533"; + highlighter: "\f591"; + hiking: "\f6ec"; + hippo: "\f6ed"; + history: "\f1da"; + hockey_puck: "\f453"; + holly_berry: "\f7aa"; + home: "\f015"; + horse: "\f6f0"; + horse_head: "\f7ab"; + hospital: "\f0f8"; + hospital_alternate: "\f47d"; + hospital_symbol: "\f47e"; + hospital_user: "\f80d"; + hot_tub: "\f593"; + hotdog: "\f80f"; + hotel: "\f594"; + hourglass: "\f254"; + hourglass_end: "\f253"; + hourglass_half: "\f252"; + hourglass_start: "\f251"; + house_damage: "\f6f1"; + house_user: "\e065"; + hryvnia: "\f6f2"; + i_cursor: "\f246"; + ice_cream: "\f810"; + icicles: "\f7ad"; + icons: "\f86d"; + id_badge: "\f2c1"; + id_card: "\f2c2"; + id_card_alternate: "\f47f"; + igloo: "\f7ae"; + image: "\f03e"; + images: "\f302"; + inbox: "\f01c"; + indent: "\f03c"; + industry: "\f275"; + infinity: "\f534"; + info: "\f129"; + info_circle: "\f05a"; + italic: "\f033"; + jedi: "\f669"; + joint: "\f595"; + journal_whills: "\f66a"; + kaaba: "\f66b"; + key: "\f084"; + keyboard: "\f11c"; + khanda: "\f66d"; + kiss: "\f596"; + kiss_beam: "\f597"; + kiss_wink_heart: "\f598"; + kiwi_bird: "\f535"; + landmark: "\f66f"; + language: "\f1ab"; + laptop: "\f109"; + laptop_code: "\f5fc"; + laptop_house: "\e066"; + laptop_medical: "\f812"; + laugh: "\f599"; + laugh_beam: "\f59a"; + laugh_squint: "\f59b"; + laugh_wink: "\f59c"; + layer_group: "\f5fd"; + leaf: "\f06c"; + lemon: "\f094"; + less_than: "\f536"; + less_than_equal: "\f537"; + level_down_alternate: "\f3be"; + level_up_alternate: "\f3bf"; + life_ring: "\f1cd"; + lightbulb: "\f0eb"; + linkify: "\f0c1"; + lira_sign: "\f195"; + list: "\f03a"; + list_alternate: "\f022"; + list_ol: "\f0cb"; + list_ul: "\f0ca"; + location_arrow: "\f124"; + lock: "\f023"; + lock_open: "\f3c1"; + long_arrow_alternate_down: "\f309"; + long_arrow_alternate_left: "\f30a"; + long_arrow_alternate_right: "\f30b"; + long_arrow_alternate_up: "\f30c"; + low_vision: "\f2a8"; + luggage_cart: "\f59d"; + lungs: "\f604"; + lungs_virus: "\e067"; + magic: "\f0d0"; + magnet: "\f076"; + mail_bulk: "\f674"; + male: "\f183"; + map: "\f279"; + map_marked: "\f59f"; + map_marked_alternate: "\f5a0"; + map_marker: "\f041"; + map_marker_alternate: "\f3c5"; + map_pin: "\f276"; + map_signs: "\f277"; + marker: "\f5a1"; + mars: "\f222"; + mars_double: "\f227"; + mars_stroke: "\f229"; + mars_stroke_horizontal: "\f22b"; + mars_stroke_vertical: "\f22a"; + mask: "\f6fa"; + medal: "\f5a2"; + medkit: "\f0fa"; + meh: "\f11a"; + meh_blank: "\f5a4"; + meh_rolling_eyes: "\f5a5"; + memory: "\f538"; + menorah: "\f676"; + mercury: "\f223"; + meteor: "\f753"; + microchip: "\f2db"; + microphone: "\f130"; + microphone_alternate: "\f3c9"; + microphone_alternate_slash: "\f539"; + microphone_slash: "\f131"; + microscope: "\f610"; + minus: "\f068"; + minus_circle: "\f056"; + minus_square: "\f146"; + mitten: "\f7b5"; + mobile: "\f10b"; + mobile_alternate: "\f3cd"; + money_bill: "\f0d6"; + money_bill_alternate: "\f3d1"; + money_bill_wave: "\f53a"; + money_bill_wave_alternate: "\f53b"; + money_check: "\f53c"; + money_check_alternate: "\f53d"; + monument: "\f5a6"; + moon: "\f186"; + mortar_pestle: "\f5a7"; + mosque: "\f678"; + motorcycle: "\f21c"; + mountain: "\f6fc"; + mouse: "\f8cc"; + mouse_pointer: "\f245"; + mug_hot: "\f7b6"; + music: "\f001"; + network_wired: "\f6ff"; + neuter: "\f22c"; + newspaper: "\f1ea"; + not_equal: "\f53e"; + notes_medical: "\f481"; + object_group: "\f247"; + object_ungroup: "\f248"; + oil_can: "\f613"; + om: "\f679"; + otter: "\f700"; + outdent: "\f03b"; + pager: "\f815"; + paint_brush: "\f1fc"; + paint_roller: "\f5aa"; + palette: "\f53f"; + pallet: "\f482"; + paper_plane: "\f1d8"; + paperclip: "\f0c6"; + parachute_box: "\f4cd"; + paragraph: "\f1dd"; + parking: "\f540"; + passport: "\f5ab"; + pastafarianism: "\f67b"; + paste: "\f0ea"; + pause: "\f04c"; + pause_circle: "\f28b"; + paw: "\f1b0"; + peace: "\f67c"; + pen: "\f304"; + pen_alternate: "\f305"; + pen_fancy: "\f5ac"; + pen_nib: "\f5ad"; + pen_square: "\f14b"; + pencil_alternate: "\f303"; + pencil_ruler: "\f5ae"; + people_arrows: "\e068"; + people_carry: "\f4ce"; + pepper_hot: "\f816"; + percent: "\f295"; + percentage: "\f541"; + person_booth: "\f756"; + phone: "\f095"; + phone_alternate: "\f879"; + phone_slash: "\f3dd"; + phone_square: "\f098"; + phone_square_alternate: "\f87b"; + phone_volume: "\f2a0"; + photo_video: "\f87c"; + piggy_bank: "\f4d3"; + pills: "\f484"; + pizza_slice: "\f818"; + place_of_worship: "\f67f"; + plane: "\f072"; + plane_arrival: "\f5af"; + plane_departure: "\f5b0"; + plane_slash: "\e069"; + play: "\f04b"; + play_circle: "\f144"; + plug: "\f1e6"; + plus: "\f067"; + plus_circle: "\f055"; + plus_square: "\f0fe"; + podcast: "\f2ce"; + poll: "\f681"; + poll_horizontal: "\f682"; + poo: "\f2fe"; + poo_storm: "\f75a"; + poop: "\f619"; + portrait: "\f3e0"; + pound_sign: "\f154"; + power_off: "\f011"; + pray: "\f683"; + praying_hands: "\f684"; + prescription: "\f5b1"; + prescription_bottle: "\f485"; + prescription_bottle_alternate: "\f486"; + print: "\f02f"; + procedures: "\f487"; + project_diagram: "\f542"; + pump_medical: "\e06a"; + pump_soap: "\e06b"; + puzzle_piece: "\f12e"; + qrcode: "\f029"; + question: "\f128"; + question_circle: "\f059"; + quidditch: "\f458"; + quote_left: "\f10d"; + quote_right: "\f10e"; + quran: "\f687"; + radiation: "\f7b9"; + radiation_alternate: "\f7ba"; + rainbow: "\f75b"; + random: "\f074"; + receipt: "\f543"; + record_vinyl: "\f8d9"; + recycle: "\f1b8"; + redo: "\f01e"; + redo_alternate: "\f2f9"; + registered: "\f25d"; + remove_format: "\f87d"; + reply: "\f3e5"; + reply_all: "\f122"; + republican: "\f75e"; + restroom: "\f7bd"; + retweet: "\f079"; + ribbon: "\f4d6"; + ring: "\f70b"; + road: "\f018"; + robot: "\f544"; + rocket: "\f135"; + route: "\f4d7"; + rss: "\f09e"; + rss_square: "\f143"; + ruble_sign: "\f158"; + ruler: "\f545"; + ruler_combined: "\f546"; + ruler_horizontal: "\f547"; + ruler_vertical: "\f548"; + running: "\f70c"; + rupee_sign: "\f156"; + sad_cry: "\f5b3"; + sad_tear: "\f5b4"; + satellite: "\f7bf"; + satellite_dish: "\f7c0"; + save: "\f0c7"; + school: "\f549"; + screwdriver: "\f54a"; + scroll: "\f70e"; + sd_card: "\f7c2"; + search: "\f002"; + search_dollar: "\f688"; + search_location: "\f689"; + search_minus: "\f010"; + search_plus: "\f00e"; + seedling: "\f4d8"; + server: "\f233"; + shapes: "\f61f"; + share: "\f064"; + share_alternate: "\f1e0"; + share_alternate_square: "\f1e1"; + share_square: "\f14d"; + shekel_sign: "\f20b"; + shield_alternate: "\f3ed"; + shield_virus: "\e06c"; + ship: "\f21a"; + shipping_fast: "\f48b"; + shoe_prints: "\f54b"; + shopping_bag: "\f290"; + shopping_basket: "\f291"; + shopping_cart: "\f07a"; + shower: "\f2cc"; + shuttle_van: "\f5b6"; + sign: "\f4d9"; + sign_in_alternate: "\f2f6"; + sign_language: "\f2a7"; + sign_out_alternate: "\f2f5"; + signal: "\f012"; + signature: "\f5b7"; + sim_card: "\f7c4"; + sink: "\e06d"; + sitemap: "\f0e8"; + skating: "\f7c5"; + skiing: "\f7c9"; + skiing_nordic: "\f7ca"; + skull: "\f54c"; + skull_crossbones: "\f714"; + slash: "\f715"; + sleigh: "\f7cc"; + sliders_horizontal: "\f1de"; + smile: "\f118"; + smile_beam: "\f5b8"; + smile_wink: "\f4da"; + smog: "\f75f"; + smoking: "\f48d"; + smoking_ban: "\f54d"; + sms: "\f7cd"; + snowboarding: "\f7ce"; + snowflake: "\f2dc"; + snowman: "\f7d0"; + snowplow: "\f7d2"; + soap: "\e06e"; + socks: "\f696"; + solar_panel: "\f5ba"; + sort: "\f0dc"; + sort_alphabet_down: "\f15d"; + sort_alphabet_down_alternate: "\f881"; + sort_alphabet_up: "\f15e"; + sort_alphabet_up_alternate: "\f882"; + sort_amount_down: "\f160"; + sort_amount_down_alternate: "\f884"; + sort_amount_up: "\f161"; + sort_amount_up_alternate: "\f885"; + sort_down: "\f0dd"; + sort_numeric_down: "\f162"; + sort_numeric_down_alternate: "\f886"; + sort_numeric_up: "\f163"; + sort_numeric_up_alternate: "\f887"; + sort_up: "\f0de"; + spa: "\f5bb"; + space_shuttle: "\f197"; + spell_check: "\f891"; + spider: "\f717"; + spinner: "\f110"; + splotch: "\f5bc"; + spray_can: "\f5bd"; + square: "\f0c8"; + square_full: "\f45c"; + square_root_alternate: "\f698"; + stamp: "\f5bf"; + star: "\f005"; + star_and_crescent: "\f699"; + star_half: "\f089"; + star_half_alternate: "\f5c0"; + star_of_david: "\f69a"; + star_of_life: "\f621"; + step_backward: "\f048"; + step_forward: "\f051"; + stethoscope: "\f0f1"; + sticky_note: "\f249"; + stop: "\f04d"; + stop_circle: "\f28d"; + stopwatch: "\f2f2"; + stopwatch_twenty: "\e06f"; + store: "\f54e"; + store_alternate: "\f54f"; + store_alternate_slash: "\e070"; + store_slash: "\e071"; + stream: "\f550"; + street_view: "\f21d"; + strikethrough: "\f0cc"; + stroopwafel: "\f551"; + subscript: "\f12c"; + subway: "\f239"; + suitcase: "\f0f2"; + suitcase_rolling: "\f5c1"; + sun: "\f185"; + superscript: "\f12b"; + surprise: "\f5c2"; + swatchbook: "\f5c3"; + swimmer: "\f5c4"; + swimming_pool: "\f5c5"; + synagogue: "\f69b"; + sync: "\f021"; + sync_alternate: "\f2f1"; + syringe: "\f48e"; + table: "\f0ce"; + table_tennis: "\f45d"; + tablet: "\f10a"; + tablet_alternate: "\f3fa"; + tablets: "\f490"; + tachometer_alternate: "\f3fd"; + tag: "\f02b"; + tags: "\f02c"; + tape: "\f4db"; + tasks: "\f0ae"; + taxi: "\f1ba"; + teeth: "\f62e"; + teeth_open: "\f62f"; + temperature_high: "\f769"; + temperature_low: "\f76b"; + tenge: "\f7d7"; + terminal: "\f120"; + text_height: "\f034"; + text_width: "\f035"; + th: "\f00a"; + th_large: "\f009"; + th_list: "\f00b"; + theater_masks: "\f630"; + thermometer: "\f491"; + thermometer_empty: "\f2cb"; + thermometer_full: "\f2c7"; + thermometer_half: "\f2c9"; + thermometer_quarter: "\f2ca"; + thermometer_three_quarters: "\f2c8"; + thumbs_down: "\f165"; + thumbs_up: "\f164"; + thumbtack: "\f08d"; + ticket_alternate: "\f3ff"; + times: "\f00d"; + times_circle: "\f057"; + tint: "\f043"; + tint_slash: "\f5c7"; + tired: "\f5c8"; + toggle_off: "\f204"; + toggle_on: "\f205"; + toilet: "\f7d8"; + toilet_paper: "\f71e"; + toilet_paper_slash: "\e072"; + toolbox: "\f552"; + tools: "\f7d9"; + tooth: "\f5c9"; + torah: "\f6a0"; + torii_gate: "\f6a1"; + tractor: "\f722"; + trademark: "\f25c"; + traffic_light: "\f637"; + trailer: "\e041"; + train: "\f238"; + tram: "\f7da"; + transgender: "\f224"; + transgender_alternate: "\f225"; + trash: "\f1f8"; + trash_alternate: "\f2ed"; + trash_restore: "\f829"; + trash_restore_alternate: "\f82a"; + tree: "\f1bb"; + trophy: "\f091"; + truck: "\f0d1"; + truck_monster: "\f63b"; + truck_moving: "\f4df"; + truck_packing: "\f4de"; + truck_pickup: "\f63c"; + tshirt: "\f553"; + tty: "\f1e4"; + tv: "\f26c"; + umbrella: "\f0e9"; + umbrella_beach: "\f5ca"; + underline: "\f0cd"; + undo: "\f0e2"; + undo_alternate: "\f2ea"; + universal_access: "\f29a"; + university: "\f19c"; + unlink: "\f127"; + unlock: "\f09c"; + unlock_alternate: "\f13e"; + upload: "\f093"; + user: "\f007"; + user_alternate: "\f406"; + user_alternate_slash: "\f4fa"; + user_astronaut: "\f4fb"; + user_check: "\f4fc"; + user_circle: "\f2bd"; + user_clock: "\f4fd"; + user_cog: "\f4fe"; + user_edit: "\f4ff"; + user_friends: "\f500"; + user_graduate: "\f501"; + user_injured: "\f728"; + user_lock: "\f502"; + user_md: "\f0f0"; + user_minus: "\f503"; + user_ninja: "\f504"; + user_nurse: "\f82f"; + user_plus: "\f234"; + user_secret: "\f21b"; + user_shield: "\f505"; + user_slash: "\f506"; + user_tag: "\f507"; + user_tie: "\f508"; + user_times: "\f235"; + users: "\f0c0"; + users_cog: "\f509"; + users_slash: "\e073"; + utensil_spoon: "\f2e5"; + utensils: "\f2e7"; + vector_square: "\f5cb"; + venus: "\f221"; + venus_double: "\f226"; + venus_mars: "\f228"; + vest: "\e085"; + vest_patches: "\e086"; + vial: "\f492"; + vials: "\f493"; + video: "\f03d"; + video_slash: "\f4e2"; + vihara: "\f6a7"; + virus: "\e074"; + virus_slash: "\e075"; + viruses: "\e076"; + voicemail: "\f897"; + volleyball_ball: "\f45f"; + volume_down: "\f027"; + volume_mute: "\f6a9"; + volume_off: "\f026"; + volume_up: "\f028"; + vote_yea: "\f772"; + vr_cardboard: "\f729"; + walking: "\f554"; + wallet: "\f555"; + warehouse: "\f494"; + water: "\f773"; + wave_square: "\f83e"; + weight: "\f496"; + weight_hanging: "\f5cd"; + wheelchair: "\f193"; + wifi: "\f1eb"; + wind: "\f72e"; + window_close: "\f410"; + window_maximize: "\f2d0"; + window_minimize: "\f2d1"; + window_restore: "\f2d2"; + wine_bottle: "\f72f"; + wine_glass: "\f4e3"; + wine_glass_alternate: "\f5ce"; + won_sign: "\f159"; + wrench: "\f0ad"; + x_ray: "\f497"; + yen_sign: "\f157"; + yin_yang: "\f6ad"; }; @icon-aliases-map: { - add: '\f067'; - add_circle: '\f055'; - add_square: '\f0fe'; - add_to_calendar: '\f271'; - add_to_cart: '\f217'; - add_user: '\f234'; - alarm: '\f0f3'; - alarm_mute: '\f1f6'; - ald: '\f2a2'; - als: '\f2a2'; - announcement: '\f0a1'; - area_chart: '\f1fe'; - area_graph: '\f1fe'; - arrow_down_cart: '\f218'; - asexual: '\f22d'; - asl: '\f2a3'; - asl_interpreting: '\f2a3'; - assistive_listening_devices: '\f2a2'; - attach: '\f0c6'; - attention: '\f06a'; - balance: '\f24e'; - bar: '\f0fc'; - bathtub: '\f2cd'; - battery_four: '\f240'; - battery_high: '\f241'; - battery_low: '\f243'; - battery_medium: '\f242'; - battery_one: '\f243'; - battery_three: '\f241'; - battery_two: '\f242'; - battery_zero: '\f244'; - birthday: '\f1fd'; - block_layout: '\f009'; - broken_chain: '\f127'; - browser: '\f022'; - call: '\f095'; - call_square: '\f098'; - cancel: '\f00d'; - cart: '\f07a'; - cc: '\f20a'; - chain: '\f0c1'; - chat: '\f075'; - checked_calendar: '\f274'; - checkmark: '\f00c'; - checkmark_box: '\f14a'; - chess_rock: '\f447'; - circle_notched: '\f1ce'; - circle_thin: '\f111'; - close: '\f00d'; - cloud_download: '\f381'; - cloud_upload: '\f382'; - cny: '\f157'; - cocktail: '\f000'; - commenting: '\f27a'; - compose: '\f303'; - computer: '\f108'; - configure: '\f0ad'; - content: '\f0c9'; - conversation: '\f086'; - credit_card_alternative: '\f09d'; - currency: '\f3d1'; - dashboard: '\f3fd'; - deafness: '\f2a4'; - delete: '\f00d'; - delete_calendar: '\f273'; - detective: '\f21b'; - diamond: '\f3a5'; - discussions: '\f086'; - disk: '\f0a0'; - doctor: '\f0f0'; - dollar: '\f155'; - dont: '\f05e'; - drivers_license: '\f2c2'; - dropdown: '\f0d7'; - emergency: '\f0f9'; - erase: '\f12d'; - eur: '\f153'; - euro: '\f153'; - exchange: '\f362'; - external: '\f35d'; - external_share: '\f14d'; - external_square: '\f360'; - eyedropper: '\f1fb'; - factory: '\f275'; - favorite: '\f005'; - feed: '\f09e'; - female_homosexual: '\f226'; - file_text: '\f15c'; - find: '\f1e5'; - first_aid: '\f0fa'; - food: '\f2e7'; - fork: '\f126'; - game: '\f11b'; - gay: '\f227'; - gbp: '\f154'; - grab: '\f255'; - graduation: '\f19d'; - grid_layout: '\f00a'; - group: '\f0c0'; - h: '\f0fd'; - hamburger: '\f0c9'; - hand_victory: '\f25b'; - handicap: '\f193'; - hard_of_hearing: '\f2a4'; - header: '\f1dc'; - heart_empty: '\f004'; - help: '\f128'; - help_circle: '\f059'; - heterosexual: '\f228'; - hide: '\f070'; - hotel: '\f236'; - hourglass_four: '\f254'; - hourglass_full: '\f254'; - hourglass_one: '\f251'; - hourglass_three: '\f253'; - hourglass_two: '\f252'; - hourglass_zero: '\f253'; - idea: '\f0eb'; - ils: '\f20b'; - in_cart: '\f218'; - inr: '\f156'; - intergender: '\f224'; - intersex: '\f224'; - jpy: '\f157'; - krw: '\f159'; - lab: '\f0c3'; - law: '\f24e'; - legal: '\f0e3'; - lesbian: '\f226'; - level_down: '\f3be'; - level_up: '\f3bf'; - lightning: '\f0e7'; - like: '\f004'; - linegraph: '\f201'; - linkify: '\f0c1'; - lira: '\f195'; - list_layout: '\f00b'; - log_out: '\f2f5'; - magnify: '\f00e'; - mail: '\f0e0'; - mail_forward: '\f064'; - mail_square: '\f199'; - male_homosexual: '\f227'; - man: '\f222'; - marker: '\f041'; - mars_alternate: '\f229'; - mars_horizontal: '\f22b'; - mars_vertical: '\f22a'; - meanpath: '\f0c8'; - military: '\f0fb'; - money: '\f3d1'; - move: '\f0b2'; - mute: '\f131'; - non_binary_transgender: '\f223'; - numbered_list: '\f0cb'; - options: '\f1de'; - ordered_list: '\f0cb'; - other_gender: '\f229'; - other_gender_horizontal: '\f22b'; - other_gender_vertical: '\f22a'; - payment: '\f09d'; - pencil: '\f303'; - pencil_square: '\f14b'; - photo: '\f030'; - picture: '\f03e'; - pie_chart: '\f200'; - pie_graph: '\f200'; - pin: '\f08d'; - plus_cart: '\f217'; - point: '\f041'; - pointing_down: '\f0a7'; - pointing_left: '\f0a5'; - pointing_right: '\f0a4'; - pointing_up: '\f0a6'; - pound: '\f154'; - power: '\f011'; - power_cord: '\f1e6'; - privacy: '\f084'; - protect: '\f023'; - puzzle: '\f12e'; - r_circle: '\f25d'; - radio: '\f192'; - rain: '\f0e9'; - record: '\f03d'; - refresh: '\f021'; - remove: '\f00d'; - remove_bookmark: '\f02e'; - remove_circle: '\f057'; - remove_from_calendar: '\f272'; - remove_user: '\f235'; - repeat: '\f01e'; - resize_horizontal: '\f337'; - resize_vertical: '\f338'; - rmb: '\f157'; - rouble: '\f158'; - rub: '\f158'; - ruble: '\f158'; - rupee: '\f156'; - s15: '\f2cd'; - selected_radio: '\f192'; - send: '\f1d8'; - setting: '\f013'; - settings: '\f085'; - shekel: '\f20b'; - sheqel: '\f20b'; - shield: '\f3ed'; - shipping: '\f0d1'; - shop: '\f07a'; - shuffle: '\f074'; - shutdown: '\f011'; - sidebar: '\f0c9'; - sign_in: '\f2f6'; - sign_out: '\f2f5'; - signing: '\f2a7'; - signup: '\f044'; - sliders: '\f1de'; - soccer: '\f1e3'; - sort_alphabet_ascending: '\f15d'; - sort_alphabet_descending: '\f15e'; - sort_ascending: '\f0de'; - sort_content_ascending: '\f160'; - sort_content_descending: '\f161'; - sort_descending: '\f0dd'; - sort_numeric_ascending: '\f162'; - sort_numeric_descending: '\f163'; - sound: '\f025'; - spoon: '\f2e5'; - spy: '\f21b'; - star_empty: '\f005'; - star_half_empty: '\f089'; - star_half_full: '\f089'; - student: '\f19d'; - talk: '\f27a'; - target: '\f140'; - teletype: '\f1e4'; - television: '\f26c'; - text_cursor: '\f246'; - text_telephone: '\f1e4'; - theme: '\f043'; - thermometer: '\f2c7'; - thumb_tack: '\f08d'; - ticket: '\f3ff'; - time: '\f017'; - times_rectangle: '\f410'; - tm: '\f25c'; - toggle_down: '\f150'; - toggle_left: '\f191'; - toggle_right: '\f152'; - toggle_up: '\f151'; - translate: '\f1ab'; - travel: '\f0b1'; - treatment: '\f0f1'; - triangle_down: '\f0d7'; - triangle_left: '\f0d9'; - triangle_right: '\f0da'; - triangle_up: '\f0d8'; - try: '\f195'; - unhide: '\f06e'; - unlinkify: '\f127'; - unmute: '\f130'; - unordered_list: '\f0ca'; - usd: '\f155'; - user_cancel: '\f235'; - user_close: '\f235'; - user_delete: '\f235'; - user_doctor: '\f0f0'; - user_x: '\f235'; - vcard: '\f2bb'; - video_camera: '\f03d'; - video_play: '\f144'; - volume_control_phone: '\f2a0'; - wait: '\f017'; - warning: '\f12a'; - warning_circle: '\f06a'; - warning_sign: '\f071'; - wi_fi: '\f1eb'; - winner: '\f091'; - wizard: '\f0d0'; - woman: '\f221'; - won: '\f159'; - world: '\f0ac'; - write: '\f303'; - write_square: '\f14b'; - x: '\f00d'; - yen: '\f157'; - zip: '\f187'; - zoom: '\f00e'; - zoom_in: '\f00e'; - zoom_out: '\f010'; + add: "\f067"; + add_circle: "\f055"; + add_square: "\f0fe"; + add_to_calendar: "\f271"; + add_to_cart: "\f217"; + add_user: "\f234"; + alarm: "\f0f3"; + alarm_mute: "\f1f6"; + ald: "\f2a2"; + als: "\f2a2"; + announcement: "\f0a1"; + area_chart: "\f1fe"; + area_graph: "\f1fe"; + arrow_down_cart: "\f218"; + asexual: "\f22d"; + asl: "\f2a3"; + asl_interpreting: "\f2a3"; + assistive_listening_devices: "\f2a2"; + attach: "\f0c6"; + attention: "\f06a"; + balance: "\f24e"; + bar: "\f0fc"; + bathtub: "\f2cd"; + battery_four: "\f240"; + battery_high: "\f241"; + battery_low: "\f243"; + battery_medium: "\f242"; + battery_one: "\f243"; + battery_three: "\f241"; + battery_two: "\f242"; + battery_zero: "\f244"; + birthday: "\f1fd"; + block_layout: "\f009"; + broken_chain: "\f127"; + browser: "\f022"; + call: "\f095"; + call_square: "\f098"; + cancel: "\f00d"; + cart: "\f07a"; + cc: "\f20a"; + chain: "\f0c1"; + chat: "\f075"; + checked_calendar: "\f274"; + checkmark: "\f00c"; + checkmark_box: "\f14a"; + chess_rock: "\f447"; + circle_notched: "\f1ce"; + circle_thin: "\f111"; + close: "\f00d"; + cloud_download: "\f381"; + cloud_upload: "\f382"; + cny: "\f157"; + cocktail: "\f000"; + commenting: "\f27a"; + compose: "\f303"; + computer: "\f108"; + configure: "\f0ad"; + content: "\f0c9"; + conversation: "\f086"; + credit_card_alternative: "\f09d"; + currency: "\f3d1"; + dashboard: "\f3fd"; + deafness: "\f2a4"; + delete: "\f00d"; + delete_calendar: "\f273"; + detective: "\f21b"; + diamond: "\f3a5"; + discussions: "\f086"; + disk: "\f0a0"; + doctor: "\f0f0"; + dollar: "\f155"; + dont: "\f05e"; + drivers_license: "\f2c2"; + dropdown: "\f0d7"; + emergency: "\f0f9"; + erase: "\f12d"; + eur: "\f153"; + euro: "\f153"; + exchange: "\f362"; + external: "\f35d"; + external_share: "\f14d"; + external_square: "\f360"; + eyedropper: "\f1fb"; + factory: "\f275"; + favorite: "\f005"; + feed: "\f09e"; + female_homosexual: "\f226"; + file_text: "\f15c"; + find: "\f1e5"; + first_aid: "\f0fa"; + food: "\f2e7"; + fork: "\f126"; + game: "\f11b"; + gay: "\f227"; + gbp: "\f154"; + grab: "\f255"; + graduation: "\f19d"; + grid_layout: "\f00a"; + group: "\f0c0"; + h: "\f0fd"; + hamburger: "\f0c9"; + hand_victory: "\f25b"; + handicap: "\f193"; + hard_of_hearing: "\f2a4"; + header: "\f1dc"; + heart_empty: "\f004"; + help: "\f128"; + help_circle: "\f059"; + heterosexual: "\f228"; + hide: "\f070"; + hotel: "\f236"; + hourglass_four: "\f254"; + hourglass_full: "\f254"; + hourglass_one: "\f251"; + hourglass_three: "\f253"; + hourglass_two: "\f252"; + hourglass_zero: "\f253"; + idea: "\f0eb"; + ils: "\f20b"; + in_cart: "\f218"; + inr: "\f156"; + intergender: "\f224"; + intersex: "\f224"; + jpy: "\f157"; + krw: "\f159"; + lab: "\f0c3"; + law: "\f24e"; + legal: "\f0e3"; + lesbian: "\f226"; + level_down: "\f3be"; + level_up: "\f3bf"; + lightning: "\f0e7"; + like: "\f004"; + linegraph: "\f201"; + linkify: "\f0c1"; + lira: "\f195"; + list_layout: "\f00b"; + log_out: "\f2f5"; + magnify: "\f00e"; + mail: "\f0e0"; + mail_forward: "\f064"; + mail_square: "\f199"; + male_homosexual: "\f227"; + man: "\f222"; + marker: "\f041"; + mars_alternate: "\f229"; + mars_horizontal: "\f22b"; + mars_vertical: "\f22a"; + meanpath: "\f0c8"; + military: "\f0fb"; + money: "\f3d1"; + move: "\f0b2"; + mute: "\f131"; + non_binary_transgender: "\f223"; + numbered_list: "\f0cb"; + options: "\f1de"; + ordered_list: "\f0cb"; + other_gender: "\f229"; + other_gender_horizontal: "\f22b"; + other_gender_vertical: "\f22a"; + payment: "\f09d"; + pencil: "\f303"; + pencil_square: "\f14b"; + photo: "\f030"; + picture: "\f03e"; + pie_chart: "\f200"; + pie_graph: "\f200"; + pin: "\f08d"; + plus_cart: "\f217"; + point: "\f041"; + pointing_down: "\f0a7"; + pointing_left: "\f0a5"; + pointing_right: "\f0a4"; + pointing_up: "\f0a6"; + pound: "\f154"; + power: "\f011"; + power_cord: "\f1e6"; + privacy: "\f084"; + protect: "\f023"; + puzzle: "\f12e"; + r_circle: "\f25d"; + radio: "\f192"; + rain: "\f0e9"; + record: "\f03d"; + refresh: "\f021"; + remove: "\f00d"; + remove_bookmark: "\f02e"; + remove_circle: "\f057"; + remove_from_calendar: "\f272"; + remove_user: "\f235"; + repeat: "\f01e"; + resize_horizontal: "\f337"; + resize_vertical: "\f338"; + rmb: "\f157"; + rouble: "\f158"; + rub: "\f158"; + ruble: "\f158"; + rupee: "\f156"; + s15: "\f2cd"; + selected_radio: "\f192"; + send: "\f1d8"; + setting: "\f013"; + settings: "\f085"; + shekel: "\f20b"; + sheqel: "\f20b"; + shield: "\f3ed"; + shipping: "\f0d1"; + shop: "\f07a"; + shuffle: "\f074"; + shutdown: "\f011"; + sidebar: "\f0c9"; + sign_in: "\f2f6"; + sign_out: "\f2f5"; + signing: "\f2a7"; + signup: "\f044"; + sliders: "\f1de"; + soccer: "\f1e3"; + sort_alphabet_ascending: "\f15d"; + sort_alphabet_descending: "\f15e"; + sort_ascending: "\f0de"; + sort_content_ascending: "\f160"; + sort_content_descending: "\f161"; + sort_descending: "\f0dd"; + sort_numeric_ascending: "\f162"; + sort_numeric_descending: "\f163"; + sound: "\f025"; + spoon: "\f2e5"; + spy: "\f21b"; + star_empty: "\f005"; + star_half_empty: "\f089"; + star_half_full: "\f089"; + student: "\f19d"; + talk: "\f27a"; + target: "\f140"; + teletype: "\f1e4"; + television: "\f26c"; + text_cursor: "\f246"; + text_telephone: "\f1e4"; + theme: "\f043"; + thermometer: "\f2c7"; + thumb_tack: "\f08d"; + ticket: "\f3ff"; + time: "\f017"; + times_rectangle: "\f410"; + tm: "\f25c"; + toggle_down: "\f150"; + toggle_left: "\f191"; + toggle_right: "\f152"; + toggle_up: "\f151"; + translate: "\f1ab"; + travel: "\f0b1"; + treatment: "\f0f1"; + triangle_down: "\f0d7"; + triangle_left: "\f0d9"; + triangle_right: "\f0da"; + triangle_up: "\f0d8"; + try: "\f195"; + unhide: "\f06e"; + unlinkify: "\f127"; + unmute: "\f130"; + unordered_list: "\f0ca"; + usd: "\f155"; + user_cancel: "\f235"; + user_close: "\f235"; + user_delete: "\f235"; + user_doctor: "\f0f0"; + user_x: "\f235"; + vcard: "\f2bb"; + video_camera: "\f03d"; + video_play: "\f144"; + volume_control_phone: "\f2a0"; + wait: "\f017"; + warning: "\f12a"; + warning_circle: "\f06a"; + warning_sign: "\f071"; + wi_fi: "\f1eb"; + winner: "\f091"; + wizard: "\f0d0"; + woman: "\f221"; + won: "\f159"; + world: "\f0ac"; + write: "\f303"; + write_square: "\f14b"; + x: "\f00d"; + yen: "\f157"; + zip: "\f187"; + zoom: "\f00e"; + zoom_in: "\f00e"; + zoom_out: "\f010"; }; @icon-outline-map: { - address_book_outline: '\f2b9'; - address_card_outline: '\f2bb'; - angry_outline: '\f556'; - arrow_alternate_circle_down_outline: '\f358'; - arrow_alternate_circle_left_outline: '\f359'; - arrow_alternate_circle_right_outline: '\f35a'; - arrow_alternate_circle_up_outline: '\f35b'; - bell_outline: '\f0f3'; - bell_slash_outline: '\f1f6'; - bookmark_outline: '\f02e'; - building_outline: '\f1ad'; - calendar_alternate_outline: '\f073'; - calendar_check_outline: '\f274'; - calendar_minus_outline: '\f272'; - calendar_outline: '\f133'; - calendar_plus_outline: '\f271'; - calendar_times_outline: '\f273'; - caret_square_down_outline: '\f150'; - caret_square_left_outline: '\f191'; - caret_square_right_outline: '\f152'; - caret_square_up_outline: '\f151'; - chart_bar_outline: '\f080'; - check_circle_outline: '\f058'; - check_square_outline: '\f14a'; - circle_outline: '\f111'; - clipboard_outline: '\f328'; - clock_outline: '\f017'; - clone_outline: '\f24d'; - closed_captioning_outline: '\f20a'; - comment_alternate_outline: '\f27a'; - comment_dots_outline: '\f4ad'; - comment_outline: '\f075'; - comments_outline: '\f086'; - compass_outline: '\f14e'; - copy_outline: '\f0c5'; - copyright_outline: '\f1f9'; - credit_card_outline: '\f09d'; - dizzy_outline: '\f567'; - dot_circle_outline: '\f192'; - edit_outline: '\f044'; - envelope_open_outline: '\f2b6'; - envelope_outline: '\f0e0'; - eye_outline: '\f06e'; - eye_slash_outline: '\f070'; - file_alternate_outline: '\f15c'; - file_archive_outline: '\f1c6'; - file_audio_outline: '\f1c7'; - file_code_outline: '\f1c9'; - file_excel_outline: '\f1c3'; - file_image_outline: '\f1c5'; - file_outline: '\f15b'; - file_pdf_outline: '\f1c1'; - file_powerpoint_outline: '\f1c4'; - file_video_outline: '\f1c8'; - file_word_outline: '\f1c2'; - flag_outline: '\f024'; - flushed_outline: '\f579'; - folder_open_outline: '\f07c'; - folder_outline: '\f07b'; - frown_open_outline: '\f57a'; - frown_outline: '\f119'; - futbol_outline: '\f1e3'; - gem_outline: '\f3a5'; - grimace_outline: '\f57f'; - grin_alternate_outline: '\f581'; - grin_beam_outline: '\f582'; - grin_beam_sweat_outline: '\f583'; - grin_hearts_outline: '\f584'; - grin_outline: '\f580'; - grin_squint_outline: '\f585'; - grin_squint_tears_outline: '\f586'; - grin_stars_outline: '\f587'; - grin_tears_outline: '\f588'; - grin_tongue_outline: '\f589'; - grin_tongue_squint_outline: '\f58a'; - grin_tongue_wink_outline: '\f58b'; - grin_wink_outline: '\f58c'; - hand_lizard_outline: '\f258'; - hand_paper_outline: '\f256'; - hand_peace_outline: '\f25b'; - hand_point_down_outline: '\f0a7'; - hand_point_left_outline: '\f0a5'; - hand_point_right_outline: '\f0a4'; - hand_point_up_outline: '\f0a6'; - hand_pointer_outline: '\f25a'; - hand_rock_outline: '\f255'; - hand_scissors_outline: '\f257'; - hand_spock_outline: '\f259'; - handshake_outline: '\f2b5'; - hdd_outline: '\f0a0'; - heart_outline: '\f004'; - hospital_outline: '\f0f8'; - hourglass_outline: '\f254'; - id_badge_outline: '\f2c1'; - id_card_outline: '\f2c2'; - image_outline: '\f03e'; - images_outline: '\f302'; - keyboard_outline: '\f11c'; - kiss_beam_outline: '\f597'; - kiss_outline: '\f596'; - kiss_wink_heart_outline: '\f598'; - laugh_beam_outline: '\f59a'; - laugh_outline: '\f599'; - laugh_squint_outline: '\f59b'; - laugh_wink_outline: '\f59c'; - lemon_outline: '\f094'; - life_ring_outline: '\f1cd'; - lightbulb_outline: '\f0eb'; - list_alternate_outline: '\f022'; - map_outline: '\f279'; - meh_blank_outline: '\f5a4'; - meh_outline: '\f11a'; - meh_rolling_eyes_outline: '\f5a5'; - minus_square_outline: '\f146'; - money_bill_alternate_outline: '\f3d1'; - moon_outline: '\f186'; - newspaper_outline: '\f1ea'; - object_group_outline: '\f247'; - object_ungroup_outline: '\f248'; - paper_plane_outline: '\f1d8'; - pause_circle_outline: '\f28b'; - play_circle_outline: '\f144'; - plus_square_outline: '\f0fe'; - question_circle_outline: '\f059'; - registered_outline: '\f25d'; - sad_cry_outline: '\f5b3'; - sad_tear_outline: '\f5b4'; - save_outline: '\f0c7'; - share_square_outline: '\f14d'; - smile_beam_outline: '\f5b8'; - smile_outline: '\f118'; - smile_wink_outline: '\f4da'; - snowflake_outline: '\f2dc'; - square_outline: '\f0c8'; - star_half_outline: '\f089'; - star_outline: '\f005'; - sticky_note_outline: '\f249'; - stop_circle_outline: '\f28d'; - sun_outline: '\f185'; - surprise_outline: '\f5c2'; - thumbs_down_outline: '\f165'; - thumbs_up_outline: '\f164'; - times_circle_outline: '\f057'; - tired_outline: '\f5c8'; - trash_alternate_outline: '\f2ed'; - user_circle_outline: '\f2bd'; - user_outline: '\f007'; - window_close_outline: '\f410'; - window_maximize_outline: '\f2d0'; - window_minimize_outline: '\f2d1'; - window_restore_outline: '\f2d2'; + address_book_outline: "\f2b9"; + address_card_outline: "\f2bb"; + angry_outline: "\f556"; + arrow_alternate_circle_down_outline: "\f358"; + arrow_alternate_circle_left_outline: "\f359"; + arrow_alternate_circle_right_outline: "\f35a"; + arrow_alternate_circle_up_outline: "\f35b"; + bell_outline: "\f0f3"; + bell_slash_outline: "\f1f6"; + bookmark_outline: "\f02e"; + building_outline: "\f1ad"; + calendar_alternate_outline: "\f073"; + calendar_check_outline: "\f274"; + calendar_minus_outline: "\f272"; + calendar_outline: "\f133"; + calendar_plus_outline: "\f271"; + calendar_times_outline: "\f273"; + caret_square_down_outline: "\f150"; + caret_square_left_outline: "\f191"; + caret_square_right_outline: "\f152"; + caret_square_up_outline: "\f151"; + chart_bar_outline: "\f080"; + check_circle_outline: "\f058"; + check_square_outline: "\f14a"; + circle_outline: "\f111"; + clipboard_outline: "\f328"; + clock_outline: "\f017"; + clone_outline: "\f24d"; + closed_captioning_outline: "\f20a"; + comment_alternate_outline: "\f27a"; + comment_dots_outline: "\f4ad"; + comment_outline: "\f075"; + comments_outline: "\f086"; + compass_outline: "\f14e"; + copy_outline: "\f0c5"; + copyright_outline: "\f1f9"; + credit_card_outline: "\f09d"; + dizzy_outline: "\f567"; + dot_circle_outline: "\f192"; + edit_outline: "\f044"; + envelope_open_outline: "\f2b6"; + envelope_outline: "\f0e0"; + eye_outline: "\f06e"; + eye_slash_outline: "\f070"; + file_alternate_outline: "\f15c"; + file_archive_outline: "\f1c6"; + file_audio_outline: "\f1c7"; + file_code_outline: "\f1c9"; + file_excel_outline: "\f1c3"; + file_image_outline: "\f1c5"; + file_outline: "\f15b"; + file_pdf_outline: "\f1c1"; + file_powerpoint_outline: "\f1c4"; + file_video_outline: "\f1c8"; + file_word_outline: "\f1c2"; + flag_outline: "\f024"; + flushed_outline: "\f579"; + folder_open_outline: "\f07c"; + folder_outline: "\f07b"; + frown_open_outline: "\f57a"; + frown_outline: "\f119"; + futbol_outline: "\f1e3"; + gem_outline: "\f3a5"; + grimace_outline: "\f57f"; + grin_alternate_outline: "\f581"; + grin_beam_outline: "\f582"; + grin_beam_sweat_outline: "\f583"; + grin_hearts_outline: "\f584"; + grin_outline: "\f580"; + grin_squint_outline: "\f585"; + grin_squint_tears_outline: "\f586"; + grin_stars_outline: "\f587"; + grin_tears_outline: "\f588"; + grin_tongue_outline: "\f589"; + grin_tongue_squint_outline: "\f58a"; + grin_tongue_wink_outline: "\f58b"; + grin_wink_outline: "\f58c"; + hand_lizard_outline: "\f258"; + hand_paper_outline: "\f256"; + hand_peace_outline: "\f25b"; + hand_point_down_outline: "\f0a7"; + hand_point_left_outline: "\f0a5"; + hand_point_right_outline: "\f0a4"; + hand_point_up_outline: "\f0a6"; + hand_pointer_outline: "\f25a"; + hand_rock_outline: "\f255"; + hand_scissors_outline: "\f257"; + hand_spock_outline: "\f259"; + handshake_outline: "\f2b5"; + hdd_outline: "\f0a0"; + heart_outline: "\f004"; + hospital_outline: "\f0f8"; + hourglass_outline: "\f254"; + id_badge_outline: "\f2c1"; + id_card_outline: "\f2c2"; + image_outline: "\f03e"; + images_outline: "\f302"; + keyboard_outline: "\f11c"; + kiss_beam_outline: "\f597"; + kiss_outline: "\f596"; + kiss_wink_heart_outline: "\f598"; + laugh_beam_outline: "\f59a"; + laugh_outline: "\f599"; + laugh_squint_outline: "\f59b"; + laugh_wink_outline: "\f59c"; + lemon_outline: "\f094"; + life_ring_outline: "\f1cd"; + lightbulb_outline: "\f0eb"; + list_alternate_outline: "\f022"; + map_outline: "\f279"; + meh_blank_outline: "\f5a4"; + meh_outline: "\f11a"; + meh_rolling_eyes_outline: "\f5a5"; + minus_square_outline: "\f146"; + money_bill_alternate_outline: "\f3d1"; + moon_outline: "\f186"; + newspaper_outline: "\f1ea"; + object_group_outline: "\f247"; + object_ungroup_outline: "\f248"; + paper_plane_outline: "\f1d8"; + pause_circle_outline: "\f28b"; + play_circle_outline: "\f144"; + plus_square_outline: "\f0fe"; + question_circle_outline: "\f059"; + registered_outline: "\f25d"; + sad_cry_outline: "\f5b3"; + sad_tear_outline: "\f5b4"; + save_outline: "\f0c7"; + share_square_outline: "\f14d"; + smile_beam_outline: "\f5b8"; + smile_outline: "\f118"; + smile_wink_outline: "\f4da"; + snowflake_outline: "\f2dc"; + square_outline: "\f0c8"; + star_half_outline: "\f089"; + star_outline: "\f005"; + sticky_note_outline: "\f249"; + stop_circle_outline: "\f28d"; + sun_outline: "\f185"; + surprise_outline: "\f5c2"; + thumbs_down_outline: "\f165"; + thumbs_up_outline: "\f164"; + times_circle_outline: "\f057"; + tired_outline: "\f5c8"; + trash_alternate_outline: "\f2ed"; + user_circle_outline: "\f2bd"; + user_outline: "\f007"; + window_close_outline: "\f410"; + window_maximize_outline: "\f2d0"; + window_minimize_outline: "\f2d1"; + window_restore_outline: "\f2d2"; }; @icon-outline-aliases-map: { }; @@ -1550,516 +1550,516 @@ Icons are order A-Z in their group, Solid, Outline, Thin (Pro only) and Brand }; @icon-brand-map: { - 500px: '\f26e'; - accessible: '\f368'; - accusoft: '\f369'; - acquisitions_incorporated: '\f6af'; - adn: '\f170'; - adversal: '\f36a'; - affiliatetheme: '\f36b'; - airbnb: '\f834'; - algolia: '\f36c'; - alipay: '\f642'; - amazon: '\f270'; - amazon_pay: '\f42c'; - amilia: '\f36d'; - android: '\f17b'; - angellist: '\f209'; - angrycreative: '\f36e'; - angular: '\f420'; - app_store: '\f36f'; - app_store_ios: '\f370'; - apper: '\f371'; - apple: '\f179'; - apple_pay: '\f415'; - artstation: '\f77a'; - asymmetrik: '\f372'; - atlassian: '\f77b'; - audible: '\f373'; - autoprefixer: '\f41c'; - avianex: '\f374'; - aviato: '\f421'; - aws: '\f375'; - bandcamp: '\f2d5'; - battle_net: '\f835'; - behance: '\f1b4'; - behance_square: '\f1b5'; - bimobject: '\f378'; - bitbucket: '\f171'; - bitcoin: '\f379'; - bity: '\f37a'; - black_tie: '\f27e'; - blackberry: '\f37b'; - blogger: '\f37c'; - blogger_b: '\f37d'; - bluetooth: '\f293'; - bluetooth_b: '\f294'; - bootstrap: '\f836'; - btc: '\f15a'; - buffer: '\f837'; - buromobelexperte: '\f37f'; - buy_n_large: '\f8a6'; - buysellads: '\f20d'; - canadian_maple_leaf: '\f785'; - cc_amazon_pay: '\f42d'; - cc_amex: '\f1f3'; - cc_apple_pay: '\f416'; - cc_diners_club: '\f24c'; - cc_discover: '\f1f2'; - cc_jcb: '\f24b'; - cc_mastercard: '\f1f1'; - cc_paypal: '\f1f4'; - cc_stripe: '\f1f5'; - cc_visa: '\f1f0'; - centercode: '\f380'; - centos: '\f789'; - chrome: '\f268'; - chromecast: '\f838'; - cloudflare: '\e07d'; - cloudscale: '\f383'; - cloudsmith: '\f384'; - cloudversify: '\f385'; - codepen: '\f1cb'; - codiepie: '\f284'; - confluence: '\f78d'; - connectdevelop: '\f20e'; - contao: '\f26d'; - cotton_bureau: '\f89e'; - cpanel: '\f388'; - creative_commons: '\f25e'; - creative_commons_by: '\f4e7'; - creative_commons_nc: '\f4e8'; - creative_commons_nc_eu: '\f4e9'; - creative_commons_nc_jp: '\f4ea'; - creative_commons_nd: '\f4eb'; - creative_commons_pd: '\f4ec'; - creative_commons_pd_alternate: '\f4ed'; - creative_commons_remix: '\f4ee'; - creative_commons_sa: '\f4ef'; - creative_commons_sampling: '\f4f0'; - creative_commons_sampling_plus: '\f4f1'; - creative_commons_share: '\f4f2'; - creative_commons_zero: '\f4f3'; - critical_role: '\f6c9'; - css3: '\f13c'; - css3_alternate: '\f38b'; - cuttlefish: '\f38c'; - d_and_d: '\f38d'; - d_and_d_beyond: '\f6ca'; - dailymotion: '\e052'; - dashcube: '\f210'; - deezer: '\e077'; - delicious: '\f1a5'; - deploydog: '\f38e'; - deskpro: '\f38f'; - dev: '\f6cc'; - deviantart: '\f1bd'; - dhl: '\f790'; - diaspora: '\f791'; - digg: '\f1a6'; - digital_ocean: '\f391'; - discord: '\f392'; - discourse: '\f393'; - dochub: '\f394'; - docker: '\f395'; - draft2digital: '\f396'; - dribbble: '\f17d'; - dribbble_square: '\f397'; - dropbox: '\f16b'; - drupal: '\f1a9'; - dyalog: '\f399'; - earlybirds: '\f39a'; - ebay: '\f4f4'; - edge: '\f282'; - edge_legacy: '\e078'; - elementor: '\f430'; - ello: '\f5f1'; - ember: '\f423'; - empire: '\f1d1'; - envira: '\f299'; - erlang: '\f39d'; - ethereum: '\f42e'; - etsy: '\f2d7'; - evernote: '\f839'; - expeditedssl: '\f23e'; - facebook: '\f09a'; - facebook_f: '\f39e'; - facebook_messenger: '\f39f'; - facebook_square: '\f082'; - fantasy_flight_games: '\f6dc'; - fedex: '\f797'; - fedora: '\f798'; - figma: '\f799'; - firefox: '\f269'; - firefox_browser: '\e007'; - first_order: '\f2b0'; - first_order_alternate: '\f50a'; - firstdraft: '\f3a1'; - flickr: '\f16e'; - flipboard: '\f44d'; - fly: '\f417'; - font_awesome: '\f2b4'; - font_awesome_alternate: '\f35c'; - font_awesome_flag: '\f425'; - fonticons: '\f280'; - fonticons_fi: '\f3a2'; - fort_awesome: '\f286'; - fort_awesome_alternate: '\f3a3'; - forumbee: '\f211'; - foursquare: '\f180'; - free_code_camp: '\f2c5'; - freebsd: '\f3a4'; - fulcrum: '\f50b'; - galactic_republic: '\f50c'; - galactic_senate: '\f50d'; - get_pocket: '\f265'; - gg: '\f260'; - gg_circle: '\f261'; - git: '\f1d3'; - git_alternate: '\f841'; - git_square: '\f1d2'; - github: '\f09b'; - github_alternate: '\f113'; - github_square: '\f092'; - gitkraken: '\f3a6'; - gitlab: '\f296'; - gitter: '\f426'; - glide: '\f2a5'; - glide_g: '\f2a6'; - gofore: '\f3a7'; - goodreads: '\f3a8'; - goodreads_g: '\f3a9'; - google: '\f1a0'; - google_drive: '\f3aa'; - google_pay: '\e079'; - google_play: '\f3ab'; - google_plus: '\f2b3'; - google_plus_g: '\f0d5'; - google_plus_square: '\f0d4'; - google_wallet: '\f1ee'; - gratipay: '\f184'; - grav: '\f2d6'; - gripfire: '\f3ac'; - grunt: '\f3ad'; - guilded: '\e07e'; - gulp: '\f3ae'; - hacker_news: '\f1d4'; - hacker_news_square: '\f3af'; - hackerrank: '\f5f7'; - hips: '\f452'; - hire_a_helper: '\f3b0'; - hive: '\e07f'; - hooli: '\f427'; - hornbill: '\f592'; - hotjar: '\f3b1'; - houzz: '\f27c'; - html5: '\f13b'; - hubspot: '\f3b2'; - ideal: '\e013'; - imdb: '\f2d8'; - innosoft: '\e080'; - instagram: '\f16d'; - instagram_square: '\e055'; - instalod: '\e081'; - intercom: '\f7af'; - internet_explorer: '\f26b'; - invision: '\f7b0'; - ioxhost: '\f208'; - itch_io: '\f83a'; - itunes: '\f3b4'; - itunes_note: '\f3b5'; - java: '\f4e4'; - jedi_order: '\f50e'; - jenkins: '\f3b6'; - jira: '\f7b1'; - joget: '\f3b7'; - joomla: '\f1aa'; - js: '\f3b8'; - js_square: '\f3b9'; - jsfiddle: '\f1cc'; - kaggle: '\f5fa'; - keybase: '\f4f5'; - keycdn: '\f3ba'; - kickstarter: '\f3bb'; - kickstarter_k: '\f3bc'; - korvue: '\f42f'; - laravel: '\f3bd'; - lastfm: '\f202'; - lastfm_square: '\f203'; - leanpub: '\f212'; - lesscss: '\f41d'; - linechat: '\f3c0'; - linkedin: '\f08c'; - linkedin_in: '\f0e1'; - linode: '\f2b8'; - linux: '\f17c'; - lyft: '\f3c3'; - magento: '\f3c4'; - mailchimp: '\f59e'; - mandalorian: '\f50f'; - markdown: '\f60f'; - mastodon: '\f4f6'; - maxcdn: '\f136'; - mdb: '\f8ca'; - medapps: '\f3c6'; - medium: '\f23a'; - medium_m: '\f3c7'; - medrt: '\f3c8'; - meetup: '\f2e0'; - megaport: '\f5a3'; - mendeley: '\f7b3'; - microblog: '\e01a'; - microsoft: '\f3ca'; - mix: '\f3cb'; - mixcloud: '\f289'; - mixer: '\e056'; - mizuni: '\f3cc'; - modx: '\f285'; - monero: '\f3d0'; - napster: '\f3d2'; - neos: '\f612'; - nimblr: '\f5a8'; - node: '\f419'; - node_js: '\f3d3'; - npm: '\f3d4'; - ns8: '\f3d5'; - nutritionix: '\f3d6'; - octopus_deploy: '\e082'; - odnoklassniki: '\f263'; - odnoklassniki_square: '\f264'; - old_republic: '\f510'; - opencart: '\f23d'; - openid: '\f19b'; - opera: '\f26a'; - optin_monster: '\f23c'; - orcid: '\f8d2'; - osi: '\f41a'; - page4: '\f3d7'; - pagelines: '\f18c'; - palfed: '\f3d8'; - patreon: '\f3d9'; - paypal: '\f1ed'; - penny_arcade: '\f704'; - perbyte: '\e083'; - periscope: '\f3da'; - phabricator: '\f3db'; - phoenix_framework: '\f3dc'; - phoenix_squadron: '\f511'; - php: '\f457'; - pied_piper: '\f2ae'; - pied_piper_alternate: '\f1a8'; - pied_piper_hat: '\f4e5'; - pied_piper_pp: '\f1a7'; - pied_piper_square: '\e01e'; - pinterest: '\f0d2'; - pinterest_p: '\f231'; - pinterest_square: '\f0d3'; - playstation: '\f3df'; - product_hunt: '\f288'; - pushed: '\f3e1'; - python: '\f3e2'; - qq: '\f1d6'; - quinscape: '\f459'; - quora: '\f2c4'; - r_project: '\f4f7'; - raspberry_pi: '\f7bb'; - ravelry: '\f2d9'; - react: '\f41b'; - reacteurope: '\f75d'; - readme: '\f4d5'; - rebel: '\f1d0'; - reddit: '\f1a1'; - reddit_alien: '\f281'; - reddit_square: '\f1a2'; - redhat: '\f7bc'; - redriver: '\f3e3'; - redyeti: '\f69d'; - renren: '\f18b'; - replyd: '\f3e6'; - researchgate: '\f4f8'; - resolving: '\f3e7'; - rev: '\f5b2'; - rocketchat: '\f3e8'; - rockrms: '\f3e9'; - rust: '\e07a'; - safari: '\f267'; - salesforce: '\f83b'; - sass: '\f41e'; - schlix: '\f3ea'; - scribd: '\f28a'; - searchengin: '\f3eb'; - sellcast: '\f2da'; - sellsy: '\f213'; - servicestack: '\f3ec'; - shirtsinbulk: '\f214'; - shopify: '\e057'; - shopware: '\f5b5'; - simplybuilt: '\f215'; - sistrix: '\f3ee'; - sith: '\f512'; - sketch: '\f7c6'; - skyatlas: '\f216'; - skype: '\f17e'; - slack: '\f198'; - slack_hash: '\f3ef'; - slideshare: '\f1e7'; - snapchat: '\f2ab'; - snapchat_ghost: '\f2ac'; - snapchat_square: '\f2ad'; - soundcloud: '\f1be'; - sourcetree: '\f7d3'; - speakap: '\f3f3'; - speaker_deck: '\f83c'; - spotify: '\f1bc'; - squarespace: '\f5be'; - stack_exchange: '\f18d'; - stack_overflow: '\f16c'; - stackpath: '\f842'; - staylinked: '\f3f5'; - steam: '\f1b6'; - steam_square: '\f1b7'; - steam_symbol: '\f3f6'; - sticker_mule: '\f3f7'; - strava: '\f428'; - stripe: '\f429'; - stripe_s: '\f42a'; - studiovinari: '\f3f8'; - stumbleupon: '\f1a4'; - stumbleupon_circle: '\f1a3'; - superpowers: '\f2dd'; - supple: '\f3f9'; - suse: '\f7d6'; - swift: '\f8e1'; - symfony: '\f83d'; - teamspeak: '\f4f9'; - telegram: '\f2c6'; - telegram_plane: '\f3fe'; - tencent_weibo: '\f1d5'; - themeco: '\f5c6'; - themeisle: '\f2b2'; - think_peaks: '\f731'; - tiktok: '\e07b'; - trade_federation: '\f513'; - trello: '\f181'; - tumblr: '\f173'; - tumblr_square: '\f174'; - twitch: '\f1e8'; - twitter: '\f099'; - twitter_square: '\f081'; - typo3: '\f42b'; - uber: '\f402'; - ubuntu: '\f7df'; - uikit: '\f403'; - umbraco: '\f8e8'; - uncharted: '\e084'; - uniregistry: '\f404'; - unity: '\e049'; - unsplash: '\e07c'; - untappd: '\f405'; - ups: '\f7e0'; - usb: '\f287'; - usps: '\f7e1'; - ussunnah: '\f407'; - vaadin: '\f408'; - viacoin: '\f237'; - viadeo: '\f2a9'; - viadeo_square: '\f2aa'; - viber: '\f409'; - vimeo: '\f40a'; - vimeo_square: '\f194'; - vimeo_v: '\f27d'; - vine: '\f1ca'; - vk: '\f189'; - vnv: '\f40b'; - vuejs: '\f41f'; - watchman_monitoring: '\e087'; - waze: '\f83f'; - weebly: '\f5cc'; - weibo: '\f18a'; - weixin: '\f1d7'; - whatsapp: '\f232'; - whatsapp_square: '\f40c'; - whmcs: '\f40d'; - wikipedia_w: '\f266'; - windows: '\f17a'; - wix: '\f5cf'; - wizards_of_the_coast: '\f730'; - wodu: '\e088'; - wolf_pack_battalion: '\f514'; - wordpress: '\f19a'; - wordpress_simple: '\f411'; - wpbeginner: '\f297'; - wpexplorer: '\f2de'; - wpforms: '\f298'; - wpressr: '\f3e4'; - xbox: '\f412'; - xing: '\f168'; - xing_square: '\f169'; - y_combinator: '\f23b'; - yahoo: '\f19e'; - yammer: '\f840'; - yandex: '\f413'; - yandex_international: '\f414'; - yarn: '\f7e3'; - yelp: '\f1e9'; - yoast: '\f2b1'; - youtube: '\f167'; - youtube_square: '\f431'; - zhihu: '\f63f'; + 500px: "\f26e"; + accessible: "\f368"; + accusoft: "\f369"; + acquisitions_incorporated: "\f6af"; + adn: "\f170"; + adversal: "\f36a"; + affiliatetheme: "\f36b"; + airbnb: "\f834"; + algolia: "\f36c"; + alipay: "\f642"; + amazon: "\f270"; + amazon_pay: "\f42c"; + amilia: "\f36d"; + android: "\f17b"; + angellist: "\f209"; + angrycreative: "\f36e"; + angular: "\f420"; + app_store: "\f36f"; + app_store_ios: "\f370"; + apper: "\f371"; + apple: "\f179"; + apple_pay: "\f415"; + artstation: "\f77a"; + asymmetrik: "\f372"; + atlassian: "\f77b"; + audible: "\f373"; + autoprefixer: "\f41c"; + avianex: "\f374"; + aviato: "\f421"; + aws: "\f375"; + bandcamp: "\f2d5"; + battle_net: "\f835"; + behance: "\f1b4"; + behance_square: "\f1b5"; + bimobject: "\f378"; + bitbucket: "\f171"; + bitcoin: "\f379"; + bity: "\f37a"; + black_tie: "\f27e"; + blackberry: "\f37b"; + blogger: "\f37c"; + blogger_b: "\f37d"; + bluetooth: "\f293"; + bluetooth_b: "\f294"; + bootstrap: "\f836"; + btc: "\f15a"; + buffer: "\f837"; + buromobelexperte: "\f37f"; + buy_n_large: "\f8a6"; + buysellads: "\f20d"; + canadian_maple_leaf: "\f785"; + cc_amazon_pay: "\f42d"; + cc_amex: "\f1f3"; + cc_apple_pay: "\f416"; + cc_diners_club: "\f24c"; + cc_discover: "\f1f2"; + cc_jcb: "\f24b"; + cc_mastercard: "\f1f1"; + cc_paypal: "\f1f4"; + cc_stripe: "\f1f5"; + cc_visa: "\f1f0"; + centercode: "\f380"; + centos: "\f789"; + chrome: "\f268"; + chromecast: "\f838"; + cloudflare: "\e07d"; + cloudscale: "\f383"; + cloudsmith: "\f384"; + cloudversify: "\f385"; + codepen: "\f1cb"; + codiepie: "\f284"; + confluence: "\f78d"; + connectdevelop: "\f20e"; + contao: "\f26d"; + cotton_bureau: "\f89e"; + cpanel: "\f388"; + creative_commons: "\f25e"; + creative_commons_by: "\f4e7"; + creative_commons_nc: "\f4e8"; + creative_commons_nc_eu: "\f4e9"; + creative_commons_nc_jp: "\f4ea"; + creative_commons_nd: "\f4eb"; + creative_commons_pd: "\f4ec"; + creative_commons_pd_alternate: "\f4ed"; + creative_commons_remix: "\f4ee"; + creative_commons_sa: "\f4ef"; + creative_commons_sampling: "\f4f0"; + creative_commons_sampling_plus: "\f4f1"; + creative_commons_share: "\f4f2"; + creative_commons_zero: "\f4f3"; + critical_role: "\f6c9"; + css3: "\f13c"; + css3_alternate: "\f38b"; + cuttlefish: "\f38c"; + d_and_d: "\f38d"; + d_and_d_beyond: "\f6ca"; + dailymotion: "\e052"; + dashcube: "\f210"; + deezer: "\e077"; + delicious: "\f1a5"; + deploydog: "\f38e"; + deskpro: "\f38f"; + dev: "\f6cc"; + deviantart: "\f1bd"; + dhl: "\f790"; + diaspora: "\f791"; + digg: "\f1a6"; + digital_ocean: "\f391"; + discord: "\f392"; + discourse: "\f393"; + dochub: "\f394"; + docker: "\f395"; + draft2digital: "\f396"; + dribbble: "\f17d"; + dribbble_square: "\f397"; + dropbox: "\f16b"; + drupal: "\f1a9"; + dyalog: "\f399"; + earlybirds: "\f39a"; + ebay: "\f4f4"; + edge: "\f282"; + edge_legacy: "\e078"; + elementor: "\f430"; + ello: "\f5f1"; + ember: "\f423"; + empire: "\f1d1"; + envira: "\f299"; + erlang: "\f39d"; + ethereum: "\f42e"; + etsy: "\f2d7"; + evernote: "\f839"; + expeditedssl: "\f23e"; + facebook: "\f09a"; + facebook_f: "\f39e"; + facebook_messenger: "\f39f"; + facebook_square: "\f082"; + fantasy_flight_games: "\f6dc"; + fedex: "\f797"; + fedora: "\f798"; + figma: "\f799"; + firefox: "\f269"; + firefox_browser: "\e007"; + first_order: "\f2b0"; + first_order_alternate: "\f50a"; + firstdraft: "\f3a1"; + flickr: "\f16e"; + flipboard: "\f44d"; + fly: "\f417"; + font_awesome: "\f2b4"; + font_awesome_alternate: "\f35c"; + font_awesome_flag: "\f425"; + fonticons: "\f280"; + fonticons_fi: "\f3a2"; + fort_awesome: "\f286"; + fort_awesome_alternate: "\f3a3"; + forumbee: "\f211"; + foursquare: "\f180"; + free_code_camp: "\f2c5"; + freebsd: "\f3a4"; + fulcrum: "\f50b"; + galactic_republic: "\f50c"; + galactic_senate: "\f50d"; + get_pocket: "\f265"; + gg: "\f260"; + gg_circle: "\f261"; + git: "\f1d3"; + git_alternate: "\f841"; + git_square: "\f1d2"; + github: "\f09b"; + github_alternate: "\f113"; + github_square: "\f092"; + gitkraken: "\f3a6"; + gitlab: "\f296"; + gitter: "\f426"; + glide: "\f2a5"; + glide_g: "\f2a6"; + gofore: "\f3a7"; + goodreads: "\f3a8"; + goodreads_g: "\f3a9"; + google: "\f1a0"; + google_drive: "\f3aa"; + google_pay: "\e079"; + google_play: "\f3ab"; + google_plus: "\f2b3"; + google_plus_g: "\f0d5"; + google_plus_square: "\f0d4"; + google_wallet: "\f1ee"; + gratipay: "\f184"; + grav: "\f2d6"; + gripfire: "\f3ac"; + grunt: "\f3ad"; + guilded: "\e07e"; + gulp: "\f3ae"; + hacker_news: "\f1d4"; + hacker_news_square: "\f3af"; + hackerrank: "\f5f7"; + hips: "\f452"; + hire_a_helper: "\f3b0"; + hive: "\e07f"; + hooli: "\f427"; + hornbill: "\f592"; + hotjar: "\f3b1"; + houzz: "\f27c"; + html5: "\f13b"; + hubspot: "\f3b2"; + ideal: "\e013"; + imdb: "\f2d8"; + innosoft: "\e080"; + instagram: "\f16d"; + instagram_square: "\e055"; + instalod: "\e081"; + intercom: "\f7af"; + internet_explorer: "\f26b"; + invision: "\f7b0"; + ioxhost: "\f208"; + itch_io: "\f83a"; + itunes: "\f3b4"; + itunes_note: "\f3b5"; + java: "\f4e4"; + jedi_order: "\f50e"; + jenkins: "\f3b6"; + jira: "\f7b1"; + joget: "\f3b7"; + joomla: "\f1aa"; + js: "\f3b8"; + js_square: "\f3b9"; + jsfiddle: "\f1cc"; + kaggle: "\f5fa"; + keybase: "\f4f5"; + keycdn: "\f3ba"; + kickstarter: "\f3bb"; + kickstarter_k: "\f3bc"; + korvue: "\f42f"; + laravel: "\f3bd"; + lastfm: "\f202"; + lastfm_square: "\f203"; + leanpub: "\f212"; + lesscss: "\f41d"; + linechat: "\f3c0"; + linkedin: "\f08c"; + linkedin_in: "\f0e1"; + linode: "\f2b8"; + linux: "\f17c"; + lyft: "\f3c3"; + magento: "\f3c4"; + mailchimp: "\f59e"; + mandalorian: "\f50f"; + markdown: "\f60f"; + mastodon: "\f4f6"; + maxcdn: "\f136"; + mdb: "\f8ca"; + medapps: "\f3c6"; + medium: "\f23a"; + medium_m: "\f3c7"; + medrt: "\f3c8"; + meetup: "\f2e0"; + megaport: "\f5a3"; + mendeley: "\f7b3"; + microblog: "\e01a"; + microsoft: "\f3ca"; + mix: "\f3cb"; + mixcloud: "\f289"; + mixer: "\e056"; + mizuni: "\f3cc"; + modx: "\f285"; + monero: "\f3d0"; + napster: "\f3d2"; + neos: "\f612"; + nimblr: "\f5a8"; + node: "\f419"; + node_js: "\f3d3"; + npm: "\f3d4"; + ns8: "\f3d5"; + nutritionix: "\f3d6"; + octopus_deploy: "\e082"; + odnoklassniki: "\f263"; + odnoklassniki_square: "\f264"; + old_republic: "\f510"; + opencart: "\f23d"; + openid: "\f19b"; + opera: "\f26a"; + optin_monster: "\f23c"; + orcid: "\f8d2"; + osi: "\f41a"; + page4: "\f3d7"; + pagelines: "\f18c"; + palfed: "\f3d8"; + patreon: "\f3d9"; + paypal: "\f1ed"; + penny_arcade: "\f704"; + perbyte: "\e083"; + periscope: "\f3da"; + phabricator: "\f3db"; + phoenix_framework: "\f3dc"; + phoenix_squadron: "\f511"; + php: "\f457"; + pied_piper: "\f2ae"; + pied_piper_alternate: "\f1a8"; + pied_piper_hat: "\f4e5"; + pied_piper_pp: "\f1a7"; + pied_piper_square: "\e01e"; + pinterest: "\f0d2"; + pinterest_p: "\f231"; + pinterest_square: "\f0d3"; + playstation: "\f3df"; + product_hunt: "\f288"; + pushed: "\f3e1"; + python: "\f3e2"; + qq: "\f1d6"; + quinscape: "\f459"; + quora: "\f2c4"; + r_project: "\f4f7"; + raspberry_pi: "\f7bb"; + ravelry: "\f2d9"; + react: "\f41b"; + reacteurope: "\f75d"; + readme: "\f4d5"; + rebel: "\f1d0"; + reddit: "\f1a1"; + reddit_alien: "\f281"; + reddit_square: "\f1a2"; + redhat: "\f7bc"; + redriver: "\f3e3"; + redyeti: "\f69d"; + renren: "\f18b"; + replyd: "\f3e6"; + researchgate: "\f4f8"; + resolving: "\f3e7"; + rev: "\f5b2"; + rocketchat: "\f3e8"; + rockrms: "\f3e9"; + rust: "\e07a"; + safari: "\f267"; + salesforce: "\f83b"; + sass: "\f41e"; + schlix: "\f3ea"; + scribd: "\f28a"; + searchengin: "\f3eb"; + sellcast: "\f2da"; + sellsy: "\f213"; + servicestack: "\f3ec"; + shirtsinbulk: "\f214"; + shopify: "\e057"; + shopware: "\f5b5"; + simplybuilt: "\f215"; + sistrix: "\f3ee"; + sith: "\f512"; + sketch: "\f7c6"; + skyatlas: "\f216"; + skype: "\f17e"; + slack: "\f198"; + slack_hash: "\f3ef"; + slideshare: "\f1e7"; + snapchat: "\f2ab"; + snapchat_ghost: "\f2ac"; + snapchat_square: "\f2ad"; + soundcloud: "\f1be"; + sourcetree: "\f7d3"; + speakap: "\f3f3"; + speaker_deck: "\f83c"; + spotify: "\f1bc"; + squarespace: "\f5be"; + stack_exchange: "\f18d"; + stack_overflow: "\f16c"; + stackpath: "\f842"; + staylinked: "\f3f5"; + steam: "\f1b6"; + steam_square: "\f1b7"; + steam_symbol: "\f3f6"; + sticker_mule: "\f3f7"; + strava: "\f428"; + stripe: "\f429"; + stripe_s: "\f42a"; + studiovinari: "\f3f8"; + stumbleupon: "\f1a4"; + stumbleupon_circle: "\f1a3"; + superpowers: "\f2dd"; + supple: "\f3f9"; + suse: "\f7d6"; + swift: "\f8e1"; + symfony: "\f83d"; + teamspeak: "\f4f9"; + telegram: "\f2c6"; + telegram_plane: "\f3fe"; + tencent_weibo: "\f1d5"; + themeco: "\f5c6"; + themeisle: "\f2b2"; + think_peaks: "\f731"; + tiktok: "\e07b"; + trade_federation: "\f513"; + trello: "\f181"; + tumblr: "\f173"; + tumblr_square: "\f174"; + twitch: "\f1e8"; + twitter: "\f099"; + twitter_square: "\f081"; + typo3: "\f42b"; + uber: "\f402"; + ubuntu: "\f7df"; + uikit: "\f403"; + umbraco: "\f8e8"; + uncharted: "\e084"; + uniregistry: "\f404"; + unity: "\e049"; + unsplash: "\e07c"; + untappd: "\f405"; + ups: "\f7e0"; + usb: "\f287"; + usps: "\f7e1"; + ussunnah: "\f407"; + vaadin: "\f408"; + viacoin: "\f237"; + viadeo: "\f2a9"; + viadeo_square: "\f2aa"; + viber: "\f409"; + vimeo: "\f40a"; + vimeo_square: "\f194"; + vimeo_v: "\f27d"; + vine: "\f1ca"; + vk: "\f189"; + vnv: "\f40b"; + vuejs: "\f41f"; + watchman_monitoring: "\e087"; + waze: "\f83f"; + weebly: "\f5cc"; + weibo: "\f18a"; + weixin: "\f1d7"; + whatsapp: "\f232"; + whatsapp_square: "\f40c"; + whmcs: "\f40d"; + wikipedia_w: "\f266"; + windows: "\f17a"; + wix: "\f5cf"; + wizards_of_the_coast: "\f730"; + wodu: "\e088"; + wolf_pack_battalion: "\f514"; + wordpress: "\f19a"; + wordpress_simple: "\f411"; + wpbeginner: "\f297"; + wpexplorer: "\f2de"; + wpforms: "\f298"; + wpressr: "\f3e4"; + xbox: "\f412"; + xing: "\f168"; + xing_square: "\f169"; + y_combinator: "\f23b"; + yahoo: "\f19e"; + yammer: "\f840"; + yandex: "\f413"; + yandex_international: "\f414"; + yarn: "\f7e3"; + yelp: "\f1e9"; + yoast: "\f2b1"; + youtube: "\f167"; + youtube_square: "\f431"; + zhihu: "\f63f"; }; @icon-brand-aliases-map: { - american_express: '\f1f3'; - american_express_card: '\f1f3'; - amex: '\f1f3'; - bitbucket_square: '\f171'; - bluetooth_alternative: '\f294'; - credit_card_amazon_pay: '\f42d'; - credit_card_american_express: '\f1f3'; - credit_card_diners_club: '\f24c'; - credit_card_discover: '\f1f2'; - credit_card_jcb: '\f24b'; - credit_card_mastercard: '\f1f1'; - credit_card_paypal: '\f1f4'; - credit_card_stripe: '\f1f5'; - credit_card_visa: '\f1f0'; - diners_club: '\f24c'; - diners_club_card: '\f24c'; - discover: '\f1f2'; - discover_card: '\f1f2'; - disk_outline: '\f369'; - dribble: '\f17d'; - eercast: '\f2da'; - envira_gallery: '\f299'; - fa: '\f2b4'; - facebook_official: '\f082'; - five_hundred_pixels: '\f26e'; - gittip: '\f184'; - google_plus_circle: '\f2b3'; - google_plus_official: '\f2b3'; - japan_credit_bureau: '\f24b'; - japan_credit_bureau_card: '\f24b'; - jcb: '\f24b'; - linkedin_square: '\f08c'; - mastercard: '\f1f1'; - mastercard_card: '\f1f1'; - microsoft_edge: '\f282'; - ms_edge: '\f282'; - new_pied_piper: '\f2ae'; - optinmonster: '\f23c'; - paypal_card: '\f1f4'; - pied_piper_hat: '\f2ae'; - pocket: '\f265'; - stripe_card: '\f1f5'; - theme_isle: '\f2b2'; - visa: '\f1f0'; - visa_card: '\f1f0'; - wechat: '\f1d7'; - wikipedia: '\f266'; - wordpress_beginner: '\f297'; - wordpress_forms: '\f298'; - yc: '\f23b'; - ycombinator: '\f23b'; - youtube_play: '\f167'; + american_express: "\f1f3"; + american_express_card: "\f1f3"; + amex: "\f1f3"; + bitbucket_square: "\f171"; + bluetooth_alternative: "\f294"; + credit_card_amazon_pay: "\f42d"; + credit_card_american_express: "\f1f3"; + credit_card_diners_club: "\f24c"; + credit_card_discover: "\f1f2"; + credit_card_jcb: "\f24b"; + credit_card_mastercard: "\f1f1"; + credit_card_paypal: "\f1f4"; + credit_card_stripe: "\f1f5"; + credit_card_visa: "\f1f0"; + diners_club: "\f24c"; + diners_club_card: "\f24c"; + discover: "\f1f2"; + discover_card: "\f1f2"; + disk_outline: "\f369"; + dribble: "\f17d"; + eercast: "\f2da"; + envira_gallery: "\f299"; + fa: "\f2b4"; + facebook_official: "\f082"; + five_hundred_pixels: "\f26e"; + gittip: "\f184"; + google_plus_circle: "\f2b3"; + google_plus_official: "\f2b3"; + japan_credit_bureau: "\f24b"; + japan_credit_bureau_card: "\f24b"; + jcb: "\f24b"; + linkedin_square: "\f08c"; + mastercard: "\f1f1"; + mastercard_card: "\f1f1"; + microsoft_edge: "\f282"; + ms_edge: "\f282"; + new_pied_piper: "\f2ae"; + optinmonster: "\f23c"; + paypal_card: "\f1f4"; + pied_piper_hat: "\f2ae"; + pocket: "\f265"; + stripe_card: "\f1f5"; + theme_isle: "\f2b2"; + visa: "\f1f0"; + visa_card: "\f1f0"; + wechat: "\f1d7"; + wikipedia: "\f266"; + wordpress_beginner: "\f297"; + wordpress_forms: "\f298"; + yc: "\f23b"; + ycombinator: "\f23b"; + youtube_play: "\f167"; }; @icon-duotone-map: { diff --git a/src/themes/default/elements/step.overrides b/src/themes/default/elements/step.overrides index ccd11f446b..78229c0a8a 100644 --- a/src/themes/default/elements/step.overrides +++ b/src/themes/default/elements/step.overrides @@ -4,10 +4,10 @@ @font-face { font-family: Step; - src: url(data:application/font-woff;base64,d09GRgABAAAAAAqgABAAAAAAEXwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAKhAAAABwAAAAcjOLzxEdERUYAAApoAAAAHAAAACAAJwAYT1MvMgAAAeQAAABEAAAAVj4wSUZjbWFwAAACPAAAAEYAAAFO0BkDx2N2dCAAAAfYAAAAFAAAABwGSf+UZnBnbQAAAoQAAAT5AAAJkYoKeDtnYXNwAAAKYAAAAAgAAAAIAAAAEGdseWYAAAf4AAAAuAAAALj5yjT+aGVhZAAAAWwAAAA1AAAANhGASlVoaGVhAAABpAAAACAAAAAkB3wDa2htdHgAAAIoAAAAFAAAABQMwgBDbG9jYQAAB+wAAAAMAAAADAA4AFxtYXhwAAABxAAAACAAAAAgAKgAR25hbWUAAAiwAAABgQAAAuggq9iKcG9zdAAACjQAAAAqAAAAPa7AQJpwcmVwAAAHgAAAAFYAAABWkqGa/3icY2BkYGAAYin+m+nx/DZfGeRZGEDgvOmMXhB9PyH33/+//9cz72KWA3I5GJhAogBAsAyTAAAAeJxjYGRgYE77n8YQw8Lw/+///8y7GIAiKIAVAKglBu0AAQAAAAUAFgABAAAAAAACAAYAEwBuAAAALQAcAAAAAHicY2BkPs84gYGVgYOpk+ksAwNDP4RmfMNgxMjBwMDEwMrMgBUEpLmmMDi8YHjByJz2P40hhlmOIRAozAiSAwAYDgv0BAAAAAAAAAABVAAABAAARgNt//14nN2MwQ3AIAwDzxQxBSMwCPtPwRbUCf10BSwlJ0u2gYdzHRGadkpfGWYzRYGlvSOwOMxUzba/Gt+A6XQ0fhLX6wWAUwawAAB4nJ1V2XbTVhSVPGRwEjpkoKAO19w4UOvKhCkYMGkqxXYhHRwIrQQdpAx05J3HPutrjkK7Vh/5tO59PSS0dK22LJbPvkdbZ9g650YcIyp9Gohr1KGSlwOprD2WSvdJXNd1L4+VDAZxXbYST0mbqJ0kSmrd7FAu8VjrKlknWCfj5SBWT1WeZ6AM4hQeZUlEG0QbqZcmSeKJ4yeJFmcQHyVJICWjEKfSyFBCNRrEUtWhTOnQq9cTcdNAykajHnVYVPdDxSfHNafUrANGKlc5whXr1Ua+G6cDL3uQxDrBs62HMR54rH6UKpCKkenIP3ZKTpSGgVRx1KFW4ugwk1/3kUwqzUCmjGJFpe6BuN39dNsWMT10Or4uSpVGqrq5ziia7dHxqIMoD9nG6aTc0Nn28OUZU1SrXXGz7UBmDVxKyWx0n0QAHSZS4+kBTjWcAqkZ9UfF2efPARLJXJSqPFUyh3oDmTM7e3Ex7W4nq7JwpJ8HMm92duOdh0OnV4d/0foXTOHMR4/iYn4+QvpQan4iTiSlRljM8qeGH3FXIEK5MYgLF8rgU4Q5dEXa2WZd47Ux9obP+UqpYT0J2uij+H4K/U4kKxxnUaP1SJzNY9d1rdxnUEu1uxc7Mq9DlSLu7wsLrjPnhGGeFgtVX5753gU0/waIZ/xA3jSFS/uWKUq0b5uiTLtoigrtElSlXTbFFO2KKaZpz5pihvYdU8zSnjMy4//L3OeR+xze8ZCb9l3kpn0PuWnfR27aD5CbViE3bR25aS8gN61GbtpVozp2BBoGaRdSFUHQNLL6YdxWm/VA1ow0fGlg8i5iyPrqREedtbXKH8V/deILB3Jpoqe7Iheb4i6v2xY+PN3uq4+aRt2w1fjGkfIwHkZ6HJrQWfnN4b/tTd0umu4yqjLoARVMCsAAZe1AAtM62wmk9Zqn+PIHYFyGeM5KQ7VUnzuGpu/leV/3sTnxvsftxi63XHd5CVnWDXJj9vDfUmSq6x/lLa1UJ0esKyePVWsYQyq8KLq+kpR7tLUbvyipsvJelNbK55OQmz2DG0Jbtu5hsCNMacolHl5TpSg91FKOskMsbynKPOCUiwtahsS4DnUPamvE6aF6GBsLIYahtL0QcEgpXRXftMp38R6ra9jo+MUV4el6chIRn+Iq+1HwVNdG/egO2rxm3TKDKVWqp/uMT7Gv2/ZRWWmkjrMXt1QH1zTrGjkV00/ka+B0bzho3QM9VHw0QSNVNcfoxihjNJY15d8EdDFWfsNo1WL7PdxPnaRVrLlLmOybE/fgtLv9Kvu1nFtG1v3XBr1t5IqfIzG/LQr8Owdit2QN1DuTgRgLyFnQGMYWJncYroNtxG32Pyan/9+GhUVyVzsau3nqw9WTUSV32fK4y012WdejNkfVThr7CI0tDzfm2OFyLLbEYEG2/sH/Me4Bd2lRAuDQyGWYiNp0oZ7q4eoeq7FtOFcSAXbNseN0AHoALkHfHLvW8wmA9dwj5y7AfXIIdsgh+JQcgs/IuQXwOTkEX5BDMCCHYJecOwAPyCF4SA7BHjkEj8jZBPiSHIKvyCGIySFIyLkN8JgcgifkEHxNDsE3Rq5OZP6WB9kA+s6im0CpnRoc2jhkRq5N2Ps8WPaBRWQfWkTqkZHrE+pTHiz1e4tI/cEiUn80cmNC/YkHS/3ZIlJ/sYjUZ8aXmSMprw6e844O/gSX6q1eAAAAS7gAyFJYsQEBjlm5CAAIAGMgsAEjRLADI3CyBCgJRVJEsgoCByqxBgFEsSQBiFFYsECIWLEGA0SxJgGIUVi4BACIWLEGAURZWVlZuAH/hbAEjbEFAEQAAHicY2BAA0YMRszc/zeCMAAQtAPhAAAAAAAAAAAAOABcAAEARgABA7oCqAAVABxAGQ8BAAEBQgACAQJqAAEAAWoAAABhFBcUAxIrARQHAQYiJwEmND8BNjIfAQE2Mh8BFgO6D/4UEC0Q/uMPD04QLRGoAXYQLhBODwIjFxD+FA8PAR0QLRFOEBCpAXgQEE4QAAAB//3/rwN0Ax4ADAASQA8AAQEKQwAAAAsARBUTAhErARQOASIuAj4BMh4BA251y+3NcQZ9wPq/gQFmeMh3d8nvyXd3yQAAAHicfZHLSsNAFIb/6UVrCyIKrg8IYhHSC7pxVSlUcOmi+7SmSUqaCZOp0NfxGdz6CLpz69atK9f+SUfBgk3I5Dv/ucyZMwAO8Q6F9XOJxLFCA0+OK9jFi+Mq9Q/HNTRUxXEdLXXieIf6teMmztWj4xaO1BcrqNoerXlZrWCFAzw6rmAfz46r1N8c18ifjus4Vi3HOzhQHcdNjNWt4xZO1SuG0MiwgkGMEBEsBGdU2/z30UUPF6QJI4SR66gYKXzOQbgumRGVnpz2gN+MVko1YERC9jDlugCGOluZOIysnA3b0u/2LmSyEk0pTv1E/KWNtMllIDOd2iBJtDfVTNushx83cEcxZAsJGzE0g3CZ+GZryhbXmGJxjLgMER7d4wAwDkwe61R6Xndr+g3FtCzhlwH3v3PL8cA2+1QtCxQTMuVEBKONcsK7KHxzKlPqHssGaWB8G9wXw8ofwr61M5kZvZCR21oyo+fB1DI4KvfIcIUO339vIrI2u+p0/sz5GyLHh70AAAB4nGNgYoAALgbsgBWIGRmYGJkYmTmTM1KTs3MTi7LZkjOLknNSATkPBkYAAAABAAH//wAPeJxjYGRgYOABYgEGCQYmIM0CxCCaEYIBBW0AQAAAAAEAAAAA3kztOAAAAADPNZiNAAAAAN9gbf4=) format('woff'); + src: url(data:application/font-woff;base64,d09GRgABAAAAAAqgABAAAAAAEXwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAKhAAAABwAAAAcjOLzxEdERUYAAApoAAAAHAAAACAAJwAYT1MvMgAAAeQAAABEAAAAVj4wSUZjbWFwAAACPAAAAEYAAAFO0BkDx2N2dCAAAAfYAAAAFAAAABwGSf+UZnBnbQAAAoQAAAT5AAAJkYoKeDtnYXNwAAAKYAAAAAgAAAAIAAAAEGdseWYAAAf4AAAAuAAAALj5yjT+aGVhZAAAAWwAAAA1AAAANhGASlVoaGVhAAABpAAAACAAAAAkB3wDa2htdHgAAAIoAAAAFAAAABQMwgBDbG9jYQAAB+wAAAAMAAAADAA4AFxtYXhwAAABxAAAACAAAAAgAKgAR25hbWUAAAiwAAABgQAAAuggq9iKcG9zdAAACjQAAAAqAAAAPa7AQJpwcmVwAAAHgAAAAFYAAABWkqGa/3icY2BkYGAAYin+m+nx/DZfGeRZGEDgvOmMXhB9PyH33/+//9cz72KWA3I5GJhAogBAsAyTAAAAeJxjYGRgYE77n8YQw8Lw/+///8y7GIAiKIAVAKglBu0AAQAAAAUAFgABAAAAAAACAAYAEwBuAAAALQAcAAAAAHicY2BkPs84gYGVgYOpk+ksAwNDP4RmfMNgxMjBwMDEwMrMgBUEpLmmMDi8YHjByJz2P40hhlmOIRAozAiSAwAYDgv0BAAAAAAAAAABVAAABAAARgNt//14nN2MwQ3AIAwDzxQxBSMwCPtPwRbUCf10BSwlJ0u2gYdzHRGadkpfGWYzRYGlvSOwOMxUzba/Gt+A6XQ0fhLX6wWAUwawAAB4nJ1V2XbTVhSVPGRwEjpkoKAO19w4UOvKhCkYMGkqxXYhHRwIrQQdpAx05J3HPutrjkK7Vh/5tO59PSS0dK22LJbPvkdbZ9g650YcIyp9Gohr1KGSlwOprD2WSvdJXNd1L4+VDAZxXbYST0mbqJ0kSmrd7FAu8VjrKlknWCfj5SBWT1WeZ6AM4hQeZUlEG0QbqZcmSeKJ4yeJFmcQHyVJICWjEKfSyFBCNRrEUtWhTOnQq9cTcdNAykajHnVYVPdDxSfHNafUrANGKlc5whXr1Ua+G6cDL3uQxDrBs62HMR54rH6UKpCKkenIP3ZKTpSGgVRx1KFW4ugwk1/3kUwqzUCmjGJFpe6BuN39dNsWMT10Or4uSpVGqrq5ziia7dHxqIMoD9nG6aTc0Nn28OUZU1SrXXGz7UBmDVxKyWx0n0QAHSZS4+kBTjWcAqkZ9UfF2efPARLJXJSqPFUyh3oDmTM7e3Ex7W4nq7JwpJ8HMm92duOdh0OnV4d/0foXTOHMR4/iYn4+QvpQan4iTiSlRljM8qeGH3FXIEK5MYgLF8rgU4Q5dEXa2WZd47Ux9obP+UqpYT0J2uij+H4K/U4kKxxnUaP1SJzNY9d1rdxnUEu1uxc7Mq9DlSLu7wsLrjPnhGGeFgtVX5753gU0/waIZ/xA3jSFS/uWKUq0b5uiTLtoigrtElSlXTbFFO2KKaZpz5pihvYdU8zSnjMy4//L3OeR+xze8ZCb9l3kpn0PuWnfR27aD5CbViE3bR25aS8gN61GbtpVozp2BBoGaRdSFUHQNLL6YdxWm/VA1ow0fGlg8i5iyPrqREedtbXKH8V/deILB3Jpoqe7Iheb4i6v2xY+PN3uq4+aRt2w1fjGkfIwHkZ6HJrQWfnN4b/tTd0umu4yqjLoARVMCsAAZe1AAtM62wmk9Zqn+PIHYFyGeM5KQ7VUnzuGpu/leV/3sTnxvsftxi63XHd5CVnWDXJj9vDfUmSq6x/lLa1UJ0esKyePVWsYQyq8KLq+kpR7tLUbvyipsvJelNbK55OQmz2DG0Jbtu5hsCNMacolHl5TpSg91FKOskMsbynKPOCUiwtahsS4DnUPamvE6aF6GBsLIYahtL0QcEgpXRXftMp38R6ra9jo+MUV4el6chIRn+Iq+1HwVNdG/egO2rxm3TKDKVWqp/uMT7Gv2/ZRWWmkjrMXt1QH1zTrGjkV00/ka+B0bzho3QM9VHw0QSNVNcfoxihjNJY15d8EdDFWfsNo1WL7PdxPnaRVrLlLmOybE/fgtLv9Kvu1nFtG1v3XBr1t5IqfIzG/LQr8Owdit2QN1DuTgRgLyFnQGMYWJncYroNtxG32Pyan/9+GhUVyVzsau3nqw9WTUSV32fK4y012WdejNkfVThr7CI0tDzfm2OFyLLbEYEG2/sH/Me4Bd2lRAuDQyGWYiNp0oZ7q4eoeq7FtOFcSAXbNseN0AHoALkHfHLvW8wmA9dwj5y7AfXIIdsgh+JQcgs/IuQXwOTkEX5BDMCCHYJecOwAPyCF4SA7BHjkEj8jZBPiSHIKvyCGIySFIyLkN8JgcgifkEHxNDsE3Rq5OZP6WB9kA+s6im0CpnRoc2jhkRq5N2Ps8WPaBRWQfWkTqkZHrE+pTHiz1e4tI/cEiUn80cmNC/YkHS/3ZIlJ/sYjUZ8aXmSMprw6e844O/gSX6q1eAAAAS7gAyFJYsQEBjlm5CAAIAGMgsAEjRLADI3CyBCgJRVJEsgoCByqxBgFEsSQBiFFYsECIWLEGA0SxJgGIUVi4BACIWLEGAURZWVlZuAH/hbAEjbEFAEQAAHicY2BAA0YMRszc/zeCMAAQtAPhAAAAAAAAAAAAOABcAAEARgABA7oCqAAVABxAGQ8BAAEBQgACAQJqAAEAAWoAAABhFBcUAxIrARQHAQYiJwEmND8BNjIfAQE2Mh8BFgO6D/4UEC0Q/uMPD04QLRGoAXYQLhBODwIjFxD+FA8PAR0QLRFOEBCpAXgQEE4QAAAB//3/rwN0Ax4ADAASQA8AAQEKQwAAAAsARBUTAhErARQOASIuAj4BMh4BA251y+3NcQZ9wPq/gQFmeMh3d8nvyXd3yQAAAHicfZHLSsNAFIb/6UVrCyIKrg8IYhHSC7pxVSlUcOmi+7SmSUqaCZOp0NfxGdz6CLpz69atK9f+SUfBgk3I5Dv/ucyZMwAO8Q6F9XOJxLFCA0+OK9jFi+Mq9Q/HNTRUxXEdLXXieIf6teMmztWj4xaO1BcrqNoerXlZrWCFAzw6rmAfz46r1N8c18ifjus4Vi3HOzhQHcdNjNWt4xZO1SuG0MiwgkGMEBEsBGdU2/z30UUPF6QJI4SR66gYKXzOQbgumRGVnpz2gN+MVko1YERC9jDlugCGOluZOIysnA3b0u/2LmSyEk0pTv1E/KWNtMllIDOd2iBJtDfVTNushx83cEcxZAsJGzE0g3CZ+GZryhbXmGJxjLgMER7d4wAwDkwe61R6Xndr+g3FtCzhlwH3v3PL8cA2+1QtCxQTMuVEBKONcsK7KHxzKlPqHssGaWB8G9wXw8ofwr61M5kZvZCR21oyo+fB1DI4KvfIcIUO339vIrI2u+p0/sz5GyLHh70AAAB4nGNgYoAALgbsgBWIGRmYGJkYmTmTM1KTs3MTi7LZkjOLknNSATkPBkYAAAABAAH//wAPeJxjYGRgYOABYgEGCQYmIM0CxCCaEYIBBW0AQAAAAAEAAAAA3kztOAAAAADPNZiNAAAAAN9gbf4=) format("woff"); } .ui.steps .step.completed > .icon::before, .ui.ordered.steps .step.completed::before { font-family: Step; - content: '\e800'; /* '' */ + content: "\e800"; /* '' */ } diff --git a/src/themes/default/globals/site.variables b/src/themes/default/globals/site.variables index cf5f0dd759..1543aa5659 100755 --- a/src/themes/default/globals/site.variables +++ b/src/themes/default/globals/site.variables @@ -28,8 +28,8 @@ @fonts: { @regularLatin: { font-family: @fontName; - src: url("@{fontPath}/@{fontFileNameLatin}-Regular.woff2") format('woff2') - if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameLatin}-Regular.woff") format('woff')); + src: url("@{fontPath}/@{fontFileNameLatin}-Regular.woff2") format("woff2") + if(@supportIE, e(",") url("@{fontPath}/@{fontFileNameLatin}-Regular.woff") format("woff")); font-style: normal; font-weight: @normal; font-display: @fontDisplay; @@ -38,8 +38,8 @@ }; @boldLatin: { font-family: @fontName; - src: url("@{fontPath}/@{fontFileNameLatin}-Bold.woff2") format('woff2') - if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameLatin}-Bold.woff") format('woff')); + src: url("@{fontPath}/@{fontFileNameLatin}-Bold.woff2") format("woff2") + if(@supportIE, e(",") url("@{fontPath}/@{fontFileNameLatin}-Bold.woff") format("woff")); font-style: normal; font-weight: @bold; font-display: @fontDisplay; @@ -48,8 +48,8 @@ }; @italicLatin: { font-family: @fontName; - src: url("@{fontPath}/@{fontFileNameLatin}-Italic.woff2") format('woff2') - if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameLatin}-Italic.woff") format('woff')); + src: url("@{fontPath}/@{fontFileNameLatin}-Italic.woff2") format("woff2") + if(@supportIE, e(",") url("@{fontPath}/@{fontFileNameLatin}-Italic.woff") format("woff")); font-style: italic; font-weight: @normal; font-display: @fontDisplay; @@ -58,8 +58,8 @@ }; @boldItalicLatin: { font-family: @fontName; - src: url("@{fontPath}/@{fontFileNameLatin}-BoldItalic.woff2") format('woff2') - if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameLatin}-BoldItalic.woff") format('woff')); + src: url("@{fontPath}/@{fontFileNameLatin}-BoldItalic.woff2") format("woff2") + if(@supportIE, e(",") url("@{fontPath}/@{fontFileNameLatin}-BoldItalic.woff") format("woff")); font-style: italic; font-weight: @bold; font-display: @fontDisplay; @@ -68,8 +68,8 @@ }; @regularSupplement: { font-family: @fontName; - src: url("@{fontPath}/@{fontFileNameSupplement}-Regular.woff2") format('woff2') - if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameSupplement}-Regular.woff") format('woff')); + src: url("@{fontPath}/@{fontFileNameSupplement}-Regular.woff2") format("woff2") + if(@supportIE, e(",") url("@{fontPath}/@{fontFileNameSupplement}-Regular.woff") format("woff")); font-style: normal; font-weight: @normal; font-display: @fontDisplay; @@ -78,8 +78,8 @@ }; @boldSupplement: { font-family: @fontName; - src: url("@{fontPath}/@{fontFileNameSupplement}-Bold.woff2") format('woff2') - if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameSupplement}-Bold.woff") format('woff')); + src: url("@{fontPath}/@{fontFileNameSupplement}-Bold.woff2") format("woff2") + if(@supportIE, e(",") url("@{fontPath}/@{fontFileNameSupplement}-Bold.woff") format("woff")); font-style: normal; font-weight: @bold; font-display: @fontDisplay; @@ -88,8 +88,8 @@ }; @italicSupplement: { font-family: @fontName; - src: url("@{fontPath}/@{fontFileNameSupplement}-Italic.woff2") format('woff2') - if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameSupplement}-Italic.woff") format('woff')); + src: url("@{fontPath}/@{fontFileNameSupplement}-Italic.woff2") format("woff2") + if(@supportIE, e(",") url("@{fontPath}/@{fontFileNameSupplement}-Italic.woff") format("woff")); font-style: italic; font-weight: @normal; font-display: @fontDisplay; @@ -98,8 +98,8 @@ }; @boldItalicSupplement: { font-family: @fontName; - src: url("@{fontPath}/@{fontFileNameSupplement}-BoldItalic.woff2") format('woff2') - if(@supportIE, e(',') url("@{fontPath}/@{fontFileNameSupplement}-BoldItalic.woff") format('woff')); + src: url("@{fontPath}/@{fontFileNameSupplement}-BoldItalic.woff2") format("woff2") + if(@supportIE, e(",") url("@{fontPath}/@{fontFileNameSupplement}-BoldItalic.woff") format("woff")); font-style: italic; font-weight: @bold; font-display: @fontDisplay; diff --git a/src/themes/default/modules/accordion.overrides b/src/themes/default/modules/accordion.overrides index dfd1a7eb0d..3d5fbb3bce 100644 --- a/src/themes/default/modules/accordion.overrides +++ b/src/themes/default/modules/accordion.overrides @@ -3,7 +3,7 @@ *******************************/ @font-face { font-family: Accordion; - src: url(data:application/font-woff;base64,d09GRk9UVE8AAAREAAsAAAAABkAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAC7AAAAQoAAAE/j/fxwUZGVE0AAAQUAAAAHAAAAByNqvxQR0RFRgAAA/gAAAAcAAAAIAAnABhPUy8yAAABYAAAAEIAAABgTadW5mNtYXAAAAKMAAAAUQAAAWAFZuKDaGVhZAAAAQgAAAAyAAAANg8zT8toaGVhAAABPAAAABoAAAAkApkA5mhtdHgAAAQwAAAAEwAAABYBtwASbWF4cAAAAVgAAAAGAAAABgAGUABuYW1lAAABpAAAAOYAAAGq/HAhWXBvc3QAAALgAAAADAAAACAAAwAAeJxjYGRgYADi8KWRsvH8Nl8ZuJkYQOD838XvQPT9hGxNIOXJsJ0xD0hzMIClARzsCcoAAHicY2BkYGB88P8BkGQAg+0wBhywAgBgjgOAAAAAAFAAAAYAAHicY2BmOM84gYGVgYHRhzGNgYHBHUp/ZZBkaGFABYwCSJyANNcUBgcGhg+3GB/8fwCUfMCgAFIDV6AAhIwARVcMJwAAeJx1jrFOwzAURU/SNKgFIVgQ6uSRKWolZjaQOnQBqQNb2lpRpMqW3HTowhew8U9I/BU37WOjtmyfd/3utYEbvsn4G7lxRsmtcc4FD8YD6U/GhfjNeMglybjU/DQeM+FHrqwY2QsnzrgSnTjnmnvjgfSpcSF+Nh5yx7txKf3DeMwjX31soqajJdCoqLs26HzFq9yz1WVS6Zv9tk5nmv8Vl0pI7CRHXThmVPofS592bQxuVk3PGF+Ohk6WRhHhGNO3eTbSVhy0z1mra6HV91YyxdC5xgevFL9xq4Obr+MixlDxC/HTOrsAAHicY2BgYGaAYBkGRgYQiALyGMF8FgY7IM3FwMHABISMDAofbv3/+/8/WJXCh5tgNuP/x2A+RC8bUC0DUB8rWIgNiJkY8AJm/NJDHgAALqoOxgAAAHicY2BmwAsAAH0ABHicPY7BSsNAEIZnkk2zlhg1JKAYxOrJi6RepMdC8SKefAJP4kVBzCtkNw7ZjeK1j9C38Rn6CO5CDrppigwMM8P/f/8gMAaIGL4+vD09PwJ6gLCwp2AnaM88e+7bQ0aRTxE7GcPRffJL9D9EIX2bW+sFOXzu5QD7OSwPcuA5Xiew05N8CIDDLiSQuTqGSVmU0/KqKG+Kxaxv8+llMURvHwBAgRJrfEeCEaLns9HdRxzHP/FqaV4yaptWK25SkwZKu4Va0rUSWjYVVbz7CqmqhZBSiNodqGqk5l2vFqrW1PJ4tWbGqZxVKa31htA6gmN2aTBwBobzuYsU1YYkGheyZVBqLjKKxn8cSmvuAAB4nGNgZGBg4AFiAQYJBiYgzQLEIJoRggEFbQBAAAAAAQAAAADeTO04AAAAAM/9o+4AAAAA32BrKXicY2BAAEYQsZ1BiIEBAAPpAMsA) format('woff'); + src: url(data:application/font-woff;base64,d09GRk9UVE8AAAREAAsAAAAABkAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAC7AAAAQoAAAE/j/fxwUZGVE0AAAQUAAAAHAAAAByNqvxQR0RFRgAAA/gAAAAcAAAAIAAnABhPUy8yAAABYAAAAEIAAABgTadW5mNtYXAAAAKMAAAAUQAAAWAFZuKDaGVhZAAAAQgAAAAyAAAANg8zT8toaGVhAAABPAAAABoAAAAkApkA5mhtdHgAAAQwAAAAEwAAABYBtwASbWF4cAAAAVgAAAAGAAAABgAGUABuYW1lAAABpAAAAOYAAAGq/HAhWXBvc3QAAALgAAAADAAAACAAAwAAeJxjYGRgYADi8KWRsvH8Nl8ZuJkYQOD838XvQPT9hGxNIOXJsJ0xD0hzMIClARzsCcoAAHicY2BkYGB88P8BkGQAg+0wBhywAgBgjgOAAAAAAFAAAAYAAHicY2BmOM84gYGVgYHRhzGNgYHBHUp/ZZBkaGFABYwCSJyANNcUBgcGhg+3GB/8fwCUfMCgAFIDV6AAhIwARVcMJwAAeJx1jrFOwzAURU/SNKgFIVgQ6uSRKWolZjaQOnQBqQNb2lpRpMqW3HTowhew8U9I/BU37WOjtmyfd/3utYEbvsn4G7lxRsmtcc4FD8YD6U/GhfjNeMglybjU/DQeM+FHrqwY2QsnzrgSnTjnmnvjgfSpcSF+Nh5yx7txKf3DeMwjX31soqajJdCoqLs26HzFq9yz1WVS6Zv9tk5nmv8Vl0pI7CRHXThmVPofS592bQxuVk3PGF+Ohk6WRhHhGNO3eTbSVhy0z1mra6HV91YyxdC5xgevFL9xq4Obr+MixlDxC/HTOrsAAHicY2BgYGaAYBkGRgYQiALyGMF8FgY7IM3FwMHABISMDAofbv3/+/8/WJXCh5tgNuP/x2A+RC8bUC0DUB8rWIgNiJkY8AJm/NJDHgAALqoOxgAAAHicY2BmwAsAAH0ABHicPY7BSsNAEIZnkk2zlhg1JKAYxOrJi6RepMdC8SKefAJP4kVBzCtkNw7ZjeK1j9C38Rn6CO5CDrppigwMM8P/f/8gMAaIGL4+vD09PwJ6gLCwp2AnaM88e+7bQ0aRTxE7GcPRffJL9D9EIX2bW+sFOXzu5QD7OSwPcuA5Xiew05N8CIDDLiSQuTqGSVmU0/KqKG+Kxaxv8+llMURvHwBAgRJrfEeCEaLns9HdRxzHP/FqaV4yaptWK25SkwZKu4Va0rUSWjYVVbz7CqmqhZBSiNodqGqk5l2vFqrW1PJ4tWbGqZxVKa31htA6gmN2aTBwBobzuYsU1YYkGheyZVBqLjKKxn8cSmvuAAB4nGNgZGBg4AFiAQYJBiYgzQLEIJoRggEFbQBAAAAAAQAAAADeTO04AAAAAM/9o+4AAAAA32BrKXicY2BAAEYQsZ1BiIEBAAPpAMsA) format("woff"); font-weight: normal; font-style: normal; } @@ -22,5 +22,5 @@ .ui.accordion .ui.header > .dropdown.icon::before, .ui.accordion .title > .dropdown.icon::before, .ui.accordion .accordion .title > .dropdown.icon::before { - content: '\f0da'/*rtl:'\f0d9'*/; + content: "\f0da"; } diff --git a/src/themes/default/modules/checkbox.overrides b/src/themes/default/modules/checkbox.overrides index 3a7930e3f3..fc5d3677f3 100644 --- a/src/themes/default/modules/checkbox.overrides +++ b/src/themes/default/modules/checkbox.overrides @@ -4,7 +4,7 @@ @font-face { font-family: Checkbox; - src: url(data:application/font-woff;base64,d09GRgABAAAAAAR8AA0AAAAABtwAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAEYAAAABoAAAAcgbCWJ0dERUYAAARIAAAAFwAAABgAJQAAT1MvMgAAAZgAAABAAAAAYA8SBD9jbWFwAAAB9AAAAFMAAAFc71zo6Wdhc3AAAARAAAAACAAAAAgAAAAQZ2x5ZgAAAlwAAADJAAABVHshwGBoZWFkAAABMAAAAC4AAAA2Bj3tWWhoZWEAAAFgAAAAHQAAACQHfQPIaG10eAAAAdgAAAAZAAAAHg56AEVsb2NhAAACSAAAABIAAAASAQoAjG1heHAAAAGAAAAAGAAAACAACgAvbmFtZQAAAygAAADnAAABp5xOC4Fwb3N0AAAEEAAAADAAAABaHRtWW3icY2BkYGBgYmDgqbAVjee3+crAzcIAAhc3XilHppl3M+cBKQ6QWgYGAAHnCVsAAHicY2BkYGA+8P8AAwMLAwgw72ZgZEAF7ABaJgNOAAAAeJxjYGRgYOBg0GUA0QwMTAxoAAAFtQA6eJxjYGYWYpzAwMrAwDST6QwDA0M/hGZ8zWDMyMmAChgF0AQYHBgYXjAxH/h/gMGB+QCIx8CIJKvAwAgAIOcKW3icY2GAAMZQCM0ExCwMDK7MqiAeAAqXAM4AAAB4nN2NwQ2AMAwDL00pHYJH52AQ9n/w6BbFCS9WwJFlO3IUwHl5YAQuJctcOaVdU6TGmGWt7IxJuHXnvmcrnLPR2GWb6NnF4rrwhT5U/o0Hf5EJGAAAAAAAAAgACAAQABgASABsAKoAAHichY09CsJAEIVndiG2gyQ7IASJIbHQyvyIiFhZpBE8iNsIeiVvYOFx7FPbKE6yUcHGgZ23jzd8DxDeowAWCv77Dez0Vd1hAIB+D714NMa0yNdYZrMhum0CfaWnT4bpeSPaEjOd8djIltTBNBlhSGzES3Jqb5oW6UOrE1WBL7/A73lxNBqnK8znZRbNWMgJET8qJhlWF1HV3zvXSceBSifawrTjTLrd0uI3c4lFu4UcYvbh1/KsIaodUayx7Kxr+wb8Y+EFi+YsngAAAHicfc5BSsNAGMXxf9q0agURFy50M3shlOoNikIXddGFa5N0SEvLDKQp2KUH8AxuXXkkz+JL+NYJJPzmffNmAlzxS0L7JJxzYx5wxoN5qPzZnMrv5hGXfJrHyr/NE+74UytJL5Rcdye0Huiue/NQ+aM5lV/NI27ZmsfKv8wTnvhhzgZPyY6CyAfMN77cFVFaaVBxZE9OraWvjvtc6Kn0jN40qDnoVyIBx4yMqWJfH7YxuFk27a2/dLVGxUpbQndYrrVnrazgpO9C1chSb7s3UymGxlU++Dpv/NoVJ7co4zLGkPEPj0VARQB4nGNgYsAPOBgYGJkYmBiZGZgZWRhZGdnYS/MyDYAAShuCaFcLCB9Iw/hGAOPdCuMAAQAB//8AD3icY2BkYGDgAWIBIGYCYhYIDQACOwAmAHicY2BgYGQAgns+by1A9MWNV8phNABQ5wfrAAA=) format('woff'); + src: url(data:application/font-woff;base64,d09GRgABAAAAAAR8AA0AAAAABtwAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAEYAAAABoAAAAcgbCWJ0dERUYAAARIAAAAFwAAABgAJQAAT1MvMgAAAZgAAABAAAAAYA8SBD9jbWFwAAAB9AAAAFMAAAFc71zo6Wdhc3AAAARAAAAACAAAAAgAAAAQZ2x5ZgAAAlwAAADJAAABVHshwGBoZWFkAAABMAAAAC4AAAA2Bj3tWWhoZWEAAAFgAAAAHQAAACQHfQPIaG10eAAAAdgAAAAZAAAAHg56AEVsb2NhAAACSAAAABIAAAASAQoAjG1heHAAAAGAAAAAGAAAACAACgAvbmFtZQAAAygAAADnAAABp5xOC4Fwb3N0AAAEEAAAADAAAABaHRtWW3icY2BkYGBgYmDgqbAVjee3+crAzcIAAhc3XilHppl3M+cBKQ6QWgYGAAHnCVsAAHicY2BkYGA+8P8AAwMLAwgw72ZgZEAF7ABaJgNOAAAAeJxjYGRgYOBg0GUA0QwMTAxoAAAFtQA6eJxjYGYWYpzAwMrAwDST6QwDA0M/hGZ8zWDMyMmAChgF0AQYHBgYXjAxH/h/gMGB+QCIx8CIJKvAwAgAIOcKW3icY2GAAMZQCM0ExCwMDK7MqiAeAAqXAM4AAAB4nN2NwQ2AMAwDL00pHYJH52AQ9n/w6BbFCS9WwJFlO3IUwHl5YAQuJctcOaVdU6TGmGWt7IxJuHXnvmcrnLPR2GWb6NnF4rrwhT5U/o0Hf5EJGAAAAAAAAAgACAAQABgASABsAKoAAHichY09CsJAEIVndiG2gyQ7IASJIbHQyvyIiFhZpBE8iNsIeiVvYOFx7FPbKE6yUcHGgZ23jzd8DxDeowAWCv77Dez0Vd1hAIB+D714NMa0yNdYZrMhum0CfaWnT4bpeSPaEjOd8djIltTBNBlhSGzES3Jqb5oW6UOrE1WBL7/A73lxNBqnK8znZRbNWMgJET8qJhlWF1HV3zvXSceBSifawrTjTLrd0uI3c4lFu4UcYvbh1/KsIaodUayx7Kxr+wb8Y+EFi+YsngAAAHicfc5BSsNAGMXxf9q0agURFy50M3shlOoNikIXddGFa5N0SEvLDKQp2KUH8AxuXXkkz+JL+NYJJPzmffNmAlzxS0L7JJxzYx5wxoN5qPzZnMrv5hGXfJrHyr/NE+74UytJL5Rcdye0Huiue/NQ+aM5lV/NI27ZmsfKv8wTnvhhzgZPyY6CyAfMN77cFVFaaVBxZE9OraWvjvtc6Kn0jN40qDnoVyIBx4yMqWJfH7YxuFk27a2/dLVGxUpbQndYrrVnrazgpO9C1chSb7s3UymGxlU++Dpv/NoVJ7co4zLGkPEPj0VARQB4nGNgYsAPOBgYGJkYmBiZGZgZWRhZGdnYS/MyDYAAShuCaFcLCB9Iw/hGAOPdCuMAAQAB//8AD3icY2BkYGDgAWIBIGYCYhYIDQACOwAmAHicY2BgYGQAgns+by1A9MWNV8phNABQ5wfrAAA=) format("woff"); } /* Checkmark */ @@ -16,14 +16,14 @@ /* Checked */ .ui.checkbox input:checked ~ .box::after, .ui.checkbox input:checked ~ label::after { - content: '\e800'; + content: "\e800"; } /* Indeterminate */ .ui.checkbox input:indeterminate ~ .box::after, .ui.checkbox input:indeterminate ~ label::after { font-size: 12px; - content: '\e801'; + content: "\e801"; } /* UTF Reference diff --git a/src/themes/default/modules/dropdown.overrides b/src/themes/default/modules/dropdown.overrides index c6cdda3621..05363752a6 100644 --- a/src/themes/default/modules/dropdown.overrides +++ b/src/themes/default/modules/dropdown.overrides @@ -5,7 +5,7 @@ /* Dropdown Carets */ @font-face { font-family: Dropdown; - src: url(data:application/font-woff;base64,d09GRk9UVE8AAASEAAsAAAAABwQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAC5AAAAU8AAAHrSr22AUZGVE0AAARQAAAAHAAAAByNrZ/TR0RFRgAABDQAAAAcAAAAIAAnABhPUy8yAAABYAAAAEIAAABgTadXCGNtYXAAAAKEAAAAVAAAAWQFcOKQaGVhZAAAAQgAAAAyAAAANg+j805oaGVhAAABPAAAABsAAAAkAwcBDWhtdHgAAARsAAAAFgAAAB4EAQASbWF4cAAAAVgAAAAGAAAABgAIUABuYW1lAAABpAAAAN8AAAG2rSbAM3Bvc3QAAALYAAAADAAAACAAAwAAeJxjYGRgYADiKjtG3nh+m68M3EwMIHCBwT0CRN9PyHYCUp6Mqox5QJqDASwNAMNOBrgAAHicY2BkYGB88P8BkFRlYACTjAyogB0AWWsDFgAAAFAAAAgAAHicY2Bm+Mg4gYGVgYHRhzGNgYHBHUp/ZZBkaGFABYwCSJyANNcUBgcGhg+3GB/8fwCUfMCgAFIDV6AAhIwAUbEMSQAAeJx1zTEKwkAUBNBJjIoKIggW2mwvBEVvIAgiNhY2VjEuQUh2YY2FeACPYOltvIH3cZJ8ywQS3p/d+QEwwAce/o8v9tDGUOzTU3GDXokD+ihuooeHuMX8Je5ijC9bXtCRP1T20Kcq+/RE3KAX4oDeipsYIRa3mD/FXSzxLtZeeGyR8bUwHGObWUvsoZHghhQRHEed3NLI1d+vyw/c43DleZErzBFixli768UaNQ9n9d11OedsJdxiyk0RZ40zsxPu/G7K7k66IUvW5CrRRrso12d1uqtNbHfcF+IHrnU+mwB4nGNgYGBmgGAZBkYGEIgD8hjBfBYGJyDNxcDBwASEjAwKH279//v/P1iVwofrYDbj/8dgPkQvGwMPkGRhYAWy2MHCbEDMxIAXMOOXHvIAAINhDt14nGNgZsALAAB9AAR4nE2Pv0rEQBCHZ3J7d4vGqEcOFaKC/zolZ6OWwmElNj6ClYWmyivcblyzE+RaK8EHsPMxBBtrwUdwA1fobpI7ZWBYfux8fD8ExgAR+fVVcpMkt4AeIAzLLSi3sdzxyt1WucqU31I+25iDtcvej1Kzh99V7+a19NoRPC1GAEsRvCxHwCP87MG8I7WgDRwWoAcrEMGmnT3YT+N0kB7G6Vk8PHLr2K0Tt04HB3FjMhUCQIESM7xDhfeYA3dcz5IZdOAcHuAD14MgeAu+zTNTRV5oTUR5obgZdwpVZFqQzEfKTiaE4JNwEralHGUuErnQNjE2oYxUwS0ldBTSxI3L7cOyKo60ib0lezSl1Rw+GXdq1pQiH03SdzKka4ymosLQTMcedSuIlEJUMqNcUi0jdIP5Ysb++leqLtSI/NWSTS0xq0WyYajQXPSVP/cLitO4NgB4nGNgZGBg4AFiAQYJBiYgzQLEIJoRggEFbQBAAAAAAQAAAADeTO04AAAAANAAR1gAAAAA32BrQnicY2BAAEYQVoVghu0MQgwMAAc/ARcAAA==) format('woff'); + src: url(data:application/font-woff;base64,d09GRk9UVE8AAASEAAsAAAAABwQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAC5AAAAU8AAAHrSr22AUZGVE0AAARQAAAAHAAAAByNrZ/TR0RFRgAABDQAAAAcAAAAIAAnABhPUy8yAAABYAAAAEIAAABgTadXCGNtYXAAAAKEAAAAVAAAAWQFcOKQaGVhZAAAAQgAAAAyAAAANg+j805oaGVhAAABPAAAABsAAAAkAwcBDWhtdHgAAARsAAAAFgAAAB4EAQASbWF4cAAAAVgAAAAGAAAABgAIUABuYW1lAAABpAAAAN8AAAG2rSbAM3Bvc3QAAALYAAAADAAAACAAAwAAeJxjYGRgYADiKjtG3nh+m68M3EwMIHCBwT0CRN9PyHYCUp6Mqox5QJqDASwNAMNOBrgAAHicY2BkYGB88P8BkFRlYACTjAyogB0AWWsDFgAAAFAAAAgAAHicY2Bm+Mg4gYGVgYHRhzGNgYHBHUp/ZZBkaGFABYwCSJyANNcUBgcGhg+3GB/8fwCUfMCgAFIDV6AAhIwAUbEMSQAAeJx1zTEKwkAUBNBJjIoKIggW2mwvBEVvIAgiNhY2VjEuQUh2YY2FeACPYOltvIH3cZJ8ywQS3p/d+QEwwAce/o8v9tDGUOzTU3GDXokD+ihuooeHuMX8Je5ijC9bXtCRP1T20Kcq+/RE3KAX4oDeipsYIRa3mD/FXSzxLtZeeGyR8bUwHGObWUvsoZHghhQRHEed3NLI1d+vyw/c43DleZErzBFixli768UaNQ9n9d11OedsJdxiyk0RZ40zsxPu/G7K7k66IUvW5CrRRrso12d1uqtNbHfcF+IHrnU+mwB4nGNgYGBmgGAZBkYGEIgD8hjBfBYGJyDNxcDBwASEjAwKH279//v/P1iVwofrYDbj/8dgPkQvGwMPkGRhYAWy2MHCbEDMxIAXMOOXHvIAAINhDt14nGNgZsALAAB9AAR4nE2Pv0rEQBCHZ3J7d4vGqEcOFaKC/zolZ6OWwmElNj6ClYWmyivcblyzE+RaK8EHsPMxBBtrwUdwA1fobpI7ZWBYfux8fD8ExgAR+fVVcpMkt4AeIAzLLSi3sdzxyt1WucqU31I+25iDtcvej1Kzh99V7+a19NoRPC1GAEsRvCxHwCP87MG8I7WgDRwWoAcrEMGmnT3YT+N0kB7G6Vk8PHLr2K0Tt04HB3FjMhUCQIESM7xDhfeYA3dcz5IZdOAcHuAD14MgeAu+zTNTRV5oTUR5obgZdwpVZFqQzEfKTiaE4JNwEralHGUuErnQNjE2oYxUwS0ldBTSxI3L7cOyKo60ib0lezSl1Rw+GXdq1pQiH03SdzKka4ymosLQTMcedSuIlEJUMqNcUi0jdIP5Ysb++leqLtSI/NWSTS0xq0WyYajQXPSVP/cLitO4NgB4nGNgZGBg4AFiAQYJBiYgzQLEIJoRggEFbQBAAAAAAQAAAADeTO04AAAAANAAR1gAAAAA32BrQnicY2BAAEYQVoVghu0MQgwMAAc/ARcAAA==) format("woff"); font-weight: normal; font-style: normal; } @@ -25,12 +25,12 @@ width: auto; } .ui.dropdown > .dropdown.icon::before { - content: '\f0d7'; + content: "\f0d7"; } /* Sub Menu */ .ui.dropdown .menu .item .dropdown.icon::before { - content: '\f0da'/*rtl:'\f0d9'*/; + content: "\f0da"; } .ui.dropdown .item .left.dropdown.icon::before, diff --git a/src/themes/famfamfam/elements/flag.overrides b/src/themes/famfamfam/elements/flag.overrides index ee8866080d..bbb254db31 100644 --- a/src/themes/famfamfam/elements/flag.overrides +++ b/src/themes/famfamfam/elements/flag.overrides @@ -26,7 +26,7 @@ i.flag:not(.icon) { /* Sprite */ i.flag:not(.icon)::before { display: inline-block; - content: ''; + content: ""; background: url(@spritePath) no-repeat -108px -1976px; width: @width; height: @height; diff --git a/src/themes/github/elements/icon.overrides b/src/themes/github/elements/icon.overrides index c05d3d9023..45c2e8beec 100644 --- a/src/themes/github/elements/icon.overrides +++ b/src/themes/github/elements/icon.overrides @@ -1,208 +1,208 @@ /* Octicons */ -.icon.alert::before { content: '\f02d' } /*  */ -.icon.alignment.align::before { content: '\f08a' } /*  */ -.icon.alignment.aligned.to::before { content: '\f08e' } /*  */ -.icon.alignment.unalign::before { content: '\f08b' } /*  */ -.icon.arrow.down::before { content: '\f03f' } /*  */ -.icon.arrow.left::before { content: '\f040' } /*  */ -.icon.arrow.right::before { content: '\f03e' } /*  */ -.icon.arrow.small.down::before { content: '\f0a0' } /*  */ -.icon.arrow.small.left::before { content: '\f0a1' } /*  */ -.icon.arrow.small.right::before { content: '\f071' } /*  */ -.icon.arrow.small.up::before { content: '\f09f' } /*  */ -.icon.arrow.up::before { content: '\f03d' } /*  */ -.icon.beer::before { content: '\f069' } /*  */ -.icon.book::before { content: '\f007' } /*  */ -.icon.bookmark::before { content: '\f07b' } /*  */ -.icon.briefcase::before { content: '\f0d3' } /*  */ -.icon.broadcast::before { content: '\f048' } /*  */ -.icon.browser::before { content: '\f0c5' } /*  */ -.icon.bug::before { content: '\f091' } /*  */ -.icon.calendar::before { content: '\f068' } /*  */ -.icon.check::before { content: '\f03a' } /*  */ -.icon.checklist::before { content: '\f076' } /*  */ -.icon.chevron.down::before { content: '\f0a3' } /*  */ -.icon.chevron.left::before { content: '\f0a4' } /*  */ -.icon.chevron.right::before { content: '\f078' } /*  */ -.icon.chevron.up::before { content: '\f0a2' } /*  */ -.icon.circle.slash::before { content: '\f084' } /*  */ -.icon.circuit.board::before { content: '\f0d6' } /*  */ -.icon.clippy::before { content: '\f035' } /*  */ -.icon.clock::before { content: '\f046' } /*  */ -.icon.cloud.download::before { content: '\f00b' } /*  */ -.icon.cloud.upload::before { content: '\f00c' } /*  */ -.icon.code::before { content: '\f05f' } /*  */ -.icon.color.mode::before { content: '\f065' } /*  */ +.icon.alert::before { content: "\f02d" } /*  */ +.icon.alignment.align::before { content: "\f08a" } /*  */ +.icon.alignment.aligned.to::before { content: "\f08e" } /*  */ +.icon.alignment.unalign::before { content: "\f08b" } /*  */ +.icon.arrow.down::before { content: "\f03f" } /*  */ +.icon.arrow.left::before { content: "\f040" } /*  */ +.icon.arrow.right::before { content: "\f03e" } /*  */ +.icon.arrow.small.down::before { content: "\f0a0" } /*  */ +.icon.arrow.small.left::before { content: "\f0a1" } /*  */ +.icon.arrow.small.right::before { content: "\f071" } /*  */ +.icon.arrow.small.up::before { content: "\f09f" } /*  */ +.icon.arrow.up::before { content: "\f03d" } /*  */ +.icon.beer::before { content: "\f069" } /*  */ +.icon.book::before { content: "\f007" } /*  */ +.icon.bookmark::before { content: "\f07b" } /*  */ +.icon.briefcase::before { content: "\f0d3" } /*  */ +.icon.broadcast::before { content: "\f048" } /*  */ +.icon.browser::before { content: "\f0c5" } /*  */ +.icon.bug::before { content: "\f091" } /*  */ +.icon.calendar::before { content: "\f068" } /*  */ +.icon.check::before { content: "\f03a" } /*  */ +.icon.checklist::before { content: "\f076" } /*  */ +.icon.chevron.down::before { content: "\f0a3" } /*  */ +.icon.chevron.left::before { content: "\f0a4" } /*  */ +.icon.chevron.right::before { content: "\f078" } /*  */ +.icon.chevron.up::before { content: "\f0a2" } /*  */ +.icon.circle.slash::before { content: "\f084" } /*  */ +.icon.circuit.board::before { content: "\f0d6" } /*  */ +.icon.clippy::before { content: "\f035" } /*  */ +.icon.clock::before { content: "\f046" } /*  */ +.icon.cloud.download::before { content: "\f00b" } /*  */ +.icon.cloud.upload::before { content: "\f00c" } /*  */ +.icon.code::before { content: "\f05f" } /*  */ +.icon.color.mode::before { content: "\f065" } /*  */ .icon.comment.add::before, -.icon.comment::before { content: '\f02b' } /*  */ -.icon.comment.discussion::before { content: '\f04f' } /*  */ -.icon.credit.card::before { content: '\f045' } /*  */ -.icon.dash::before { content: '\f0ca' } /*  */ -.icon.dashboard::before { content: '\f07d' } /*  */ -.icon.database::before { content: '\f096' } /*  */ -.icon.device.camera::before { content: '\f056' } /*  */ -.icon.device.camera.video::before { content: '\f057' } /*  */ -.icon.device.desktop::before { content: '\f27c' } /*  */ -.icon.device.mobile::before { content: '\f038' } /*  */ -.icon.diff::before { content: '\f04d' } /*  */ -.icon.diff.added::before { content: '\f06b' } /*  */ -.icon.diff.ignored::before { content: '\f099' } /*  */ -.icon.diff.modified::before { content: '\f06d' } /*  */ -.icon.diff.removed::before { content: '\f06c' } /*  */ -.icon.diff.renamed::before { content: '\f06e' } /*  */ -.icon.ellipsis::before { content: '\f09a' } /*  */ +.icon.comment::before { content: "\f02b" } /*  */ +.icon.comment.discussion::before { content: "\f04f" } /*  */ +.icon.credit.card::before { content: "\f045" } /*  */ +.icon.dash::before { content: "\f0ca" } /*  */ +.icon.dashboard::before { content: "\f07d" } /*  */ +.icon.database::before { content: "\f096" } /*  */ +.icon.device.camera::before { content: "\f056" } /*  */ +.icon.device.camera.video::before { content: "\f057" } /*  */ +.icon.device.desktop::before { content: "\f27c" } /*  */ +.icon.device.mobile::before { content: "\f038" } /*  */ +.icon.diff::before { content: "\f04d" } /*  */ +.icon.diff.added::before { content: "\f06b" } /*  */ +.icon.diff.ignored::before { content: "\f099" } /*  */ +.icon.diff.modified::before { content: "\f06d" } /*  */ +.icon.diff.removed::before { content: "\f06c" } /*  */ +.icon.diff.renamed::before { content: "\f06e" } /*  */ +.icon.ellipsis::before { content: "\f09a" } /*  */ .icon.eye.unwatch::before, .icon.eye.watch::before, -.icon.eye::before { content: '\f04e' } /*  */ -.icon.file.binary::before { content: '\f094' } /*  */ -.icon.file.code::before { content: '\f010' } /*  */ -.icon.file.directory::before { content: '\f016' } /*  */ -.icon.file.media::before { content: '\f012' } /*  */ -.icon.file.pdf::before { content: '\f014' } /*  */ -.icon.file.submodule::before { content: '\f017' } /*  */ -.icon.file.symlink.directory::before { content: '\f0b1' } /*  */ -.icon.file.symlink.file::before { content: '\f0b0' } /*  */ -.icon.file.text::before { content: '\f011' } /*  */ -.icon.file.zip::before { content: '\f013' } /*  */ -.icon.flame::before { content: '\f0d2' } /*  */ -.icon.fold::before { content: '\f0cc' } /*  */ -.icon.gear::before { content: '\f02f' } /*  */ -.icon.gift::before { content: '\f042' } /*  */ -.icon.gist::before { content: '\f00e' } /*  */ -.icon.gist.secret::before { content: '\f08c' } /*  */ +.icon.eye::before { content: "\f04e" } /*  */ +.icon.file.binary::before { content: "\f094" } /*  */ +.icon.file.code::before { content: "\f010" } /*  */ +.icon.file.directory::before { content: "\f016" } /*  */ +.icon.file.media::before { content: "\f012" } /*  */ +.icon.file.pdf::before { content: "\f014" } /*  */ +.icon.file.submodule::before { content: "\f017" } /*  */ +.icon.file.symlink.directory::before { content: "\f0b1" } /*  */ +.icon.file.symlink.file::before { content: "\f0b0" } /*  */ +.icon.file.text::before { content: "\f011" } /*  */ +.icon.file.zip::before { content: "\f013" } /*  */ +.icon.flame::before { content: "\f0d2" } /*  */ +.icon.fold::before { content: "\f0cc" } /*  */ +.icon.gear::before { content: "\f02f" } /*  */ +.icon.gift::before { content: "\f042" } /*  */ +.icon.gist::before { content: "\f00e" } /*  */ +.icon.gist.secret::before { content: "\f08c" } /*  */ .icon.git.branch.create::before, .icon.git.branch.delete::before, -.icon.git.branch::before { content: '\f020' } /*  */ -.icon.git.commit::before { content: '\f01f' } /*  */ -.icon.git.compare::before { content: '\f0ac' } /*  */ -.icon.git.merge::before { content: '\f023' } /*  */ +.icon.git.branch::before { content: "\f020" } /*  */ +.icon.git.commit::before { content: "\f01f" } /*  */ +.icon.git.compare::before { content: "\f0ac" } /*  */ +.icon.git.merge::before { content: "\f023" } /*  */ .icon.git.pull.request.abandoned::before, -.icon.git.pull.request::before { content: '\f009' } /*  */ -.icon.globe::before { content: '\f0b6' } /*  */ -.icon.graph::before { content: '\f043' } /*  */ -.icon.heart::before { content: '\2665' } /* ♥ */ -.icon.history::before { content: '\f07e' } /*  */ -.icon.home::before { content: '\f08d' } /*  */ -.icon.horizontal.rule::before { content: '\f070' } /*  */ -.icon.hourglass::before { content: '\f09e' } /*  */ -.icon.hubot::before { content: '\f09d' } /*  */ -.icon.inbox::before { content: '\f0cf' } /*  */ -.icon.info::before { content: '\f059' } /*  */ -.icon.issue.closed::before { content: '\f028' } /*  */ -.icon.issue.opened::before { content: '\f026' } /*  */ -.icon.issue.reopened::before { content: '\f027' } /*  */ -.icon.jersey::before { content: '\f019' } /*  */ -.icon.jump.down::before { content: '\f072' } /*  */ -.icon.jump.left::before { content: '\f0a5' } /*  */ -.icon.jump.right::before { content: '\f0a6' } /*  */ -.icon.jump.up::before { content: '\f073' } /*  */ -.icon.key::before { content: '\f049' } /*  */ -.icon.keyboard::before { content: '\f00d' } /*  */ -.icon.law::before { content: '\f0d8' } /*  */ -.icon.light.bulb::before { content: '\f000' } /*  */ -.icon.linkify::before { content: '\f05c' } /*  */ -.icon.linkify.external::before { content: '\f07f' } /*  */ -.icon.list.ordered::before { content: '\f062' } /*  */ -.icon.list.unordered::before { content: '\f061' } /*  */ -.icon.location::before { content: '\f060' } /*  */ +.icon.git.pull.request::before { content: "\f009" } /*  */ +.icon.globe::before { content: "\f0b6" } /*  */ +.icon.graph::before { content: "\f043" } /*  */ +.icon.heart::before { content: "\2665" } /* ♥ */ +.icon.history::before { content: "\f07e" } /*  */ +.icon.home::before { content: "\f08d" } /*  */ +.icon.horizontal.rule::before { content: "\f070" } /*  */ +.icon.hourglass::before { content: "\f09e" } /*  */ +.icon.hubot::before { content: "\f09d" } /*  */ +.icon.inbox::before { content: "\f0cf" } /*  */ +.icon.info::before { content: "\f059" } /*  */ +.icon.issue.closed::before { content: "\f028" } /*  */ +.icon.issue.opened::before { content: "\f026" } /*  */ +.icon.issue.reopened::before { content: "\f027" } /*  */ +.icon.jersey::before { content: "\f019" } /*  */ +.icon.jump.down::before { content: "\f072" } /*  */ +.icon.jump.left::before { content: "\f0a5" } /*  */ +.icon.jump.right::before { content: "\f0a6" } /*  */ +.icon.jump.up::before { content: "\f073" } /*  */ +.icon.key::before { content: "\f049" } /*  */ +.icon.keyboard::before { content: "\f00d" } /*  */ +.icon.law::before { content: "\f0d8" } /*  */ +.icon.light.bulb::before { content: "\f000" } /*  */ +.icon.linkify::before { content: "\f05c" } /*  */ +.icon.linkify.external::before { content: "\f07f" } /*  */ +.icon.list.ordered::before { content: "\f062" } /*  */ +.icon.list.unordered::before { content: "\f061" } /*  */ +.icon.location::before { content: "\f060" } /*  */ .icon.gist.private::before, .icon.mirror.private::before, .icon.git.fork.private::before, -.icon.lock::before { content: '\f06a' } /*  */ -.icon.logo.github::before { content: '\f092' } /*  */ -.icon.mail::before { content: '\f03b' } /*  */ -.icon.mail.read::before { content: '\f03c' } /*  */ -.icon.mail.reply::before { content: '\f051' } /*  */ -.icon.mark.github::before { content: '\f00a' } /*  */ -.icon.markdown::before { content: '\f0c9' } /*  */ -.icon.megaphone::before { content: '\f077' } /*  */ -.icon.mention::before { content: '\f0be' } /*  */ -.icon.microscope::before { content: '\f089' } /*  */ -.icon.milestone::before { content: '\f075' } /*  */ +.icon.lock::before { content: "\f06a" } /*  */ +.icon.logo.github::before { content: "\f092" } /*  */ +.icon.mail::before { content: "\f03b" } /*  */ +.icon.mail.read::before { content: "\f03c" } /*  */ +.icon.mail.reply::before { content: "\f051" } /*  */ +.icon.mark.github::before { content: "\f00a" } /*  */ +.icon.markdown::before { content: "\f0c9" } /*  */ +.icon.megaphone::before { content: "\f077" } /*  */ +.icon.mention::before { content: "\f0be" } /*  */ +.icon.microscope::before { content: "\f089" } /*  */ +.icon.milestone::before { content: "\f075" } /*  */ .icon.mirror.public::before, -.icon.mirror::before { content: '\f024' } /*  */ -.icon.mortar.board::before { content: '\f0d7' } /*  */ -.icon.move.down::before { content: '\f0a8' } /*  */ -.icon.move.left::before { content: '\f074' } /*  */ -.icon.move.right::before { content: '\f0a9' } /*  */ -.icon.move.up::before { content: '\f0a7' } /*  */ -.icon.mute::before { content: '\f080' } /*  */ -.icon.no.newline::before { content: '\f09c' } /*  */ -.icon.octoface::before { content: '\f008' } /*  */ -.icon.organization::before { content: '\f037' } /*  */ -.icon.package::before { content: '\f0c4' } /*  */ -.icon.paintcan::before { content: '\f0d1' } /*  */ -.icon.pencil::before { content: '\f058' } /*  */ +.icon.mirror::before { content: "\f024" } /*  */ +.icon.mortar.board::before { content: "\f0d7" } /*  */ +.icon.move.down::before { content: "\f0a8" } /*  */ +.icon.move.left::before { content: "\f074" } /*  */ +.icon.move.right::before { content: "\f0a9" } /*  */ +.icon.move.up::before { content: "\f0a7" } /*  */ +.icon.mute::before { content: "\f080" } /*  */ +.icon.no.newline::before { content: "\f09c" } /*  */ +.icon.octoface::before { content: "\f008" } /*  */ +.icon.organization::before { content: "\f037" } /*  */ +.icon.package::before { content: "\f0c4" } /*  */ +.icon.paintcan::before { content: "\f0d1" } /*  */ +.icon.pencil::before { content: "\f058" } /*  */ .icon.person.add::before, .icon.person.follow::before, -.icon.person::before { content: '\f018' } /*  */ -.icon.pin::before { content: '\f041' } /*  */ -.icon.playback.fast.forward::before { content: '\f0bd' } /*  */ -.icon.playback.pause::before { content: '\f0bb' } /*  */ -.icon.playback.play::before { content: '\f0bf' } /*  */ -.icon.playback.rewind::before { content: '\f0bc' } /*  */ -.icon.plug::before { content: '\f0d4' } /*  */ +.icon.person::before { content: "\f018" } /*  */ +.icon.pin::before { content: "\f041" } /*  */ +.icon.playback.fast.forward::before { content: "\f0bd" } /*  */ +.icon.playback.pause::before { content: "\f0bb" } /*  */ +.icon.playback.play::before { content: "\f0bf" } /*  */ +.icon.playback.rewind::before { content: "\f0bc" } /*  */ +.icon.plug::before { content: "\f0d4" } /*  */ .icon.repo.create::before, .icon.gist.new::before, .icon.file.directory.create::before, .icon.file.add::before, -.icon.plus::before { content: '\f05d' } /*  */ -.icon.podium::before { content: '\f0af' } /*  */ -.icon.primitive.dot::before { content: '\f052' } /*  */ -.icon.primitive.square::before { content: '\f053' } /*  */ -.icon.pulse::before { content: '\f085' } /*  */ -.icon.puzzle::before { content: '\f0c0' } /*  */ -.icon.question::before { content: '\f02c' } /*  */ -.icon.quote::before { content: '\f063' } /*  */ -.icon.radio.tower::before { content: '\f030' } /*  */ +.icon.plus::before { content: "\f05d" } /*  */ +.icon.podium::before { content: "\f0af" } /*  */ +.icon.primitive.dot::before { content: "\f052" } /*  */ +.icon.primitive.square::before { content: "\f053" } /*  */ +.icon.pulse::before { content: "\f085" } /*  */ +.icon.puzzle::before { content: "\f0c0" } /*  */ +.icon.question::before { content: "\f02c" } /*  */ +.icon.quote::before { content: "\f063" } /*  */ +.icon.radio.tower::before { content: "\f030" } /*  */ .icon.repo.delete::before, -.icon.repo::before { content: '\f001' } /*  */ -.icon.repo.clone::before { content: '\f04c' } /*  */ -.icon.repo.force.push::before { content: '\f04a' } /*  */ +.icon.repo::before { content: "\f001" } /*  */ +.icon.repo.clone::before { content: "\f04c" } /*  */ +.icon.repo.force.push::before { content: "\f04a" } /*  */ .icon.gist.fork::before, -.icon.repo.forked::before { content: '\f002' } /*  */ -.icon.repo.pull::before { content: '\f006' } /*  */ -.icon.repo.push::before { content: '\f005' } /*  */ -.icon.rocket::before { content: '\f033' } /*  */ -.icon.rss::before { content: '\f034' } /*  */ -.icon.ruby::before { content: '\f047' } /*  */ -.icon.screen.full::before { content: '\f066' } /*  */ -.icon.screen.normal::before { content: '\f067' } /*  */ +.icon.repo.forked::before { content: "\f002" } /*  */ +.icon.repo.pull::before { content: "\f006" } /*  */ +.icon.repo.push::before { content: "\f005" } /*  */ +.icon.rocket::before { content: "\f033" } /*  */ +.icon.rss::before { content: "\f034" } /*  */ +.icon.ruby::before { content: "\f047" } /*  */ +.icon.screen.full::before { content: "\f066" } /*  */ +.icon.screen.normal::before { content: "\f067" } /*  */ .icon.search.save::before, -.icon.search::before { content: '\f02e' } /*  */ -.icon.server::before { content: '\f097' } /*  */ -.icon.settings::before { content: '\f07c' } /*  */ +.icon.search::before { content: "\f02e" } /*  */ +.icon.server::before { content: "\f097" } /*  */ +.icon.settings::before { content: "\f07c" } /*  */ .icon.log.in::before, -.icon.sign.in::before { content: '\f036' } /*  */ +.icon.sign.in::before { content: "\f036" } /*  */ .icon.log.out::before, -.icon.sign.out::before { content: '\f032' } /*  */ -.icon.split::before { content: '\f0c6' } /*  */ -.icon.squirrel::before { content: '\f0b2' } /*  */ +.icon.sign.out::before { content: "\f032" } /*  */ +.icon.split::before { content: "\f0c6" } /*  */ +.icon.squirrel::before { content: "\f0b2" } /*  */ .icon.star.add::before, .icon.star.delete::before, -.icon.star::before { content: '\f02a' } /*  */ -.icon.steps::before { content: '\f0c7' } /*  */ -.icon.stop::before { content: '\f08f' } /*  */ +.icon.star::before { content: "\f02a" } /*  */ +.icon.steps::before { content: "\f0c7" } /*  */ +.icon.stop::before { content: "\f08f" } /*  */ .icon.repo.sync::before, -.icon.sync::before { content: '\f087' } /*  */ +.icon.sync::before { content: "\f087" } /*  */ .icon.tag.remove::before, .icon.tag.add::before, -.icon.tag::before { content: '\f015' } /*  */ -.icon.telescope::before { content: '\f088' } /*  */ -.icon.terminal::before { content: '\f0c8' } /*  */ -.icon.three.bars::before { content: '\f05e' } /*  */ -.icon.thumbsdown::before { content: '\f0db' } /*  */ -.icon.thumbsup::before { content: '\f0da' } /*  */ -.icon.tools::before { content: '\f031' } /*  */ -.icon.trashcan::before { content: '\f0d0' } /*  */ -.icon.triangle.down::before { content: '\f05b' } /*  */ -.icon.triangle.left::before { content: '\f044' } /*  */ -.icon.triangle.right::before { content: '\f05a' } /*  */ -.icon.triangle.up::before { content: '\f0aa' } /*  */ -.icon.unfold::before { content: '\f039' } /*  */ -.icon.unmute::before { content: '\f0ba' } /*  */ -.icon.versions::before { content: '\f064' } /*  */ +.icon.tag::before { content: "\f015" } /*  */ +.icon.telescope::before { content: "\f088" } /*  */ +.icon.terminal::before { content: "\f0c8" } /*  */ +.icon.three.bars::before { content: "\f05e" } /*  */ +.icon.thumbsdown::before { content: "\f0db" } /*  */ +.icon.thumbsup::before { content: "\f0da" } /*  */ +.icon.tools::before { content: "\f031" } /*  */ +.icon.trashcan::before { content: "\f0d0" } /*  */ +.icon.triangle.down::before { content: "\f05b" } /*  */ +.icon.triangle.left::before { content: "\f044" } /*  */ +.icon.triangle.right::before { content: "\f05a" } /*  */ +.icon.triangle.up::before { content: "\f0aa" } /*  */ +.icon.unfold::before { content: "\f039" } /*  */ +.icon.unmute::before { content: "\f0ba" } /*  */ +.icon.versions::before { content: "\f064" } /*  */ .icon.remove.close::before, -.icon.x::before { content: '\f081' } /*  */ -.icon.zap::before { content: '\26A1' } /* ⚡ */ +.icon.x::before { content: "\f081" } /*  */ +.icon.zap::before { content: "\26A1" } /* ⚡ */ diff --git a/src/themes/github/elements/icon.variables b/src/themes/github/elements/icon.variables index 87329a24ee..a17895263b 100644 --- a/src/themes/github/elements/icon.variables +++ b/src/themes/github/elements/icon.variables @@ -3,7 +3,7 @@ @fonts: { @solid: { font-family: @fontName; - src: url("@{fontPath}/@{fontName}.woff2") format('woff'); + src: url("@{fontPath}/@{fontName}.woff2") format("woff"); font-style: normal; font-weight: @normal; font-variant: normal; diff --git a/src/themes/github/modules/dropdown.overrides b/src/themes/github/modules/dropdown.overrides index 60327cc5fa..49b952dd00 100644 --- a/src/themes/github/modules/dropdown.overrides +++ b/src/themes/github/modules/dropdown.overrides @@ -10,7 +10,7 @@ /* Dropdown Carets */ @font-face { font-family: Dropdown; - src: url(data:application/font-woff;base64,d09GRk9UVE8AAASEAAsAAAAABwQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAC5AAAAU8AAAHrSr22AUZGVE0AAARQAAAAHAAAAByNrZ/TR0RFRgAABDQAAAAcAAAAIAAnABhPUy8yAAABYAAAAEIAAABgTadXCGNtYXAAAAKEAAAAVAAAAWQFcOKQaGVhZAAAAQgAAAAyAAAANg+j805oaGVhAAABPAAAABsAAAAkAwcBDWhtdHgAAARsAAAAFgAAAB4EAQASbWF4cAAAAVgAAAAGAAAABgAIUABuYW1lAAABpAAAAN8AAAG2rSbAM3Bvc3QAAALYAAAADAAAACAAAwAAeJxjYGRgYADiKjtG3nh+m68M3EwMIHCBwT0CRN9PyHYCUp6Mqox5QJqDASwNAMNOBrgAAHicY2BkYGB88P8BkFRlYACTjAyogB0AWWsDFgAAAFAAAAgAAHicY2Bm+Mg4gYGVgYHRhzGNgYHBHUp/ZZBkaGFABYwCSJyANNcUBgcGhg+3GB/8fwCUfMCgAFIDV6AAhIwAUbEMSQAAeJx1zTEKwkAUBNBJjIoKIggW2mwvBEVvIAgiNhY2VjEuQUh2YY2FeACPYOltvIH3cZJ8ywQS3p/d+QEwwAce/o8v9tDGUOzTU3GDXokD+ihuooeHuMX8Je5ijC9bXtCRP1T20Kcq+/RE3KAX4oDeipsYIRa3mD/FXSzxLtZeeGyR8bUwHGObWUvsoZHghhQRHEed3NLI1d+vyw/c43DleZErzBFixli768UaNQ9n9d11OedsJdxiyk0RZ40zsxPu/G7K7k66IUvW5CrRRrso12d1uqtNbHfcF+IHrnU+mwB4nGNgYGBmgGAZBkYGEIgD8hjBfBYGJyDNxcDBwASEjAwKH279//v/P1iVwofrYDbj/8dgPkQvGwMPkGRhYAWy2MHCbEDMxIAXMOOXHvIAAINhDt14nGNgZsALAAB9AAR4nE2Pv0rEQBCHZ3J7d4vGqEcOFaKC/zolZ6OWwmElNj6ClYWmyivcblyzE+RaK8EHsPMxBBtrwUdwA1fobpI7ZWBYfux8fD8ExgAR+fVVcpMkt4AeIAzLLSi3sdzxyt1WucqU31I+25iDtcvej1Kzh99V7+a19NoRPC1GAEsRvCxHwCP87MG8I7WgDRwWoAcrEMGmnT3YT+N0kB7G6Vk8PHLr2K0Tt04HB3FjMhUCQIESM7xDhfeYA3dcz5IZdOAcHuAD14MgeAu+zTNTRV5oTUR5obgZdwpVZFqQzEfKTiaE4JNwEralHGUuErnQNjE2oYxUwS0ldBTSxI3L7cOyKo60ib0lezSl1Rw+GXdq1pQiH03SdzKka4ymosLQTMcedSuIlEJUMqNcUi0jdIP5Ysb++leqLtSI/NWSTS0xq0WyYajQXPSVP/cLitO4NgB4nGNgZGBg4AFiAQYJBiYgzQLEIJoRggEFbQBAAAAAAQAAAADeTO04AAAAANAAR1gAAAAA32BrQnicY2BAAEYQVoVghu0MQgwMAAc/ARcAAA==) format('woff'); + src: url(data:application/font-woff;base64,d09GRk9UVE8AAASEAAsAAAAABwQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAC5AAAAU8AAAHrSr22AUZGVE0AAARQAAAAHAAAAByNrZ/TR0RFRgAABDQAAAAcAAAAIAAnABhPUy8yAAABYAAAAEIAAABgTadXCGNtYXAAAAKEAAAAVAAAAWQFcOKQaGVhZAAAAQgAAAAyAAAANg+j805oaGVhAAABPAAAABsAAAAkAwcBDWhtdHgAAARsAAAAFgAAAB4EAQASbWF4cAAAAVgAAAAGAAAABgAIUABuYW1lAAABpAAAAN8AAAG2rSbAM3Bvc3QAAALYAAAADAAAACAAAwAAeJxjYGRgYADiKjtG3nh+m68M3EwMIHCBwT0CRN9PyHYCUp6Mqox5QJqDASwNAMNOBrgAAHicY2BkYGB88P8BkFRlYACTjAyogB0AWWsDFgAAAFAAAAgAAHicY2Bm+Mg4gYGVgYHRhzGNgYHBHUp/ZZBkaGFABYwCSJyANNcUBgcGhg+3GB/8fwCUfMCgAFIDV6AAhIwAUbEMSQAAeJx1zTEKwkAUBNBJjIoKIggW2mwvBEVvIAgiNhY2VjEuQUh2YY2FeACPYOltvIH3cZJ8ywQS3p/d+QEwwAce/o8v9tDGUOzTU3GDXokD+ihuooeHuMX8Je5ijC9bXtCRP1T20Kcq+/RE3KAX4oDeipsYIRa3mD/FXSzxLtZeeGyR8bUwHGObWUvsoZHghhQRHEed3NLI1d+vyw/c43DleZErzBFixli768UaNQ9n9d11OedsJdxiyk0RZ40zsxPu/G7K7k66IUvW5CrRRrso12d1uqtNbHfcF+IHrnU+mwB4nGNgYGBmgGAZBkYGEIgD8hjBfBYGJyDNxcDBwASEjAwKH279//v/P1iVwofrYDbj/8dgPkQvGwMPkGRhYAWy2MHCbEDMxIAXMOOXHvIAAINhDt14nGNgZsALAAB9AAR4nE2Pv0rEQBCHZ3J7d4vGqEcOFaKC/zolZ6OWwmElNj6ClYWmyivcblyzE+RaK8EHsPMxBBtrwUdwA1fobpI7ZWBYfux8fD8ExgAR+fVVcpMkt4AeIAzLLSi3sdzxyt1WucqU31I+25iDtcvej1Kzh99V7+a19NoRPC1GAEsRvCxHwCP87MG8I7WgDRwWoAcrEMGmnT3YT+N0kB7G6Vk8PHLr2K0Tt04HB3FjMhUCQIESM7xDhfeYA3dcz5IZdOAcHuAD14MgeAu+zTNTRV5oTUR5obgZdwpVZFqQzEfKTiaE4JNwEralHGUuErnQNjE2oYxUwS0ldBTSxI3L7cOyKo60ib0lezSl1Rw+GXdq1pQiH03SdzKka4ymosLQTMcedSuIlEJUMqNcUi0jdIP5Ysb++leqLtSI/NWSTS0xq0WyYajQXPSVP/cLitO4NgB4nGNgZGBg4AFiAQYJBiYgzQLEIJoRggEFbQBAAAAAAQAAAADeTO04AAAAANAAR1gAAAAA32BrQnicY2BAAEYQVoVghu0MQgwMAAc/ARcAAA==) format("woff"); font-weight: normal; font-style: normal; } @@ -30,12 +30,12 @@ width: auto; } .ui.dropdown > .dropdown.icon::before { - content: '\f0d7'; + content: "\f0d7"; } /* Sub Menu */ .ui.dropdown .menu .item .dropdown.icon::before { - content: '\f0da'/*rtl:'\f0d9'*/; + content: "\f0da"; } .ui.dropdown .item .left.dropdown.icon::before, diff --git a/src/themes/instagram/views/card.overrides b/src/themes/instagram/views/card.overrides index f34f1cfed1..cc844c6604 100644 --- a/src/themes/instagram/views/card.overrides +++ b/src/themes/instagram/views/card.overrides @@ -2,7 +2,7 @@ Overrides *******************************/ -@import (css) url('https://fonts.googleapis.com/css2?family=Montserrat'); +@import (css) url("https://fonts.googleapis.com/css2?family=Montserrat"); .ui.cards > .card, .ui.card { diff --git a/src/themes/material/collections/menu.overrides b/src/themes/material/collections/menu.overrides index 4720791230..4c01fa2652 100644 --- a/src/themes/material/collections/menu.overrides +++ b/src/themes/material/collections/menu.overrides @@ -1 +1 @@ -@import (css) url('https://fonts.googleapis.com/css2?family=Roboto'); +@import (css) url("https://fonts.googleapis.com/css2?family=Roboto"); diff --git a/src/themes/material/elements/button.overrides b/src/themes/material/elements/button.overrides index f82e9f537a..a4d3fdc883 100644 --- a/src/themes/material/elements/button.overrides +++ b/src/themes/material/elements/button.overrides @@ -1,4 +1,4 @@ -@import (css) url('https://fonts.googleapis.com/css2?family=Roboto'); +@import (css) url("https://fonts.googleapis.com/css2?family=Roboto"); .ui.primary.button:hover { box-shadow: diff --git a/src/themes/material/elements/header.overrides b/src/themes/material/elements/header.overrides index 368a67c024..fd3d3c7ace 100644 --- a/src/themes/material/elements/header.overrides +++ b/src/themes/material/elements/header.overrides @@ -2,7 +2,7 @@ Overrides *******************************/ -@import (css) url('https://fonts.googleapis.com/css2?family=Roboto'); +@import (css) url("https://fonts.googleapis.com/css2?family=Roboto"); h1.ui.header, .ui.huge.header { diff --git a/src/themes/material/elements/icon.overrides b/src/themes/material/elements/icon.overrides index 6960295966..b7906317a0 100644 --- a/src/themes/material/elements/icon.overrides +++ b/src/themes/material/elements/icon.overrides @@ -1,934 +1,934 @@ /* Material Design Icons */ -i.icon.threed.rotation::before { content: '\e84d' } -i.icon.ac.unit::before { content: '\eb3b' } -i.icon.access.alarm::before { content: '\e190' } -i.icon.access.alarms::before { content: '\e191' } -i.icon.access.time::before { content: '\e192' } -i.icon.accessibility::before { content: '\e84e' } -i.icon.accessible::before { content: '\e914' } -i.icon.account.balance::before { content: '\e84f' } -i.icon.account.balance.wallet::before { content: '\e850' } -i.icon.account.box::before { content: '\e851' } -i.icon.account.circle::before { content: '\e853' } -i.icon.adb::before { content: '\e60e' } -i.icon.add::before { content: '\e145' } -i.icon.add.a.photo::before { content: '\e439' } -i.icon.add.alarm::before { content: '\e193' } -i.icon.add.alert::before { content: '\e003' } -i.icon.add.box::before { content: '\e146' } -i.icon.add.circle::before { content: '\e147' } -i.icon.add.circle.outline::before { content: '\e148' } -i.icon.add.location::before { content: '\e567' } -i.icon.add.shopping.cart::before { content: '\e854' } -i.icon.add.to.photos::before { content: '\e39d' } -i.icon.add.to.queue::before { content: '\e05c' } -i.icon.adjust::before { content: '\e39e' } -i.icon.airline.seat.flat::before { content: '\e630' } -i.icon.airline.seat.flat.angled::before { content: '\e631' } -i.icon.airline.seat.individual.suite::before { content: '\e632' } -i.icon.airline.seat.legroom.extra::before { content: '\e633' } -i.icon.airline.seat.legroom.normal::before { content: '\e634' } -i.icon.airline.seat.legroom.reduced::before { content: '\e635' } -i.icon.airline.seat.recline.extra::before { content: '\e636' } -i.icon.airline.seat.recline.normal::before { content: '\e637' } -i.icon.airplanemode.active::before { content: '\e195' } -i.icon.airplanemode.inactive::before { content: '\e194' } -i.icon.airplay::before { content: '\e055' } -i.icon.airport.shuttle::before { content: '\eb3c' } -i.icon.alarm::before { content: '\e855' } -i.icon.alarm.add::before { content: '\e856' } -i.icon.alarm.off::before { content: '\e857' } -i.icon.alarm.on::before { content: '\e858' } -i.icon.album::before { content: '\e019' } -i.icon.all.inclusive::before { content: '\eb3d' } -i.icon.all.out::before { content: '\e90b' } -i.icon.android::before { content: '\e859' } -i.icon.announcement::before { content: '\e85a' } -i.icon.apps::before { content: '\e5c3' } -i.icon.archive::before { content: '\e149' } -i.icon.arrow.back::before { content: '\e5c4' } -i.icon.arrow.downward::before { content: '\e5db' } -i.icon.arrow.drop.down::before { content: '\e5c5' } -i.icon.arrow.drop.down.circle::before { content: '\e5c6' } -i.icon.arrow.drop.up::before { content: '\e5c7' } -i.icon.arrow.forward::before { content: '\e5c8' } -i.icon.arrow.upward::before { content: '\e5d8' } -i.icon.art.track::before { content: '\e060' } -i.icon.aspect.ratio::before { content: '\e85b' } -i.icon.assessment::before { content: '\e85c' } -i.icon.assignment::before { content: '\e85d' } -i.icon.assignment.ind::before { content: '\e85e' } -i.icon.assignment.late::before { content: '\e85f' } -i.icon.assignment.return::before { content: '\e860' } -i.icon.assignment.returned::before { content: '\e861' } -i.icon.assignment.turned.in::before { content: '\e862' } -i.icon.assistant::before { content: '\e39f' } -i.icon.assistant.photo::before { content: '\e3a0' } -i.icon.attach.file::before { content: '\e226' } -i.icon.attach.money::before { content: '\e227' } -i.icon.attachment::before { content: '\e2bc' } -i.icon.audiotrack::before { content: '\e3a1' } -i.icon.autorenew::before { content: '\e863' } -i.icon.av.timer::before { content: '\e01b' } -i.icon.backspace::before { content: '\e14a' } -i.icon.backup::before { content: '\e864' } -i.icon.battery.alert::before { content: '\e19c' } -i.icon.battery.charging.full::before { content: '\e1a3' } -i.icon.battery.full::before { content: '\e1a4' } -i.icon.battery.std::before { content: '\e1a5' } -i.icon.battery.unknown::before { content: '\e1a6' } -i.icon.beach.access::before { content: '\eb3e' } -i.icon.beenhere::before { content: '\e52d' } -i.icon.block::before { content: '\e14b' } -i.icon.bluetooth::before { content: '\e1a7' } -i.icon.bluetooth.audio::before { content: '\e60f' } -i.icon.bluetooth.connected::before { content: '\e1a8' } -i.icon.bluetooth.disabled::before { content: '\e1a9' } -i.icon.bluetooth.searching::before { content: '\e1aa' } -i.icon.blur.circular::before { content: '\e3a2' } -i.icon.blur.linear::before { content: '\e3a3' } -i.icon.blur.off::before { content: '\e3a4' } -i.icon.blur.on::before { content: '\e3a5' } -i.icon.book::before { content: '\e865' } -i.icon.bookmark::before { content: '\e866' } -i.icon.bookmark.border::before { content: '\e867' } -i.icon.border.all::before { content: '\e228' } -i.icon.border.bottom::before { content: '\e229' } -i.icon.border.clear::before { content: '\e22a' } -i.icon.border.color::before { content: '\e22b' } -i.icon.border.horizontal::before { content: '\e22c' } -i.icon.border.inner::before { content: '\e22d' } -i.icon.border.left::before { content: '\e22e' } -i.icon.border.outer::before { content: '\e22f' } -i.icon.border.right::before { content: '\e230' } -i.icon.border.style::before { content: '\e231' } -i.icon.border.top::before { content: '\e232' } -i.icon.border.vertical::before { content: '\e233' } -i.icon.branding.watermark::before { content: '\e06b' } -i.icon.brightness.one::before { content: '\e3a6' } -i.icon.brightness.two::before { content: '\e3a7' } -i.icon.brightness.three::before { content: '\e3a8' } -i.icon.brightness.four::before { content: '\e3a9' } -i.icon.brightness.five::before { content: '\e3aa' } -i.icon.brightness.six::before { content: '\e3ab' } -i.icon.brightness.seven::before { content: '\e3ac' } -i.icon.brightness.auto::before { content: '\e1ab' } -i.icon.brightness.high::before { content: '\e1ac' } -i.icon.brightness.low::before { content: '\e1ad' } -i.icon.brightness.medium::before { content: '\e1ae' } -i.icon.broken.image::before { content: '\e3ad' } -i.icon.brush::before { content: '\e3ae' } -i.icon.bubble.chart::before { content: '\e6dd' } -i.icon.bug.report::before { content: '\e868' } -i.icon.build::before { content: '\e869' } -i.icon.burst.mode::before { content: '\e43c' } -i.icon.business::before { content: '\e0af' } -i.icon.business.center::before { content: '\eb3f' } -i.icon.cached::before { content: '\e86a' } -i.icon.cake::before { content: '\e7e9' } -i.icon.call::before { content: '\e0b0' } -i.icon.call.end::before { content: '\e0b1' } -i.icon.call.made::before { content: '\e0b2' } -i.icon.call.merge::before { content: '\e0b3' } -i.icon.call.missed::before { content: '\e0b4' } -i.icon.call.missed.outgoing::before { content: '\e0e4' } -i.icon.call.received::before { content: '\e0b5' } -i.icon.call.split::before { content: '\e0b6' } -i.icon.call.to.action::before { content: '\e06c' } -i.icon.camera::before { content: '\e3af' } -i.icon.camera.alt::before { content: '\e3b0' } -i.icon.camera.enhance::before { content: '\e8fc' } -i.icon.camera.front::before { content: '\e3b1' } -i.icon.camera.rear::before { content: '\e3b2' } -i.icon.camera.roll::before { content: '\e3b3' } -i.icon.cancel::before { content: '\e5c9' } -i.icon.card.giftcard::before { content: '\e8f6' } -i.icon.card.membership::before { content: '\e8f7' } -i.icon.card.travel::before { content: '\e8f8' } -i.icon.casino::before { content: '\eb40' } -i.icon.cast::before { content: '\e307' } -i.icon.cast.connected::before { content: '\e308' } -i.icon.center.focus.strong::before { content: '\e3b4' } -i.icon.center.focus.weak::before { content: '\e3b5' } -i.icon.change.history::before { content: '\e86b' } -i.icon.chat::before { content: '\e0b7' } -i.icon.chat.bubble::before { content: '\e0ca' } -i.icon.chat.bubble.outline::before { content: '\e0cb' } -i.icon.check::before { content: '\e5ca' } -i.icon.check.box::before { content: '\e834' } -i.icon.check.box.outline.blank::before { content: '\e835' } -i.icon.check.circle::before { content: '\e86c' } -i.icon.chevron.left::before { content: '\e5cb' } -i.icon.chevron.right::before { content: '\e5cc' } -i.icon.child.care::before { content: '\eb41' } -i.icon.child.friendly::before { content: '\eb42' } -i.icon.chrome.reader.mode::before { content: '\e86d' } -i.icon.class::before { content: '\e86e' } -i.icon.clear::before { content: '\e14c' } -i.icon.clear.all::before { content: '\e0b8' } -i.icon.close::before { content: '\e5cd' } -i.icon.closed.caption::before { content: '\e01c' } -i.icon.cloud::before { content: '\e2bd' } -i.icon.cloud.circle::before { content: '\e2be' } -i.icon.cloud.done::before { content: '\e2bf' } -i.icon.cloud.download::before { content: '\e2c0' } -i.icon.cloud.off::before { content: '\e2c1' } -i.icon.cloud.queue::before { content: '\e2c2' } -i.icon.cloud.upload::before { content: '\e2c3' } -i.icon.code::before { content: '\e86f' } -i.icon.collections::before { content: '\e3b6' } -i.icon.collections.bookmark::before { content: '\e431' } -i.icon.color.lens::before { content: '\e3b7' } -i.icon.colorize::before { content: '\e3b8' } -i.icon.comment::before { content: '\e0b9' } -i.icon.compare::before { content: '\e3b9' } -i.icon.compare.arrows::before { content: '\e915' } -i.icon.computer::before { content: '\e30a' } -i.icon.confirmation.number::before { content: '\e638' } -i.icon.contact.mail::before { content: '\e0d0' } -i.icon.contact.phone::before { content: '\e0cf' } -i.icon.contacts::before { content: '\e0ba' } -i.icon.content.copy::before { content: '\e14d' } -i.icon.content.cut::before { content: '\e14e' } -i.icon.content.paste::before { content: '\e14f' } -i.icon.control.point::before { content: '\e3ba' } -i.icon.control.point.duplicate::before { content: '\e3bb' } -i.icon.copyright::before { content: '\e90c' } -i.icon.create::before { content: '\e150' } -i.icon.create.new.folder::before { content: '\e2cc' } -i.icon.credit.card::before { content: '\e870' } -i.icon.crop::before { content: '\e3be' } -i.icon.crop.sixteen.nine::before { content: '\e3bc' } -i.icon.crop.three.two::before { content: '\e3bd' } -i.icon.crop.five.four::before { content: '\e3bf' } -i.icon.crop.seven.five::before { content: '\e3c0' } -i.icon.crop.din::before { content: '\e3c1' } -i.icon.crop.free::before { content: '\e3c2' } -i.icon.crop.landscape::before { content: '\e3c3' } -i.icon.crop.original::before { content: '\e3c4' } -i.icon.crop.portrait::before { content: '\e3c5' } -i.icon.crop.rotate::before { content: '\e437' } -i.icon.crop.square::before { content: '\e3c6' } -i.icon.dashboard::before { content: '\e871' } -i.icon.data.usage::before { content: '\e1af' } -i.icon.date.range::before { content: '\e916' } -i.icon.dehaze::before { content: '\e3c7' } -i.icon.delete::before { content: '\e872' } -i.icon.delete.forever::before { content: '\e92b' } -i.icon.delete.sweep::before { content: '\e16c' } -i.icon.description::before { content: '\e873' } -i.icon.desktop.mac::before { content: '\e30b' } -i.icon.desktop.windows::before { content: '\e30c' } -i.icon.details::before { content: '\e3c8' } -i.icon.developer.board::before { content: '\e30d' } -i.icon.developer.mode::before { content: '\e1b0' } -i.icon.device.hub::before { content: '\e335' } -i.icon.devices::before { content: '\e1b1' } -i.icon.devices.other::before { content: '\e337' } -i.icon.dialer.sip::before { content: '\e0bb' } -i.icon.dialpad::before { content: '\e0bc' } -i.icon.directions::before { content: '\e52e' } -i.icon.directions.bike::before { content: '\e52f' } -i.icon.directions.boat::before { content: '\e532' } -i.icon.directions.bus::before { content: '\e530' } -i.icon.directions.car::before { content: '\e531' } -i.icon.directions.railway::before { content: '\e534' } -i.icon.directions.run::before { content: '\e566' } -i.icon.directions.subway::before { content: '\e533' } -i.icon.directions.transit::before { content: '\e535' } -i.icon.directions.walk::before { content: '\e536' } -i.icon.disc.full::before { content: '\e610' } -i.icon.dns::before { content: '\e875' } -i.icon.do.not.disturb::before { content: '\e612' } -i.icon.do.not.disturb.alt::before { content: '\e611' } -i.icon.do.not.disturb.off::before { content: '\e643' } -i.icon.do.not.disturb.on::before { content: '\e644' } -i.icon.dock::before { content: '\e30e' } -i.icon.domain::before { content: '\e7ee' } -i.icon.done::before { content: '\e876' } -i.icon.done.all::before { content: '\e877' } -i.icon.donut.large::before { content: '\e917' } -i.icon.donut.small::before { content: '\e918' } -i.icon.drafts::before { content: '\e151' } -i.icon.drag.handle::before { content: '\e25d' } -i.icon.drive.eta::before { content: '\e613' } -i.icon.dvr::before { content: '\e1b2' } -i.icon.edit::before { content: '\e3c9' } -i.icon.edit.location::before { content: '\e568' } -i.icon.eject::before { content: '\e8fb' } -i.icon.email::before { content: '\e0be' } -i.icon.enhanced.encryption::before { content: '\e63f' } -i.icon.equalizer::before { content: '\e01d' } -i.icon.error::before { content: '\e000' } -i.icon.error.outline::before { content: '\e001' } -i.icon.euro.symbol::before { content: '\e926' } -i.icon.ev.station::before { content: '\e56d' } -i.icon.event::before { content: '\e878' } -i.icon.event.available::before { content: '\e614' } -i.icon.event.busy::before { content: '\e615' } -i.icon.event.note::before { content: '\e616' } -i.icon.event.seat::before { content: '\e903' } -i.icon.exit.to.app::before { content: '\e879' } -i.icon.expand.less::before { content: '\e5ce' } -i.icon.expand.more::before { content: '\e5cf' } -i.icon.explicit::before { content: '\e01e' } -i.icon.explore::before { content: '\e87a' } -i.icon.exposure::before { content: '\e3ca' } -i.icon.exposure.neg.1::before { content: '\e3cb' } -i.icon.exposure.neg.2::before { content: '\e3cc' } -i.icon.exposure.plus.1::before { content: '\e3cd' } -i.icon.exposure.plus.2::before { content: '\e3ce' } -i.icon.exposure.zero::before { content: '\e3cf' } -i.icon.extension::before { content: '\e87b' } -i.icon.face::before { content: '\e87c' } -i.icon.fast.forward::before { content: '\e01f' } -i.icon.fast.rewind::before { content: '\e020' } -i.icon.favorite::before { content: '\e87d' } -i.icon.favorite.border::before { content: '\e87e' } -i.icon.featured.play.list::before { content: '\e06d' } -i.icon.featured.video::before { content: '\e06e' } -i.icon.feedback::before { content: '\e87f' } -i.icon.fiber.dvr::before { content: '\e05d' } -i.icon.fiber.manual.record::before { content: '\e061' } -i.icon.fiber.new::before { content: '\e05e' } -i.icon.fiber.pin::before { content: '\e06a' } -i.icon.fiber.smart.record::before { content: '\e062' } -i.icon.file.download::before { content: '\e2c4' } -i.icon.file.upload::before { content: '\e2c6' } -i.icon.filter::before { content: '\e3d3' } -i.icon.filter.1::before { content: '\e3d0' } -i.icon.filter.2::before { content: '\e3d1' } -i.icon.filter.3::before { content: '\e3d2' } -i.icon.filter.4::before { content: '\e3d4' } -i.icon.filter.5::before { content: '\e3d5' } -i.icon.filter.6::before { content: '\e3d6' } -i.icon.filter.7::before { content: '\e3d7' } -i.icon.filter.8::before { content: '\e3d8' } -i.icon.filter.9::before { content: '\e3d9' } -i.icon.filter.9.plus::before { content: '\e3da' } -i.icon.filter.b.and.w::before { content: '\e3db' } -i.icon.filter.center.focus::before { content: '\e3dc' } -i.icon.filter.drama::before { content: '\e3dd' } -i.icon.filter.frames::before { content: '\e3de' } -i.icon.filter.hdr::before { content: '\e3df' } -i.icon.filter.list::before { content: '\e152' } -i.icon.filter.none::before { content: '\e3e0' } -i.icon.filter.tilt.shift::before { content: '\e3e2' } -i.icon.filter.vintage::before { content: '\e3e3' } -i.icon.find.in.page::before { content: '\e880' } -i.icon.find.replace::before { content: '\e881' } -i.icon.fingerprint::before { content: '\e90d' } -i.icon.first.page::before { content: '\e5dc' } -i.icon.fitness.center::before { content: '\eb43' } -i.icon.flag::before { content: '\e153' } -i.icon.flare::before { content: '\e3e4' } -i.icon.flash.auto::before { content: '\e3e5' } -i.icon.flash.off::before { content: '\e3e6' } -i.icon.flash.on::before { content: '\e3e7' } -i.icon.flight::before { content: '\e539' } -i.icon.flight.land::before { content: '\e904' } -i.icon.flight.takeoff::before { content: '\e905' } -i.icon.flip::before { content: '\e3e8' } -i.icon.flip.to.back::before { content: '\e882' } -i.icon.flip.to.front::before { content: '\e883' } -i.icon.folder::before { content: '\e2c7' } -i.icon.folder.open::before { content: '\e2c8' } -i.icon.folder.shared::before { content: '\e2c9' } -i.icon.folder.special::before { content: '\e617' } -i.icon.font.download::before { content: '\e167' } -i.icon.format.align.center::before { content: '\e234' } -i.icon.format.align.justify::before { content: '\e235' } -i.icon.format.align.left::before { content: '\e236' } -i.icon.format.align.right::before { content: '\e237' } -i.icon.format.bold::before { content: '\e238' } -i.icon.format.clear::before { content: '\e239' } -i.icon.format.color.fill::before { content: '\e23a' } -i.icon.format.color.reset::before { content: '\e23b' } -i.icon.format.color.text::before { content: '\e23c' } -i.icon.format.indent.decrease::before { content: '\e23d' } -i.icon.format.indent.increase::before { content: '\e23e' } -i.icon.format.italic::before { content: '\e23f' } -i.icon.format.line.spacing::before { content: '\e240' } -i.icon.format.list.bulleted::before { content: '\e241' } -i.icon.format.list.numbered::before { content: '\e242' } -i.icon.format.paint::before { content: '\e243' } -i.icon.format.quote::before { content: '\e244' } -i.icon.format.shapes::before { content: '\e25e' } -i.icon.format.size::before { content: '\e245' } -i.icon.format.strikethrough::before { content: '\e246' } -i.icon.format.textdirection.l.to.r::before { content: '\e247' } -i.icon.format.textdirection.r.to.l::before { content: '\e248' } -i.icon.format.underlined::before { content: '\e249' } -i.icon.forum::before { content: '\e0bf' } -i.icon.forward::before { content: '\e154' } -i.icon.forward.ten::before { content: '\e056' } -i.icon.forward.thirty::before { content: '\e057' } -i.icon.forward.five::before { content: '\e058' } -i.icon.free.breakfast::before { content: '\eb44' } -i.icon.fullscreen::before { content: '\e5d0' } -i.icon.fullscreen.exit::before { content: '\e5d1' } -i.icon.functions::before { content: '\e24a' } -i.icon.g.translate::before { content: '\e927' } -i.icon.gamepad::before { content: '\e30f' } -i.icon.games::before { content: '\e021' } -i.icon.gavel::before { content: '\e90e' } -i.icon.gesture::before { content: '\e155' } -i.icon.get.app::before { content: '\e884' } -i.icon.gif::before { content: '\e908' } -i.icon.golf.course::before { content: '\eb45' } -i.icon.gps.fixed::before { content: '\e1b3' } -i.icon.gps.not.fixed::before { content: '\e1b4' } -i.icon.gps.off::before { content: '\e1b5' } -i.icon.grade::before { content: '\e885' } -i.icon.gradient::before { content: '\e3e9' } -i.icon.grain::before { content: '\e3ea' } -i.icon.graphic.eq::before { content: '\e1b8' } -i.icon.grid.off::before { content: '\e3eb' } -i.icon.grid.on::before { content: '\e3ec' } -i.icon.group::before { content: '\e7ef' } -i.icon.group.add::before { content: '\e7f0' } -i.icon.group.work::before { content: '\e886' } -i.icon.hd::before { content: '\e052' } -i.icon.hdr.off::before { content: '\e3ed' } -i.icon.hdr.on::before { content: '\e3ee' } -i.icon.hdr.strong::before { content: '\e3f1' } -i.icon.hdr.weak::before { content: '\e3f2' } -i.icon.headset::before { content: '\e310' } -i.icon.headset.mic::before { content: '\e311' } -i.icon.healing::before { content: '\e3f3' } -i.icon.hearing::before { content: '\e023' } -i.icon.help::before { content: '\e887' } -i.icon.help.outline::before { content: '\e8fd' } -i.icon.high.quality::before { content: '\e024' } -i.icon.highlight::before { content: '\e25f' } -i.icon.highlight.off::before { content: '\e888' } -i.icon.history::before { content: '\e889' } -i.icon.home::before { content: '\e88a' } -i.icon.hot.tub::before { content: '\eb46' } -i.icon.hotel::before { content: '\e53a' } -i.icon.hourglass.empty::before { content: '\e88b' } -i.icon.hourglass.full::before { content: '\e88c' } -i.icon.http::before { content: '\e902' } -i.icon.https::before { content: '\e88d' } -i.icon.image::before { content: '\e3f4' } -i.icon.image.aspect.ratio::before { content: '\e3f5' } -i.icon.import.contacts::before { content: '\e0e0' } -i.icon.import.export::before { content: '\e0c3' } -i.icon.important.devices::before { content: '\e912' } -i.icon.inbox::before { content: '\e156' } -i.icon.indeterminate.check.box::before { content: '\e909' } -i.icon.info::before { content: '\e88e' } -i.icon.info.outline::before { content: '\e88f' } -i.icon.input::before { content: '\e890' } -i.icon.insert.chart::before { content: '\e24b' } -i.icon.insert.comment::before { content: '\e24c' } -i.icon.insert.drive.file::before { content: '\e24d' } -i.icon.insert.emoticon::before { content: '\e24e' } -i.icon.insert.invitation::before { content: '\e24f' } -i.icon.insert.link::before { content: '\e250' } -i.icon.insert.photo::before { content: '\e251' } -i.icon.invert.colors::before { content: '\e891' } -i.icon.invert.colors.off::before { content: '\e0c4' } -i.icon.iso::before { content: '\e3f6' } -i.icon.keyboard::before { content: '\e312' } -i.icon.keyboard.arrow.down::before { content: '\e313' } -i.icon.keyboard.arrow.left::before { content: '\e314' } -i.icon.keyboard.arrow.right::before { content: '\e315' } -i.icon.keyboard.arrow.up::before { content: '\e316' } -i.icon.keyboard.backspace::before { content: '\e317' } -i.icon.keyboard.capslock::before { content: '\e318' } -i.icon.keyboard.hide::before { content: '\e31a' } -i.icon.keyboard.return::before { content: '\e31b' } -i.icon.keyboard.tab::before { content: '\e31c' } -i.icon.keyboard.voice::before { content: '\e31d' } -i.icon.kitchen::before { content: '\eb47' } -i.icon.label::before { content: '\e892' } -i.icon.label.outline::before { content: '\e893' } -i.icon.landscape::before { content: '\e3f7' } -i.icon.language::before { content: '\e894' } -i.icon.laptop::before { content: '\e31e' } -i.icon.laptop.chromebook::before { content: '\e31f' } -i.icon.laptop.mac::before { content: '\e320' } -i.icon.laptop.windows::before { content: '\e321' } -i.icon.last.page::before { content: '\e5dd' } -i.icon.launch::before { content: '\e895' } -i.icon.layers::before { content: '\e53b' } -i.icon.layers.clear::before { content: '\e53c' } -i.icon.leak.add::before { content: '\e3f8' } -i.icon.leak.remove::before { content: '\e3f9' } -i.icon.lens::before { content: '\e3fa' } -i.icon.library.add::before { content: '\e02e' } -i.icon.library.books::before { content: '\e02f' } -i.icon.library.music::before { content: '\e030' } -i.icon.lightbulb.outline::before { content: '\e90f' } -i.icon.line.style::before { content: '\e919' } -i.icon.line.weight::before { content: '\e91a' } -i.icon.linear.scale::before { content: '\e260' } -i.icon.link::before { content: '\e157' } -i.icon.linked.camera::before { content: '\e438' } -i.icon.list::before { content: '\e896' } -i.icon.live.help::before { content: '\e0c6' } -i.icon.live.tv::before { content: '\e639' } -i.icon.local.activity::before { content: '\e53f' } -i.icon.local.airport::before { content: '\e53d' } -i.icon.local.atm::before { content: '\e53e' } -i.icon.local.bar::before { content: '\e540' } -i.icon.local.cafe::before { content: '\e541' } -i.icon.local.car.wash::before { content: '\e542' } -i.icon.local.convenience.store::before { content: '\e543' } -i.icon.local.dining::before { content: '\e556' } -i.icon.local.drink::before { content: '\e544' } -i.icon.local.florist::before { content: '\e545' } -i.icon.local.gas.station::before { content: '\e546' } -i.icon.local.grocery.store::before { content: '\e547' } -i.icon.local.hospital::before { content: '\e548' } -i.icon.local.hotel::before { content: '\e549' } -i.icon.local.laundry.service::before { content: '\e54a' } -i.icon.local.library::before { content: '\e54b' } -i.icon.local.mall::before { content: '\e54c' } -i.icon.local.movies::before { content: '\e54d' } -i.icon.local.offer::before { content: '\e54e' } -i.icon.local.parking::before { content: '\e54f' } -i.icon.local.pharmacy::before { content: '\e550' } -i.icon.local.phone::before { content: '\e551' } -i.icon.local.pizza::before { content: '\e552' } -i.icon.local.play::before { content: '\e553' } -i.icon.local.post.office::before { content: '\e554' } -i.icon.local.printshop::before { content: '\e555' } -i.icon.local.see::before { content: '\e557' } -i.icon.local.shipping::before { content: '\e558' } -i.icon.local.taxi::before { content: '\e559' } -i.icon.location.city::before { content: '\e7f1' } -i.icon.location.disabled::before { content: '\e1b6' } -i.icon.location.off::before { content: '\e0c7' } -i.icon.location.on::before { content: '\e0c8' } -i.icon.location.searching::before { content: '\e1b7' } -i.icon.lock::before { content: '\e897' } -i.icon.lock.open::before { content: '\e898' } -i.icon.lock.outline::before { content: '\e899' } -i.icon.looks::before { content: '\e3fc' } -i.icon.looks.3::before { content: '\e3fb' } -i.icon.looks.4::before { content: '\e3fd' } -i.icon.looks.5::before { content: '\e3fe' } -i.icon.looks.6::before { content: '\e3ff' } -i.icon.looks.one::before { content: '\e400' } -i.icon.looks.two::before { content: '\e401' } -i.icon.loop::before { content: '\e028' } -i.icon.loupe::before { content: '\e402' } -i.icon.low.priority::before { content: '\e16d' } -i.icon.loyalty::before { content: '\e89a' } -i.icon.mail::before { content: '\e158' } -i.icon.mail.outline::before { content: '\e0e1' } -i.icon.map::before { content: '\e55b' } -i.icon.markunread::before { content: '\e159' } -i.icon.markunread.mailbox::before { content: '\e89b' } -i.icon.memory::before { content: '\e322' } -i.icon.menu::before { content: '\e5d2' } -i.icon.merge.type::before { content: '\e252' } -i.icon.message::before { content: '\e0c9' } -i.icon.mic::before { content: '\e029' } -i.icon.mic.none::before { content: '\e02a' } -i.icon.mic.off::before { content: '\e02b' } -i.icon.mms::before { content: '\e618' } -i.icon.mode.comment::before { content: '\e253' } -i.icon.mode.edit::before { content: '\e254' } -i.icon.monetization.on::before { content: '\e263' } -i.icon.money.off::before { content: '\e25c' } -i.icon.monochrome.photos::before { content: '\e403' } -i.icon.mood::before { content: '\e7f2' } -i.icon.mood.bad::before { content: '\e7f3' } -i.icon.more::before { content: '\e619' } -i.icon.more.horiz::before { content: '\e5d3' } -i.icon.more.vert::before { content: '\e5d4' } -i.icon.motorcycle::before { content: '\e91b' } -i.icon.mouse::before { content: '\e323' } -i.icon.move.to.inbox::before { content: '\e168' } -i.icon.movie::before { content: '\e02c' } -i.icon.movie.creation::before { content: '\e404' } -i.icon.movie.filter::before { content: '\e43a' } -i.icon.multiline.chart::before { content: '\e6df' } -i.icon.music.note::before { content: '\e405' } -i.icon.music.video::before { content: '\e063' } -i.icon.my.location::before { content: '\e55c' } -i.icon.nature::before { content: '\e406' } -i.icon.nature.people::before { content: '\e407' } -i.icon.navigate.before::before { content: '\e408' } -i.icon.navigate.next::before { content: '\e409' } -i.icon.navigation::before { content: '\e55d' } -i.icon.near.me::before { content: '\e569' } -i.icon.network.cell::before { content: '\e1b9' } -i.icon.network.check::before { content: '\e640' } -i.icon.network.locked::before { content: '\e61a' } -i.icon.network.wifi::before { content: '\e1ba' } -i.icon.new.releases::before { content: '\e031' } -i.icon.next.week::before { content: '\e16a' } -i.icon.nfc::before { content: '\e1bb' } -i.icon.no.encryption::before { content: '\e641' } -i.icon.no.sim::before { content: '\e0cc' } -i.icon.not.interested::before { content: '\e033' } -i.icon.note::before { content: '\e06f' } -i.icon.note.add::before { content: '\e89c' } -i.icon.notifications::before { content: '\e7f4' } -i.icon.notifications.active::before { content: '\e7f7' } -i.icon.notifications.none::before { content: '\e7f5' } -i.icon.notifications.off::before { content: '\e7f6' } -i.icon.notifications.paused::before { content: '\e7f8' } -i.icon.offline.pin::before { content: '\e90a' } -i.icon.ondemand.video::before { content: '\e63a' } -i.icon.opacity::before { content: '\e91c' } -i.icon.open.in.browser::before { content: '\e89d' } -i.icon.open.in.new::before { content: '\e89e' } -i.icon.open.with::before { content: '\e89f' } -i.icon.pages::before { content: '\e7f9' } -i.icon.pageview::before { content: '\e8a0' } -i.icon.palette::before { content: '\e40a' } -i.icon.pan.tool::before { content: '\e925' } -i.icon.panorama::before { content: '\e40b' } -i.icon.panorama.fish.eye::before { content: '\e40c' } -i.icon.panorama.horizontal::before { content: '\e40d' } -i.icon.panorama.vertical::before { content: '\e40e' } -i.icon.panorama.wide.angle::before { content: '\e40f' } -i.icon.party.mode::before { content: '\e7fa' } -i.icon.pause::before { content: '\e034' } -i.icon.pause.circle.filled::before { content: '\e035' } -i.icon.pause.circle.outline::before { content: '\e036' } -i.icon.payment::before { content: '\e8a1' } -i.icon.people::before { content: '\e7fb' } -i.icon.people.outline::before { content: '\e7fc' } -i.icon.perm.camera.mic::before { content: '\e8a2' } -i.icon.perm.contact.calendar::before { content: '\e8a3' } -i.icon.perm.data.setting::before { content: '\e8a4' } -i.icon.perm.device.information::before { content: '\e8a5' } -i.icon.perm.identity::before { content: '\e8a6' } -i.icon.perm.media::before { content: '\e8a7' } -i.icon.perm.phone.msg::before { content: '\e8a8' } -i.icon.perm.scan.wifi::before { content: '\e8a9' } -i.icon.person::before { content: '\e7fd' } -i.icon.person.add::before { content: '\e7fe' } -i.icon.person.outline::before { content: '\e7ff' } -i.icon.person.pin::before { content: '\e55a' } -i.icon.person.pin.circle::before { content: '\e56a' } -i.icon.personal.video::before { content: '\e63b' } -i.icon.pets::before { content: '\e91d' } -i.icon.phone::before { content: '\e0cd' } -i.icon.phone.android::before { content: '\e324' } -i.icon.phone.bluetooth.speaker::before { content: '\e61b' } -i.icon.phone.forwarded::before { content: '\e61c' } -i.icon.phone.in.talk::before { content: '\e61d' } -i.icon.phone.iphone::before { content: '\e325' } -i.icon.phone.locked::before { content: '\e61e' } -i.icon.phone.missed::before { content: '\e61f' } -i.icon.phone.paused::before { content: '\e620' } -i.icon.phonelink::before { content: '\e326' } -i.icon.phonelink.erase::before { content: '\e0db' } -i.icon.phonelink.lock::before { content: '\e0dc' } -i.icon.phonelink.off::before { content: '\e327' } -i.icon.phonelink.ring::before { content: '\e0dd' } -i.icon.phonelink.setup::before { content: '\e0de' } -i.icon.photo::before { content: '\e410' } -i.icon.photo.album::before { content: '\e411' } -i.icon.photo.camera::before { content: '\e412' } -i.icon.photo.filter::before { content: '\e43b' } -i.icon.photo.library::before { content: '\e413' } -i.icon.photo.size.select.actual::before { content: '\e432' } -i.icon.photo.size.select.large::before { content: '\e433' } -i.icon.photo.size.select.small::before { content: '\e434' } -i.icon.picture.as.pdf::before { content: '\e415' } -i.icon.picture.in.picture::before { content: '\e8aa' } -i.icon.picture.in.picture.alt::before { content: '\e911' } -i.icon.pie.chart::before { content: '\e6c4' } -i.icon.pie.chart.outlined::before { content: '\e6c5' } -i.icon.pin.drop::before { content: '\e55e' } -i.icon.place::before { content: '\e55f' } -i.icon.play.arrow::before { content: '\e037' } -i.icon.play.circle.filled::before { content: '\e038' } -i.icon.play.circle.outline::before { content: '\e039' } -i.icon.play.for.work::before { content: '\e906' } -i.icon.playlist.add::before { content: '\e03b' } -i.icon.playlist.add.check::before { content: '\e065' } -i.icon.playlist.play::before { content: '\e05f' } -i.icon.plus.one::before { content: '\e800' } -i.icon.poll::before { content: '\e801' } -i.icon.polymer::before { content: '\e8ab' } -i.icon.pool::before { content: '\eb48' } -i.icon.portable.wifi.off::before { content: '\e0ce' } -i.icon.portrait::before { content: '\e416' } -i.icon.power::before { content: '\e63c' } -i.icon.power.input::before { content: '\e336' } -i.icon.power.settings.new::before { content: '\e8ac' } -i.icon.pregnant.woman::before { content: '\e91e' } -i.icon.present.to.all::before { content: '\e0df' } -i.icon.print::before { content: '\e8ad' } -i.icon.priority.high::before { content: '\e645' } -i.icon.public::before { content: '\e80b' } -i.icon.publish::before { content: '\e255' } -i.icon.query.builder::before { content: '\e8ae' } -i.icon.question.answer::before { content: '\e8af' } -i.icon.queue::before { content: '\e03c' } -i.icon.queue.music::before { content: '\e03d' } -i.icon.queue.play.next::before { content: '\e066' } -i.icon.radio::before { content: '\e03e' } -i.icon.radio.button.checked::before { content: '\e837' } -i.icon.radio.button.unchecked::before { content: '\e836' } -i.icon.rate.review::before { content: '\e560' } -i.icon.receipt::before { content: '\e8b0' } -i.icon.recent.actors::before { content: '\e03f' } -i.icon.record.voice.over::before { content: '\e91f' } -i.icon.redeem::before { content: '\e8b1' } -i.icon.redo::before { content: '\e15a' } -i.icon.refresh::before { content: '\e5d5' } -i.icon.remove::before { content: '\e15b' } -i.icon.remove.circle::before { content: '\e15c' } -i.icon.remove.circle.outline::before { content: '\e15d' } -i.icon.remove.from.queue::before { content: '\e067' } -i.icon.remove.red.eye::before { content: '\e417' } -i.icon.remove.shopping.cart::before { content: '\e928' } -i.icon.reorder::before { content: '\e8fe' } -i.icon.repeat::before { content: '\e040' } -i.icon.repeat.one::before { content: '\e041' } -i.icon.replay::before { content: '\e042' } -i.icon.replay.ten::before { content: '\e059' } -i.icon.replay.thirty::before { content: '\e05a' } -i.icon.replay.five::before { content: '\e05b' } -i.icon.reply::before { content: '\e15e' } -i.icon.reply.all::before { content: '\e15f' } -i.icon.report::before { content: '\e160' } -i.icon.report.problem::before { content: '\e8b2' } -i.icon.restaurant::before { content: '\e56c' } -i.icon.restaurant.menu::before { content: '\e561' } -i.icon.restore::before { content: '\e8b3' } -i.icon.restore.page::before { content: '\e929' } -i.icon.ring.volume::before { content: '\e0d1' } -i.icon.room::before { content: '\e8b4' } -i.icon.room.service::before { content: '\eb49' } -i.icon.rotate.ninety.degrees.ccw::before { content: '\e418' } -i.icon.rotate.left::before { content: '\e419' } -i.icon.rotate.right::before { content: '\e41a' } -i.icon.rounded.corner::before { content: '\e920' } -i.icon.router::before { content: '\e328' } -i.icon.rowing::before { content: '\e921' } -i.icon.rss.feed::before { content: '\e0e5' } -i.icon.rv.hookup::before { content: '\e642' } -i.icon.satellite::before { content: '\e562' } -i.icon.save::before { content: '\e161' } -i.icon.scanner::before { content: '\e329' } -i.icon.schedule::before { content: '\e8b5' } -i.icon.school::before { content: '\e80c' } -i.icon.screen.lock.landscape::before { content: '\e1be' } -i.icon.screen.lock.portrait::before { content: '\e1bf' } -i.icon.screen.lock.rotation::before { content: '\e1c0' } -i.icon.screen.rotation::before { content: '\e1c1' } -i.icon.screen.share::before { content: '\e0e2' } -i.icon.sd.card::before { content: '\e623' } -i.icon.sd.storage::before { content: '\e1c2' } -i.icon.search::before { content: '\e8b6' } -i.icon.security::before { content: '\e32a' } -i.icon.select.all::before { content: '\e162' } -i.icon.send::before { content: '\e163' } -i.icon.sentiment.dissatisfied::before { content: '\e811' } -i.icon.sentiment.neutral::before { content: '\e812' } -i.icon.sentiment.satisfied::before { content: '\e813' } -i.icon.sentiment.very.dissatisfied::before { content: '\e814' } -i.icon.sentiment.very.satisfied::before { content: '\e815' } -i.icon.settings::before { content: '\e8b8' } -i.icon.settings.applications::before { content: '\e8b9' } -i.icon.settings.backup.restore::before { content: '\e8ba' } -i.icon.settings.bluetooth::before { content: '\e8bb' } -i.icon.settings.brightness::before { content: '\e8bd' } -i.icon.settings.cell::before { content: '\e8bc' } -i.icon.settings.ethernet::before { content: '\e8be' } -i.icon.settings.input.antenna::before { content: '\e8bf' } -i.icon.settings.input.component::before { content: '\e8c0' } -i.icon.settings.input.composite::before { content: '\e8c1' } -i.icon.settings.input.hdmi::before { content: '\e8c2' } -i.icon.settings.input.svideo::before { content: '\e8c3' } -i.icon.settings.overscan::before { content: '\e8c4' } -i.icon.settings.phone::before { content: '\e8c5' } -i.icon.settings.power::before { content: '\e8c6' } -i.icon.settings.remote::before { content: '\e8c7' } -i.icon.settings.system.daydream::before { content: '\e1c3' } -i.icon.settings.voice::before { content: '\e8c8' } -i.icon.share::before { content: '\e80d' } -i.icon.shop::before { content: '\e8c9' } -i.icon.shop.two::before { content: '\e8ca' } -i.icon.shopping.basket::before { content: '\e8cb' } -i.icon.shopping.cart::before { content: '\e8cc' } -i.icon.short.text::before { content: '\e261' } -i.icon.show.chart::before { content: '\e6e1' } -i.icon.shuffle::before { content: '\e043' } -i.icon.signal.cellular.four.bar::before { content: '\e1c8' } -i.icon.signal.cellular.connected.no.internet.4.bar::before { content: '\e1cd' } -i.icon.signal.cellular.no.sim::before { content: '\e1ce' } -i.icon.signal.cellular.null::before { content: '\e1cf' } -i.icon.signal.cellular.off::before { content: '\e1d0' } -i.icon.signal.wifi.four.bar::before { content: '\e1d8' } -i.icon.signal.wifi.four.bar.lock::before { content: '\e1d9' } -i.icon.signal.wifi.off::before { content: '\e1da' } -i.icon.sim.card::before { content: '\e32b' } -i.icon.sim.card.alert::before { content: '\e624' } -i.icon.skip.next::before { content: '\e044' } -i.icon.skip.previous::before { content: '\e045' } -i.icon.slideshow::before { content: '\e41b' } -i.icon.slow.motion.video::before { content: '\e068' } -i.icon.smartphone::before { content: '\e32c' } -i.icon.smoke.free::before { content: '\eb4a' } -i.icon.smoking.rooms::before { content: '\eb4b' } -i.icon.sms::before { content: '\e625' } -i.icon.sms.failed::before { content: '\e626' } -i.icon.snooze::before { content: '\e046' } -i.icon.sort::before { content: '\e164' } -i.icon.sort.by.alpha::before { content: '\e053' } -i.icon.spa::before { content: '\eb4c' } -i.icon.space.bar::before { content: '\e256' } -i.icon.speaker::before { content: '\e32d' } -i.icon.speaker.group::before { content: '\e32e' } -i.icon.speaker.notes::before { content: '\e8cd' } -i.icon.speaker.notes.off::before { content: '\e92a' } -i.icon.speaker.phone::before { content: '\e0d2' } -i.icon.spellcheck::before { content: '\e8ce' } -i.icon.star::before { content: '\e838' } -i.icon.star.border::before { content: '\e83a' } -i.icon.star.half::before { content: '\e839' } -i.icon.stars::before { content: '\e8d0' } -i.icon.stay.current.landscape::before { content: '\e0d3' } -i.icon.stay.current.portrait::before { content: '\e0d4' } -i.icon.stay.primary.landscape::before { content: '\e0d5' } -i.icon.stay.primary.portrait::before { content: '\e0d6' } -i.icon.stop::before { content: '\e047' } -i.icon.stop.screen.share::before { content: '\e0e3' } -i.icon.storage::before { content: '\e1db' } -i.icon.store::before { content: '\e8d1' } -i.icon.store.mall.directory::before { content: '\e563' } -i.icon.straighten::before { content: '\e41c' } -i.icon.streetview::before { content: '\e56e' } -i.icon.strikethrough.s::before { content: '\e257' } -i.icon.style::before { content: '\e41d' } -i.icon.subdirectory.arrow.left::before { content: '\e5d9' } -i.icon.subdirectory.arrow.right::before { content: '\e5da' } -i.icon.subject::before { content: '\e8d2' } -i.icon.subscriptions::before { content: '\e064' } -i.icon.subtitles::before { content: '\e048' } -i.icon.subway::before { content: '\e56f' } -i.icon.supervisor.account::before { content: '\e8d3' } -i.icon.surround.sound::before { content: '\e049' } -i.icon.swap.calls::before { content: '\e0d7' } -i.icon.swap.horiz::before { content: '\e8d4' } -i.icon.swap.vert::before { content: '\e8d5' } -i.icon.swap.vertical.circle::before { content: '\e8d6' } -i.icon.switch.camera::before { content: '\e41e' } -i.icon.switch.video::before { content: '\e41f' } -i.icon.sync::before { content: '\e627' } -i.icon.sync.disabled::before { content: '\e628' } -i.icon.sync.problem::before { content: '\e629' } -i.icon.system.update::before { content: '\e62a' } -i.icon.system.update.alt::before { content: '\e8d7' } -i.icon.tab::before { content: '\e8d8' } -i.icon.tab.unselected::before { content: '\e8d9' } -i.icon.tablet::before { content: '\e32f' } -i.icon.tablet.android::before { content: '\e330' } -i.icon.tablet.mac::before { content: '\e331' } -i.icon.tag.faces::before { content: '\e420' } -i.icon.tap.and.play::before { content: '\e62b' } -i.icon.terrain::before { content: '\e564' } -i.icon.text.fields::before { content: '\e262' } -i.icon.text.format::before { content: '\e165' } -i.icon.textsms::before { content: '\e0d8' } -i.icon.texture::before { content: '\e421' } -i.icon.theaters::before { content: '\e8da' } -i.icon.thumb.down::before { content: '\e8db' } -i.icon.thumb.up::before { content: '\e8dc' } -i.icon.thumbs.up.down::before { content: '\e8dd' } -i.icon.time.to.leave::before { content: '\e62c' } -i.icon.timelapse::before { content: '\e422' } -i.icon.timeline::before { content: '\e922' } -i.icon.timer::before { content: '\e425' } -i.icon.timer.ten::before { content: '\e423' } -i.icon.timer.three::before { content: '\e424' } -i.icon.timer.off::before { content: '\e426' } -i.icon.title::before { content: '\e264' } -i.icon.toc::before { content: '\e8de' } -i.icon.today::before { content: '\e8df' } -i.icon.toll::before { content: '\e8e0' } -i.icon.tonality::before { content: '\e427' } -i.icon.touch.app::before { content: '\e913' } -i.icon.toys::before { content: '\e332' } -i.icon.track.changes::before { content: '\e8e1' } -i.icon.traffic::before { content: '\e565' } -i.icon.train::before { content: '\e570' } -i.icon.tram::before { content: '\e571' } -i.icon.transfer.within.a.station::before { content: '\e572' } -i.icon.transform::before { content: '\e428' } -i.icon.translate::before { content: '\e8e2' } -i.icon.trending.down::before { content: '\e8e3' } -i.icon.trending.flat::before { content: '\e8e4' } -i.icon.trending.up::before { content: '\e8e5' } -i.icon.tune::before { content: '\e429' } -i.icon.turned.in::before { content: '\e8e6' } -i.icon.turned.in.not::before { content: '\e8e7' } -i.icon.tv::before { content: '\e333' } -i.icon.unarchive::before { content: '\e169' } -i.icon.undo::before { content: '\e166' } -i.icon.unfold.less::before { content: '\e5d6' } -i.icon.unfold.more::before { content: '\e5d7' } -i.icon.update::before { content: '\e923' } -i.icon.usb::before { content: '\e1e0' } -i.icon.verified.user::before { content: '\e8e8' } -i.icon.vertical.align.bottom::before { content: '\e258' } -i.icon.vertical.align.center::before { content: '\e259' } -i.icon.vertical.align.top::before { content: '\e25a' } -i.icon.vibration::before { content: '\e62d' } -i.icon.video.call::before { content: '\e070' } -i.icon.video.label::before { content: '\e071' } -i.icon.video.library::before { content: '\e04a' } -i.icon.videocam::before { content: '\e04b' } -i.icon.videocam.off::before { content: '\e04c' } -i.icon.videogame.asset::before { content: '\e338' } -i.icon.view.agenda::before { content: '\e8e9' } -i.icon.view.array::before { content: '\e8ea' } -i.icon.view.carousel::before { content: '\e8eb' } -i.icon.view.column::before { content: '\e8ec' } -i.icon.view.comfy::before { content: '\e42a' } -i.icon.view.compact::before { content: '\e42b' } -i.icon.view.day::before { content: '\e8ed' } -i.icon.view.headline::before { content: '\e8ee' } -i.icon.view.list::before { content: '\e8ef' } -i.icon.view.module::before { content: '\e8f0' } -i.icon.view.quilt::before { content: '\e8f1' } -i.icon.view.stream::before { content: '\e8f2' } -i.icon.view.week::before { content: '\e8f3' } -i.icon.vignette::before { content: '\e435' } -i.icon.visibility::before { content: '\e8f4' } -i.icon.visibility.off::before { content: '\e8f5' } -i.icon.voice.chat::before { content: '\e62e' } -i.icon.voicemail::before { content: '\e0d9' } -i.icon.volume.down::before { content: '\e04d' } -i.icon.volume.mute::before { content: '\e04e' } -i.icon.volume.off::before { content: '\e04f' } -i.icon.volume.up::before { content: '\e050' } -i.icon.vpn.key::before { content: '\e0da' } -i.icon.vpn.lock::before { content: '\e62f' } -i.icon.wallpaper::before { content: '\e1bc' } -i.icon.warning::before { content: '\e002' } -i.icon.watch::before { content: '\e334' } -i.icon.watch.later::before { content: '\e924' } -i.icon.wb.auto::before { content: '\e42c' } -i.icon.wb.cloudy::before { content: '\e42d' } -i.icon.wb.incandescent::before { content: '\e42e' } -i.icon.wb.iridescent::before { content: '\e436' } -i.icon.wb.sunny::before { content: '\e430' } -i.icon.wc::before { content: '\e63d' } -i.icon.web::before { content: '\e051' } -i.icon.web.asset::before { content: '\e069' } -i.icon.weekend::before { content: '\e16b' } -i.icon.whatshot::before { content: '\e80e' } -i.icon.widgets::before { content: '\e1bd' } -i.icon.wifi::before { content: '\e63e' } -i.icon.wifi.lock::before { content: '\e1e1' } -i.icon.wifi.tethering::before { content: '\e1e2' } -i.icon.work::before { content: '\e8f9' } -i.icon.wrap.text::before { content: '\e25b' } -i.icon.youtube.searched.for::before { content: '\e8fa' } -i.icon.zoom.in::before { content: '\e8ff' } -i.icon.zoom.out::before { content: '\e900' } -i.icon.zoom.out.map::before { content: '\e56b' } +i.icon.threed.rotation::before { content: "\e84d" } +i.icon.ac.unit::before { content: "\eb3b" } +i.icon.access.alarm::before { content: "\e190" } +i.icon.access.alarms::before { content: "\e191" } +i.icon.access.time::before { content: "\e192" } +i.icon.accessibility::before { content: "\e84e" } +i.icon.accessible::before { content: "\e914" } +i.icon.account.balance::before { content: "\e84f" } +i.icon.account.balance.wallet::before { content: "\e850" } +i.icon.account.box::before { content: "\e851" } +i.icon.account.circle::before { content: "\e853" } +i.icon.adb::before { content: "\e60e" } +i.icon.add::before { content: "\e145" } +i.icon.add.a.photo::before { content: "\e439" } +i.icon.add.alarm::before { content: "\e193" } +i.icon.add.alert::before { content: "\e003" } +i.icon.add.box::before { content: "\e146" } +i.icon.add.circle::before { content: "\e147" } +i.icon.add.circle.outline::before { content: "\e148" } +i.icon.add.location::before { content: "\e567" } +i.icon.add.shopping.cart::before { content: "\e854" } +i.icon.add.to.photos::before { content: "\e39d" } +i.icon.add.to.queue::before { content: "\e05c" } +i.icon.adjust::before { content: "\e39e" } +i.icon.airline.seat.flat::before { content: "\e630" } +i.icon.airline.seat.flat.angled::before { content: "\e631" } +i.icon.airline.seat.individual.suite::before { content: "\e632" } +i.icon.airline.seat.legroom.extra::before { content: "\e633" } +i.icon.airline.seat.legroom.normal::before { content: "\e634" } +i.icon.airline.seat.legroom.reduced::before { content: "\e635" } +i.icon.airline.seat.recline.extra::before { content: "\e636" } +i.icon.airline.seat.recline.normal::before { content: "\e637" } +i.icon.airplanemode.active::before { content: "\e195" } +i.icon.airplanemode.inactive::before { content: "\e194" } +i.icon.airplay::before { content: "\e055" } +i.icon.airport.shuttle::before { content: "\eb3c" } +i.icon.alarm::before { content: "\e855" } +i.icon.alarm.add::before { content: "\e856" } +i.icon.alarm.off::before { content: "\e857" } +i.icon.alarm.on::before { content: "\e858" } +i.icon.album::before { content: "\e019" } +i.icon.all.inclusive::before { content: "\eb3d" } +i.icon.all.out::before { content: "\e90b" } +i.icon.android::before { content: "\e859" } +i.icon.announcement::before { content: "\e85a" } +i.icon.apps::before { content: "\e5c3" } +i.icon.archive::before { content: "\e149" } +i.icon.arrow.back::before { content: "\e5c4" } +i.icon.arrow.downward::before { content: "\e5db" } +i.icon.arrow.drop.down::before { content: "\e5c5" } +i.icon.arrow.drop.down.circle::before { content: "\e5c6" } +i.icon.arrow.drop.up::before { content: "\e5c7" } +i.icon.arrow.forward::before { content: "\e5c8" } +i.icon.arrow.upward::before { content: "\e5d8" } +i.icon.art.track::before { content: "\e060" } +i.icon.aspect.ratio::before { content: "\e85b" } +i.icon.assessment::before { content: "\e85c" } +i.icon.assignment::before { content: "\e85d" } +i.icon.assignment.ind::before { content: "\e85e" } +i.icon.assignment.late::before { content: "\e85f" } +i.icon.assignment.return::before { content: "\e860" } +i.icon.assignment.returned::before { content: "\e861" } +i.icon.assignment.turned.in::before { content: "\e862" } +i.icon.assistant::before { content: "\e39f" } +i.icon.assistant.photo::before { content: "\e3a0" } +i.icon.attach.file::before { content: "\e226" } +i.icon.attach.money::before { content: "\e227" } +i.icon.attachment::before { content: "\e2bc" } +i.icon.audiotrack::before { content: "\e3a1" } +i.icon.autorenew::before { content: "\e863" } +i.icon.av.timer::before { content: "\e01b" } +i.icon.backspace::before { content: "\e14a" } +i.icon.backup::before { content: "\e864" } +i.icon.battery.alert::before { content: "\e19c" } +i.icon.battery.charging.full::before { content: "\e1a3" } +i.icon.battery.full::before { content: "\e1a4" } +i.icon.battery.std::before { content: "\e1a5" } +i.icon.battery.unknown::before { content: "\e1a6" } +i.icon.beach.access::before { content: "\eb3e" } +i.icon.beenhere::before { content: "\e52d" } +i.icon.block::before { content: "\e14b" } +i.icon.bluetooth::before { content: "\e1a7" } +i.icon.bluetooth.audio::before { content: "\e60f" } +i.icon.bluetooth.connected::before { content: "\e1a8" } +i.icon.bluetooth.disabled::before { content: "\e1a9" } +i.icon.bluetooth.searching::before { content: "\e1aa" } +i.icon.blur.circular::before { content: "\e3a2" } +i.icon.blur.linear::before { content: "\e3a3" } +i.icon.blur.off::before { content: "\e3a4" } +i.icon.blur.on::before { content: "\e3a5" } +i.icon.book::before { content: "\e865" } +i.icon.bookmark::before { content: "\e866" } +i.icon.bookmark.border::before { content: "\e867" } +i.icon.border.all::before { content: "\e228" } +i.icon.border.bottom::before { content: "\e229" } +i.icon.border.clear::before { content: "\e22a" } +i.icon.border.color::before { content: "\e22b" } +i.icon.border.horizontal::before { content: "\e22c" } +i.icon.border.inner::before { content: "\e22d" } +i.icon.border.left::before { content: "\e22e" } +i.icon.border.outer::before { content: "\e22f" } +i.icon.border.right::before { content: "\e230" } +i.icon.border.style::before { content: "\e231" } +i.icon.border.top::before { content: "\e232" } +i.icon.border.vertical::before { content: "\e233" } +i.icon.branding.watermark::before { content: "\e06b" } +i.icon.brightness.one::before { content: "\e3a6" } +i.icon.brightness.two::before { content: "\e3a7" } +i.icon.brightness.three::before { content: "\e3a8" } +i.icon.brightness.four::before { content: "\e3a9" } +i.icon.brightness.five::before { content: "\e3aa" } +i.icon.brightness.six::before { content: "\e3ab" } +i.icon.brightness.seven::before { content: "\e3ac" } +i.icon.brightness.auto::before { content: "\e1ab" } +i.icon.brightness.high::before { content: "\e1ac" } +i.icon.brightness.low::before { content: "\e1ad" } +i.icon.brightness.medium::before { content: "\e1ae" } +i.icon.broken.image::before { content: "\e3ad" } +i.icon.brush::before { content: "\e3ae" } +i.icon.bubble.chart::before { content: "\e6dd" } +i.icon.bug.report::before { content: "\e868" } +i.icon.build::before { content: "\e869" } +i.icon.burst.mode::before { content: "\e43c" } +i.icon.business::before { content: "\e0af" } +i.icon.business.center::before { content: "\eb3f" } +i.icon.cached::before { content: "\e86a" } +i.icon.cake::before { content: "\e7e9" } +i.icon.call::before { content: "\e0b0" } +i.icon.call.end::before { content: "\e0b1" } +i.icon.call.made::before { content: "\e0b2" } +i.icon.call.merge::before { content: "\e0b3" } +i.icon.call.missed::before { content: "\e0b4" } +i.icon.call.missed.outgoing::before { content: "\e0e4" } +i.icon.call.received::before { content: "\e0b5" } +i.icon.call.split::before { content: "\e0b6" } +i.icon.call.to.action::before { content: "\e06c" } +i.icon.camera::before { content: "\e3af" } +i.icon.camera.alt::before { content: "\e3b0" } +i.icon.camera.enhance::before { content: "\e8fc" } +i.icon.camera.front::before { content: "\e3b1" } +i.icon.camera.rear::before { content: "\e3b2" } +i.icon.camera.roll::before { content: "\e3b3" } +i.icon.cancel::before { content: "\e5c9" } +i.icon.card.giftcard::before { content: "\e8f6" } +i.icon.card.membership::before { content: "\e8f7" } +i.icon.card.travel::before { content: "\e8f8" } +i.icon.casino::before { content: "\eb40" } +i.icon.cast::before { content: "\e307" } +i.icon.cast.connected::before { content: "\e308" } +i.icon.center.focus.strong::before { content: "\e3b4" } +i.icon.center.focus.weak::before { content: "\e3b5" } +i.icon.change.history::before { content: "\e86b" } +i.icon.chat::before { content: "\e0b7" } +i.icon.chat.bubble::before { content: "\e0ca" } +i.icon.chat.bubble.outline::before { content: "\e0cb" } +i.icon.check::before { content: "\e5ca" } +i.icon.check.box::before { content: "\e834" } +i.icon.check.box.outline.blank::before { content: "\e835" } +i.icon.check.circle::before { content: "\e86c" } +i.icon.chevron.left::before { content: "\e5cb" } +i.icon.chevron.right::before { content: "\e5cc" } +i.icon.child.care::before { content: "\eb41" } +i.icon.child.friendly::before { content: "\eb42" } +i.icon.chrome.reader.mode::before { content: "\e86d" } +i.icon.class::before { content: "\e86e" } +i.icon.clear::before { content: "\e14c" } +i.icon.clear.all::before { content: "\e0b8" } +i.icon.close::before { content: "\e5cd" } +i.icon.closed.caption::before { content: "\e01c" } +i.icon.cloud::before { content: "\e2bd" } +i.icon.cloud.circle::before { content: "\e2be" } +i.icon.cloud.done::before { content: "\e2bf" } +i.icon.cloud.download::before { content: "\e2c0" } +i.icon.cloud.off::before { content: "\e2c1" } +i.icon.cloud.queue::before { content: "\e2c2" } +i.icon.cloud.upload::before { content: "\e2c3" } +i.icon.code::before { content: "\e86f" } +i.icon.collections::before { content: "\e3b6" } +i.icon.collections.bookmark::before { content: "\e431" } +i.icon.color.lens::before { content: "\e3b7" } +i.icon.colorize::before { content: "\e3b8" } +i.icon.comment::before { content: "\e0b9" } +i.icon.compare::before { content: "\e3b9" } +i.icon.compare.arrows::before { content: "\e915" } +i.icon.computer::before { content: "\e30a" } +i.icon.confirmation.number::before { content: "\e638" } +i.icon.contact.mail::before { content: "\e0d0" } +i.icon.contact.phone::before { content: "\e0cf" } +i.icon.contacts::before { content: "\e0ba" } +i.icon.content.copy::before { content: "\e14d" } +i.icon.content.cut::before { content: "\e14e" } +i.icon.content.paste::before { content: "\e14f" } +i.icon.control.point::before { content: "\e3ba" } +i.icon.control.point.duplicate::before { content: "\e3bb" } +i.icon.copyright::before { content: "\e90c" } +i.icon.create::before { content: "\e150" } +i.icon.create.new.folder::before { content: "\e2cc" } +i.icon.credit.card::before { content: "\e870" } +i.icon.crop::before { content: "\e3be" } +i.icon.crop.sixteen.nine::before { content: "\e3bc" } +i.icon.crop.three.two::before { content: "\e3bd" } +i.icon.crop.five.four::before { content: "\e3bf" } +i.icon.crop.seven.five::before { content: "\e3c0" } +i.icon.crop.din::before { content: "\e3c1" } +i.icon.crop.free::before { content: "\e3c2" } +i.icon.crop.landscape::before { content: "\e3c3" } +i.icon.crop.original::before { content: "\e3c4" } +i.icon.crop.portrait::before { content: "\e3c5" } +i.icon.crop.rotate::before { content: "\e437" } +i.icon.crop.square::before { content: "\e3c6" } +i.icon.dashboard::before { content: "\e871" } +i.icon.data.usage::before { content: "\e1af" } +i.icon.date.range::before { content: "\e916" } +i.icon.dehaze::before { content: "\e3c7" } +i.icon.delete::before { content: "\e872" } +i.icon.delete.forever::before { content: "\e92b" } +i.icon.delete.sweep::before { content: "\e16c" } +i.icon.description::before { content: "\e873" } +i.icon.desktop.mac::before { content: "\e30b" } +i.icon.desktop.windows::before { content: "\e30c" } +i.icon.details::before { content: "\e3c8" } +i.icon.developer.board::before { content: "\e30d" } +i.icon.developer.mode::before { content: "\e1b0" } +i.icon.device.hub::before { content: "\e335" } +i.icon.devices::before { content: "\e1b1" } +i.icon.devices.other::before { content: "\e337" } +i.icon.dialer.sip::before { content: "\e0bb" } +i.icon.dialpad::before { content: "\e0bc" } +i.icon.directions::before { content: "\e52e" } +i.icon.directions.bike::before { content: "\e52f" } +i.icon.directions.boat::before { content: "\e532" } +i.icon.directions.bus::before { content: "\e530" } +i.icon.directions.car::before { content: "\e531" } +i.icon.directions.railway::before { content: "\e534" } +i.icon.directions.run::before { content: "\e566" } +i.icon.directions.subway::before { content: "\e533" } +i.icon.directions.transit::before { content: "\e535" } +i.icon.directions.walk::before { content: "\e536" } +i.icon.disc.full::before { content: "\e610" } +i.icon.dns::before { content: "\e875" } +i.icon.do.not.disturb::before { content: "\e612" } +i.icon.do.not.disturb.alt::before { content: "\e611" } +i.icon.do.not.disturb.off::before { content: "\e643" } +i.icon.do.not.disturb.on::before { content: "\e644" } +i.icon.dock::before { content: "\e30e" } +i.icon.domain::before { content: "\e7ee" } +i.icon.done::before { content: "\e876" } +i.icon.done.all::before { content: "\e877" } +i.icon.donut.large::before { content: "\e917" } +i.icon.donut.small::before { content: "\e918" } +i.icon.drafts::before { content: "\e151" } +i.icon.drag.handle::before { content: "\e25d" } +i.icon.drive.eta::before { content: "\e613" } +i.icon.dvr::before { content: "\e1b2" } +i.icon.edit::before { content: "\e3c9" } +i.icon.edit.location::before { content: "\e568" } +i.icon.eject::before { content: "\e8fb" } +i.icon.email::before { content: "\e0be" } +i.icon.enhanced.encryption::before { content: "\e63f" } +i.icon.equalizer::before { content: "\e01d" } +i.icon.error::before { content: "\e000" } +i.icon.error.outline::before { content: "\e001" } +i.icon.euro.symbol::before { content: "\e926" } +i.icon.ev.station::before { content: "\e56d" } +i.icon.event::before { content: "\e878" } +i.icon.event.available::before { content: "\e614" } +i.icon.event.busy::before { content: "\e615" } +i.icon.event.note::before { content: "\e616" } +i.icon.event.seat::before { content: "\e903" } +i.icon.exit.to.app::before { content: "\e879" } +i.icon.expand.less::before { content: "\e5ce" } +i.icon.expand.more::before { content: "\e5cf" } +i.icon.explicit::before { content: "\e01e" } +i.icon.explore::before { content: "\e87a" } +i.icon.exposure::before { content: "\e3ca" } +i.icon.exposure.neg.1::before { content: "\e3cb" } +i.icon.exposure.neg.2::before { content: "\e3cc" } +i.icon.exposure.plus.1::before { content: "\e3cd" } +i.icon.exposure.plus.2::before { content: "\e3ce" } +i.icon.exposure.zero::before { content: "\e3cf" } +i.icon.extension::before { content: "\e87b" } +i.icon.face::before { content: "\e87c" } +i.icon.fast.forward::before { content: "\e01f" } +i.icon.fast.rewind::before { content: "\e020" } +i.icon.favorite::before { content: "\e87d" } +i.icon.favorite.border::before { content: "\e87e" } +i.icon.featured.play.list::before { content: "\e06d" } +i.icon.featured.video::before { content: "\e06e" } +i.icon.feedback::before { content: "\e87f" } +i.icon.fiber.dvr::before { content: "\e05d" } +i.icon.fiber.manual.record::before { content: "\e061" } +i.icon.fiber.new::before { content: "\e05e" } +i.icon.fiber.pin::before { content: "\e06a" } +i.icon.fiber.smart.record::before { content: "\e062" } +i.icon.file.download::before { content: "\e2c4" } +i.icon.file.upload::before { content: "\e2c6" } +i.icon.filter::before { content: "\e3d3" } +i.icon.filter.1::before { content: "\e3d0" } +i.icon.filter.2::before { content: "\e3d1" } +i.icon.filter.3::before { content: "\e3d2" } +i.icon.filter.4::before { content: "\e3d4" } +i.icon.filter.5::before { content: "\e3d5" } +i.icon.filter.6::before { content: "\e3d6" } +i.icon.filter.7::before { content: "\e3d7" } +i.icon.filter.8::before { content: "\e3d8" } +i.icon.filter.9::before { content: "\e3d9" } +i.icon.filter.9.plus::before { content: "\e3da" } +i.icon.filter.b.and.w::before { content: "\e3db" } +i.icon.filter.center.focus::before { content: "\e3dc" } +i.icon.filter.drama::before { content: "\e3dd" } +i.icon.filter.frames::before { content: "\e3de" } +i.icon.filter.hdr::before { content: "\e3df" } +i.icon.filter.list::before { content: "\e152" } +i.icon.filter.none::before { content: "\e3e0" } +i.icon.filter.tilt.shift::before { content: "\e3e2" } +i.icon.filter.vintage::before { content: "\e3e3" } +i.icon.find.in.page::before { content: "\e880" } +i.icon.find.replace::before { content: "\e881" } +i.icon.fingerprint::before { content: "\e90d" } +i.icon.first.page::before { content: "\e5dc" } +i.icon.fitness.center::before { content: "\eb43" } +i.icon.flag::before { content: "\e153" } +i.icon.flare::before { content: "\e3e4" } +i.icon.flash.auto::before { content: "\e3e5" } +i.icon.flash.off::before { content: "\e3e6" } +i.icon.flash.on::before { content: "\e3e7" } +i.icon.flight::before { content: "\e539" } +i.icon.flight.land::before { content: "\e904" } +i.icon.flight.takeoff::before { content: "\e905" } +i.icon.flip::before { content: "\e3e8" } +i.icon.flip.to.back::before { content: "\e882" } +i.icon.flip.to.front::before { content: "\e883" } +i.icon.folder::before { content: "\e2c7" } +i.icon.folder.open::before { content: "\e2c8" } +i.icon.folder.shared::before { content: "\e2c9" } +i.icon.folder.special::before { content: "\e617" } +i.icon.font.download::before { content: "\e167" } +i.icon.format.align.center::before { content: "\e234" } +i.icon.format.align.justify::before { content: "\e235" } +i.icon.format.align.left::before { content: "\e236" } +i.icon.format.align.right::before { content: "\e237" } +i.icon.format.bold::before { content: "\e238" } +i.icon.format.clear::before { content: "\e239" } +i.icon.format.color.fill::before { content: "\e23a" } +i.icon.format.color.reset::before { content: "\e23b" } +i.icon.format.color.text::before { content: "\e23c" } +i.icon.format.indent.decrease::before { content: "\e23d" } +i.icon.format.indent.increase::before { content: "\e23e" } +i.icon.format.italic::before { content: "\e23f" } +i.icon.format.line.spacing::before { content: "\e240" } +i.icon.format.list.bulleted::before { content: "\e241" } +i.icon.format.list.numbered::before { content: "\e242" } +i.icon.format.paint::before { content: "\e243" } +i.icon.format.quote::before { content: "\e244" } +i.icon.format.shapes::before { content: "\e25e" } +i.icon.format.size::before { content: "\e245" } +i.icon.format.strikethrough::before { content: "\e246" } +i.icon.format.textdirection.l.to.r::before { content: "\e247" } +i.icon.format.textdirection.r.to.l::before { content: "\e248" } +i.icon.format.underlined::before { content: "\e249" } +i.icon.forum::before { content: "\e0bf" } +i.icon.forward::before { content: "\e154" } +i.icon.forward.ten::before { content: "\e056" } +i.icon.forward.thirty::before { content: "\e057" } +i.icon.forward.five::before { content: "\e058" } +i.icon.free.breakfast::before { content: "\eb44" } +i.icon.fullscreen::before { content: "\e5d0" } +i.icon.fullscreen.exit::before { content: "\e5d1" } +i.icon.functions::before { content: "\e24a" } +i.icon.g.translate::before { content: "\e927" } +i.icon.gamepad::before { content: "\e30f" } +i.icon.games::before { content: "\e021" } +i.icon.gavel::before { content: "\e90e" } +i.icon.gesture::before { content: "\e155" } +i.icon.get.app::before { content: "\e884" } +i.icon.gif::before { content: "\e908" } +i.icon.golf.course::before { content: "\eb45" } +i.icon.gps.fixed::before { content: "\e1b3" } +i.icon.gps.not.fixed::before { content: "\e1b4" } +i.icon.gps.off::before { content: "\e1b5" } +i.icon.grade::before { content: "\e885" } +i.icon.gradient::before { content: "\e3e9" } +i.icon.grain::before { content: "\e3ea" } +i.icon.graphic.eq::before { content: "\e1b8" } +i.icon.grid.off::before { content: "\e3eb" } +i.icon.grid.on::before { content: "\e3ec" } +i.icon.group::before { content: "\e7ef" } +i.icon.group.add::before { content: "\e7f0" } +i.icon.group.work::before { content: "\e886" } +i.icon.hd::before { content: "\e052" } +i.icon.hdr.off::before { content: "\e3ed" } +i.icon.hdr.on::before { content: "\e3ee" } +i.icon.hdr.strong::before { content: "\e3f1" } +i.icon.hdr.weak::before { content: "\e3f2" } +i.icon.headset::before { content: "\e310" } +i.icon.headset.mic::before { content: "\e311" } +i.icon.healing::before { content: "\e3f3" } +i.icon.hearing::before { content: "\e023" } +i.icon.help::before { content: "\e887" } +i.icon.help.outline::before { content: "\e8fd" } +i.icon.high.quality::before { content: "\e024" } +i.icon.highlight::before { content: "\e25f" } +i.icon.highlight.off::before { content: "\e888" } +i.icon.history::before { content: "\e889" } +i.icon.home::before { content: "\e88a" } +i.icon.hot.tub::before { content: "\eb46" } +i.icon.hotel::before { content: "\e53a" } +i.icon.hourglass.empty::before { content: "\e88b" } +i.icon.hourglass.full::before { content: "\e88c" } +i.icon.http::before { content: "\e902" } +i.icon.https::before { content: "\e88d" } +i.icon.image::before { content: "\e3f4" } +i.icon.image.aspect.ratio::before { content: "\e3f5" } +i.icon.import.contacts::before { content: "\e0e0" } +i.icon.import.export::before { content: "\e0c3" } +i.icon.important.devices::before { content: "\e912" } +i.icon.inbox::before { content: "\e156" } +i.icon.indeterminate.check.box::before { content: "\e909" } +i.icon.info::before { content: "\e88e" } +i.icon.info.outline::before { content: "\e88f" } +i.icon.input::before { content: "\e890" } +i.icon.insert.chart::before { content: "\e24b" } +i.icon.insert.comment::before { content: "\e24c" } +i.icon.insert.drive.file::before { content: "\e24d" } +i.icon.insert.emoticon::before { content: "\e24e" } +i.icon.insert.invitation::before { content: "\e24f" } +i.icon.insert.link::before { content: "\e250" } +i.icon.insert.photo::before { content: "\e251" } +i.icon.invert.colors::before { content: "\e891" } +i.icon.invert.colors.off::before { content: "\e0c4" } +i.icon.iso::before { content: "\e3f6" } +i.icon.keyboard::before { content: "\e312" } +i.icon.keyboard.arrow.down::before { content: "\e313" } +i.icon.keyboard.arrow.left::before { content: "\e314" } +i.icon.keyboard.arrow.right::before { content: "\e315" } +i.icon.keyboard.arrow.up::before { content: "\e316" } +i.icon.keyboard.backspace::before { content: "\e317" } +i.icon.keyboard.capslock::before { content: "\e318" } +i.icon.keyboard.hide::before { content: "\e31a" } +i.icon.keyboard.return::before { content: "\e31b" } +i.icon.keyboard.tab::before { content: "\e31c" } +i.icon.keyboard.voice::before { content: "\e31d" } +i.icon.kitchen::before { content: "\eb47" } +i.icon.label::before { content: "\e892" } +i.icon.label.outline::before { content: "\e893" } +i.icon.landscape::before { content: "\e3f7" } +i.icon.language::before { content: "\e894" } +i.icon.laptop::before { content: "\e31e" } +i.icon.laptop.chromebook::before { content: "\e31f" } +i.icon.laptop.mac::before { content: "\e320" } +i.icon.laptop.windows::before { content: "\e321" } +i.icon.last.page::before { content: "\e5dd" } +i.icon.launch::before { content: "\e895" } +i.icon.layers::before { content: "\e53b" } +i.icon.layers.clear::before { content: "\e53c" } +i.icon.leak.add::before { content: "\e3f8" } +i.icon.leak.remove::before { content: "\e3f9" } +i.icon.lens::before { content: "\e3fa" } +i.icon.library.add::before { content: "\e02e" } +i.icon.library.books::before { content: "\e02f" } +i.icon.library.music::before { content: "\e030" } +i.icon.lightbulb.outline::before { content: "\e90f" } +i.icon.line.style::before { content: "\e919" } +i.icon.line.weight::before { content: "\e91a" } +i.icon.linear.scale::before { content: "\e260" } +i.icon.link::before { content: "\e157" } +i.icon.linked.camera::before { content: "\e438" } +i.icon.list::before { content: "\e896" } +i.icon.live.help::before { content: "\e0c6" } +i.icon.live.tv::before { content: "\e639" } +i.icon.local.activity::before { content: "\e53f" } +i.icon.local.airport::before { content: "\e53d" } +i.icon.local.atm::before { content: "\e53e" } +i.icon.local.bar::before { content: "\e540" } +i.icon.local.cafe::before { content: "\e541" } +i.icon.local.car.wash::before { content: "\e542" } +i.icon.local.convenience.store::before { content: "\e543" } +i.icon.local.dining::before { content: "\e556" } +i.icon.local.drink::before { content: "\e544" } +i.icon.local.florist::before { content: "\e545" } +i.icon.local.gas.station::before { content: "\e546" } +i.icon.local.grocery.store::before { content: "\e547" } +i.icon.local.hospital::before { content: "\e548" } +i.icon.local.hotel::before { content: "\e549" } +i.icon.local.laundry.service::before { content: "\e54a" } +i.icon.local.library::before { content: "\e54b" } +i.icon.local.mall::before { content: "\e54c" } +i.icon.local.movies::before { content: "\e54d" } +i.icon.local.offer::before { content: "\e54e" } +i.icon.local.parking::before { content: "\e54f" } +i.icon.local.pharmacy::before { content: "\e550" } +i.icon.local.phone::before { content: "\e551" } +i.icon.local.pizza::before { content: "\e552" } +i.icon.local.play::before { content: "\e553" } +i.icon.local.post.office::before { content: "\e554" } +i.icon.local.printshop::before { content: "\e555" } +i.icon.local.see::before { content: "\e557" } +i.icon.local.shipping::before { content: "\e558" } +i.icon.local.taxi::before { content: "\e559" } +i.icon.location.city::before { content: "\e7f1" } +i.icon.location.disabled::before { content: "\e1b6" } +i.icon.location.off::before { content: "\e0c7" } +i.icon.location.on::before { content: "\e0c8" } +i.icon.location.searching::before { content: "\e1b7" } +i.icon.lock::before { content: "\e897" } +i.icon.lock.open::before { content: "\e898" } +i.icon.lock.outline::before { content: "\e899" } +i.icon.looks::before { content: "\e3fc" } +i.icon.looks.3::before { content: "\e3fb" } +i.icon.looks.4::before { content: "\e3fd" } +i.icon.looks.5::before { content: "\e3fe" } +i.icon.looks.6::before { content: "\e3ff" } +i.icon.looks.one::before { content: "\e400" } +i.icon.looks.two::before { content: "\e401" } +i.icon.loop::before { content: "\e028" } +i.icon.loupe::before { content: "\e402" } +i.icon.low.priority::before { content: "\e16d" } +i.icon.loyalty::before { content: "\e89a" } +i.icon.mail::before { content: "\e158" } +i.icon.mail.outline::before { content: "\e0e1" } +i.icon.map::before { content: "\e55b" } +i.icon.markunread::before { content: "\e159" } +i.icon.markunread.mailbox::before { content: "\e89b" } +i.icon.memory::before { content: "\e322" } +i.icon.menu::before { content: "\e5d2" } +i.icon.merge.type::before { content: "\e252" } +i.icon.message::before { content: "\e0c9" } +i.icon.mic::before { content: "\e029" } +i.icon.mic.none::before { content: "\e02a" } +i.icon.mic.off::before { content: "\e02b" } +i.icon.mms::before { content: "\e618" } +i.icon.mode.comment::before { content: "\e253" } +i.icon.mode.edit::before { content: "\e254" } +i.icon.monetization.on::before { content: "\e263" } +i.icon.money.off::before { content: "\e25c" } +i.icon.monochrome.photos::before { content: "\e403" } +i.icon.mood::before { content: "\e7f2" } +i.icon.mood.bad::before { content: "\e7f3" } +i.icon.more::before { content: "\e619" } +i.icon.more.horiz::before { content: "\e5d3" } +i.icon.more.vert::before { content: "\e5d4" } +i.icon.motorcycle::before { content: "\e91b" } +i.icon.mouse::before { content: "\e323" } +i.icon.move.to.inbox::before { content: "\e168" } +i.icon.movie::before { content: "\e02c" } +i.icon.movie.creation::before { content: "\e404" } +i.icon.movie.filter::before { content: "\e43a" } +i.icon.multiline.chart::before { content: "\e6df" } +i.icon.music.note::before { content: "\e405" } +i.icon.music.video::before { content: "\e063" } +i.icon.my.location::before { content: "\e55c" } +i.icon.nature::before { content: "\e406" } +i.icon.nature.people::before { content: "\e407" } +i.icon.navigate.before::before { content: "\e408" } +i.icon.navigate.next::before { content: "\e409" } +i.icon.navigation::before { content: "\e55d" } +i.icon.near.me::before { content: "\e569" } +i.icon.network.cell::before { content: "\e1b9" } +i.icon.network.check::before { content: "\e640" } +i.icon.network.locked::before { content: "\e61a" } +i.icon.network.wifi::before { content: "\e1ba" } +i.icon.new.releases::before { content: "\e031" } +i.icon.next.week::before { content: "\e16a" } +i.icon.nfc::before { content: "\e1bb" } +i.icon.no.encryption::before { content: "\e641" } +i.icon.no.sim::before { content: "\e0cc" } +i.icon.not.interested::before { content: "\e033" } +i.icon.note::before { content: "\e06f" } +i.icon.note.add::before { content: "\e89c" } +i.icon.notifications::before { content: "\e7f4" } +i.icon.notifications.active::before { content: "\e7f7" } +i.icon.notifications.none::before { content: "\e7f5" } +i.icon.notifications.off::before { content: "\e7f6" } +i.icon.notifications.paused::before { content: "\e7f8" } +i.icon.offline.pin::before { content: "\e90a" } +i.icon.ondemand.video::before { content: "\e63a" } +i.icon.opacity::before { content: "\e91c" } +i.icon.open.in.browser::before { content: "\e89d" } +i.icon.open.in.new::before { content: "\e89e" } +i.icon.open.with::before { content: "\e89f" } +i.icon.pages::before { content: "\e7f9" } +i.icon.pageview::before { content: "\e8a0" } +i.icon.palette::before { content: "\e40a" } +i.icon.pan.tool::before { content: "\e925" } +i.icon.panorama::before { content: "\e40b" } +i.icon.panorama.fish.eye::before { content: "\e40c" } +i.icon.panorama.horizontal::before { content: "\e40d" } +i.icon.panorama.vertical::before { content: "\e40e" } +i.icon.panorama.wide.angle::before { content: "\e40f" } +i.icon.party.mode::before { content: "\e7fa" } +i.icon.pause::before { content: "\e034" } +i.icon.pause.circle.filled::before { content: "\e035" } +i.icon.pause.circle.outline::before { content: "\e036" } +i.icon.payment::before { content: "\e8a1" } +i.icon.people::before { content: "\e7fb" } +i.icon.people.outline::before { content: "\e7fc" } +i.icon.perm.camera.mic::before { content: "\e8a2" } +i.icon.perm.contact.calendar::before { content: "\e8a3" } +i.icon.perm.data.setting::before { content: "\e8a4" } +i.icon.perm.device.information::before { content: "\e8a5" } +i.icon.perm.identity::before { content: "\e8a6" } +i.icon.perm.media::before { content: "\e8a7" } +i.icon.perm.phone.msg::before { content: "\e8a8" } +i.icon.perm.scan.wifi::before { content: "\e8a9" } +i.icon.person::before { content: "\e7fd" } +i.icon.person.add::before { content: "\e7fe" } +i.icon.person.outline::before { content: "\e7ff" } +i.icon.person.pin::before { content: "\e55a" } +i.icon.person.pin.circle::before { content: "\e56a" } +i.icon.personal.video::before { content: "\e63b" } +i.icon.pets::before { content: "\e91d" } +i.icon.phone::before { content: "\e0cd" } +i.icon.phone.android::before { content: "\e324" } +i.icon.phone.bluetooth.speaker::before { content: "\e61b" } +i.icon.phone.forwarded::before { content: "\e61c" } +i.icon.phone.in.talk::before { content: "\e61d" } +i.icon.phone.iphone::before { content: "\e325" } +i.icon.phone.locked::before { content: "\e61e" } +i.icon.phone.missed::before { content: "\e61f" } +i.icon.phone.paused::before { content: "\e620" } +i.icon.phonelink::before { content: "\e326" } +i.icon.phonelink.erase::before { content: "\e0db" } +i.icon.phonelink.lock::before { content: "\e0dc" } +i.icon.phonelink.off::before { content: "\e327" } +i.icon.phonelink.ring::before { content: "\e0dd" } +i.icon.phonelink.setup::before { content: "\e0de" } +i.icon.photo::before { content: "\e410" } +i.icon.photo.album::before { content: "\e411" } +i.icon.photo.camera::before { content: "\e412" } +i.icon.photo.filter::before { content: "\e43b" } +i.icon.photo.library::before { content: "\e413" } +i.icon.photo.size.select.actual::before { content: "\e432" } +i.icon.photo.size.select.large::before { content: "\e433" } +i.icon.photo.size.select.small::before { content: "\e434" } +i.icon.picture.as.pdf::before { content: "\e415" } +i.icon.picture.in.picture::before { content: "\e8aa" } +i.icon.picture.in.picture.alt::before { content: "\e911" } +i.icon.pie.chart::before { content: "\e6c4" } +i.icon.pie.chart.outlined::before { content: "\e6c5" } +i.icon.pin.drop::before { content: "\e55e" } +i.icon.place::before { content: "\e55f" } +i.icon.play.arrow::before { content: "\e037" } +i.icon.play.circle.filled::before { content: "\e038" } +i.icon.play.circle.outline::before { content: "\e039" } +i.icon.play.for.work::before { content: "\e906" } +i.icon.playlist.add::before { content: "\e03b" } +i.icon.playlist.add.check::before { content: "\e065" } +i.icon.playlist.play::before { content: "\e05f" } +i.icon.plus.one::before { content: "\e800" } +i.icon.poll::before { content: "\e801" } +i.icon.polymer::before { content: "\e8ab" } +i.icon.pool::before { content: "\eb48" } +i.icon.portable.wifi.off::before { content: "\e0ce" } +i.icon.portrait::before { content: "\e416" } +i.icon.power::before { content: "\e63c" } +i.icon.power.input::before { content: "\e336" } +i.icon.power.settings.new::before { content: "\e8ac" } +i.icon.pregnant.woman::before { content: "\e91e" } +i.icon.present.to.all::before { content: "\e0df" } +i.icon.print::before { content: "\e8ad" } +i.icon.priority.high::before { content: "\e645" } +i.icon.public::before { content: "\e80b" } +i.icon.publish::before { content: "\e255" } +i.icon.query.builder::before { content: "\e8ae" } +i.icon.question.answer::before { content: "\e8af" } +i.icon.queue::before { content: "\e03c" } +i.icon.queue.music::before { content: "\e03d" } +i.icon.queue.play.next::before { content: "\e066" } +i.icon.radio::before { content: "\e03e" } +i.icon.radio.button.checked::before { content: "\e837" } +i.icon.radio.button.unchecked::before { content: "\e836" } +i.icon.rate.review::before { content: "\e560" } +i.icon.receipt::before { content: "\e8b0" } +i.icon.recent.actors::before { content: "\e03f" } +i.icon.record.voice.over::before { content: "\e91f" } +i.icon.redeem::before { content: "\e8b1" } +i.icon.redo::before { content: "\e15a" } +i.icon.refresh::before { content: "\e5d5" } +i.icon.remove::before { content: "\e15b" } +i.icon.remove.circle::before { content: "\e15c" } +i.icon.remove.circle.outline::before { content: "\e15d" } +i.icon.remove.from.queue::before { content: "\e067" } +i.icon.remove.red.eye::before { content: "\e417" } +i.icon.remove.shopping.cart::before { content: "\e928" } +i.icon.reorder::before { content: "\e8fe" } +i.icon.repeat::before { content: "\e040" } +i.icon.repeat.one::before { content: "\e041" } +i.icon.replay::before { content: "\e042" } +i.icon.replay.ten::before { content: "\e059" } +i.icon.replay.thirty::before { content: "\e05a" } +i.icon.replay.five::before { content: "\e05b" } +i.icon.reply::before { content: "\e15e" } +i.icon.reply.all::before { content: "\e15f" } +i.icon.report::before { content: "\e160" } +i.icon.report.problem::before { content: "\e8b2" } +i.icon.restaurant::before { content: "\e56c" } +i.icon.restaurant.menu::before { content: "\e561" } +i.icon.restore::before { content: "\e8b3" } +i.icon.restore.page::before { content: "\e929" } +i.icon.ring.volume::before { content: "\e0d1" } +i.icon.room::before { content: "\e8b4" } +i.icon.room.service::before { content: "\eb49" } +i.icon.rotate.ninety.degrees.ccw::before { content: "\e418" } +i.icon.rotate.left::before { content: "\e419" } +i.icon.rotate.right::before { content: "\e41a" } +i.icon.rounded.corner::before { content: "\e920" } +i.icon.router::before { content: "\e328" } +i.icon.rowing::before { content: "\e921" } +i.icon.rss.feed::before { content: "\e0e5" } +i.icon.rv.hookup::before { content: "\e642" } +i.icon.satellite::before { content: "\e562" } +i.icon.save::before { content: "\e161" } +i.icon.scanner::before { content: "\e329" } +i.icon.schedule::before { content: "\e8b5" } +i.icon.school::before { content: "\e80c" } +i.icon.screen.lock.landscape::before { content: "\e1be" } +i.icon.screen.lock.portrait::before { content: "\e1bf" } +i.icon.screen.lock.rotation::before { content: "\e1c0" } +i.icon.screen.rotation::before { content: "\e1c1" } +i.icon.screen.share::before { content: "\e0e2" } +i.icon.sd.card::before { content: "\e623" } +i.icon.sd.storage::before { content: "\e1c2" } +i.icon.search::before { content: "\e8b6" } +i.icon.security::before { content: "\e32a" } +i.icon.select.all::before { content: "\e162" } +i.icon.send::before { content: "\e163" } +i.icon.sentiment.dissatisfied::before { content: "\e811" } +i.icon.sentiment.neutral::before { content: "\e812" } +i.icon.sentiment.satisfied::before { content: "\e813" } +i.icon.sentiment.very.dissatisfied::before { content: "\e814" } +i.icon.sentiment.very.satisfied::before { content: "\e815" } +i.icon.settings::before { content: "\e8b8" } +i.icon.settings.applications::before { content: "\e8b9" } +i.icon.settings.backup.restore::before { content: "\e8ba" } +i.icon.settings.bluetooth::before { content: "\e8bb" } +i.icon.settings.brightness::before { content: "\e8bd" } +i.icon.settings.cell::before { content: "\e8bc" } +i.icon.settings.ethernet::before { content: "\e8be" } +i.icon.settings.input.antenna::before { content: "\e8bf" } +i.icon.settings.input.component::before { content: "\e8c0" } +i.icon.settings.input.composite::before { content: "\e8c1" } +i.icon.settings.input.hdmi::before { content: "\e8c2" } +i.icon.settings.input.svideo::before { content: "\e8c3" } +i.icon.settings.overscan::before { content: "\e8c4" } +i.icon.settings.phone::before { content: "\e8c5" } +i.icon.settings.power::before { content: "\e8c6" } +i.icon.settings.remote::before { content: "\e8c7" } +i.icon.settings.system.daydream::before { content: "\e1c3" } +i.icon.settings.voice::before { content: "\e8c8" } +i.icon.share::before { content: "\e80d" } +i.icon.shop::before { content: "\e8c9" } +i.icon.shop.two::before { content: "\e8ca" } +i.icon.shopping.basket::before { content: "\e8cb" } +i.icon.shopping.cart::before { content: "\e8cc" } +i.icon.short.text::before { content: "\e261" } +i.icon.show.chart::before { content: "\e6e1" } +i.icon.shuffle::before { content: "\e043" } +i.icon.signal.cellular.four.bar::before { content: "\e1c8" } +i.icon.signal.cellular.connected.no.internet.4.bar::before { content: "\e1cd" } +i.icon.signal.cellular.no.sim::before { content: "\e1ce" } +i.icon.signal.cellular.null::before { content: "\e1cf" } +i.icon.signal.cellular.off::before { content: "\e1d0" } +i.icon.signal.wifi.four.bar::before { content: "\e1d8" } +i.icon.signal.wifi.four.bar.lock::before { content: "\e1d9" } +i.icon.signal.wifi.off::before { content: "\e1da" } +i.icon.sim.card::before { content: "\e32b" } +i.icon.sim.card.alert::before { content: "\e624" } +i.icon.skip.next::before { content: "\e044" } +i.icon.skip.previous::before { content: "\e045" } +i.icon.slideshow::before { content: "\e41b" } +i.icon.slow.motion.video::before { content: "\e068" } +i.icon.smartphone::before { content: "\e32c" } +i.icon.smoke.free::before { content: "\eb4a" } +i.icon.smoking.rooms::before { content: "\eb4b" } +i.icon.sms::before { content: "\e625" } +i.icon.sms.failed::before { content: "\e626" } +i.icon.snooze::before { content: "\e046" } +i.icon.sort::before { content: "\e164" } +i.icon.sort.by.alpha::before { content: "\e053" } +i.icon.spa::before { content: "\eb4c" } +i.icon.space.bar::before { content: "\e256" } +i.icon.speaker::before { content: "\e32d" } +i.icon.speaker.group::before { content: "\e32e" } +i.icon.speaker.notes::before { content: "\e8cd" } +i.icon.speaker.notes.off::before { content: "\e92a" } +i.icon.speaker.phone::before { content: "\e0d2" } +i.icon.spellcheck::before { content: "\e8ce" } +i.icon.star::before { content: "\e838" } +i.icon.star.border::before { content: "\e83a" } +i.icon.star.half::before { content: "\e839" } +i.icon.stars::before { content: "\e8d0" } +i.icon.stay.current.landscape::before { content: "\e0d3" } +i.icon.stay.current.portrait::before { content: "\e0d4" } +i.icon.stay.primary.landscape::before { content: "\e0d5" } +i.icon.stay.primary.portrait::before { content: "\e0d6" } +i.icon.stop::before { content: "\e047" } +i.icon.stop.screen.share::before { content: "\e0e3" } +i.icon.storage::before { content: "\e1db" } +i.icon.store::before { content: "\e8d1" } +i.icon.store.mall.directory::before { content: "\e563" } +i.icon.straighten::before { content: "\e41c" } +i.icon.streetview::before { content: "\e56e" } +i.icon.strikethrough.s::before { content: "\e257" } +i.icon.style::before { content: "\e41d" } +i.icon.subdirectory.arrow.left::before { content: "\e5d9" } +i.icon.subdirectory.arrow.right::before { content: "\e5da" } +i.icon.subject::before { content: "\e8d2" } +i.icon.subscriptions::before { content: "\e064" } +i.icon.subtitles::before { content: "\e048" } +i.icon.subway::before { content: "\e56f" } +i.icon.supervisor.account::before { content: "\e8d3" } +i.icon.surround.sound::before { content: "\e049" } +i.icon.swap.calls::before { content: "\e0d7" } +i.icon.swap.horiz::before { content: "\e8d4" } +i.icon.swap.vert::before { content: "\e8d5" } +i.icon.swap.vertical.circle::before { content: "\e8d6" } +i.icon.switch.camera::before { content: "\e41e" } +i.icon.switch.video::before { content: "\e41f" } +i.icon.sync::before { content: "\e627" } +i.icon.sync.disabled::before { content: "\e628" } +i.icon.sync.problem::before { content: "\e629" } +i.icon.system.update::before { content: "\e62a" } +i.icon.system.update.alt::before { content: "\e8d7" } +i.icon.tab::before { content: "\e8d8" } +i.icon.tab.unselected::before { content: "\e8d9" } +i.icon.tablet::before { content: "\e32f" } +i.icon.tablet.android::before { content: "\e330" } +i.icon.tablet.mac::before { content: "\e331" } +i.icon.tag.faces::before { content: "\e420" } +i.icon.tap.and.play::before { content: "\e62b" } +i.icon.terrain::before { content: "\e564" } +i.icon.text.fields::before { content: "\e262" } +i.icon.text.format::before { content: "\e165" } +i.icon.textsms::before { content: "\e0d8" } +i.icon.texture::before { content: "\e421" } +i.icon.theaters::before { content: "\e8da" } +i.icon.thumb.down::before { content: "\e8db" } +i.icon.thumb.up::before { content: "\e8dc" } +i.icon.thumbs.up.down::before { content: "\e8dd" } +i.icon.time.to.leave::before { content: "\e62c" } +i.icon.timelapse::before { content: "\e422" } +i.icon.timeline::before { content: "\e922" } +i.icon.timer::before { content: "\e425" } +i.icon.timer.ten::before { content: "\e423" } +i.icon.timer.three::before { content: "\e424" } +i.icon.timer.off::before { content: "\e426" } +i.icon.title::before { content: "\e264" } +i.icon.toc::before { content: "\e8de" } +i.icon.today::before { content: "\e8df" } +i.icon.toll::before { content: "\e8e0" } +i.icon.tonality::before { content: "\e427" } +i.icon.touch.app::before { content: "\e913" } +i.icon.toys::before { content: "\e332" } +i.icon.track.changes::before { content: "\e8e1" } +i.icon.traffic::before { content: "\e565" } +i.icon.train::before { content: "\e570" } +i.icon.tram::before { content: "\e571" } +i.icon.transfer.within.a.station::before { content: "\e572" } +i.icon.transform::before { content: "\e428" } +i.icon.translate::before { content: "\e8e2" } +i.icon.trending.down::before { content: "\e8e3" } +i.icon.trending.flat::before { content: "\e8e4" } +i.icon.trending.up::before { content: "\e8e5" } +i.icon.tune::before { content: "\e429" } +i.icon.turned.in::before { content: "\e8e6" } +i.icon.turned.in.not::before { content: "\e8e7" } +i.icon.tv::before { content: "\e333" } +i.icon.unarchive::before { content: "\e169" } +i.icon.undo::before { content: "\e166" } +i.icon.unfold.less::before { content: "\e5d6" } +i.icon.unfold.more::before { content: "\e5d7" } +i.icon.update::before { content: "\e923" } +i.icon.usb::before { content: "\e1e0" } +i.icon.verified.user::before { content: "\e8e8" } +i.icon.vertical.align.bottom::before { content: "\e258" } +i.icon.vertical.align.center::before { content: "\e259" } +i.icon.vertical.align.top::before { content: "\e25a" } +i.icon.vibration::before { content: "\e62d" } +i.icon.video.call::before { content: "\e070" } +i.icon.video.label::before { content: "\e071" } +i.icon.video.library::before { content: "\e04a" } +i.icon.videocam::before { content: "\e04b" } +i.icon.videocam.off::before { content: "\e04c" } +i.icon.videogame.asset::before { content: "\e338" } +i.icon.view.agenda::before { content: "\e8e9" } +i.icon.view.array::before { content: "\e8ea" } +i.icon.view.carousel::before { content: "\e8eb" } +i.icon.view.column::before { content: "\e8ec" } +i.icon.view.comfy::before { content: "\e42a" } +i.icon.view.compact::before { content: "\e42b" } +i.icon.view.day::before { content: "\e8ed" } +i.icon.view.headline::before { content: "\e8ee" } +i.icon.view.list::before { content: "\e8ef" } +i.icon.view.module::before { content: "\e8f0" } +i.icon.view.quilt::before { content: "\e8f1" } +i.icon.view.stream::before { content: "\e8f2" } +i.icon.view.week::before { content: "\e8f3" } +i.icon.vignette::before { content: "\e435" } +i.icon.visibility::before { content: "\e8f4" } +i.icon.visibility.off::before { content: "\e8f5" } +i.icon.voice.chat::before { content: "\e62e" } +i.icon.voicemail::before { content: "\e0d9" } +i.icon.volume.down::before { content: "\e04d" } +i.icon.volume.mute::before { content: "\e04e" } +i.icon.volume.off::before { content: "\e04f" } +i.icon.volume.up::before { content: "\e050" } +i.icon.vpn.key::before { content: "\e0da" } +i.icon.vpn.lock::before { content: "\e62f" } +i.icon.wallpaper::before { content: "\e1bc" } +i.icon.warning::before { content: "\e002" } +i.icon.watch::before { content: "\e334" } +i.icon.watch.later::before { content: "\e924" } +i.icon.wb.auto::before { content: "\e42c" } +i.icon.wb.cloudy::before { content: "\e42d" } +i.icon.wb.incandescent::before { content: "\e42e" } +i.icon.wb.iridescent::before { content: "\e436" } +i.icon.wb.sunny::before { content: "\e430" } +i.icon.wc::before { content: "\e63d" } +i.icon.web::before { content: "\e051" } +i.icon.web.asset::before { content: "\e069" } +i.icon.weekend::before { content: "\e16b" } +i.icon.whatshot::before { content: "\e80e" } +i.icon.widgets::before { content: "\e1bd" } +i.icon.wifi::before { content: "\e63e" } +i.icon.wifi.lock::before { content: "\e1e1" } +i.icon.wifi.tethering::before { content: "\e1e2" } +i.icon.work::before { content: "\e8f9" } +i.icon.wrap.text::before { content: "\e25b" } +i.icon.youtube.searched.for::before { content: "\e8fa" } +i.icon.zoom.in::before { content: "\e8ff" } +i.icon.zoom.out::before { content: "\e900" } +i.icon.zoom.out.map::before { content: "\e56b" } diff --git a/src/themes/material/elements/icon.variables b/src/themes/material/elements/icon.variables index fd8a625f2f..605acd61c4 100644 --- a/src/themes/material/elements/icon.variables +++ b/src/themes/material/elements/icon.variables @@ -2,8 +2,8 @@ @fonts: { @solid: { font-family: @fontName; - src: url("@{fontPath}/@{fontName}.woff2") format('woff2') - if(@supportIE, e(',') url("@{fontPath}/@{fontName}.woff") format('woff')); + src: url("@{fontPath}/@{fontName}.woff2") format("woff2") + if(@supportIE, e(",") url("@{fontPath}/@{fontName}.woff") format("woff")); font-style: normal; font-weight: @normal; font-variant: normal; diff --git a/src/themes/material/modules/dropdown.overrides b/src/themes/material/modules/dropdown.overrides index 6822acf316..bfa646bc06 100644 --- a/src/themes/material/modules/dropdown.overrides +++ b/src/themes/material/modules/dropdown.overrides @@ -1,4 +1,4 @@ -@import (css) url('https://fonts.googleapis.com/css2?family=Roboto'); +@import (css) url("https://fonts.googleapis.com/css2?family=Roboto"); .ui.dropdown { font-family: Roboto; diff --git a/src/themes/material/modules/modal.overrides b/src/themes/material/modules/modal.overrides index 7012cb81a3..138622203e 100644 --- a/src/themes/material/modules/modal.overrides +++ b/src/themes/material/modules/modal.overrides @@ -1,4 +1,4 @@ -@import (css) url('https://fonts.googleapis.com/css2?family=Roboto'); +@import (css) url("https://fonts.googleapis.com/css2?family=Roboto"); .ui.modal .header { font-family: Roboto, Arial, sans-serif !important; diff --git a/src/themes/resetcss/globals/reset.overrides b/src/themes/resetcss/globals/reset.overrides index 6dbe1c28aa..7899eb2b3a 100644 --- a/src/themes/resetcss/globals/reset.overrides +++ b/src/themes/resetcss/globals/reset.overrides @@ -125,7 +125,7 @@ blockquote::before, blockquote::after, q::before, q::after { - content: ''; + content: ""; content: none; } table { diff --git a/src/themes/rtl/globals/site.overrides b/src/themes/rtl/globals/site.overrides index 75b22555f3..7c927e4152 100644 --- a/src/themes/rtl/globals/site.overrides +++ b/src/themes/rtl/globals/site.overrides @@ -3,4 +3,4 @@ *******************************/ /* Import Droid Arabic Kufi */ -@import (css) url('https://fonts.googleapis.com/css2?family=Droid+Arabic+Kufi'); +@import (css) url("https://fonts.googleapis.com/css2?family=Droid+Arabic+Kufi"); From 1cfe1d00b859f7efd65e616520e8fe0f89dacbdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Thu, 15 Dec 2022 22:40:25 +0100 Subject: [PATCH 03/18] fix prettier double quotes using regex (@(?:\w|-)+: )'([^"']*)'(;$) --- src/definitions/collections/breadcrumb.less | 4 +-- src/definitions/collections/form.less | 4 +-- src/definitions/collections/grid.less | 4 +-- src/definitions/collections/menu.less | 4 +-- src/definitions/collections/message.less | 4 +-- src/definitions/collections/table.less | 4 +-- src/definitions/elements/button.less | 4 +-- src/definitions/elements/container.less | 4 +-- src/definitions/elements/divider.less | 4 +-- src/definitions/elements/emoji.less | 4 +-- src/definitions/elements/flag.less | 4 +-- src/definitions/elements/header.less | 4 +-- src/definitions/elements/icon.less | 4 +-- src/definitions/elements/image.less | 4 +-- src/definitions/elements/input.less | 4 +-- src/definitions/elements/label.less | 4 +-- src/definitions/elements/list.less | 4 +-- src/definitions/elements/loader.less | 4 +-- src/definitions/elements/placeholder.less | 4 +-- src/definitions/elements/rail.less | 4 +-- src/definitions/elements/reveal.less | 4 +-- src/definitions/elements/segment.less | 4 +-- src/definitions/elements/step.less | 4 +-- src/definitions/elements/text.less | 4 +-- src/definitions/globals/reset.less | 4 +-- src/definitions/globals/site.less | 4 +-- src/definitions/modules/accordion.less | 4 +-- src/definitions/modules/calendar.less | 4 +-- src/definitions/modules/checkbox.less | 4 +-- src/definitions/modules/dimmer.less | 4 +-- src/definitions/modules/dropdown.less | 4 +-- src/definitions/modules/embed.less | 4 +-- src/definitions/modules/flyout.less | 4 +-- src/definitions/modules/modal.less | 4 +-- src/definitions/modules/nag.less | 4 +-- src/definitions/modules/popup.less | 4 +-- src/definitions/modules/progress.less | 4 +-- src/definitions/modules/rating.less | 4 +-- src/definitions/modules/search.less | 4 +-- src/definitions/modules/shape.less | 4 +-- src/definitions/modules/sidebar.less | 4 +-- src/definitions/modules/slider.less | 4 +-- src/definitions/modules/sticky.less | 4 +-- src/definitions/modules/tab.less | 4 +-- src/definitions/modules/toast.less | 4 +-- src/definitions/modules/transition.less | 4 +-- src/definitions/views/ad.less | 4 +-- src/definitions/views/card.less | 4 +-- src/definitions/views/comment.less | 4 +-- src/definitions/views/feed.less | 4 +-- src/definitions/views/item.less | 4 +-- src/definitions/views/statistic.less | 4 +-- src/themes/amazon/globals/site.variables | 2 +- src/themes/classic/elements/button.variables | 8 +++--- src/themes/classic/views/card.overrides | 2 +- src/themes/default/collections/form.variables | 2 +- src/themes/default/collections/menu.variables | 2 +- .../default/collections/table.variables | 18 ++++++------ src/themes/default/elements/button.variables | 14 +++++----- src/themes/default/elements/divider.variables | 2 +- src/themes/default/elements/header.variables | 4 +-- src/themes/default/elements/icon.variables | 10 +++---- src/themes/default/elements/list.variables | 2 +- src/themes/default/elements/segment.variables | 2 +- src/themes/default/elements/step.variables | 2 +- src/themes/default/globals/site.variables | 28 +++++++++---------- .../default/modules/accordion.variables | 2 +- src/themes/default/modules/dimmer.variables | 2 +- src/themes/default/modules/dropdown.variables | 8 +++--- src/themes/default/modules/modal.variables | 4 +-- src/themes/default/modules/search.variables | 2 +- src/themes/default/views/ad.variables | 2 +- src/themes/default/views/card.variables | 12 ++++---- src/themes/default/views/feed.variables | 4 +-- src/themes/default/views/item.variables | 10 +++---- src/themes/famfamfam/elements/flag.variables | 2 +- .../fixed-width/collections/grid.variables | 2 +- src/themes/github/elements/button.variables | 4 +-- src/themes/github/elements/icon.variables | 4 +-- src/themes/github/globals/site.variables | 2 +- src/themes/material/elements/button.variables | 2 +- src/themes/material/elements/icon.variables | 2 +- src/themes/material/globals/site.variables | 4 +-- src/themes/round/elements/button.variables | 2 +- src/themes/rtl/globals/site.variables | 2 +- src/themes/systemfont/globals/site.variables | 2 +- 86 files changed, 190 insertions(+), 190 deletions(-) diff --git a/src/definitions/collections/breadcrumb.less b/src/definitions/collections/breadcrumb.less index bcf4a137d9..f35312709b 100755 --- a/src/definitions/collections/breadcrumb.less +++ b/src/definitions/collections/breadcrumb.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'collection'; -@element: 'breadcrumb'; +@type: "collection"; +@element: "breadcrumb"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/collections/form.less b/src/definitions/collections/form.less index 9bcc21c10f..c10b0ad32d 100755 --- a/src/definitions/collections/form.less +++ b/src/definitions/collections/form.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'collection'; -@element: 'form'; +@type: "collection"; +@element: "form"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/collections/grid.less b/src/definitions/collections/grid.less index cc2e1bdd74..989667331e 100755 --- a/src/definitions/collections/grid.less +++ b/src/definitions/collections/grid.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'collection'; -@element: 'grid'; +@type: "collection"; +@element: "grid"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/collections/menu.less b/src/definitions/collections/menu.less index 27ad88f800..0cb572ea87 100755 --- a/src/definitions/collections/menu.less +++ b/src/definitions/collections/menu.less @@ -13,8 +13,8 @@ Theme *******************************/ -@type: 'collection'; -@element: 'menu'; +@type: "collection"; +@element: "menu"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/collections/message.less b/src/definitions/collections/message.less index f385e3bc77..e970c6f984 100755 --- a/src/definitions/collections/message.less +++ b/src/definitions/collections/message.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'collection'; -@element: 'message'; +@type: "collection"; +@element: "message"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/collections/table.less b/src/definitions/collections/table.less index 59e3647d39..f81c415ed3 100755 --- a/src/definitions/collections/table.less +++ b/src/definitions/collections/table.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'collection'; -@element: 'table'; +@type: "collection"; +@element: "table"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/button.less b/src/definitions/elements/button.less index a9d4cf8bad..266ab43aff 100755 --- a/src/definitions/elements/button.less +++ b/src/definitions/elements/button.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'button'; +@type: "element"; +@element: "button"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/container.less b/src/definitions/elements/container.less index 2602331991..c6a637e25f 100644 --- a/src/definitions/elements/container.less +++ b/src/definitions/elements/container.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'container'; +@type: "element"; +@element: "container"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/divider.less b/src/definitions/elements/divider.less index 00ae632e0e..9add2fc5d9 100755 --- a/src/definitions/elements/divider.less +++ b/src/definitions/elements/divider.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'divider'; +@type: "element"; +@element: "divider"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/emoji.less b/src/definitions/elements/emoji.less index 2dab52c7c5..39f17e56f9 100644 --- a/src/definitions/elements/emoji.less +++ b/src/definitions/elements/emoji.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'emoji'; +@type: "element"; +@element: "emoji"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/flag.less b/src/definitions/elements/flag.less index 853935f74b..ba774f0d45 100755 --- a/src/definitions/elements/flag.less +++ b/src/definitions/elements/flag.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'flag'; +@type: "element"; +@element: "flag"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/header.less b/src/definitions/elements/header.less index 88e721998f..993c5b4d5a 100755 --- a/src/definitions/elements/header.less +++ b/src/definitions/elements/header.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'header'; +@type: "element"; +@element: "header"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/icon.less b/src/definitions/elements/icon.less index 6f6ebe26c9..6983a5b0cf 100755 --- a/src/definitions/elements/icon.less +++ b/src/definitions/elements/icon.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'icon'; +@type: "element"; +@element: "icon"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/image.less b/src/definitions/elements/image.less index 794099486b..db3268fb7a 100755 --- a/src/definitions/elements/image.less +++ b/src/definitions/elements/image.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'image'; +@type: "element"; +@element: "image"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/input.less b/src/definitions/elements/input.less index a77bde474d..657e5d9283 100755 --- a/src/definitions/elements/input.less +++ b/src/definitions/elements/input.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'input'; +@type: "element"; +@element: "input"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/label.less b/src/definitions/elements/label.less index b51ddc2cb1..fbdd7122c7 100755 --- a/src/definitions/elements/label.less +++ b/src/definitions/elements/label.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'label'; +@type: "element"; +@element: "label"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/list.less b/src/definitions/elements/list.less index 2a436031d7..9b3f4c5cc5 100755 --- a/src/definitions/elements/list.less +++ b/src/definitions/elements/list.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'list'; +@type: "element"; +@element: "list"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/loader.less b/src/definitions/elements/loader.less index b6e60aabe0..df804e2651 100755 --- a/src/definitions/elements/loader.less +++ b/src/definitions/elements/loader.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'loader'; +@type: "element"; +@element: "loader"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/placeholder.less b/src/definitions/elements/placeholder.less index 9d80ab94b1..f02928d670 100644 --- a/src/definitions/elements/placeholder.less +++ b/src/definitions/elements/placeholder.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'placeholder'; +@type: "element"; +@element: "placeholder"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/rail.less b/src/definitions/elements/rail.less index 0234ee2a20..19aaf3e0fe 100755 --- a/src/definitions/elements/rail.less +++ b/src/definitions/elements/rail.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'rail'; +@type: "element"; +@element: "rail"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/reveal.less b/src/definitions/elements/reveal.less index a9f8d23a4e..d74ae6bd18 100755 --- a/src/definitions/elements/reveal.less +++ b/src/definitions/elements/reveal.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'reveal'; +@type: "element"; +@element: "reveal"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/segment.less b/src/definitions/elements/segment.less index c9f77f1740..9e462b2d33 100755 --- a/src/definitions/elements/segment.less +++ b/src/definitions/elements/segment.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'segment'; +@type: "element"; +@element: "segment"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/step.less b/src/definitions/elements/step.less index a9e9809252..79c88d8865 100755 --- a/src/definitions/elements/step.less +++ b/src/definitions/elements/step.less @@ -16,8 +16,8 @@ Load Theme --------------- */ -@type: 'element'; -@element: 'step'; +@type: "element"; +@element: "step"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/elements/text.less b/src/definitions/elements/text.less index 63f1e4ecb7..4b24958c4b 100644 --- a/src/definitions/elements/text.less +++ b/src/definitions/elements/text.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'element'; -@element: 'text'; +@type: "element"; +@element: "text"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/globals/reset.less b/src/definitions/globals/reset.less index 43a9785965..ec345b6567 100755 --- a/src/definitions/globals/reset.less +++ b/src/definitions/globals/reset.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'global'; -@element: 'reset'; +@type: "global"; +@element: "reset"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/globals/site.less b/src/definitions/globals/site.less index 2658fbf2dc..b74c8b0381 100755 --- a/src/definitions/globals/site.less +++ b/src/definitions/globals/site.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'global'; -@element: 'site'; +@type: "global"; +@element: "site"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/accordion.less b/src/definitions/modules/accordion.less index 54568fd06b..6841f003df 100755 --- a/src/definitions/modules/accordion.less +++ b/src/definitions/modules/accordion.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'accordion'; +@type: "module"; +@element: "accordion"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/calendar.less b/src/definitions/modules/calendar.less index fcc27c1771..03568527a6 100644 --- a/src/definitions/modules/calendar.less +++ b/src/definitions/modules/calendar.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'calendar'; +@type: "module"; +@element: "calendar"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/checkbox.less b/src/definitions/modules/checkbox.less index ae98d54b44..b868d9243a 100755 --- a/src/definitions/modules/checkbox.less +++ b/src/definitions/modules/checkbox.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'checkbox'; +@type: "module"; +@element: "checkbox"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/dimmer.less b/src/definitions/modules/dimmer.less index f8d6690f7a..113c162266 100755 --- a/src/definitions/modules/dimmer.less +++ b/src/definitions/modules/dimmer.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'dimmer'; +@type: "module"; +@element: "dimmer"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/dropdown.less b/src/definitions/modules/dropdown.less index 4e49c9ab9c..d8d3f0837a 100755 --- a/src/definitions/modules/dropdown.less +++ b/src/definitions/modules/dropdown.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'dropdown'; +@type: "module"; +@element: "dropdown"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/embed.less b/src/definitions/modules/embed.less index 7854d0089c..38a167e5b2 100644 --- a/src/definitions/modules/embed.less +++ b/src/definitions/modules/embed.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'embed'; +@type: "module"; +@element: "embed"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/flyout.less b/src/definitions/modules/flyout.less index 6f203c871d..060d6122dd 100644 --- a/src/definitions/modules/flyout.less +++ b/src/definitions/modules/flyout.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'flyout'; +@type: "module"; +@element: "flyout"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/modal.less b/src/definitions/modules/modal.less index 815e0df7e2..5454318e59 100755 --- a/src/definitions/modules/modal.less +++ b/src/definitions/modules/modal.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'modal'; +@type: "module"; +@element: "modal"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/nag.less b/src/definitions/modules/nag.less index ba27c9de97..afa25f50a6 100755 --- a/src/definitions/modules/nag.less +++ b/src/definitions/modules/nag.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'nag'; +@type: "module"; +@element: "nag"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/popup.less b/src/definitions/modules/popup.less index e523343809..330e04624f 100755 --- a/src/definitions/modules/popup.less +++ b/src/definitions/modules/popup.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'popup'; +@type: "module"; +@element: "popup"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/progress.less b/src/definitions/modules/progress.less index ea955790e4..00ab49c3ea 100755 --- a/src/definitions/modules/progress.less +++ b/src/definitions/modules/progress.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'progress'; +@type: "module"; +@element: "progress"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/rating.less b/src/definitions/modules/rating.less index 88c0f4db79..fc2194dca0 100755 --- a/src/definitions/modules/rating.less +++ b/src/definitions/modules/rating.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'rating'; +@type: "module"; +@element: "rating"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/search.less b/src/definitions/modules/search.less index 156d347ba2..309097e64a 100755 --- a/src/definitions/modules/search.less +++ b/src/definitions/modules/search.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'search'; +@type: "module"; +@element: "search"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/shape.less b/src/definitions/modules/shape.less index 9cec875a3c..fdd046091b 100755 --- a/src/definitions/modules/shape.less +++ b/src/definitions/modules/shape.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'shape'; +@type: "module"; +@element: "shape"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/sidebar.less b/src/definitions/modules/sidebar.less index c15b0ad19a..ce4544cc0f 100755 --- a/src/definitions/modules/sidebar.less +++ b/src/definitions/modules/sidebar.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'sidebar'; +@type: "module"; +@element: "sidebar"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/slider.less b/src/definitions/modules/slider.less index 7ac9e997fd..667dadaa71 100644 --- a/src/definitions/modules/slider.less +++ b/src/definitions/modules/slider.less @@ -2,8 +2,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'slider'; +@type: "module"; +@element: "slider"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/sticky.less b/src/definitions/modules/sticky.less index 1756761ecc..749de84e12 100755 --- a/src/definitions/modules/sticky.less +++ b/src/definitions/modules/sticky.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'sticky'; +@type: "module"; +@element: "sticky"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/tab.less b/src/definitions/modules/tab.less index bfb15b35ad..2fbd01ec8e 100755 --- a/src/definitions/modules/tab.less +++ b/src/definitions/modules/tab.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'tab'; +@type: "module"; +@element: "tab"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/toast.less b/src/definitions/modules/toast.less index fee832cae4..b8b2d707d3 100644 --- a/src/definitions/modules/toast.less +++ b/src/definitions/modules/toast.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'toast'; +@type: "module"; +@element: "toast"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/modules/transition.less b/src/definitions/modules/transition.less index af8f45d992..df4b81f245 100755 --- a/src/definitions/modules/transition.less +++ b/src/definitions/modules/transition.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'module'; -@element: 'transition'; +@type: "module"; +@element: "transition"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/views/ad.less b/src/definitions/views/ad.less index 9bd2c7447f..4d771c6131 100644 --- a/src/definitions/views/ad.less +++ b/src/definitions/views/ad.less @@ -13,8 +13,8 @@ Theme *******************************/ -@type: 'view'; -@element: 'ad'; +@type: "view"; +@element: "ad"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/views/card.less b/src/definitions/views/card.less index fe1ef82556..e5095a9613 100755 --- a/src/definitions/views/card.less +++ b/src/definitions/views/card.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'view'; -@element: 'card'; +@type: "view"; +@element: "card"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/views/comment.less b/src/definitions/views/comment.less index 8e6e56378e..3923dd8b43 100755 --- a/src/definitions/views/comment.less +++ b/src/definitions/views/comment.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'view'; -@element: 'comment'; +@type: "view"; +@element: "comment"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/views/feed.less b/src/definitions/views/feed.less index 9a5e565377..7d4b7b4140 100755 --- a/src/definitions/views/feed.less +++ b/src/definitions/views/feed.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'view'; -@element: 'feed'; +@type: "view"; +@element: "feed"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/views/item.less b/src/definitions/views/item.less index 5e3b55b4e7..fd7f42dd2b 100755 --- a/src/definitions/views/item.less +++ b/src/definitions/views/item.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'view'; -@element: 'item'; +@type: "view"; +@element: "item"; @import (multiple) "../../theme.config"; diff --git a/src/definitions/views/statistic.less b/src/definitions/views/statistic.less index 6d00eaba3e..cfb151b8aa 100755 --- a/src/definitions/views/statistic.less +++ b/src/definitions/views/statistic.less @@ -12,8 +12,8 @@ Theme *******************************/ -@type: 'view'; -@element: 'statistic'; +@type: "view"; +@element: "statistic"; @import (multiple) "../../theme.config"; diff --git a/src/themes/amazon/globals/site.variables b/src/themes/amazon/globals/site.variables index 3d90b065eb..a36831baec 100644 --- a/src/themes/amazon/globals/site.variables +++ b/src/themes/amazon/globals/site.variables @@ -7,7 +7,7 @@ @emSize: 13px; @fontSize: 13px; -@fontName: 'Arial'; +@fontName: "Arial"; @importGoogleFonts: false; @importFonts: false; diff --git a/src/themes/classic/elements/button.variables b/src/themes/classic/elements/button.variables index ebed8ef364..48a0e968eb 100644 --- a/src/themes/classic/elements/button.variables +++ b/src/themes/classic/elements/button.variables @@ -39,14 +39,14 @@ -------------------- */ /* Hovered */ -@hoverBackgroundColor: ''; +@hoverBackgroundColor: ""; @hoverBackgroundImage: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.13)); -@hoverBoxShadow: ''; +@hoverBoxShadow: ""; @hoverColor: @hoveredTextColor; @iconHoverOpacity: 0.85; /* Focused */ -@focusBackgroundColor: ''; +@focusBackgroundColor: ""; @focusBackgroundImage: none; @focusBoxShadow: 0 0 1px rgba(81, 167, 232, 0.8) inset, @@ -57,7 +57,7 @@ /* Pressed Down */ @downBackgroundColor: #F1F1F1; -@downBackgroundImage: ''; +@downBackgroundImage: ""; @downBoxShadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset, 0 1px 4px 0 rgba(0, 0, 0, 0.1) inset !important diff --git a/src/themes/classic/views/card.overrides b/src/themes/classic/views/card.overrides index 34399fd183..147c2ea498 100644 --- a/src/themes/classic/views/card.overrides +++ b/src/themes/classic/views/card.overrides @@ -20,7 +20,7 @@ 0 3px 0 0 @borderColor ; @border: none; -@zIndex: ''; +@zIndex: ""; /* Item Group */ @horizontalSpacing: 0.5em; diff --git a/src/themes/default/collections/form.variables b/src/themes/default/collections/form.variables index accaaa9d0b..d483acb99a 100644 --- a/src/themes/default/collections/form.variables +++ b/src/themes/default/collections/form.variables @@ -120,7 +120,7 @@ -------------------- */ /* Required */ -@requiredContent: '*'; +@requiredContent: "*"; @requiredColor: @negativeColor; @requiredVerticalOffset: -0.2em; @requiredDistance: 0.2em; diff --git a/src/themes/default/collections/menu.variables b/src/themes/default/collections/menu.variables index 4f778d53ab..9872188898 100644 --- a/src/themes/default/collections/menu.variables +++ b/src/themes/default/collections/menu.variables @@ -63,7 +63,7 @@ @dropdownIconDistance: 1em; /* Header */ -@headerBackground: ''; +@headerBackground: ""; @headerWeight: @bold; @headerTextTransform: @normal; diff --git a/src/themes/default/collections/table.variables b/src/themes/default/collections/table.variables index 5d5f7e6e22..bd39ced301 100644 --- a/src/themes/default/collections/table.variables +++ b/src/themes/default/collections/table.variables @@ -97,10 +97,10 @@ @definitionColumnFontWeight: @bold; @definitionColumnColor: @selectedTextColor; @definitionColumnFontSize: @relativeMedium; -@definitionColumnTextTransform: ''; -@definitionColumnBoxShadow: ''; -@definitionColumnTextAlign: ''; -@definitionColumnHorizontalPadding: ''; +@definitionColumnTextTransform: ""; +@definitionColumnBoxShadow: ""; +@definitionColumnTextAlign: ""; +@definitionColumnHorizontalPadding: ""; /* -------------- Couplings @@ -183,16 +183,16 @@ @selectableInvertedTextColor: @invertedSelectedTextColor; /* Sortable */ -@sortableBackground: ''; +@sortableBackground: ""; @sortableColor: @textColor; @sortableBorder: 1px solid @borderColor; @sortableIconWidth: auto; @sortableIconDistance: 0.5em; @sortableIconOpacity: 0.8; -@sortableIconFont: 'Icons'; -@sortableIconAscending: '\f0d8'; -@sortableIconDescending: '\f0d7'; +@sortableIconFont: "Icons"; +@sortableIconAscending: "\f0d8"; +@sortableIconDescending: "\f0d7"; @sortableDisabledColor: @disabledTextColor; @sortableHoverBackground: @transparentBlack; @@ -245,7 +245,7 @@ @basicTableCellBackground: transparent; @basicTableHeaderDivider: none; @basicTableCellBorder: 1px solid rgba(0, 0, 0, 0.1); -@basicTableCellPadding: ''; +@basicTableCellPadding: ""; @basicTableStripedBackground: @transparentBlack; /* Padded */ diff --git a/src/themes/default/elements/button.variables b/src/themes/default/elements/button.variables index 8ce0e8f767..88e70056ed 100644 --- a/src/themes/default/elements/button.variables +++ b/src/themes/default/elements/button.variables @@ -47,7 +47,7 @@ @iconHeight: auto; @iconOpacity: 0.8; @iconDistance: @relative6px; -@iconColor: ''; +@iconColor: ""; @iconTransition: opacity @defaultDuration @defaultEasing; @iconVerticalAlign: baseline; @@ -94,7 +94,7 @@ /* Focused */ @focusBackgroundColor: @hoverBackgroundColor; @focusBackgroundImage: none; -@focusBoxShadow: ''; +@focusBoxShadow: ""; @focusColor: @hoveredTextColor; @iconFocusOpacity: 0.85; @@ -104,7 +104,7 @@ /* Pressed Down */ @downBackgroundColor: #BABBBC; -@downBackgroundImage: ''; +@downBackgroundImage: ""; @downPressedShadow: none; @downBoxShadow: @borderBoxShadow, @@ -137,7 +137,7 @@ -------------------- */ /* Or */ -@orText: 'or'; +@orText: "or"; @orGap: 0.3em; @orHeight: (@verticalPadding * 2) + 1em; @@ -166,7 +166,7 @@ /* Labeled */ @labeledLabelFontSize: @medium; @labeledLabelAlign: center; -@labeledLabelPadding: ''; +@labeledLabelPadding: ""; @labeledLabelFontSize: @relativeMedium; @labeledLabelBorderColor: @borderColor; @labeledLabelBorderOffset: -@borderBoxShadowWidth; @@ -178,7 +178,7 @@ @labeledIconBackgroundColor: rgba(0, 0, 0, 0.05); @labeledIconPadding: (@horizontalPadding + @labeledIconWidth); @labeledIconBorder: transparent; -@labeledIconColor: ''; +@labeledIconColor: ""; @labeledIconLeftShadow: -1px 0 0 0 @labeledIconBorder inset; @labeledIconRightShadow: 1px 0 0 0 @labeledIconBorder inset; @@ -226,7 +226,7 @@ /* Basic Active */ @basicActiveBackground: @transparentBlack; -@basicActiveBoxShadow: ''; +@basicActiveBoxShadow: ""; @basicActiveTextColor: @selectedTextColor; /* Basic Inverted */ diff --git a/src/themes/default/elements/divider.variables b/src/themes/default/elements/divider.variables index f7920900a9..6e939b9c8f 100644 --- a/src/themes/default/elements/divider.variables +++ b/src/themes/default/elements/divider.variables @@ -34,7 +34,7 @@ *******************************/ /* Horizontal / Vertical */ -@horizontalMargin: ''; +@horizontalMargin: ""; @horizontalDividerMargin: 1em; @horizontalRulerOffset: e(%("calc(-50%% - %d)", @horizontalDividerMargin)); diff --git a/src/themes/default/elements/header.variables b/src/themes/default/elements/header.variables index 5467c6537e..dcd5b18f83 100644 --- a/src/themes/default/elements/header.variables +++ b/src/themes/default/elements/header.variables @@ -26,7 +26,7 @@ @subHeadingFontSize: @relativeTiny; @subHeadingFontWeight: @bold; @subHeadingTextTransform: uppercase; -@subHeadingColor: ''; +@subHeadingColor: ""; @miniSubHeadingSize: @relativeMini; @tinySubHeadingSize: @relativeMini; @@ -56,7 +56,7 @@ @imageAlignment: middle; /* Label */ -@labelSize: ''; +@labelSize: ""; @labelDistance: 0.5rem; @labelVerticalAlign: middle; diff --git a/src/themes/default/elements/icon.variables b/src/themes/default/elements/icon.variables index 5b9a213564..84e5be4336 100644 --- a/src/themes/default/elements/icon.variables +++ b/src/themes/default/elements/icon.variables @@ -36,11 +36,11 @@ Icons are order A-Z in their group, Solid, Outline, Thin (Pro only) and Brand /* Solid Icons */ @importIcons: true; -@fontName: 'icons'; -@outlineFontName: 'outline-icons'; -@thinFontName: 'thin-icons'; -@brandFontName: 'brand-icons'; -@duotoneFontName: 'duotone-icons'; +@fontName: "icons"; +@outlineFontName: "outline-icons"; +@thinFontName: "thin-icons"; +@brandFontName: "brand-icons"; +@duotoneFontName: "duotone-icons"; @fonts: { @solid: { diff --git a/src/themes/default/elements/list.variables b/src/themes/default/elements/list.variables index ac6f06b72a..096a342951 100644 --- a/src/themes/default/elements/list.variables +++ b/src/themes/default/elements/list.variables @@ -162,7 +162,7 @@ @bulletOffset: -@bulletDistance; @bulletOpacity: 1; -@bulletCharacter: '\2022'; +@bulletCharacter: "\2022"; @bulletColor: inherit; @bulletLinkColor: @textColor; @bulletVerticalAlign: top; diff --git a/src/themes/default/elements/segment.variables b/src/themes/default/elements/segment.variables index 8544760767..53355aa3f5 100644 --- a/src/themes/default/elements/segment.variables +++ b/src/themes/default/elements/segment.variables @@ -60,7 +60,7 @@ /* Piled */ @piledZIndex: auto; @piledMargin: 3em; -@piledBoxShadow: ''; +@piledBoxShadow: ""; @piledDegrees: 1.2deg; @piledBorder: @border; diff --git a/src/themes/default/elements/step.variables b/src/themes/default/elements/step.variables index bbc0996d81..634fc54a80 100644 --- a/src/themes/default/elements/step.variables +++ b/src/themes/default/elements/step.variables @@ -8,7 +8,7 @@ @stepMargin: 1em 0; @stepsBorderRadius: @defaultBorderRadius; -@stepsBackground: ''; +@stepsBackground: ""; @stepsBoxShadow: none; @stepsBorder: 1px solid @borderColor; diff --git a/src/themes/default/globals/site.variables b/src/themes/default/globals/site.variables index 1543aa5659..e2820bb47f 100755 --- a/src/themes/default/globals/site.variables +++ b/src/themes/default/globals/site.variables @@ -9,9 +9,9 @@ Fonts -------------------- */ -@fontName: 'Lato'; -@fontFileNameLatin: 'LatoLatin'; -@fontFileNameSupplement: 'Lato'; +@fontName: "Lato"; +@fontFileNameLatin: "LatoLatin"; +@fontFileNameSupplement: "Lato"; // based on https://github.com/twbs/bootstrap/blob/v5.1.3/scss/_variables.scss#L577 list @fallbackFonts: system-ui, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; @@ -110,12 +110,12 @@ @googleFontName: @fontName; @importGoogleFonts: false; -@googleFontSizes: 'ital,wght@0,400%3B0,700%3B1,400%3B1,700'; -@googleSubset: 'latin'; -@googleFontDisplay: 'swap'; +@googleFontSizes: "ital,wght@0,400%3B0,700%3B1,400%3B1,700"; +@googleSubset: "latin"; +@googleFontDisplay: "swap"; -@googleProtocol: 'https://'; -@googleFontRequest: '@{googleFontName}:@{googleFontSizes}&subset=@{googleSubset}&display=@{googleFontDisplay}'; +@googleProtocol: "https://"; +@googleFontRequest: "@{googleFontName}:@{googleFontSizes}&subset=@{googleSubset}&display=@{googleFontDisplay}"; @bold: bold; @normal: normal; @@ -735,8 +735,8 @@ -------------------- */ /* For source only. Modified in gulp for dist */ -@imagePath: '../../themes/default/assets/images'; -@fontPath: '../../themes/default/assets/fonts'; +@imagePath: "../../themes/default/assets/images"; +@fontPath: "../../themes/default/assets/fonts"; /* ------------------- Em Sizes @@ -1470,16 +1470,16 @@ @transparentFormWarningBackground: @formWarningBackground; /* Input state */ -@inputErrorBorderRadius: ''; +@inputErrorBorderRadius: ""; @inputErrorBoxShadow: none; -@inputInfoBorderRadius: ''; +@inputInfoBorderRadius: ""; @inputInfoBoxShadow: none; -@inputSuccessBorderRadius: ''; +@inputSuccessBorderRadius: ""; @inputSuccessBoxShadow: none; -@inputWarningBorderRadius: ''; +@inputWarningBorderRadius: ""; @inputWarningBoxShadow: none; /* AutoFill */ diff --git a/src/themes/default/modules/accordion.variables b/src/themes/default/modules/accordion.variables index 38a8eb7a72..3ca90f2b15 100644 --- a/src/themes/default/modules/accordion.variables +++ b/src/themes/default/modules/accordion.variables @@ -33,7 +33,7 @@ @childAccordionPadding: 0; /* Content */ -@contentMargin: ''; +@contentMargin: ""; @contentPadding: 0.5em 0 1em; /* ------------------- diff --git a/src/themes/default/modules/dimmer.variables b/src/themes/default/modules/dimmer.variables index c89314305f..6ed6a86f7a 100644 --- a/src/themes/default/modules/dimmer.variables +++ b/src/themes/default/modules/dimmer.variables @@ -38,7 +38,7 @@ -------------------- */ /* Page Dimmer */ -@transformStyle: ''; +@transformStyle: ""; @pageDimmerPosition: fixed; /* ------------------- diff --git a/src/themes/default/modules/dropdown.variables b/src/themes/default/modules/dropdown.variables index 49033d876f..ed2b079d1b 100755 --- a/src/themes/default/modules/dropdown.variables +++ b/src/themes/default/modules/dropdown.variables @@ -217,13 +217,13 @@ @selectionActiveHoverMenuBoxShadow: @selectionVisibleMenuBoxShadow; @selectionVisibleConnectingBorder: 0; -@selectionVisibleIconOpacity: ''; +@selectionVisibleIconOpacity: ""; /* -------------- Search -------------- */ -@searchMinWidth: ''; +@searchMinWidth: ""; /* Search Selection */ @searchSelectionLineHeight: @inputLineHeight; @@ -262,8 +262,8 @@ @multipleSelectionSearchStartWidth: (@glyphWidth * 2); /* Dropdown Icon */ -@multipleSelectionDropdownIconMargin: ''; -@multipleSelectionDropdownIconPadding: ''; +@multipleSelectionDropdownIconMargin: ""; +@multipleSelectionDropdownIconPadding: ""; @multipleSelectionSearchAfterLabelDistance: @relative2px; diff --git a/src/themes/default/modules/modal.variables b/src/themes/default/modules/modal.variables index e349ff1199..daac48c358 100755 --- a/src/themes/default/modules/modal.variables +++ b/src/themes/default/modules/modal.variables @@ -51,12 +51,12 @@ @contentBackground: @white; /* Image / Description */ -@imageWidth: ''; +@imageWidth: ""; @imageIconSize: 8rem; @imageVerticalAlign: start; @descriptionDistance: 2em; -@descriptionMinWidth: ''; +@descriptionMinWidth: ""; @descriptionWidth: auto; @descriptionVerticalAlign: start; diff --git a/src/themes/default/modules/search.variables b/src/themes/default/modules/search.variables index 4dacd5b3db..a8c5871e1a 100644 --- a/src/themes/default/modules/search.variables +++ b/src/themes/default/modules/search.variables @@ -137,7 +137,7 @@ ; @selectionCloseRight: 0; @selectionCloseIconOpacity: 0.8; -@selectionCloseIconColor: ''; +@selectionCloseIconColor: ""; @selectionCloseIconHoverOpacity: 1; @selectionCloseIconHoverColor: @red; diff --git a/src/themes/default/views/ad.variables b/src/themes/default/views/ad.variables index 673da41841..3f0b59ee92 100644 --- a/src/themes/default/views/ad.variables +++ b/src/themes/default/views/ad.variables @@ -8,6 +8,6 @@ @testBackground: @lightBlack; @testColor: @white; @testFontWeight: @bold; -@testText: 'Ad'; +@testText: "Ad"; @testFontSize: @relativeMedium; @testMobileFontSize: @relativeTiny; diff --git a/src/themes/default/views/card.variables b/src/themes/default/views/card.variables index 2a4499b173..d95538d8d7 100644 --- a/src/themes/default/views/card.variables +++ b/src/themes/default/views/card.variables @@ -26,7 +26,7 @@ @borderShadow ; @border: none; -@zIndex: ''; +@zIndex: ""; @transition: box-shadow @defaultDuration @defaultEasing, transform @defaultDuration @defaultEasing @@ -68,7 +68,7 @@ @contentBorder: none; /* Header */ -@headerMargin: ''; +@headerMargin: ""; @headerFontWeight: @bold; @headerFontSize: @relativeBig; @headerLineHeightOffset: (-(@lineHeight - 1em) / 2); @@ -91,8 +91,8 @@ @likeActiveColor: #FF2733; /* Links */ -@contentLinkColor: ''; -@contentLinkHoverColor: ''; +@contentLinkColor: ""; +@contentLinkHoverColor: ""; @contentLinkTransition: color @defaultDuration @defaultEasing; @headerLinkColor: @headerColor; @@ -106,7 +106,7 @@ @descriptionColor: rgba(0, 0, 0, 0.68); /* Content Image */ -@contentImageWidth: ''; +@contentImageWidth: ""; @contentImageVerticalAlign: middle; /* Avatar Image */ @@ -118,7 +118,7 @@ /* Dimmer */ @dimmerZIndex: 10; -@dimmerColor: ''; +@dimmerColor: ""; /* Additional Content */ @extraDivider: 1px solid rgba(0, 0, 0, 0.05); diff --git a/src/themes/default/views/feed.variables b/src/themes/default/views/feed.variables index a7f0411682..c93f871b04 100644 --- a/src/themes/default/views/feed.variables +++ b/src/themes/default/views/feed.variables @@ -119,13 +119,13 @@ @metadataElementSpacing: 0.75em; /* Like */ -@likeColor: ''; +@likeColor: ""; @likeHoverColor: #FF2733; @likeActiveColor: #EF404A; @likeTransition: 0.2s color ease; /* Metadata Divider */ -@metadataDivider: ''; +@metadataDivider: ""; @metadataDividerColor: rgba(0, 0, 0, 0.2); @metadataDividerOffset: -1em; diff --git a/src/themes/default/views/item.variables b/src/themes/default/views/item.variables index 6056fdf7d9..e80a2610bf 100644 --- a/src/themes/default/views/item.variables +++ b/src/themes/default/views/item.variables @@ -18,7 +18,7 @@ @width: 100%; @boxShadow: none; @border: none; -@zIndex: ''; +@zIndex: ""; @transition: box-shadow @defaultDuration @defaultEasing; /* Responsive */ @@ -42,7 +42,7 @@ /* Image */ @imageDisplay: block; @imageFloat: none; -@imageMaxHeight: ''; +@imageMaxHeight: ""; @imageVerticalAlign: start; @imageMargin: 0; @imagePadding: 0; @@ -95,8 +95,8 @@ @headerLinkHoverColor: @linkHoverColor; @metaLinkColor: @lightTextColor; @metaLinkHoverColor: @textColor; -@contentLinkColor: ''; -@contentLinkHoverColor: ''; +@contentLinkColor: ""; +@contentLinkHoverColor: ""; @contentLinkTransition: color @defaultDuration @defaultEasing; /* Description */ @@ -107,7 +107,7 @@ @descriptionColor: @textColor; /* Content Image */ -@contentImageWidth: ''; +@contentImageWidth: ""; @contentImageVerticalAlign: center; /* Avatar Image */ diff --git a/src/themes/famfamfam/elements/flag.variables b/src/themes/famfamfam/elements/flag.variables index 46b312f3c7..a3a8fed77f 100644 --- a/src/themes/famfamfam/elements/flag.variables +++ b/src/themes/famfamfam/elements/flag.variables @@ -2,7 +2,7 @@ Flag *******************************/ -@imagePath: '../../themes/famfamfam/assets/images'; +@imagePath: "../../themes/famfamfam/assets/images"; /* ------------------- Element diff --git a/src/themes/fixed-width/collections/grid.variables b/src/themes/fixed-width/collections/grid.variables index 1b61f8ed82..b066837e13 100644 --- a/src/themes/fixed-width/collections/grid.variables +++ b/src/themes/fixed-width/collections/grid.variables @@ -20,4 +20,4 @@ @widescreenMargin: auto; @widescreenMonitorGutter: 0; -@tableWidth: ''; +@tableWidth: ""; diff --git a/src/themes/github/elements/button.variables b/src/themes/github/elements/button.variables index b9965f9c9c..b49459463d 100644 --- a/src/themes/github/elements/button.variables +++ b/src/themes/github/elements/button.variables @@ -35,8 +35,8 @@ @hoverBackgroundImage: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08)); @hoverBoxShadow: @boxShadow; -@downBackgroundColor: ''; -@downBackgroundImage: ''; +@downBackgroundColor: ""; +@downBackgroundImage: ""; @downBoxShadow: 0 -1px 0 0 rgba(0, 0, 0, 0.05) inset, 0 0 0 1px rgba(0, 0, 0, 0.13) inset, diff --git a/src/themes/github/elements/icon.variables b/src/themes/github/elements/icon.variables index a17895263b..aaf04cecb6 100644 --- a/src/themes/github/elements/icon.variables +++ b/src/themes/github/elements/icon.variables @@ -1,5 +1,5 @@ -@fontPath: '../../themes/github/assets/fonts'; -@fontName: 'octicons'; +@fontPath: "../../themes/github/assets/fonts"; +@fontName: "octicons"; @fonts: { @solid: { font-family: @fontName; diff --git a/src/themes/github/globals/site.variables b/src/themes/github/globals/site.variables index 348ee9b841..5aab574e32 100644 --- a/src/themes/github/globals/site.variables +++ b/src/themes/github/globals/site.variables @@ -7,7 +7,7 @@ @emSize: 13px; @fontSize: 13px; -@fontName: 'Arial'; +@fontName: "Arial"; @importGoogleFonts: false; @importFonts: false; diff --git a/src/themes/material/elements/button.variables b/src/themes/material/elements/button.variables index b7784d3a3a..b8438b141d 100644 --- a/src/themes/material/elements/button.variables +++ b/src/themes/material/elements/button.variables @@ -6,7 +6,7 @@ Element -------------------- */ -@googleFontName: 'Roboto'; +@googleFontName: "Roboto"; @pageFont: 'Roboto', Arial, sans-serif; @medium: 13px; diff --git a/src/themes/material/elements/icon.variables b/src/themes/material/elements/icon.variables index 605acd61c4..440f87e45b 100644 --- a/src/themes/material/elements/icon.variables +++ b/src/themes/material/elements/icon.variables @@ -1,4 +1,4 @@ -@fontPath: '../../themes/material/assets/fonts'; +@fontPath: "../../themes/material/assets/fonts"; @fonts: { @solid: { font-family: @fontName; diff --git a/src/themes/material/globals/site.variables b/src/themes/material/globals/site.variables index 5752d859db..d1a49c9949 100644 --- a/src/themes/material/globals/site.variables +++ b/src/themes/material/globals/site.variables @@ -8,7 +8,7 @@ @headerFont: 'Roboto', 'Helvetica Neue', Arial, Helvetica, sans-serif; @pageFont: 'Roboto', 'Helvetica Neue', Arial, Helvetica, sans-serif; -@googleFontName: 'Roboto'; +@googleFontName: "Roboto"; /* ------------------- Base Sizes @@ -42,7 +42,7 @@ Paths -------------------- */ -@imagePath: '../../themes/material/assets/images'; +@imagePath: "../../themes/material/assets/images"; /* -------------- Paragraphs diff --git a/src/themes/round/elements/button.variables b/src/themes/round/elements/button.variables index 294bf59438..67bf1110cc 100644 --- a/src/themes/round/elements/button.variables +++ b/src/themes/round/elements/button.variables @@ -59,7 +59,7 @@ @labeledIconBackgroundColor: transparent; @labeledIconPadding: (@horizontalPadding + 1em); @labeledIconBorder: rgba(0, 0, 0, 0.05); -@labeledIconColor: ''; +@labeledIconColor: ""; @labeledIconLeftShadow: none; @labeledIconRightShadow: none; diff --git a/src/themes/rtl/globals/site.variables b/src/themes/rtl/globals/site.variables index db2523d30c..825c3588e4 100644 --- a/src/themes/rtl/globals/site.variables +++ b/src/themes/rtl/globals/site.variables @@ -6,7 +6,7 @@ Fonts -------------------- */ -@googleFontName: 'Droid Sans'; +@googleFontName: "Droid Sans"; /* Kufi imported in site.overrides */ @headerFont: 'Droid Arabic Kufi', 'Droid Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif; diff --git a/src/themes/systemfont/globals/site.variables b/src/themes/systemfont/globals/site.variables index 46ce0b2314..bf91e660fd 100644 --- a/src/themes/systemfont/globals/site.variables +++ b/src/themes/systemfont/globals/site.variables @@ -2,7 +2,7 @@ User Global Variables *******************************/ -@fontName: ''; +@fontName: ""; @headerFont: @fallbackFonts; @pageFont: @fallbackFonts; @importGoogleFonts: false; From 34e23f6dabbf6d243ae6cd4f43215e79c5ba2e0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Thu, 15 Dec 2022 22:57:47 +0100 Subject: [PATCH 04/18] fix remaining double quotes using prettier autofix --- src/definitions/elements/emoji.less | 2 +- src/definitions/elements/flag.less | 2 +- src/definitions/modules/checkbox.less | 14 +++++++------- src/theme.less | 6 +++--- src/themes/bookish/elements/header.variables | 2 +- src/themes/chubby/elements/button.variables | 2 +- src/themes/chubby/elements/header.variables | 2 +- src/themes/classic/elements/header.variables | 2 +- src/themes/material/collections/menu.variables | 2 +- src/themes/material/elements/button.variables | 2 +- src/themes/material/elements/header.variables | 2 +- src/themes/material/globals/site.variables | 4 ++-- src/themes/material/modules/modal.variables | 2 +- src/themes/rtl/globals/site.variables | 4 ++-- 14 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/definitions/elements/emoji.less b/src/definitions/elements/emoji.less index 39f17e56f9..a32dc89d44 100644 --- a/src/definitions/elements/emoji.less +++ b/src/definitions/elements/emoji.less @@ -33,7 +33,7 @@ em[data-emoji]::before { line-height: @emojiLineHeight; background-repeat: no-repeat; background-position: center center; - & when not (@emojiFileType = 'svg') { + & when not (@emojiFileType = "svg") { background-size: contain; } } diff --git a/src/definitions/elements/flag.less b/src/definitions/elements/flag.less index ba774f0d45..02d6ed9100 100755 --- a/src/definitions/elements/flag.less +++ b/src/definitions/elements/flag.less @@ -32,7 +32,7 @@ i.flag:not(.icon)::before { line-height: @flagLineHeight; background-repeat: no-repeat; background-position: center center; - & when not (@flagFileType = 'svg') { + & when not (@flagFileType = "svg") { background-size: contain; } } diff --git a/src/definitions/modules/checkbox.less b/src/definitions/modules/checkbox.less index b868d9243a..333a05c4e9 100755 --- a/src/definitions/modules/checkbox.less +++ b/src/definitions/modules/checkbox.less @@ -183,24 +183,24 @@ Indeterminate --------------- */ - .ui.checkbox input:not([type=radio]):indeterminate ~ label::before { + .ui.checkbox input:not([type="radio"]):indeterminate ~ label::before { background: @checkboxIndeterminateBackground; border-color: @checkboxIndeterminateBorderColor; } - .ui.checkbox input:not([type=radio]):indeterminate ~ label::after { + .ui.checkbox input:not([type="radio"]):indeterminate ~ label::after { opacity: @checkboxIndeterminateCheckOpacity; color: @checkboxIndeterminateCheckColor; } .ui.indeterminate.toggle.checkbox { - & input:not([type=radio]):indeterminate ~ label::before { + & input:not([type="radio"]):indeterminate ~ label::before { background: @toggleCenterLaneBackground; } - & input:not([type=radio]) ~ label::after { + & input:not([type="radio"]) ~ label::after { left: @toggleCenterOffset; } } & when (@variationCheckboxRightAligned) { - .ui.right.aligned.indeterminate.toggle.checkbox input:not([type=radio]) ~ label::after { + .ui.right.aligned.indeterminate.toggle.checkbox input:not([type="radio"]) ~ label::after { left: auto; right: @toggleCenterOffset; } @@ -211,12 +211,12 @@ Active Focus --------------- */ -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label::before, +.ui.checkbox input:not([type="radio"]):indeterminate:focus ~ label::before, .ui.checkbox input:checked:focus ~ label::before { background: @checkboxActiveFocusBackground; border-color: @checkboxActiveFocusBorderColor; } -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label::after, +.ui.checkbox input:not([type="radio"]):indeterminate:focus ~ label::after, .ui.checkbox input:checked:focus ~ label::after { color: @checkboxActiveFocusCheckColor; } diff --git a/src/theme.less b/src/theme.less index ab35fab288..b2cb5e4a73 100644 --- a/src/theme.less +++ b/src/theme.less @@ -19,7 +19,7 @@ @import (optional) "@{themesFolder}/@{site}/globals/site.variables"; /* Component's site.variables */ -& when not (@theme = 'default') { +& when not (@theme = "default") { @import (optional) "@{themesFolder}/@{theme}/globals/site.variables"; } @@ -61,7 +61,7 @@ & when (@importGoogleFonts) { @import (css) url("@{googleProtocol}fonts.googleapis.com/css2?family=@{googleFontRequest}"); } - & when (@importFonts) and not (@fontName = '') { + & when (@importFonts) and not (@fontName = "") { each(@fonts, { @font-face { each(@value, { @@ -77,7 +77,7 @@ ------------------- */ .loadUIOverrides() { - & when not (@theme = 'default') { + & when not (@theme = "default") { @import (optional) "@{themesFolder}/default/@{type}s/@{element}.overrides"; } @import (optional) "@{themesFolder}/@{theme}/@{type}s/@{element}.overrides"; diff --git a/src/themes/bookish/elements/header.variables b/src/themes/bookish/elements/header.variables index 941440ec88..15da47ef84 100644 --- a/src/themes/bookish/elements/header.variables +++ b/src/themes/bookish/elements/header.variables @@ -2,7 +2,7 @@ Header -------------------- */ -@headerFont: 'Karma', 'Times New Roman', serif; +@headerFont: "Karma", "Times New Roman", serif; @fontWeight: @normal; @iconSize: 1.5em; diff --git a/src/themes/chubby/elements/button.variables b/src/themes/chubby/elements/button.variables index 2588e0861a..21f49e38da 100644 --- a/src/themes/chubby/elements/button.variables +++ b/src/themes/chubby/elements/button.variables @@ -3,7 +3,7 @@ -------------------- */ /* Button Variables */ -@pageFont: 'Source Sans Pro', Arial, sans-serif; +@pageFont: "Source Sans Pro", Arial, sans-serif; @textTransform: none; @fontWeight: @normal; diff --git a/src/themes/chubby/elements/header.variables b/src/themes/chubby/elements/header.variables index ef19839a13..6d327ee0b5 100644 --- a/src/themes/chubby/elements/header.variables +++ b/src/themes/chubby/elements/header.variables @@ -2,7 +2,7 @@ Header -------------------- */ -@headerFont: 'Source Sans Pro', Helvetica Neue, Helvetica, Arial, sans-serif; +@headerFont: "Source Sans Pro", Helvetica Neue, Helvetica, Arial, sans-serif; @fontWeight: bold; @textTransform: none; diff --git a/src/themes/classic/elements/header.variables b/src/themes/classic/elements/header.variables index 33efa1b248..99b8c3d381 100644 --- a/src/themes/classic/elements/header.variables +++ b/src/themes/classic/elements/header.variables @@ -6,7 +6,7 @@ Element -------------------- */ -@headerFont: 'Open Sans', Arial, sans-serif; +@headerFont: "Open Sans", Arial, sans-serif; @blockBackground: @offWhite @subtleGradient; @blockBoxShadow: @subtleShadow; diff --git a/src/themes/material/collections/menu.variables b/src/themes/material/collections/menu.variables index b350977d5f..455a401e9f 100644 --- a/src/themes/material/collections/menu.variables +++ b/src/themes/material/collections/menu.variables @@ -2,7 +2,7 @@ Menu *******************************/ -@fontFamily: 'Roboto', Arial, sans-serif; +@fontFamily: "Roboto", Arial, sans-serif; @boxShadow: 0 1px 6px rgba(0, 0, 0, 0.2); @dividerSize: 0; diff --git a/src/themes/material/elements/button.variables b/src/themes/material/elements/button.variables index b8438b141d..a5361cf86a 100644 --- a/src/themes/material/elements/button.variables +++ b/src/themes/material/elements/button.variables @@ -7,7 +7,7 @@ -------------------- */ @googleFontName: "Roboto"; -@pageFont: 'Roboto', Arial, sans-serif; +@pageFont: "Roboto", Arial, sans-serif; @medium: 13px; diff --git a/src/themes/material/elements/header.variables b/src/themes/material/elements/header.variables index 98c95b8e80..76724657b3 100644 --- a/src/themes/material/elements/header.variables +++ b/src/themes/material/elements/header.variables @@ -2,7 +2,7 @@ Header -------------------- */ -@headerFont: 'Roboto', Arial, sans-serif; +@headerFont: "Roboto", Arial, sans-serif; @fontWeight: normal; @iconSize: 2em; diff --git a/src/themes/material/globals/site.variables b/src/themes/material/globals/site.variables index d1a49c9949..198c17c6cf 100644 --- a/src/themes/material/globals/site.variables +++ b/src/themes/material/globals/site.variables @@ -6,8 +6,8 @@ Fonts -------------------- */ -@headerFont: 'Roboto', 'Helvetica Neue', Arial, Helvetica, sans-serif; -@pageFont: 'Roboto', 'Helvetica Neue', Arial, Helvetica, sans-serif; +@headerFont: "Roboto", "Helvetica Neue", Arial, Helvetica, sans-serif; +@pageFont: "Roboto", "Helvetica Neue", Arial, Helvetica, sans-serif; @googleFontName: "Roboto"; /* ------------------- diff --git a/src/themes/material/modules/modal.variables b/src/themes/material/modules/modal.variables index 29ceb02387..756dfc4c25 100644 --- a/src/themes/material/modules/modal.variables +++ b/src/themes/material/modules/modal.variables @@ -5,7 +5,7 @@ @headerVerticalPadding: 1.7142rem; @headerHorizontalPadding: 1.7142rem; @headerFontWeight: 400; -@headerFontFamily: 'Roboto', "Helvetica Neue", Arial, sans-serif; +@headerFontFamily: "Roboto", "Helvetica Neue", Arial, sans-serif; @headerBorder: none; @contentPadding: 1rem 2rem 2rem; diff --git a/src/themes/rtl/globals/site.variables b/src/themes/rtl/globals/site.variables index 825c3588e4..bc1c41e823 100644 --- a/src/themes/rtl/globals/site.variables +++ b/src/themes/rtl/globals/site.variables @@ -9,5 +9,5 @@ @googleFontName: "Droid Sans"; /* Kufi imported in site.overrides */ -@headerFont: 'Droid Arabic Kufi', 'Droid Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif; -@pageFont: 'Droid Arabic Kufi', 'Droid Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif; +@headerFont: "Droid Arabic Kufi", "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif; +@pageFont: "Droid Arabic Kufi", "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif; From 5af56bcf02a22e1914b5cbb8641186855f952de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Thu, 15 Dec 2022 23:27:52 +0100 Subject: [PATCH 05/18] fix prettier semicolons using regex \}\)$ --- src/definitions/collections/breadcrumb.less | 2 +- src/definitions/collections/form.less | 6 +++--- src/definitions/collections/grid.less | 2 +- src/definitions/collections/menu.less | 8 ++++---- src/definitions/collections/message.less | 8 ++++---- src/definitions/collections/table.less | 8 ++++---- src/definitions/elements/button.less | 6 +++--- src/definitions/elements/divider.less | 2 +- src/definitions/elements/header.less | 10 +++++----- src/definitions/elements/icon.less | 8 ++++---- src/definitions/elements/image.less | 2 +- src/definitions/elements/input.less | 10 +++++----- src/definitions/elements/label.less | 4 ++-- src/definitions/elements/list.less | 2 +- src/definitions/elements/loader.less | 4 ++-- src/definitions/elements/rail.less | 2 +- src/definitions/elements/reveal.less | 2 +- src/definitions/elements/segment.less | 4 ++-- src/definitions/elements/step.less | 2 +- src/definitions/elements/text.less | 6 +++--- src/definitions/modules/checkbox.less | 2 +- src/definitions/modules/dropdown.less | 4 ++-- src/definitions/modules/modal.less | 2 +- src/definitions/modules/nag.less | 4 ++-- src/definitions/modules/popup.less | 4 ++-- src/definitions/modules/progress.less | 4 ++-- src/definitions/modules/rating.less | 4 ++-- src/definitions/modules/search.less | 2 +- src/definitions/modules/slider.less | 4 ++-- src/definitions/modules/toast.less | 2 +- src/definitions/modules/transition.less | 2 +- src/definitions/views/card.less | 4 ++-- src/definitions/views/comment.less | 2 +- src/definitions/views/feed.less | 2 +- src/definitions/views/item.less | 2 +- src/definitions/views/statistic.less | 4 ++-- src/theme.less | 2 +- 37 files changed, 74 insertions(+), 74 deletions(-) diff --git a/src/definitions/collections/breadcrumb.less b/src/definitions/collections/breadcrumb.less index f35312709b..4704acc591 100755 --- a/src/definitions/collections/breadcrumb.less +++ b/src/definitions/collections/breadcrumb.less @@ -112,7 +112,7 @@ .ui.@{value}.breadcrumb { font-size: @s; } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/collections/form.less b/src/definitions/collections/form.less index c10b0ad32d..90146b15c9 100755 --- a/src/definitions/collections/form.less +++ b/src/definitions/collections/form.less @@ -322,7 +322,7 @@ .ui.form .@{state}.message:empty { display: none; } - }) + }); } /* Assumptions */ @@ -740,7 +740,7 @@ color: @lbg; } } - }) + }); } & when (@variationFormDisabled) { @@ -1167,7 +1167,7 @@ .ui.@{value}.form .field .dropdown .menu > .item { font-size: @s; } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/collections/grid.less b/src/definitions/collections/grid.less index 989667331e..da09e3181a 100755 --- a/src/definitions/collections/grid.less +++ b/src/definitions/collections/grid.less @@ -1334,7 +1334,7 @@ background-color: @c; color: @white; } - }) + }); } & when (@variationGridEqualWidth) { diff --git a/src/definitions/collections/menu.less b/src/definitions/collections/menu.less index 0cb572ea87..14fbe5262a 100755 --- a/src/definitions/collections/menu.less +++ b/src/definitions/collections/menu.less @@ -1368,7 +1368,7 @@ Floated Menu / Item color: @c; } } - }) + }); } & when (@variationMenuInverted) { @@ -1530,7 +1530,7 @@ Floated Menu / Item } } } - }) + }); } & when (@variationMenuPointing) { @@ -1841,7 +1841,7 @@ Floated Menu / Item .ui.inverted.pointing.menu .@{color}.active.item::after { background-color: @c; } - }) + }); } & when (@variationMenuAttached) { @@ -1945,7 +1945,7 @@ Floated Menu / Item width: @@w; } } - }) + }); } /* ------------------- diff --git a/src/definitions/collections/message.less b/src/definitions/collections/message.less index e970c6f984..43eb339075 100755 --- a/src/definitions/collections/message.less +++ b/src/definitions/collections/message.less @@ -336,7 +336,7 @@ text: @successTextColor; invertedText: @formSuccessLabelBackground; }; - } + }; /* Colors */ @@ -372,7 +372,7 @@ color: @it; } } - }) + }); } & when not (@variationMessageColors = false) { each(@variationMessageColors, { @@ -417,7 +417,7 @@ color: @invertedTextColor; } } - }) + }); } & when (@variationMessageInverted) { @@ -440,7 +440,7 @@ .ui.@{value}.message { font-size: @@s; } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/collections/table.less b/src/definitions/collections/table.less index f81c415ed3..16b6e780ae 100755 --- a/src/definitions/collections/table.less +++ b/src/definitions/collections/table.less @@ -259,7 +259,7 @@ } } } - }) + }); } & when (@variationTableScrolling) { & when (@variationTableScrollingShort) { @@ -893,7 +893,7 @@ } } } - }) + }); } } @@ -1304,7 +1304,7 @@ } } - }) + }); } & when (@variationTableEqualWidth) { @@ -1926,7 +1926,7 @@ .ui.@{value}.table { font-size: @s; } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/elements/button.less b/src/definitions/elements/button.less index 266ab43aff..230b6ba20e 100755 --- a/src/definitions/elements/button.less +++ b/src/definitions/elements/button.less @@ -725,7 +725,7 @@ .ui.ui.ui.ui.@{value}.button { font-size: @s; } - }) + }); } & when (@variationButtonIcon) { @@ -1718,7 +1718,7 @@ color: @a; } } - }) + }); } & when not (@variationButtonConsequences = false) { @@ -1805,7 +1805,7 @@ margin-left: -@basicColoredBorderSize; } } - }) + }); } & when (@variationButtonGroups) { diff --git a/src/definitions/elements/divider.less b/src/definitions/elements/divider.less index 9add2fc5d9..00b05785c4 100755 --- a/src/definitions/elements/divider.less +++ b/src/definitions/elements/divider.less @@ -283,7 +283,7 @@ .ui.@{value}.divider { font-size: @s; } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/elements/header.less b/src/definitions/elements/header.less index 993c5b4d5a..af940b6aaa 100755 --- a/src/definitions/elements/header.less +++ b/src/definitions/elements/header.less @@ -152,7 +152,7 @@ font-size: @@sf; } } - }) + }); } /* -------------- @@ -178,7 +178,7 @@ font-size: @@shf; } } - }) + }); } & when (@variationHeaderSub) { @@ -332,7 +332,7 @@ border-bottom: @dividedColoredBorderWidth solid @l; } } - }) + }); } & when (@variationHeaderAligned) { @@ -436,7 +436,7 @@ .ui.@{value}.block.header { font-size: @@s; } - }) + }); } } @@ -478,7 +478,7 @@ .ui.@{value}.attached.header { font-size: @@s; } - }) + }); } } diff --git a/src/definitions/elements/icon.less b/src/definitions/elements/icon.less index 6983a5b0cf..5497e581cf 100755 --- a/src/definitions/elements/icon.less +++ b/src/definitions/elements/icon.less @@ -27,7 +27,7 @@ @{key}: @value; }); } - }) + }); } i.icon { @@ -339,7 +339,7 @@ i.emphasized.icons:not(.disabled) { } } } - }) + }); } /* ------------------- @@ -360,7 +360,7 @@ i.icons { font-size: @s; vertical-align: middle; } - }) + }); } & when (@variationIconGroups) or (@variationIconCorner) { @@ -659,7 +659,7 @@ and ((@variationIconBordered) or (@variationIconCircular)) { color: @l; } } - }) + }); } } diff --git a/src/definitions/elements/image.less b/src/definitions/elements/image.less index db3268fb7a..8d8507a157 100755 --- a/src/definitions/elements/image.less +++ b/src/definitions/elements/image.less @@ -291,7 +291,7 @@ img.ui.image { height: auto; font-size: @s; } - }) + }); } & when (@variationImageGroups) { diff --git a/src/definitions/elements/input.less b/src/definitions/elements/input.less index 657e5d9283..399ca8d6fe 100755 --- a/src/definitions/elements/input.less +++ b/src/definitions/elements/input.less @@ -212,7 +212,7 @@ .ui.input.@{state} > input:focus:-ms-input-placeholder when (@supportIE){ color: @formStates[@@state][inputPlaceholderFocusColor] !important; } - }) + }); } /******************************* @@ -545,7 +545,7 @@ .ui.right.labeled.input.@{state}:not([class*="corner labeled"]) > .ui.label:first-child { border-left: @borderWidth solid @borderColor; } - }) + }); } & when (@variationInputAction) { @@ -750,7 +750,7 @@ background-color: @lh; } } - }) + }); } & when not (@variationInputColors = false) { @@ -785,7 +785,7 @@ background: @h; } } - }) + }); } } @@ -802,7 +802,7 @@ .ui.@{value}.input { font-size: @@s; } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/elements/label.less b/src/definitions/elements/label.less index fbdd7122c7..8ddc2025c0 100755 --- a/src/definitions/elements/label.less +++ b/src/definitions/elements/label.less @@ -804,7 +804,7 @@ a.ui.active.label:hover::before { } } } - }) + }); } /* ------------------- @@ -1009,7 +1009,7 @@ a.ui.active.label:hover::before { .ui.@{value}.label { font-size: @s; } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/elements/list.less b/src/definitions/elements/list.less index 9b3f4c5cc5..f52f8296e1 100755 --- a/src/definitions/elements/list.less +++ b/src/definitions/elements/list.less @@ -1020,7 +1020,7 @@ ol.ui.list ol li, font-size: @s; } } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/elements/loader.less b/src/definitions/elements/loader.less index df804e2651..473a0553ed 100755 --- a/src/definitions/elements/loader.less +++ b/src/definitions/elements/loader.less @@ -192,7 +192,7 @@ padding-top: (@s + @textDistance); } } - }) + }); } /* ------------------- @@ -226,7 +226,7 @@ .ui.inverted.@{color}.loader.loader.loader::after { color: @l; } - }) + }); } .ui.elastic.loader.loader::before, diff --git a/src/definitions/elements/rail.less b/src/definitions/elements/rail.less index 19aaf3e0fe..b81ecb0d2e 100755 --- a/src/definitions/elements/rail.less +++ b/src/definitions/elements/rail.less @@ -141,7 +141,7 @@ .ui.@{value}.rail { font-size: @s; } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/elements/reveal.less b/src/definitions/elements/reveal.less index d74ae6bd18..366cad034a 100755 --- a/src/definitions/elements/reveal.less +++ b/src/definitions/elements/reveal.less @@ -277,7 +277,7 @@ .ui.@{value}.reveal > .content { font-size: @s; } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/elements/segment.less b/src/definitions/elements/segment.less index 9e462b2d33..ae83085126 100755 --- a/src/definitions/elements/segment.less +++ b/src/definitions/elements/segment.less @@ -598,7 +598,7 @@ } } } - }) + }); } & when (@variationSegmentAligned) { @@ -902,7 +902,7 @@ .ui.@{value}.segment { font-size: @s; } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/elements/step.less b/src/definitions/elements/step.less index 79c88d8865..2037501eec 100755 --- a/src/definitions/elements/step.less +++ b/src/definitions/elements/step.less @@ -551,7 +551,7 @@ .ui.@{value}.step { font-size: @s; } - }) + }); } & when (@variationStepInverted) { diff --git a/src/definitions/elements/text.less b/src/definitions/elements/text.less index 4b24958c4b..d9882a9442 100644 --- a/src/definitions/elements/text.less +++ b/src/definitions/elements/text.less @@ -38,7 +38,7 @@ span.ui.text { color: @l; } } - }) + }); } & when not (@variationTextStates = false) { @@ -49,7 +49,7 @@ span.ui.text { span.ui.@{state}.text { color: @c; } - }) + }); } & when (@variationTextDisabled) { @@ -68,7 +68,7 @@ span.ui.medium.text { span.ui.@{value}.text { font-size: @s; } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/modules/checkbox.less b/src/definitions/modules/checkbox.less index 333a05c4e9..445e12ddee 100755 --- a/src/definitions/modules/checkbox.less +++ b/src/definitions/modules/checkbox.less @@ -693,7 +693,7 @@ } } } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/modules/dropdown.less b/src/definitions/modules/dropdown.less index d8d3f0837a..10625aad81 100755 --- a/src/definitions/modules/dropdown.less +++ b/src/definitions/modules/dropdown.less @@ -1117,7 +1117,7 @@ select.ui.dropdown { .ui.dropdown.@{state} > .menu .active.item { background-color: @formStates[@@state][dropdownActiveBackground]; } - }) + }); } & when (@variationDropdownClear) { @@ -1748,7 +1748,7 @@ select.ui.dropdown { .ui.@{value}.dropdown .menu > .item { font-size: @s; } - }) + }); } & when (@variationDropdownInverted) { diff --git a/src/definitions/modules/modal.less b/src/definitions/modules/modal.less index 5454318e59..ec9c349fa2 100755 --- a/src/definitions/modules/modal.less +++ b/src/definitions/modules/modal.less @@ -580,7 +580,7 @@ margin: @@wm; } } - }) + }); } & when (@variationModalInverted) { diff --git a/src/definitions/modules/nag.less b/src/definitions/modules/nag.less index afa25f50a6..97fbf43c36 100755 --- a/src/definitions/modules/nag.less +++ b/src/definitions/modules/nag.less @@ -150,7 +150,7 @@ a.ui.nag { line-height: 1; } } - }) + }); } /* -------------- @@ -177,7 +177,7 @@ a.ui.nag { } } } - }) + }); } & when (@variationNagGroups) { diff --git a/src/definitions/modules/popup.less b/src/definitions/modules/popup.less index 330e04624f..94063063ee 100755 --- a/src/definitions/modules/popup.less +++ b/src/definitions/modules/popup.less @@ -847,7 +847,7 @@ } } } - }) + }); } & when (@variationPopupFlowing) { @@ -879,7 +879,7 @@ font-size: @s; } } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/modules/progress.less b/src/definitions/modules/progress.less index 00ab49c3ea..d0af03b8d9 100755 --- a/src/definitions/modules/progress.less +++ b/src/definitions/modules/progress.less @@ -486,7 +486,7 @@ background-color: @l; } } - }) + }); } /* -------------- @@ -509,7 +509,7 @@ .ui.@{value}.progress .bar { height: @@h; } - }) + }); } & when (@variationProgressIndeterminate) { diff --git a/src/definitions/modules/rating.less b/src/definitions/modules/rating.less index fc2194dca0..825aade08a 100755 --- a/src/definitions/modules/rating.less +++ b/src/definitions/modules/rating.less @@ -131,7 +131,7 @@ -webkit-text-stroke: @c 0.78px; } } - }) + }); } /******************************* @@ -176,7 +176,7 @@ .ui.@{value}.rating { font-size: @s; } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/modules/search.less b/src/definitions/modules/search.less index 309097e64a..bb99ad322c 100755 --- a/src/definitions/modules/search.less +++ b/src/definitions/modules/search.less @@ -541,7 +541,7 @@ .ui.@{value}.search { font-size: @@s; } - }) + }); } /* -------------- diff --git a/src/definitions/modules/slider.less b/src/definitions/modules/slider.less index 667dadaa71..199059ba7c 100644 --- a/src/definitions/modules/slider.less +++ b/src/definitions/modules/slider.less @@ -329,7 +329,7 @@ } } - }) + }); } & when (@variationSliderBasic) { @@ -413,7 +413,7 @@ } } } - }) + }); } .loadUIOverrides(); diff --git a/src/definitions/modules/toast.less b/src/definitions/modules/toast.less index b8b2d707d3..ac46179f8f 100644 --- a/src/definitions/modules/toast.less +++ b/src/definitions/modules/toast.less @@ -651,7 +651,7 @@ color: @toastInvertedTextColor; } } - }) + }); } & when (@variationToastInverted) { diff --git a/src/definitions/modules/transition.less b/src/definitions/modules/transition.less index df4b81f245..527405f570 100755 --- a/src/definitions/modules/transition.less +++ b/src/definitions/modules/transition.less @@ -109,7 +109,7 @@ box-shadow: 0 0 0 0 fade(@l, @pulsatingInvertedOpacity); } } - }) + }); } } diff --git a/src/definitions/views/card.less b/src/definitions/views/card.less index e5095a9613..4ce5ff9d3e 100755 --- a/src/definitions/views/card.less +++ b/src/definitions/views/card.less @@ -772,7 +772,7 @@ } } } - }) + }); } & when (@variationCardEqualWidth) { @@ -1093,7 +1093,7 @@ .ui.@{value}.cards .card { font-size: @s; } - }) + }); } & when (@variationCardInverted) { diff --git a/src/definitions/views/comment.less b/src/definitions/views/comment.less index 3923dd8b43..55db5b882c 100755 --- a/src/definitions/views/comment.less +++ b/src/definitions/views/comment.less @@ -258,7 +258,7 @@ .ui.@{value}.comments { font-size: @s; } - }) + }); } & when (@variationCommentInverted) { diff --git a/src/definitions/views/feed.less b/src/definitions/views/feed.less index 7d4b7b4140..b12daf9507 100755 --- a/src/definitions/views/feed.less +++ b/src/definitions/views/feed.less @@ -284,7 +284,7 @@ .ui.@{value}.feed { font-size: @s; } - }) + }); } & when (@variationFeedInverted) { diff --git a/src/definitions/views/item.less b/src/definitions/views/item.less index fd7f42dd2b..a2c9043f5a 100755 --- a/src/definitions/views/item.less +++ b/src/definitions/views/item.less @@ -491,7 +491,7 @@ .ui.@{value}.items > .item { font-size: @@s; } - }) + }); } & when (@variationItemUnstackable) { diff --git a/src/definitions/views/statistic.less b/src/definitions/views/statistic.less index cfb151b8aa..1d6b7fd662 100755 --- a/src/definitions/views/statistic.less +++ b/src/definitions/views/statistic.less @@ -337,7 +337,7 @@ color: @l; } } - }) + }); } & when (@variationStatisticFloated) { @@ -411,7 +411,7 @@ .ui.@{value}.statistic > .text.value { font-size: @@ts; } - }) + }); } .loadUIOverrides(); diff --git a/src/theme.less b/src/theme.less index b2cb5e4a73..029b0a5c36 100644 --- a/src/theme.less +++ b/src/theme.less @@ -68,7 +68,7 @@ @{key}: @value; }); } - }) + }); } } From 9af2885b569164339e3bce5d0c8940d1c3c27d98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Thu, 15 Dec 2022 23:36:45 +0100 Subject: [PATCH 06/18] fix multiple spaces manually (?<=\S) {2,} --- src/definitions/collections/form.less | 2 +- src/definitions/collections/table.less | 2 +- src/definitions/elements/button.less | 2 +- src/definitions/elements/input.less | 2 +- src/definitions/modules/dropdown.less | 6 +++--- src/definitions/modules/popup.less | 6 +++--- src/definitions/modules/progress.less | 4 ++-- src/definitions/modules/rating.less | 2 +- src/definitions/modules/search.less | 2 +- src/definitions/modules/toast.less | 4 ++-- src/definitions/views/card.less | 2 +- src/definitions/views/comment.less | 2 +- src/definitions/views/feed.less | 2 +- src/definitions/views/item.less | 2 +- src/themes/bookish/elements/header.variables | 2 +- src/themes/chubby/views/comment.variables | 2 +- src/themes/default/collections/menu.variables | 4 ++-- src/themes/default/elements/container.variables | 8 ++++---- src/themes/default/elements/icon.variables | 8 ++++---- src/themes/default/elements/segment.variables | 2 +- src/themes/default/globals/site.variables | 2 +- src/themes/default/modules/checkbox.overrides | 4 ++-- src/themes/default/modules/dropdown.variables | 4 ++-- src/themes/default/views/comment.variables | 2 +- src/themes/github/elements/segment.variables | 2 +- 25 files changed, 40 insertions(+), 40 deletions(-) diff --git a/src/definitions/collections/form.less b/src/definitions/collections/form.less index 90146b15c9..750803a318 100755 --- a/src/definitions/collections/form.less +++ b/src/definitions/collections/form.less @@ -281,7 +281,7 @@ } & when (@variationFormInline) { - /* Inline */ + /* Inline */ .ui.form .inline.fields .field:not(.wide) .ui.input, .ui.form .inline.field:not(.wide) .ui.input { width: auto; diff --git a/src/definitions/collections/table.less b/src/definitions/collections/table.less index 16b6e780ae..82040e0cd5 100755 --- a/src/definitions/collections/table.less +++ b/src/definitions/collections/table.less @@ -398,7 +398,7 @@ display: block; overflow-y: scroll; overscroll-behavior: @overscrollBehavior; - scrollbar-width: thin; /* Firefox */ + scrollbar-width: thin; /* Firefox */ & > tr { display: table; table-layout: fixed; diff --git a/src/definitions/elements/button.less b/src/definitions/elements/button.less index 230b6ba20e..4e184489f9 100755 --- a/src/definitions/elements/button.less +++ b/src/definitions/elements/button.less @@ -1857,7 +1857,7 @@ border-bottom-right-radius: @borderRadius; } & when (@variationButtonVertical) { - /* Vertical Style */ + /* Vertical Style */ .ui.vertical.buttons { display: inline-flex; flex-direction: column; diff --git a/src/definitions/elements/input.less b/src/definitions/elements/input.less index 399ca8d6fe..09d69a5544 100755 --- a/src/definitions/elements/input.less +++ b/src/definitions/elements/input.less @@ -505,7 +505,7 @@ } } & when (@variationInputCorner) { - /* Corner Label Position */ + /* Corner Label Position */ .ui.input > .ui.corner.label { top: @borderWidth; right: @borderWidth; diff --git a/src/definitions/modules/dropdown.less b/src/definitions/modules/dropdown.less index 10625aad81..4e9a302f94 100755 --- a/src/definitions/modules/dropdown.less +++ b/src/definitions/modules/dropdown.less @@ -428,7 +428,7 @@ select.ui.dropdown { } } - /* Selection Menu */ + /* Selection Menu */ .ui.selection.dropdown .menu { overflow-x: hidden; overflow-y: auto; @@ -633,7 +633,7 @@ select.ui.dropdown { box-shadow: none !important; } & when (@variationDropdownScrollhint) { - /* CSS specific to iOS devices or firefox mobile only */ + /* CSS specific to iOS devices or firefox mobile only */ @supports (-webkit-touch-callout: none) or (-webkit-overflow-scrolling: touch) or (-moz-appearance:none) { @media (-moz-touch-enabled), (pointer: coarse) { .ui.dropdown .scrollhint.menu:not(.hidden)::before { @@ -1288,7 +1288,7 @@ select.ui.dropdown { Scrolling --------------- */ - /* Selection Menu */ + /* Selection Menu */ .ui.scrolling.dropdown .menu, .ui.dropdown .scrolling.menu { overflow-x: hidden; diff --git a/src/definitions/modules/popup.less b/src/definitions/modules/popup.less index 94063063ee..c9070fafc0 100755 --- a/src/definitions/modules/popup.less +++ b/src/definitions/modules/popup.less @@ -221,7 +221,7 @@ background: @invertedArrowBottomBackground; } - /* Popup */ + /* Popup */ [data-tooltip][data-inverted]::after { background: @tooltipInvertedBackground; color: @tooltipInvertedColor; @@ -634,7 +634,7 @@ } } & when (@variationPopupRight) { - /* --- Right Center --- */ + /* --- Right Center --- */ /* rtl:rename */ .ui.right.center.popup::before { @@ -783,7 +783,7 @@ Colors --------------- */ - /* Inverted colors */ + /* Inverted colors */ .ui.inverted.popup { background: @invertedBackground; color: @invertedColor; diff --git a/src/definitions/modules/progress.less b/src/definitions/modules/progress.less index d0af03b8d9..6c8e90d84a 100755 --- a/src/definitions/modules/progress.less +++ b/src/definitions/modules/progress.less @@ -503,7 +503,7 @@ each(@variationProgressSizes, { @h: @{value}BarHeight; @s: @@value; - .ui.@{value}.progress { + .ui.@{value}.progress { font-size: @s; } .ui.@{value}.progress .bar { @@ -564,7 +564,7 @@ .ui.indeterminate.progress:not(.sliding):not(.filling):not(.swinging) .bar::before { background: @indeterminatePulseColor; } - & when (@variationProgressSliding) or (@variationProgressSwinging) or (@variationProgressFilling) { + & when (@variationProgressSliding) or (@variationProgressSwinging) or (@variationProgressFilling) { .ui.sliding.indeterminate.progress .bar, .ui.swinging.indeterminate.progress .bar, .ui.filling.indeterminate.progress .bar { diff --git a/src/definitions/modules/rating.less b/src/definitions/modules/rating.less index 825aade08a..cbb2c50af6 100755 --- a/src/definitions/modules/rating.less +++ b/src/definitions/modules/rating.less @@ -173,7 +173,7 @@ & when not (@variationRatingSizes = false) { each(@variationRatingSizes, { @s: @@value; - .ui.@{value}.rating { + .ui.@{value}.rating { font-size: @s; } }); diff --git a/src/definitions/modules/search.less b/src/definitions/modules/search.less index bb99ad322c..9053d51274 100755 --- a/src/definitions/modules/search.less +++ b/src/definitions/modules/search.less @@ -538,7 +538,7 @@ & when not (@variationFeedSizes = false) { each(@variationFeedSizes, { @s: @{value}SearchSize; - .ui.@{value}.search { + .ui.@{value}.search { font-size: @@s; } }); diff --git a/src/definitions/modules/toast.less b/src/definitions/modules/toast.less index ac46179f8f..cf29365925 100644 --- a/src/definitions/modules/toast.less +++ b/src/definitions/modules/toast.less @@ -274,7 +274,7 @@ & .progressing { animation-iteration-count: 1; animation-timing-function: linear; - & when (@variationToastProgress) { + & when (@variationToastProgress) { &.up { animation-name: progressUp; } @@ -685,7 +685,7 @@ /* --------------- Progress Bar ---------------- */ -& when (@variationToastProgress) { +& when (@variationToastProgress) { @keyframes progressDown { 0% { width: 100%; diff --git a/src/definitions/views/card.less b/src/definitions/views/card.less index 4ce5ff9d3e..e94917ffb1 100755 --- a/src/definitions/views/card.less +++ b/src/definitions/views/card.less @@ -705,7 +705,7 @@ .ui.basic.cards > .@{color}.card, .ui.basic.@{color}.card { background: @l; - & when (@isVeryDark) { + & when (@isVeryDark) { & .header, .content, .meta, diff --git a/src/definitions/views/comment.less b/src/definitions/views/comment.less index 55db5b882c..032e353e5a 100755 --- a/src/definitions/views/comment.less +++ b/src/definitions/views/comment.less @@ -255,7 +255,7 @@ & when not (@variationCommentSizes = false) { each(@variationCommentSizes, { @s: @@value; - .ui.@{value}.comments { + .ui.@{value}.comments { font-size: @s; } }); diff --git a/src/definitions/views/feed.less b/src/definitions/views/feed.less index b12daf9507..2e4d584623 100755 --- a/src/definitions/views/feed.less +++ b/src/definitions/views/feed.less @@ -281,7 +281,7 @@ & when not (@variationFeedSizes = false) { each(@variationFeedSizes, { @s: @@value; - .ui.@{value}.feed { + .ui.@{value}.feed { font-size: @s; } }); diff --git a/src/definitions/views/item.less b/src/definitions/views/item.less index a2c9043f5a..4cfc416d63 100755 --- a/src/definitions/views/item.less +++ b/src/definitions/views/item.less @@ -488,7 +488,7 @@ & when not (@variationItemSizes = false) { each(@variationItemSizes, { @s: @{value}ItemSize; - .ui.@{value}.items > .item { + .ui.@{value}.items > .item { font-size: @@s; } }); diff --git a/src/themes/bookish/elements/header.variables b/src/themes/bookish/elements/header.variables index 15da47ef84..667942c4de 100644 --- a/src/themes/bookish/elements/header.variables +++ b/src/themes/bookish/elements/header.variables @@ -17,7 +17,7 @@ @blockVerticalPadding: 1.3em; @blockHorizontalPadding: 1em; -/* Attached */ +/* Attached */ @attachedBackground: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.03)) repeat scroll 0 0 #F8F8F8; @attachedVerticalPadding: 1.3; @attachedHorizontalPadding: 1em; diff --git a/src/themes/chubby/views/comment.variables b/src/themes/chubby/views/comment.variables index a1e3b53a2d..d15be6f127 100644 --- a/src/themes/chubby/views/comment.variables +++ b/src/themes/chubby/views/comment.variables @@ -43,4 +43,4 @@ -------------------- */ /* Threaded */ -@threadedCommentMargin: -1.5em 0 -1em (@avatarWidth / 2); +@threadedCommentMargin: -1.5em 0 -1em (@avatarWidth / 2); diff --git a/src/themes/default/collections/menu.variables b/src/themes/default/collections/menu.variables index 9872188898..3323b6d53d 100644 --- a/src/themes/default/collections/menu.variables +++ b/src/themes/default/collections/menu.variables @@ -128,7 +128,7 @@ /* Image Label */ @imageLabelTextDistance: 0.8em; @imageLabelVerticalPadding: 0.2833em; /* Calculates as: @verticalLabel (from label.less) - @labelVerticalPadding (from here) */ -@imageLabelHeight: (1em + @imageLabelVerticalPadding * 2); /* Logic adopted from label.less */ +@imageLabelHeight: (1em + @imageLabelVerticalPadding * 2); /* Logic adopted from label.less */ @imageLabelImageMargin: -@imageLabelVerticalPadding @imageLabelTextDistance -@imageLabelVerticalPadding -@imageLabelTextDistance; /* Dropdown in Menu */ @@ -400,7 +400,7 @@ @invertedActiveColor: @invertedSelectedTextColor; @invertedArrowActiveColor: #3D3E3F; -/* Inverted Active Hover */ +/* Inverted Active Hover */ @invertedActiveHoverBackground: @invertedActiveBackground; @invertedActiveHoverColor: @white; @invertedArrowActiveHoverColor: @invertedArrowActiveColor; diff --git a/src/themes/default/elements/container.variables b/src/themes/default/elements/container.variables index c7a5af3720..92e2715719 100644 --- a/src/themes/default/elements/container.variables +++ b/src/themes/default/elements/container.variables @@ -6,7 +6,7 @@ Element -------------------- */ -/* Minimum Gutter is used to determine the maximum container width for a given device */ +/* Minimum Gutter is used to determine the maximum container width for a given device */ @maxWidth: 100%; @wideRatio: 1.2; @@ -16,17 +16,17 @@ @mobileWidth: auto; @mobileGutter: 1em; -@tabletMinimumGutter: (@emSize * 1); +@tabletMinimumGutter: (@emSize * 1); @tabletWidth: @tabletBreakpoint - (@tabletMinimumGutter * 2) - @scrollbarWidth; @tabletWideWidth: (@tabletBreakpoint - (@tabletMinimumGutter * 2) - @scrollbarWidth) * @wideRatio; @tabletGutter: auto; -@computerMinimumGutter: (@emSize * 1.5); +@computerMinimumGutter: (@emSize * 1.5); @computerWidth: @computerBreakpoint - (@computerMinimumGutter * 2) - @scrollbarWidth; @computerWideWidth: (@computerBreakpoint - (@computerMinimumGutter * 2) - @scrollbarWidth) * @wideRatio; @computerGutter: auto; -@largeMonitorMinimumGutter: (@emSize * 2); +@largeMonitorMinimumGutter: (@emSize * 2); @largeMonitorWidth: @largeMonitorBreakpoint - (@largeMonitorMinimumGutter * 2) - @scrollbarWidth; @largeMonitorWideWidth: (@largeMonitorBreakpoint - (@largeMonitorMinimumGutter * 2) - @scrollbarWidth) * @wideRatio; @largeMonitorGutter: auto; diff --git a/src/themes/default/elements/icon.variables b/src/themes/default/elements/icon.variables index 84e5be4336..3a25f2d328 100644 --- a/src/themes/default/elements/icon.variables +++ b/src/themes/default/elements/icon.variables @@ -2103,14 +2103,14 @@ Icons are order A-Z in their group, Solid, Outline, Thin (Pro only) and Brand @cornerIconShadow: -@cornerIconStroke -@cornerIconStroke 0 @white, @cornerIconStroke -@cornerIconStroke 0 @white, - -@cornerIconStroke @cornerIconStroke 0 @white, - @cornerIconStroke @cornerIconStroke 0 @white + -@cornerIconStroke @cornerIconStroke 0 @white, + @cornerIconStroke @cornerIconStroke 0 @white ; @cornerIconInvertedShadow: -@cornerIconStroke -@cornerIconStroke 0 @black, @cornerIconStroke -@cornerIconStroke 0 @black, - -@cornerIconStroke @cornerIconStroke 0 @black, - @cornerIconStroke @cornerIconStroke 0 @black + -@cornerIconStroke @cornerIconStroke 0 @black, + @cornerIconStroke @cornerIconStroke 0 @black ; @cornerOffset: 0; diff --git a/src/themes/default/elements/segment.variables b/src/themes/default/elements/segment.variables index 53355aa3f5..849cd078a8 100644 --- a/src/themes/default/elements/segment.variables +++ b/src/themes/default/elements/segment.variables @@ -128,7 +128,7 @@ @secondaryBackground: @darkWhite; @secondaryColor: @mutedTextColor; -@tertiaryBackground: @midWhite; +@tertiaryBackground: @midWhite; @tertiaryColor: @mutedTextColor; @secondaryInvertedLightness: 0.2; diff --git a/src/themes/default/globals/site.variables b/src/themes/default/globals/site.variables index e2820bb47f..4d39de360f 100755 --- a/src/themes/default/globals/site.variables +++ b/src/themes/default/globals/site.variables @@ -127,7 +127,7 @@ /* This is the single variable that controls them all */ @emSize: 14px; -/* The size of page text */ +/* The size of page text */ @fontSize: 14px; /* ------------------- diff --git a/src/themes/default/modules/checkbox.overrides b/src/themes/default/modules/checkbox.overrides index fc5d3677f3..d13246b716 100644 --- a/src/themes/default/modules/checkbox.overrides +++ b/src/themes/default/modules/checkbox.overrides @@ -26,8 +26,8 @@ content: "\e801"; } -/* UTF Reference +/* UTF Reference .check::before { content: '\e800'; } -.dash::before { content: '\e801'; } +.dash::before { content: '\e801'; } .plus::before { content: '\e802'; } */ diff --git a/src/themes/default/modules/dropdown.variables b/src/themes/default/modules/dropdown.variables index ed2b079d1b..d7bde34119 100755 --- a/src/themes/default/modules/dropdown.variables +++ b/src/themes/default/modules/dropdown.variables @@ -135,7 +135,7 @@ @selectionMinWidth: 14em; @selectionVerticalPadding: @inputVerticalPadding; @selectionHorizontalPadding: @inputHorizontalPadding; -@selectionBorderEmWidth: @relative1px; +@selectionBorderEmWidth: @relative1px; @selectionMinHeight: @inputLineHeight + (@selectionVerticalPadding * 2) - @selectionBorderEmWidth; @selectionBackground: @inputBackground; @selectionDisplay: inline-block; @@ -279,7 +279,7 @@ @labelHorizontalPadding: @relativeMini; @labelPadding: @labelVerticalPadding @labelHorizontalPadding; -@imageLabelHeight: (1em + @labelVerticalPadding * 2); /* Logic adopted from label.less */ +@imageLabelHeight: (1em + @labelVerticalPadding * 2); /* Logic adopted from label.less */ @imageLabelImageMargin: -@labelVerticalPadding @labelHorizontalPadding -@labelVerticalPadding -@labelHorizontalPadding; /* ------------------- diff --git a/src/themes/default/views/comment.variables b/src/themes/default/views/comment.variables index 2e7f556e06..5d84162ba2 100644 --- a/src/themes/default/views/comment.variables +++ b/src/themes/default/views/comment.variables @@ -80,7 +80,7 @@ -------------------- */ /* Threaded */ -@threadedCommentMargin: -1.5em 0 -1em (@avatarWidth / 2); +@threadedCommentMargin: -1.5em 0 -1em (@avatarWidth / 2); @threadedCommentPadding: 3em 0 2em 2.25em; @threadedCommentBoxShadow: -1px 0 0 @borderColor; diff --git a/src/themes/github/elements/segment.variables b/src/themes/github/elements/segment.variables index 1ae3454c05..15e96d2569 100644 --- a/src/themes/github/elements/segment.variables +++ b/src/themes/github/elements/segment.variables @@ -29,7 +29,7 @@ @secondaryBackground: #F9F9F9; @secondaryColor: @textColor; -@tertiaryBackground: #F0F0F0; +@tertiaryBackground: #F0F0F0; @tertiaryColor: @textColor; @secondaryInvertedBackground: #555555; From 5a0816f855c40fd840edbae249c0ccda3c9534da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Thu, 15 Dec 2022 23:50:31 +0100 Subject: [PATCH 07/18] fix remaining whitespaces problems using prettier autofix --- src/definitions/collections/menu.less | 2 +- src/definitions/collections/message.less | 1 - src/definitions/collections/table.less | 5 +- src/definitions/elements/button.less | 11 +- src/definitions/elements/divider.less | 1 - src/definitions/elements/header.less | 4 +- src/definitions/elements/icon.less | 2 +- src/definitions/elements/input.less | 4 +- src/definitions/elements/loader.less | 4 +- src/definitions/elements/placeholder.less | 4 +- src/definitions/elements/step.less | 2 - src/definitions/modules/dropdown.less | 2 +- src/definitions/modules/modal.less | 1 - src/definitions/modules/transition.less | 2 +- src/theme.less | 2 +- src/themes/default/collections/form.variables | 2 +- src/themes/default/elements/icon.variables | 2 +- src/themes/default/elements/segment.variables | 2 +- src/themes/default/globals/reset.overrides | 8 +- src/themes/default/globals/site.variables | 324 +++++++++--------- src/themes/default/modules/checkbox.variables | 14 +- src/themes/default/modules/dimmer.variables | 2 +- src/themes/default/modules/dropdown.overrides | 4 +- src/themes/default/modules/modal.variables | 2 +- src/themes/default/views/card.variables | 2 +- src/themes/flat/globals/site.variables | 2 +- src/themes/github/modules/dropdown.overrides | 4 +- 27 files changed, 203 insertions(+), 212 deletions(-) diff --git a/src/definitions/collections/menu.less b/src/definitions/collections/menu.less index 14fbe5262a..532626cfdf 100755 --- a/src/definitions/collections/menu.less +++ b/src/definitions/collections/menu.less @@ -1531,7 +1531,7 @@ Floated Menu / Item } } }); - } + } & when (@variationMenuPointing) { .ui.ui.ui.inverted.pointing.menu .active.item::after { diff --git a/src/definitions/collections/message.less b/src/definitions/collections/message.less index 43eb339075..e53dcc7d77 100755 --- a/src/definitions/collections/message.less +++ b/src/definitions/collections/message.less @@ -286,7 +286,6 @@ Types --------------- */ & when not (@variationMessageConsequences = false) { - @consequences: { @positive: { background: @positiveBackgroundColor; diff --git a/src/definitions/collections/table.less b/src/definitions/collections/table.less index 82040e0cd5..8e74e1922c 100755 --- a/src/definitions/collections/table.less +++ b/src/definitions/collections/table.less @@ -260,7 +260,7 @@ } } }); - } + } & when (@variationTableScrolling) { & when (@variationTableScrollingShort) { .ui.scrolling.table.short > tbody { @@ -814,7 +814,6 @@ --------------- */ @media only screen and (max-width: @largestTabletScreen) { - .ui[class*="tablet stackable"].table, .ui[class*="tablet stackable"].table > thead, .ui[class*="tablet stackable"].table > thead > tr, @@ -894,7 +893,7 @@ } } }); - } + } } & when (@variationTableAligned) { diff --git a/src/definitions/elements/button.less b/src/definitions/elements/button.less index 4e184489f9..e0a454e71f 100755 --- a/src/definitions/elements/button.less +++ b/src/definitions/elements/button.less @@ -640,7 +640,6 @@ /* Tablet Or Below */ @media only screen and (max-width: @largestMobileScreen) { - .ui.stackable.buttons { flex-direction: column; width: 100%; @@ -686,17 +685,17 @@ .ui.compact.buttons .button, .ui.compact.button { - padding: @compactVerticalPadding @compactHorizontalPadding ( @compactVerticalPadding + @shadowOffset ); + padding: @compactVerticalPadding @compactHorizontalPadding (@compactVerticalPadding + @shadowOffset); } .ui.compact.icon.buttons .button, .ui.compact.icon.button { - padding: @compactVerticalPadding @compactVerticalPadding ( @compactVerticalPadding + @shadowOffset ); + padding: @compactVerticalPadding @compactVerticalPadding (@compactVerticalPadding + @shadowOffset); } .ui.compact.labeled.icon.buttons .button, .ui.compact.labeled.icon.button { - padding: @compactVerticalPadding (@compactHorizontalPadding + @labeledIconWidth) ( @compactVerticalPadding + @shadowOffset ); + padding: @compactVerticalPadding (@compactHorizontalPadding + @labeledIconWidth) (@compactVerticalPadding + @shadowOffset); } .ui.compact.labeled.icon.buttons .button > .icon, @@ -735,7 +734,7 @@ .ui.icon.buttons .button, .ui.icon.button:not(.animated):not(.compact):not(.labeled) { - padding: @verticalPadding @verticalPadding ( @verticalPadding + @shadowOffset ); + padding: @verticalPadding @verticalPadding (@verticalPadding + @shadowOffset); } .ui.animated.icon.button > .content > .icon, .ui.icon.buttons .button > .icon, @@ -812,7 +811,6 @@ background-color: @transparentBlack; } & when (@variationButtonGroups) { - .ui.basic.buttons .button:hover { box-shadow: @basicHoverBoxShadow inset; } @@ -923,7 +921,6 @@ } .ui.tertiary.button:hover { - & when (@tertiaryHoverWithUnderline = true) { box-shadow: inset 0 -@tertiaryLineHeight 0 @tertiaryHoverLineColor; } diff --git a/src/definitions/elements/divider.less b/src/definitions/elements/divider.less index 00b05785c4..0c557b7b27 100755 --- a/src/definitions/elements/divider.less +++ b/src/definitions/elements/divider.less @@ -125,7 +125,6 @@ /* Inside grid */ @media only screen and (max-width: @largestMobileScreen) { - .ui.stackable.grid .ui.vertical.divider, .ui.grid .stackable.row .ui.vertical.divider { display: table; diff --git a/src/definitions/elements/header.less b/src/definitions/elements/header.less index af940b6aaa..525555afba 100755 --- a/src/definitions/elements/header.less +++ b/src/definitions/elements/header.less @@ -437,7 +437,7 @@ font-size: @@s; } }); - } + } } & when (@variationHeaderAttached) { @@ -479,7 +479,7 @@ font-size: @@s; } }); - } + } } /* ------------------- diff --git a/src/definitions/elements/icon.less b/src/definitions/elements/icon.less index 5497e581cf..07f55149f2 100755 --- a/src/definitions/elements/icon.less +++ b/src/definitions/elements/icon.less @@ -660,7 +660,7 @@ and ((@variationIconBordered) or (@variationIconCircular)) { } } }); - } + } } .loadUIOverrides(); diff --git a/src/definitions/elements/input.less b/src/definitions/elements/input.less index 09d69a5544..1c5ed9eed4 100755 --- a/src/definitions/elements/input.less +++ b/src/definitions/elements/input.less @@ -751,7 +751,7 @@ } } }); - } + } & when not (@variationInputColors = false) { each(@variationInputColors, { @@ -786,7 +786,7 @@ } } }); - } + } } /* -------------------- diff --git a/src/definitions/elements/loader.less b/src/definitions/elements/loader.less index 473a0553ed..67e420eb74 100755 --- a/src/definitions/elements/loader.less +++ b/src/definitions/elements/loader.less @@ -368,7 +368,7 @@ 0%, 1% { border-left-color: transparent; - border-bottom-color: transparent + border-bottom-color: transparent; } 1.1%, 50% { @@ -396,7 +396,7 @@ 0%, 1% { border-left-color: transparent; - border-bottom-color: transparent + border-bottom-color: transparent; } 1.1%, 50% { diff --git a/src/definitions/elements/placeholder.less b/src/definitions/elements/placeholder.less index f02928d670..5695579aa8 100644 --- a/src/definitions/elements/placeholder.less +++ b/src/definitions/elements/placeholder.less @@ -34,10 +34,10 @@ @keyframes placeholderShimmer { 0% { - background-position: -@placeholderLoadingGradientWidth 0 + background-position: -@placeholderLoadingGradientWidth 0; } 100% { - background-position: @placeholderLoadingGradientWidth 0 + background-position: @placeholderLoadingGradientWidth 0; } } diff --git a/src/definitions/elements/step.less b/src/definitions/elements/step.less index 2037501eec..6c4a41336b 100755 --- a/src/definitions/elements/step.less +++ b/src/definitions/elements/step.less @@ -252,7 +252,6 @@ /* Mobile (Default) */ @media only screen and (max-width: (@largestMobileScreen)) { - .ui.steps:not(.unstackable) { display: inline-flex; overflow: visible; @@ -396,7 +395,6 @@ /* Tablet Or Below */ @media only screen and (max-width: @largestTabletScreen) { - .ui[class*="tablet stackable"].steps { display: inline-flex; overflow: visible; diff --git a/src/definitions/modules/dropdown.less b/src/definitions/modules/dropdown.less index 4e9a302f94..7a580a1c99 100755 --- a/src/definitions/modules/dropdown.less +++ b/src/definitions/modules/dropdown.less @@ -634,7 +634,7 @@ select.ui.dropdown { } & when (@variationDropdownScrollhint) { /* CSS specific to iOS devices or firefox mobile only */ - @supports (-webkit-touch-callout: none) or (-webkit-overflow-scrolling: touch) or (-moz-appearance:none) { + @supports (-webkit-touch-callout: none) or (-webkit-overflow-scrolling: touch) or (-moz-appearance: none) { @media (-moz-touch-enabled), (pointer: coarse) { .ui.dropdown .scrollhint.menu:not(.hidden)::before { animation: scrollhint @scrollhintDuration @scrollhintEasing @scrollhintIteration; diff --git a/src/definitions/modules/modal.less b/src/definitions/modules/modal.less index ec9c349fa2..5a8ead52e8 100755 --- a/src/definitions/modules/modal.less +++ b/src/definitions/modules/modal.less @@ -260,7 +260,6 @@ /* Mobile */ @media only screen and (max-width: @largestMobileScreen) { - .ui.modal > .header { padding: @mobileHeaderPadding; } diff --git a/src/definitions/modules/transition.less b/src/definitions/modules/transition.less index 527405f570..5a87df75b7 100755 --- a/src/definitions/modules/transition.less +++ b/src/definitions/modules/transition.less @@ -110,7 +110,7 @@ } } }); - } + } } .loadUIOverrides(); diff --git a/src/theme.less b/src/theme.less index 029b0a5c36..fee27fa725 100644 --- a/src/theme.less +++ b/src/theme.less @@ -69,7 +69,7 @@ }); } }); - } + } } /* ------------------ diff --git a/src/themes/default/collections/form.variables b/src/themes/default/collections/form.variables index d483acb99a..f8d7074b5f 100644 --- a/src/themes/default/collections/form.variables +++ b/src/themes/default/collections/form.variables @@ -108,7 +108,7 @@ /* Loading Dimmer */ @loaderDimmerColor: rgba(255, 255, 255, 0.8); -@loaderInvertedDimmerColor: rgba(0, 0, 0 , 0.85); +@loaderInvertedDimmerColor: rgba(0, 0, 0, 0.85); @loaderDimmerZIndex: 100; /* Loading Spinner */ diff --git a/src/themes/default/elements/icon.variables b/src/themes/default/elements/icon.variables index 3a25f2d328..d8fbbda13b 100644 --- a/src/themes/default/elements/icon.variables +++ b/src/themes/default/elements/icon.variables @@ -1096,7 +1096,7 @@ Icons are order A-Z in their group, Solid, Outline, Thin (Pro only) and Brand yin_yang: "\f6ad"; }; - @icon-aliases-map: { +@icon-aliases-map: { add: "\f067"; add_circle: "\f055"; add_square: "\f0fe"; diff --git a/src/themes/default/elements/segment.variables b/src/themes/default/elements/segment.variables index 849cd078a8..4229229e05 100644 --- a/src/themes/default/elements/segment.variables +++ b/src/themes/default/elements/segment.variables @@ -79,7 +79,7 @@ /* Loading Dimmer */ @loaderDimmerColor: rgba(255, 255, 255, 0.8); -@loaderInvertedDimmerColor: rgba(0, 0, 0 , 0.85); +@loaderInvertedDimmerColor: rgba(0, 0, 0, 0.85); @loaderDimmerZIndex: 100; /* Loading Spinner */ diff --git a/src/themes/default/globals/reset.overrides b/src/themes/default/globals/reset.overrides index 6d1403e5c4..93d5d68da8 100755 --- a/src/themes/default/globals/reset.overrides +++ b/src/themes/default/globals/reset.overrides @@ -174,8 +174,8 @@ textarea { */ button, -input { /* 1 */ - overflow: visible; +input { + overflow: visible; /* 1 */ } /** @@ -184,8 +184,8 @@ input { /* 1 */ */ button, -select { /* 1 */ - text-transform: none; +select { + text-transform: none; /* 1 */ } /** diff --git a/src/themes/default/globals/site.variables b/src/themes/default/globals/site.variables index 4d39de360f..1bd1376f86 100755 --- a/src/themes/default/globals/site.variables +++ b/src/themes/default/globals/site.variables @@ -746,43 +746,43 @@ This rounds @size values to the closest pixel then expresses that value in (r)em. This ensures all size values round to exact pixels */ -@miniRaw: unit( (round(@miniSize * @emSize) / @emSize )); -@tinyRaw: unit( (round(@tinySize * @emSize) / @emSize )); -@smallRaw: unit( (round(@smallSize * @emSize) / @emSize )); -@mediumRaw: unit( (round(@mediumSize * @emSize) / @emSize )); -@largeRaw: unit( (round(@largeSize * @emSize) / @emSize )); -@bigRaw: unit( (round(@bigSize * @emSize) / @emSize )); -@hugeRaw: unit( (round(@hugeSize * @emSize) / @emSize )); -@massiveRaw: unit( (round(@massiveSize * @emSize) / @emSize )); - -@mini: unit( @miniRaw, rem); -@tiny: unit( @tinyRaw, rem); -@small: unit( @smallRaw, rem); -@medium: unit( @mediumRaw, rem); -@large: unit( @largeRaw, rem); -@big: unit( @bigRaw, rem); -@huge: unit( @hugeRaw, rem); -@massive: unit( @massiveRaw, rem); +@miniRaw: unit((round(@miniSize * @emSize) / @emSize)); +@tinyRaw: unit((round(@tinySize * @emSize) / @emSize)); +@smallRaw: unit((round(@smallSize * @emSize) / @emSize)); +@mediumRaw: unit((round(@mediumSize * @emSize) / @emSize)); +@largeRaw: unit((round(@largeSize * @emSize) / @emSize)); +@bigRaw: unit((round(@bigSize * @emSize) / @emSize)); +@hugeRaw: unit((round(@hugeSize * @emSize) / @emSize)); +@massiveRaw: unit((round(@massiveSize * @emSize) / @emSize)); + +@mini: unit(@miniRaw, rem); +@tiny: unit(@tinyRaw, rem); +@small: unit(@smallRaw, rem); +@medium: unit(@mediumRaw, rem); +@large: unit(@largeRaw, rem); +@big: unit(@bigRaw, rem); +@huge: unit(@hugeRaw, rem); +@massive: unit(@massiveRaw, rem); /* em */ -@relativeMini: unit( @miniRaw, em); -@relativeTiny: unit( @tinyRaw, em); -@relativeSmall: unit( @smallRaw, em); -@relativeMedium: unit( @mediumRaw, em); -@relativeLarge: unit( @largeRaw, em); -@relativeBig: unit( @bigRaw, em); -@relativeHuge: unit( @hugeRaw, em); -@relativeMassive: unit( @massiveRaw, em); +@relativeMini: unit(@miniRaw, em); +@relativeTiny: unit(@tinyRaw, em); +@relativeSmall: unit(@smallRaw, em); +@relativeMedium: unit(@mediumRaw, em); +@relativeLarge: unit(@largeRaw, em); +@relativeBig: unit(@bigRaw, em); +@relativeHuge: unit(@hugeRaw, em); +@relativeMassive: unit(@massiveRaw, em); /* rem */ -@absoluteMini: unit( @miniRaw, rem); -@absoluteTiny: unit( @tinyRaw, rem); -@absoluteSmall: unit( @smallRaw, rem); -@absoluteMedium: unit( @mediumRaw, rem); -@absoluteLarge: unit( @largeRaw, rem); -@absoluteBig: unit( @bigRaw, rem); -@absoluteHuge: unit( @hugeRaw, rem); -@absoluteMassive: unit( @massiveRaw, rem); +@absoluteMini: unit(@miniRaw, rem); +@absoluteTiny: unit(@tinyRaw, rem); +@absoluteSmall: unit(@smallRaw, rem); +@absoluteMedium: unit(@mediumRaw, rem); +@absoluteLarge: unit(@largeRaw, rem); +@absoluteBig: unit(@bigRaw, rem); +@absoluteHuge: unit(@hugeRaw, rem); +@absoluteMassive: unit(@massiveRaw, rem); /* ------------------- Icons @@ -909,135 +909,135 @@ */ -@1px: unit( (1 / @emSize), rem); -@2px: unit( (2 / @emSize), rem); -@3px: unit( (3 / @emSize), rem); -@4px: unit( (4 / @emSize), rem); -@5px: unit( (5 / @emSize), rem); -@6px: unit( (6 / @emSize), rem); -@7px: unit( (7 / @emSize), rem); -@8px: unit( (8 / @emSize), rem); -@9px: unit( (9 / @emSize), rem); -@10px: unit( (10 / @emSize), rem); -@11px: unit( (11 / @emSize), rem); -@12px: unit( (12 / @emSize), rem); -@13px: unit( (13 / @emSize), rem); -@14px: unit( (14 / @emSize), rem); -@15px: unit( (15 / @emSize), rem); -@16px: unit( (16 / @emSize), rem); -@17px: unit( (17 / @emSize), rem); -@18px: unit( (18 / @emSize), rem); -@19px: unit( (19 / @emSize), rem); -@20px: unit( (20 / @emSize), rem); -@21px: unit( (21 / @emSize), rem); -@22px: unit( (22 / @emSize), rem); -@23px: unit( (23 / @emSize), rem); -@24px: unit( (24 / @emSize), rem); -@25px: unit( (25 / @emSize), rem); -@26px: unit( (26 / @emSize), rem); -@27px: unit( (27 / @emSize), rem); -@28px: unit( (28 / @emSize), rem); -@29px: unit( (29 / @emSize), rem); -@30px: unit( (30 / @emSize), rem); -@31px: unit( (31 / @emSize), rem); -@32px: unit( (32 / @emSize), rem); -@33px: unit( (33 / @emSize), rem); -@34px: unit( (34 / @emSize), rem); -@35px: unit( (35 / @emSize), rem); -@36px: unit( (36 / @emSize), rem); -@37px: unit( (37 / @emSize), rem); -@38px: unit( (38 / @emSize), rem); -@39px: unit( (39 / @emSize), rem); -@40px: unit( (40 / @emSize), rem); -@41px: unit( (41 / @emSize), rem); -@42px: unit( (42 / @emSize), rem); -@43px: unit( (43 / @emSize), rem); -@44px: unit( (44 / @emSize), rem); -@45px: unit( (45 / @emSize), rem); -@46px: unit( (46 / @emSize), rem); -@47px: unit( (47 / @emSize), rem); -@48px: unit( (48 / @emSize), rem); -@49px: unit( (49 / @emSize), rem); -@50px: unit( (50 / @emSize), rem); -@51px: unit( (51 / @emSize), rem); -@52px: unit( (52 / @emSize), rem); -@53px: unit( (53 / @emSize), rem); -@54px: unit( (54 / @emSize), rem); -@55px: unit( (55 / @emSize), rem); -@56px: unit( (56 / @emSize), rem); -@57px: unit( (57 / @emSize), rem); -@58px: unit( (58 / @emSize), rem); -@59px: unit( (59 / @emSize), rem); -@60px: unit( (60 / @emSize), rem); -@61px: unit( (61 / @emSize), rem); -@62px: unit( (62 / @emSize), rem); -@63px: unit( (63 / @emSize), rem); -@64px: unit( (64 / @emSize), rem); - -@relative1px: unit( (1 / @emSize), em); -@relative2px: unit( (2 / @emSize), em); -@relative3px: unit( (3 / @emSize), em); -@relative4px: unit( (4 / @emSize), em); -@relative5px: unit( (5 / @emSize), em); -@relative6px: unit( (6 / @emSize), em); -@relative7px: unit( (7 / @emSize), em); -@relative8px: unit( (8 / @emSize), em); -@relative9px: unit( (9 / @emSize), em); -@relative10px: unit( (10 / @emSize), em); -@relative11px: unit( (11 / @emSize), em); -@relative12px: unit( (12 / @emSize), em); -@relative13px: unit( (13 / @emSize), em); -@relative14px: unit( (14 / @emSize), em); -@relative15px: unit( (15 / @emSize), em); -@relative16px: unit( (16 / @emSize), em); -@relative17px: unit( (17 / @emSize), em); -@relative18px: unit( (18 / @emSize), em); -@relative19px: unit( (19 / @emSize), em); -@relative20px: unit( (20 / @emSize), em); -@relative21px: unit( (21 / @emSize), em); -@relative22px: unit( (22 / @emSize), em); -@relative23px: unit( (23 / @emSize), em); -@relative24px: unit( (24 / @emSize), em); -@relative25px: unit( (25 / @emSize), em); -@relative26px: unit( (26 / @emSize), em); -@relative27px: unit( (27 / @emSize), em); -@relative28px: unit( (28 / @emSize), em); -@relative29px: unit( (29 / @emSize), em); -@relative30px: unit( (30 / @emSize), em); -@relative31px: unit( (31 / @emSize), em); -@relative32px: unit( (32 / @emSize), em); -@relative33px: unit( (33 / @emSize), em); -@relative34px: unit( (34 / @emSize), em); -@relative35px: unit( (35 / @emSize), em); -@relative36px: unit( (36 / @emSize), em); -@relative37px: unit( (37 / @emSize), em); -@relative38px: unit( (38 / @emSize), em); -@relative39px: unit( (39 / @emSize), em); -@relative40px: unit( (40 / @emSize), em); -@relative41px: unit( (41 / @emSize), em); -@relative42px: unit( (42 / @emSize), em); -@relative43px: unit( (43 / @emSize), em); -@relative44px: unit( (44 / @emSize), em); -@relative45px: unit( (45 / @emSize), em); -@relative46px: unit( (46 / @emSize), em); -@relative47px: unit( (47 / @emSize), em); -@relative48px: unit( (48 / @emSize), em); -@relative49px: unit( (49 / @emSize), em); -@relative50px: unit( (50 / @emSize), em); -@relative51px: unit( (51 / @emSize), em); -@relative52px: unit( (52 / @emSize), em); -@relative53px: unit( (53 / @emSize), em); -@relative54px: unit( (54 / @emSize), em); -@relative55px: unit( (55 / @emSize), em); -@relative56px: unit( (56 / @emSize), em); -@relative57px: unit( (57 / @emSize), em); -@relative58px: unit( (58 / @emSize), em); -@relative59px: unit( (59 / @emSize), em); -@relative60px: unit( (60 / @emSize), em); -@relative61px: unit( (61 / @emSize), em); -@relative62px: unit( (62 / @emSize), em); -@relative63px: unit( (63 / @emSize), em); -@relative64px: unit( (64 / @emSize), em); +@1px: unit((1 / @emSize), rem); +@2px: unit((2 / @emSize), rem); +@3px: unit((3 / @emSize), rem); +@4px: unit((4 / @emSize), rem); +@5px: unit((5 / @emSize), rem); +@6px: unit((6 / @emSize), rem); +@7px: unit((7 / @emSize), rem); +@8px: unit((8 / @emSize), rem); +@9px: unit((9 / @emSize), rem); +@10px: unit((10 / @emSize), rem); +@11px: unit((11 / @emSize), rem); +@12px: unit((12 / @emSize), rem); +@13px: unit((13 / @emSize), rem); +@14px: unit((14 / @emSize), rem); +@15px: unit((15 / @emSize), rem); +@16px: unit((16 / @emSize), rem); +@17px: unit((17 / @emSize), rem); +@18px: unit((18 / @emSize), rem); +@19px: unit((19 / @emSize), rem); +@20px: unit((20 / @emSize), rem); +@21px: unit((21 / @emSize), rem); +@22px: unit((22 / @emSize), rem); +@23px: unit((23 / @emSize), rem); +@24px: unit((24 / @emSize), rem); +@25px: unit((25 / @emSize), rem); +@26px: unit((26 / @emSize), rem); +@27px: unit((27 / @emSize), rem); +@28px: unit((28 / @emSize), rem); +@29px: unit((29 / @emSize), rem); +@30px: unit((30 / @emSize), rem); +@31px: unit((31 / @emSize), rem); +@32px: unit((32 / @emSize), rem); +@33px: unit((33 / @emSize), rem); +@34px: unit((34 / @emSize), rem); +@35px: unit((35 / @emSize), rem); +@36px: unit((36 / @emSize), rem); +@37px: unit((37 / @emSize), rem); +@38px: unit((38 / @emSize), rem); +@39px: unit((39 / @emSize), rem); +@40px: unit((40 / @emSize), rem); +@41px: unit((41 / @emSize), rem); +@42px: unit((42 / @emSize), rem); +@43px: unit((43 / @emSize), rem); +@44px: unit((44 / @emSize), rem); +@45px: unit((45 / @emSize), rem); +@46px: unit((46 / @emSize), rem); +@47px: unit((47 / @emSize), rem); +@48px: unit((48 / @emSize), rem); +@49px: unit((49 / @emSize), rem); +@50px: unit((50 / @emSize), rem); +@51px: unit((51 / @emSize), rem); +@52px: unit((52 / @emSize), rem); +@53px: unit((53 / @emSize), rem); +@54px: unit((54 / @emSize), rem); +@55px: unit((55 / @emSize), rem); +@56px: unit((56 / @emSize), rem); +@57px: unit((57 / @emSize), rem); +@58px: unit((58 / @emSize), rem); +@59px: unit((59 / @emSize), rem); +@60px: unit((60 / @emSize), rem); +@61px: unit((61 / @emSize), rem); +@62px: unit((62 / @emSize), rem); +@63px: unit((63 / @emSize), rem); +@64px: unit((64 / @emSize), rem); + +@relative1px: unit((1 / @emSize), em); +@relative2px: unit((2 / @emSize), em); +@relative3px: unit((3 / @emSize), em); +@relative4px: unit((4 / @emSize), em); +@relative5px: unit((5 / @emSize), em); +@relative6px: unit((6 / @emSize), em); +@relative7px: unit((7 / @emSize), em); +@relative8px: unit((8 / @emSize), em); +@relative9px: unit((9 / @emSize), em); +@relative10px: unit((10 / @emSize), em); +@relative11px: unit((11 / @emSize), em); +@relative12px: unit((12 / @emSize), em); +@relative13px: unit((13 / @emSize), em); +@relative14px: unit((14 / @emSize), em); +@relative15px: unit((15 / @emSize), em); +@relative16px: unit((16 / @emSize), em); +@relative17px: unit((17 / @emSize), em); +@relative18px: unit((18 / @emSize), em); +@relative19px: unit((19 / @emSize), em); +@relative20px: unit((20 / @emSize), em); +@relative21px: unit((21 / @emSize), em); +@relative22px: unit((22 / @emSize), em); +@relative23px: unit((23 / @emSize), em); +@relative24px: unit((24 / @emSize), em); +@relative25px: unit((25 / @emSize), em); +@relative26px: unit((26 / @emSize), em); +@relative27px: unit((27 / @emSize), em); +@relative28px: unit((28 / @emSize), em); +@relative29px: unit((29 / @emSize), em); +@relative30px: unit((30 / @emSize), em); +@relative31px: unit((31 / @emSize), em); +@relative32px: unit((32 / @emSize), em); +@relative33px: unit((33 / @emSize), em); +@relative34px: unit((34 / @emSize), em); +@relative35px: unit((35 / @emSize), em); +@relative36px: unit((36 / @emSize), em); +@relative37px: unit((37 / @emSize), em); +@relative38px: unit((38 / @emSize), em); +@relative39px: unit((39 / @emSize), em); +@relative40px: unit((40 / @emSize), em); +@relative41px: unit((41 / @emSize), em); +@relative42px: unit((42 / @emSize), em); +@relative43px: unit((43 / @emSize), em); +@relative44px: unit((44 / @emSize), em); +@relative45px: unit((45 / @emSize), em); +@relative46px: unit((46 / @emSize), em); +@relative47px: unit((47 / @emSize), em); +@relative48px: unit((48 / @emSize), em); +@relative49px: unit((49 / @emSize), em); +@relative50px: unit((50 / @emSize), em); +@relative51px: unit((51 / @emSize), em); +@relative52px: unit((52 / @emSize), em); +@relative53px: unit((53 / @emSize), em); +@relative54px: unit((54 / @emSize), em); +@relative55px: unit((55 / @emSize), em); +@relative56px: unit((56 / @emSize), em); +@relative57px: unit((57 / @emSize), em); +@relative58px: unit((58 / @emSize), em); +@relative59px: unit((59 / @emSize), em); +@relative60px: unit((60 / @emSize), em); +@relative61px: unit((61 / @emSize), em); +@relative62px: unit((62 / @emSize), em); +@relative63px: unit((63 / @emSize), em); +@relative64px: unit((64 / @emSize), em); /* Columns */ @oneWide: (1 / @columnCount * 100%); diff --git a/src/themes/default/modules/checkbox.variables b/src/themes/default/modules/checkbox.variables index b48217f434..61e5370f6d 100644 --- a/src/themes/default/modules/checkbox.variables +++ b/src/themes/default/modules/checkbox.variables @@ -199,22 +199,22 @@ @miniCheckboxSize: @relativeMini; @miniCheckboxCircleScale: (@miniRaw / 2); -@miniCheckboxCircleLeft: unit(((@miniRaw - @miniCheckboxCircleScale) / 2) + 0.05 , em); +@miniCheckboxCircleLeft: unit(((@miniRaw - @miniCheckboxCircleScale) / 2) + 0.05, em); @tinyCheckboxSize: @relativeTiny; @tinyCheckboxCircleScale: (@tinyRaw / 2); -@tinyCheckboxCircleLeft: unit(((@tinyRaw - @tinyCheckboxCircleScale) / 2) + 0.05 , em); +@tinyCheckboxCircleLeft: unit(((@tinyRaw - @tinyCheckboxCircleScale) / 2) + 0.05, em); @smallCheckboxSize: @relativeSmall; @smallCheckboxCircleScale: (@smallRaw / 2); -@smallCheckboxCircleLeft: unit(((@smallRaw - @smallCheckboxCircleScale) / 2) + 0.05 , em); +@smallCheckboxCircleLeft: unit(((@smallRaw - @smallCheckboxCircleScale) / 2) + 0.05, em); @largeCheckboxSize: @relativeLarge; @largeCheckboxCircleScale: (@largeRaw / 2); -@largeCheckboxCircleLeft: unit(((@largeRaw - @largeCheckboxCircleScale) / 2) + 0.05 , em); +@largeCheckboxCircleLeft: unit(((@largeRaw - @largeCheckboxCircleScale) / 2) + 0.05, em); @bigCheckboxSize: @relativeBig; @bigCheckboxCircleScale: (@bigRaw / 2); -@bigCheckboxCircleLeft: unit(((@bigRaw - @bigCheckboxCircleScale) / 2) + 0.05 , em); +@bigCheckboxCircleLeft: unit(((@bigRaw - @bigCheckboxCircleScale) / 2) + 0.05, em); @hugeCheckboxSize: @relativeHuge; @hugeCheckboxCircleScale: (@hugeRaw / 2); -@hugeCheckboxCircleLeft: unit(((@hugeRaw - @hugeCheckboxCircleScale) / 2) + 0.05 , em); +@hugeCheckboxCircleLeft: unit(((@hugeRaw - @hugeCheckboxCircleScale) / 2) + 0.05, em); @massiveCheckboxSize: @relativeMassive; @massiveCheckboxCircleScale: (@massiveRaw / 2); -@massiveCheckboxCircleLeft: unit(((@massiveRaw - @massiveCheckboxCircleScale) / 2) + 0.05 , em); +@massiveCheckboxCircleLeft: unit(((@massiveRaw - @massiveCheckboxCircleScale) / 2) + 0.05, em); diff --git a/src/themes/default/modules/dimmer.variables b/src/themes/default/modules/dimmer.variables index 6ed6a86f7a..6833742b75 100644 --- a/src/themes/default/modules/dimmer.variables +++ b/src/themes/default/modules/dimmer.variables @@ -5,7 +5,7 @@ @dimmablePosition: relative; @dimmerPosition: absolute; -@backgroundColor: rgba(0, 0, 0 , 0.85); +@backgroundColor: rgba(0, 0, 0, 0.85); @lineHeight: 1; @perspective: 2000px; @padding: 1em; diff --git a/src/themes/default/modules/dropdown.overrides b/src/themes/default/modules/dropdown.overrides index 05363752a6..120348dbbc 100644 --- a/src/themes/default/modules/dropdown.overrides +++ b/src/themes/default/modules/dropdown.overrides @@ -35,12 +35,12 @@ .ui.dropdown .item .left.dropdown.icon::before, .ui.dropdown .left.menu .item .dropdown.icon::before { - content: "\f0d9"/*rtl:"\f0da"*/; + content: "\f0d9" /*rtl:"\f0da"*/; } /* Vertical Menu Dropdown */ .ui.vertical.menu .dropdown.item > .dropdown.icon::before { - content: "\f0da"/*rtl:"\f0d9"*/; + content: "\f0da" /*rtl:"\f0d9"*/; } /* Icons for Reference diff --git a/src/themes/default/modules/modal.variables b/src/themes/default/modules/modal.variables index daac48c358..f64023ee70 100755 --- a/src/themes/default/modules/modal.variables +++ b/src/themes/default/modules/modal.variables @@ -79,7 +79,7 @@ @mobileHeaderPadding: 0.75rem 1rem; @mobileContentPadding: 1rem; @mobileImagePadding: 0 0 1rem; -@mobileDescriptionPadding: 1rem 0 ; +@mobileDescriptionPadding: 1rem 0; @mobileButtonDistance: 1rem; @mobileActionPadding: 1rem 1rem (1rem - @mobileButtonDistance); @mobileImageIconSize: 5rem; diff --git a/src/themes/default/views/card.variables b/src/themes/default/views/card.variables index d95538d8d7..1325fb7e9e 100644 --- a/src/themes/default/views/card.variables +++ b/src/themes/default/views/card.variables @@ -147,7 +147,7 @@ /* Loading Dimmer */ @loaderDimmerColor: rgba(255, 255, 255, 0.8); -@loaderInvertedDimmerColor: rgba(0, 0, 0 , 0.85); +@loaderInvertedDimmerColor: rgba(0, 0, 0, 0.85); @loaderDimmerZIndex: 100; /* Loading Spinner */ diff --git a/src/themes/flat/globals/site.variables b/src/themes/flat/globals/site.variables index 9bdb62affc..69f6771eac 100644 --- a/src/themes/flat/globals/site.variables +++ b/src/themes/flat/globals/site.variables @@ -60,7 +60,7 @@ @linkColor: #009FDA; @linkUnderline: none; -@linkHoverColor: lighten( @linkColor, 5); +@linkHoverColor: lighten(@linkColor, 5); @linkHoverUnderline: @linkUnderline; @highlightBackground: #FFFFCC; diff --git a/src/themes/github/modules/dropdown.overrides b/src/themes/github/modules/dropdown.overrides index 49b952dd00..089101c907 100644 --- a/src/themes/github/modules/dropdown.overrides +++ b/src/themes/github/modules/dropdown.overrides @@ -40,10 +40,10 @@ .ui.dropdown .item .left.dropdown.icon::before, .ui.dropdown .left.menu .item .dropdown.icon::before { - content: "\f0d9"/*rtl:"\f0da"*/; + content: "\f0d9" /*rtl:"\f0da"*/; } /* Vertical Menu Dropdown */ .ui.vertical.menu .dropdown.item > .dropdown.icon::before { - content: "\f0da"/*rtl:"\f0d9"*/; + content: "\f0da" /*rtl:"\f0d9"*/; } From c693e3e1de839efeda42aa9b2e38b4dce708f2fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Fri, 16 Dec 2022 00:05:24 +0100 Subject: [PATCH 08/18] fix all colors to LC --- .stylelintrc.js | 1 + examples/components/sticky-context.html | 2 +- examples/fixed.html | 2 +- examples/grid.html | 6 +- examples/login.html | 2 +- examples/sticky.html | 6 +- src/themes/amazon/elements/button.variables | 16 +- src/themes/amazon/globals/site.variables | 22 +- src/themes/basic/elements/button.variables | 10 +- src/themes/bookish/elements/header.variables | 2 +- .../bootstrap3/elements/button.variables | 22 +- src/themes/chubby/elements/button.variables | 12 +- src/themes/chubby/views/comment.variables | 4 +- src/themes/classic/elements/button.variables | 10 +- src/themes/classic/views/card.overrides | 2 +- src/themes/classic/views/card.variables | 2 +- src/themes/default/collections/menu.variables | 14 +- .../default/collections/message.variables | 2 +- .../default/collections/table.variables | 8 +- src/themes/default/elements/button.variables | 12 +- src/themes/default/elements/input.variables | 2 +- src/themes/default/elements/label.variables | 8 +- src/themes/default/elements/step.variables | 2 +- src/themes/default/globals/site.variables | 196 +++++++++--------- src/themes/default/modules/dropdown.variables | 2 +- src/themes/default/modules/flyout.variables | 2 +- src/themes/default/modules/modal.variables | 2 +- src/themes/default/modules/progress.variables | 12 +- src/themes/default/modules/search.variables | 4 +- src/themes/default/modules/shape.variables | 2 +- src/themes/default/views/card.variables | 8 +- src/themes/default/views/feed.variables | 4 +- src/themes/default/views/item.variables | 8 +- src/themes/flat/collections/form.variables | 8 +- src/themes/flat/globals/site.variables | 42 ++-- src/themes/github/collections/form.variables | 8 +- src/themes/github/collections/menu.variables | 20 +- .../github/collections/message.variables | 12 +- src/themes/github/collections/table.variables | 2 +- src/themes/github/elements/button.variables | 14 +- src/themes/github/elements/input.variables | 4 +- src/themes/github/elements/segment.variables | 6 +- src/themes/github/elements/step.variables | 4 +- src/themes/github/globals/site.variables | 18 +- src/themes/github/modules/dropdown.variables | 2 +- .../gmail/collections/message.variables | 4 +- src/themes/instagram/views/card.variables | 8 +- src/themes/material/elements/button.variables | 18 +- src/themes/material/globals/site.variables | 50 ++--- .../material/modules/dropdown.variables | 2 +- src/themes/raised/elements/button.variables | 2 +- src/themes/round/elements/button.variables | 14 +- src/themes/twitter/elements/button.variables | 18 +- 53 files changed, 333 insertions(+), 332 deletions(-) diff --git a/.stylelintrc.js b/.stylelintrc.js index d23f4cf801..5bb633eb3e 100644 --- a/.stylelintrc.js +++ b/.stylelintrc.js @@ -13,6 +13,7 @@ module.exports = { 'at-rule-no-unknown': null, 'block-closing-brace-newline-before': null, // fix bad formatting with "each()" 'color-function-notation': 'legacy', + 'color-hex-case': 'lower', 'declaration-block-trailing-semicolon': null, // fix bad formatting with "each()" 'function-no-unknown': null, indentation: null, // TODO change to "4" once https://github.com/fomantic/Fomantic-UI/pull/2593#discussion_r1045131096 is fixed diff --git a/examples/components/sticky-context.html b/examples/components/sticky-context.html index e72cb3204f..12c4e5b446 100644 --- a/examples/components/sticky-context.html +++ b/examples/components/sticky-context.html @@ -66,7 +66,7 @@