@qsxy/element-plus-react 1.0.0-next.2 → 1.0.0-next.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +68 -0
- package/dist/Avatar/Avatar.d.ts +4 -0
- package/dist/Avatar/Avatar.js +94 -0
- package/dist/Avatar/index.d.ts +2 -0
- package/dist/Avatar/index.js +1 -0
- package/dist/Avatar/typings.d.ts +21 -0
- package/dist/Avatar/typings.js +1 -0
- package/dist/Badge/Badge.d.ts +2 -2
- package/dist/Badge/Badge.js +75 -60
- package/dist/Badge/index.js +1 -39
- package/dist/Badge/typings.d.ts +11 -1
- package/dist/Badge/typings.js +1 -17
- package/dist/Breadcrumb/Breadcrumb.js +23 -50
- package/dist/Breadcrumb/BreadcrumbItem.js +44 -53
- package/dist/Breadcrumb/index.js +2 -42
- package/dist/Breadcrumb/typings.d.ts +4 -0
- package/dist/Breadcrumb/typings.js +1 -17
- package/dist/Button/Button.js +134 -105
- package/dist/Button/ButtonGroup.js +29 -48
- package/dist/Button/ButtonGroupContext.js +2 -30
- package/dist/Button/index.js +2 -42
- package/dist/Button/typings.d.ts +35 -3
- package/dist/Button/typings.js +1 -17
- package/dist/Button/useButtonCustomStyle.d.ts +4 -0
- package/dist/Button/useButtonCustomStyle.js +65 -0
- package/dist/Calendar/Calendar.js +310 -237
- package/dist/Calendar/CalendarContext.d.ts +10 -0
- package/dist/Calendar/CalendarContext.js +3 -27
- package/dist/Calendar/DatePanel.js +191 -158
- package/dist/Calendar/DateRangePanel.js +140 -125
- package/dist/Calendar/Footer.js +41 -51
- package/dist/Calendar/Header.js +83 -65
- package/dist/Calendar/MonthPanel.js +138 -124
- package/dist/Calendar/MonthRangePanel.js +137 -124
- package/dist/Calendar/ShortCuts.d.ts +2 -0
- package/dist/Calendar/ShortCuts.js +21 -40
- package/dist/Calendar/WeekPanel.js +213 -145
- package/dist/Calendar/YearPanel.js +150 -125
- package/dist/Calendar/YearRangePanel.js +138 -128
- package/dist/Calendar/index.js +4 -47
- package/dist/Calendar/typings.d.ts +18 -0
- package/dist/Calendar/typings.js +1 -17
- package/dist/Calendar/util.js +26 -68
- package/dist/Card/Card.js +36 -46
- package/dist/Card/index.js +1 -39
- package/dist/Card/typings.d.ts +4 -0
- package/dist/Card/typings.js +1 -17
- package/dist/Carousel/Carousel.d.ts +4 -0
- package/dist/Carousel/Carousel.js +204 -0
- package/dist/Carousel/CarouselContext.d.ts +4 -0
- package/dist/Carousel/CarouselContext.js +24 -0
- package/dist/Carousel/CarouselItem.d.ts +4 -0
- package/dist/Carousel/CarouselItem.js +59 -0
- package/dist/Carousel/hooks/useCarousel.d.ts +37 -0
- package/dist/Carousel/hooks/useCarousel.js +373 -0
- package/dist/Carousel/hooks/useCarouselItem.d.ts +8 -0
- package/dist/Carousel/hooks/useCarouselItem.js +165 -0
- package/dist/Carousel/index.d.ts +3 -0
- package/dist/Carousel/index.js +2 -0
- package/dist/Carousel/typings.d.ts +83 -0
- package/dist/Carousel/typings.js +1 -0
- package/dist/Cascader/Cascader.js +694 -605
- package/dist/Cascader/CascaderContext.d.ts +4 -10
- package/dist/Cascader/CascaderContext.js +10 -50
- package/dist/Cascader/CascaderDropdown.d.ts +1 -0
- package/dist/Cascader/CascaderDropdown.js +90 -77
- package/dist/Cascader/CascaderMenu.js +100 -186
- package/dist/Cascader/Utils.d.ts +0 -2
- package/dist/Cascader/Utils.js +6 -77
- package/dist/Cascader/index.d.ts +1 -1
- package/dist/Cascader/index.js +1 -39
- package/dist/Cascader/typings.d.ts +77 -13
- package/dist/Cascader/typings.js +1 -17
- package/dist/Cascader/useCascader.d.ts +61 -3
- package/dist/Cascader/useCascader.js +651 -488
- package/dist/Checkbox/Checkbox.d.ts +3 -3
- package/dist/Checkbox/Checkbox.js +138 -161
- package/dist/Checkbox/CheckboxButton.js +133 -157
- package/dist/Checkbox/index.js +2 -42
- package/dist/Checkbox/typings.d.ts +14 -2
- package/dist/Checkbox/typings.js +1 -17
- package/dist/CheckboxGroup/CheckboxGroup.d.ts +4 -0
- package/dist/CheckboxGroup/CheckboxGroup.js +134 -112
- package/dist/CheckboxGroup/CheckboxGroupContext.d.ts +1 -0
- package/dist/CheckboxGroup/CheckboxGroupContext.js +2 -30
- package/dist/CheckboxGroup/index.js +2 -42
- package/dist/Col/Col.js +53 -72
- package/dist/Col/index.js +1 -39
- package/dist/Col/typings.d.ts +10 -0
- package/dist/Col/typings.js +1 -17
- package/dist/Collapse/Collapse.js +36 -45
- package/dist/Collapse/CollapseContext.d.ts +3 -0
- package/dist/Collapse/CollapseContext.js +3 -31
- package/dist/Collapse/CollapseItem.js +88 -73
- package/dist/Collapse/CollapseTransition.js +29 -67
- package/dist/Collapse/index.js +2 -42
- package/dist/Collapse/typings.d.ts +7 -0
- package/dist/Collapse/typings.js +1 -17
- package/dist/ColorPicker/AlphaSlider.js +110 -99
- package/dist/ColorPicker/ColorPicker.d.ts +1 -1
- package/dist/ColorPicker/ColorPicker.js +233 -189
- package/dist/ColorPicker/HueSlider.js +95 -96
- package/dist/ColorPicker/Predefine.js +58 -66
- package/dist/ColorPicker/SvPanel.js +88 -81
- package/dist/ColorPicker/color.js +301 -213
- package/dist/ColorPicker/draggable.js +30 -48
- package/dist/ColorPicker/index.js +1 -39
- package/dist/ColorPicker/typings.d.ts +9 -0
- package/dist/ColorPicker/typings.js +1 -17
- package/dist/ColorPicker/util.js +23 -60
- package/dist/ConfigProvider/ConfigProvider.d.ts +7 -0
- package/dist/ConfigProvider/ConfigProvider.js +8 -28
- package/dist/ConfigProvider/index.d.ts +1 -1
- package/dist/ConfigProvider/index.js +1 -39
- package/dist/DatePicker/DatePicker.d.ts +3 -3
- package/dist/DatePicker/DatePicker.js +251 -227
- package/dist/DatePicker/DateRangePicker.d.ts +3 -3
- package/dist/DatePicker/DateRangePicker.js +279 -276
- package/dist/DatePicker/index.js +2 -39
- package/dist/DatePicker/main.d.ts +2 -2
- package/dist/DatePicker/main.js +21 -44
- package/dist/DatePicker/typings.d.ts +92 -16
- package/dist/DatePicker/typings.js +1 -17
- package/dist/DateTimePicker/DateTimePicker.d.ts +3 -5
- package/dist/DateTimePicker/DateTimePicker.js +286 -215
- package/dist/DateTimePicker/index.js +1 -39
- package/dist/DateTimePicker/typings.d.ts +10 -12
- package/dist/DateTimePicker/typings.js +1 -17
- package/dist/DateTimePicker/util.js +5 -35
- package/dist/Descriptions/Descriptions.d.ts +2 -2
- package/dist/Descriptions/Descriptions.js +85 -64
- package/dist/Descriptions/DescriptionsCell.d.ts +11 -12
- package/dist/Descriptions/DescriptionsCell.js +75 -80
- package/dist/Descriptions/DescriptionsContext.d.ts +2 -0
- package/dist/Descriptions/DescriptionsContext.js +4 -32
- package/dist/Descriptions/DescriptionsItem.js +4 -27
- package/dist/Descriptions/DescriptionsRow.d.ts +2 -5
- package/dist/Descriptions/DescriptionsRow.js +49 -44
- package/dist/Descriptions/index.js +2 -42
- package/dist/Descriptions/typings.d.ts +13 -0
- package/dist/Descriptions/typings.js +1 -17
- package/dist/Dialog/Dialog.js +228 -179
- package/dist/Dialog/DialogBody.js +52 -59
- package/dist/Dialog/DialogContext.d.ts +9 -1
- package/dist/Dialog/DialogContext.js +7 -45
- package/dist/Dialog/DialogFooter.js +21 -45
- package/dist/Dialog/DialogHeader.js +44 -50
- package/dist/Dialog/index.js +1 -39
- package/dist/Dialog/typings.d.ts +39 -3
- package/dist/Dialog/typings.js +1 -17
- package/dist/Dialog/useDraggable.js +52 -79
- package/dist/Divider/Divider.d.ts +7 -3
- package/dist/Divider/Divider.js +38 -44
- package/dist/Divider/index.js +1 -39
- package/dist/Drawer/Drawer.d.ts +2 -5
- package/dist/Drawer/Drawer.js +210 -130
- package/dist/Drawer/DrawerBody.js +29 -57
- package/dist/Drawer/DrawerContext.d.ts +2 -4
- package/dist/Drawer/DrawerContext.js +5 -46
- package/dist/Drawer/DrawerFooter.js +22 -43
- package/dist/Drawer/DrawerHeader.js +34 -54
- package/dist/Drawer/index.js +1 -39
- package/dist/Drawer/typings.d.ts +44 -7
- package/dist/Drawer/typings.js +1 -17
- package/dist/Dropdown/Dropdown.d.ts +3 -3
- package/dist/Dropdown/Dropdown.js +103 -107
- package/dist/Dropdown/DropdownContext.d.ts +2 -0
- package/dist/Dropdown/DropdownContext.js +5 -43
- package/dist/Dropdown/DropdownItem.js +40 -60
- package/dist/Dropdown/DropdownMenu.d.ts +5 -2
- package/dist/Dropdown/DropdownMenu.js +30 -56
- package/dist/Dropdown/index.js +3 -45
- package/dist/Dropdown/typings.d.ts +27 -3
- package/dist/Dropdown/typings.js +1 -17
- package/dist/Empty/Empty.js +32 -53
- package/dist/Empty/ImgEmpty.js +115 -117
- package/dist/Empty/index.js +1 -39
- package/dist/Form/FieldContext.js +8 -37
- package/dist/Form/Form.d.ts +9 -4
- package/dist/Form/Form.js +170 -163
- package/dist/Form/FormContext.js +58 -97
- package/dist/Form/FormItem.d.ts +12 -0
- package/dist/Form/FormItem.js +620 -352
- package/dist/Form/FormItemContext.js +3 -31
- package/dist/Form/List.js +121 -104
- package/dist/Form/ListContext.js +3 -27
- package/dist/Form/index.js +3 -45
- package/dist/Form/typings.d.ts +81 -5
- package/dist/Form/typings.js +1 -17
- package/dist/Form/useForm.d.ts +22 -0
- package/dist/Form/useForm.js +830 -690
- package/dist/Form/useWatch.js +64 -79
- package/dist/Form/utils/NameMap.d.ts +3 -0
- package/dist/Form/utils/NameMap.js +98 -69
- package/dist/Form/utils/asyncUtil.js +9 -37
- package/dist/Form/utils/classUtil.js +26 -48
- package/dist/Form/utils/cloneDeep.js +8 -29
- package/dist/Form/utils/get.js +6 -30
- package/dist/Form/utils/messages.js +25 -53
- package/dist/Form/utils/set.js +31 -44
- package/dist/Form/utils/typeUtil.js +3 -31
- package/dist/Form/utils/util.js +18 -55
- package/dist/Form/utils/validateUtil.d.ts +4 -0
- package/dist/Form/utils/validateUtil.js +284 -159
- package/dist/Form/utils/valueUtil.d.ts +17 -0
- package/dist/Form/utils/valueUtil.js +102 -107
- package/dist/Icon/Icon.js +39 -63
- package/dist/Icon/IconList/Check.js +25 -65
- package/dist/Icon/IconList/Close.js +23 -52
- package/dist/Icon/IconList/Delete.js +25 -65
- package/dist/Icon/IconList/Down.js +25 -65
- package/dist/Icon/IconList/Eye.js +25 -65
- package/dist/Icon/IconList/EyeClose.js +25 -65
- package/dist/Icon/IconList/Left.js +25 -65
- package/dist/Icon/IconList/Link.js +19 -55
- package/dist/Icon/IconList/More.js +25 -65
- package/dist/Icon/IconList/Question.js +25 -65
- package/dist/Icon/IconList/Right.js +25 -65
- package/dist/Icon/IconList/Search.js +25 -65
- package/dist/Icon/IconList/Up.js +25 -65
- package/dist/Icon/IconList/Upload.js +25 -65
- package/dist/Icon/IconList/index.js +14 -68
- package/dist/Icon/index.js +2 -42
- package/dist/Icon/typings.d.ts +7 -0
- package/dist/Icon/typings.js +1 -17
- package/dist/Input/Input.js +335 -357
- package/dist/Input/InputGroup.js +27 -43
- package/dist/Input/InputRange.js +295 -308
- package/dist/Input/TextArea.js +129 -120
- package/dist/Input/index.js +3 -45
- package/dist/Input/typings.d.ts +62 -1
- package/dist/Input/typings.js +1 -17
- package/dist/InputNumber/InputNumber.d.ts +2 -2
- package/dist/InputNumber/InputNumber.js +225 -204
- package/dist/InputNumber/index.js +1 -39
- package/dist/InputNumber/typings.d.ts +22 -1
- package/dist/InputNumber/typings.js +1 -17
- package/dist/Link/Link.js +43 -60
- package/dist/Link/index.js +1 -39
- package/dist/Link/typings.d.ts +6 -1
- package/dist/Link/typings.js +1 -17
- package/dist/Loading/Loading.d.ts +7 -2
- package/dist/Loading/Loading.js +148 -60
- package/dist/Loading/index.js +1 -39
- package/dist/Loading/typings.d.ts +12 -1
- package/dist/Loading/typings.js +1 -17
- package/dist/Message/Main.js +34 -66
- package/dist/Message/Message.d.ts +2 -2
- package/dist/Message/Message.js +169 -131
- package/dist/Message/index.js +64 -88
- package/dist/Message/typings.d.ts +11 -0
- package/dist/Message/typings.js +1 -17
- package/dist/MessageBox/Main.js +43 -68
- package/dist/MessageBox/MessageBox.js +260 -202
- package/dist/MessageBox/index.d.ts +19 -5
- package/dist/MessageBox/index.js +75 -79
- package/dist/MessageBox/typings.d.ts +51 -0
- package/dist/MessageBox/typings.js +1 -17
- package/dist/Notification/Main.js +34 -66
- package/dist/Notification/Notification.js +151 -131
- package/dist/Notification/index.d.ts +7 -0
- package/dist/Notification/index.js +67 -92
- package/dist/Notification/typings.d.ts +12 -1
- package/dist/Notification/typings.js +1 -17
- package/dist/Pagination/Options.d.ts +7 -2
- package/dist/Pagination/Options.js +130 -109
- package/dist/Pagination/Pager.js +30 -61
- package/dist/Pagination/Pagination.js +470 -418
- package/dist/Pagination/index.js +1 -39
- package/dist/Pagination/typings.d.ts +46 -19
- package/dist/Pagination/typings.js +1 -17
- package/dist/Pagination/util.js +10 -41
- package/dist/Popconfirm/Popconfirm.d.ts +3 -2
- package/dist/Popconfirm/Popconfirm.js +116 -117
- package/dist/Popconfirm/index.js +1 -39
- package/dist/Popconfirm/typings.d.ts +14 -2
- package/dist/Popconfirm/typings.js +1 -17
- package/dist/Popover/Popover.d.ts +3 -2
- package/dist/Popover/Popover.js +96 -91
- package/dist/Popover/index.js +1 -39
- package/dist/Popover/typings.d.ts +12 -1
- package/dist/Popover/typings.js +1 -17
- package/dist/Popper/Popper.js +172 -149
- package/dist/Popper/index.js +1 -39
- package/dist/Popper/popperOptions.js +79 -90
- package/dist/Popper/typings.d.ts +7 -1
- package/dist/Popper/typings.js +1 -17
- package/dist/Progress/Progress.js +186 -155
- package/dist/Progress/index.js +1 -39
- package/dist/Progress/typings.d.ts +12 -0
- package/dist/Progress/typings.js +1 -17
- package/dist/Radio/Radio.js +162 -117
- package/dist/Radio/RadioButton.d.ts +2 -2
- package/dist/Radio/RadioButton.js +137 -117
- package/dist/Radio/index.js +1 -39
- package/dist/Radio/typings.d.ts +9 -1
- package/dist/Radio/typings.js +1 -17
- package/dist/RadioGroup/RadioGroup.js +63 -78
- package/dist/RadioGroup/index.js +1 -39
- package/dist/RadioGroup/typings.d.ts +1 -0
- package/dist/RadioGroup/typings.js +1 -17
- package/dist/Row/Row.js +41 -62
- package/dist/Row/RowContext.d.ts +1 -0
- package/dist/Row/RowContext.js +3 -31
- package/dist/Row/index.js +2 -42
- package/dist/Row/typings.d.ts +4 -0
- package/dist/Row/typings.js +1 -17
- package/dist/Scrollbar/Scrollbar.js +172 -133
- package/dist/Scrollbar/Thumb.js +108 -96
- package/dist/Scrollbar/index.js +1 -39
- package/dist/Scrollbar/typings.d.ts +31 -2
- package/dist/Scrollbar/typings.js +1 -17
- package/dist/Scrollbar/util.js +24 -51
- package/dist/Select/Option.js +50 -75
- package/dist/Select/OptionGroup.js +31 -47
- package/dist/Select/Select.d.ts +3 -15
- package/dist/Select/Select.js +22 -51
- package/dist/Select/SelectContext.js +8 -46
- package/dist/Select/SelectCore.js +480 -382
- package/dist/Select/SelectDropdown.js +252 -162
- package/dist/Select/index.d.ts +1 -0
- package/dist/Select/index.js +3 -42
- package/dist/Select/typings.d.ts +52 -2
- package/dist/Select/typings.js +1 -17
- package/dist/Skeleton/PlaceholderGraph.d.ts +5 -1
- package/dist/Skeleton/PlaceholderGraph.js +39 -45
- package/dist/Skeleton/PlaceholderGrid.d.ts +5 -1
- package/dist/Skeleton/PlaceholderGrid.js +55 -67
- package/dist/Skeleton/PlaceholderParagraph.d.ts +6 -2
- package/dist/Skeleton/PlaceholderParagraph.js +56 -52
- package/dist/Skeleton/Skeleton.d.ts +2 -9
- package/dist/Skeleton/Skeleton.js +93 -40
- package/dist/Skeleton/SkeletonContext.d.ts +17 -0
- package/dist/Skeleton/SkeletonContext.js +5 -0
- package/dist/Skeleton/SkeletonItem.d.ts +4 -0
- package/dist/Skeleton/SkeletonItem.js +47 -0
- package/dist/Skeleton/index.d.ts +2 -3
- package/dist/Skeleton/index.js +2 -39
- package/dist/Skeleton/typings.d.ts +29 -0
- package/dist/Skeleton/typings.js +1 -0
- package/dist/Switch/Switch.js +215 -153
- package/dist/Switch/index.js +1 -39
- package/dist/Switch/typings.d.ts +19 -0
- package/dist/Switch/typings.js +1 -17
- package/dist/Table/Colgroup.d.ts +1 -0
- package/dist/Table/Colgroup.js +17 -41
- package/dist/Table/Table.d.ts +1 -2
- package/dist/Table/Table.js +246 -188
- package/dist/Table/TableBody.js +265 -200
- package/dist/Table/TableCell.js +461 -320
- package/dist/Table/TableColumn.js +9 -43
- package/dist/Table/TableContext.d.ts +8 -0
- package/dist/Table/TableContext.js +44 -63
- package/dist/Table/TableHeader.js +112 -102
- package/dist/Table/TableHeaderCell.js +214 -161
- package/dist/Table/hooks/useResize.js +69 -83
- package/dist/Table/hooks/useScroll.js +88 -114
- package/dist/Table/hooks/useSelection.d.ts +13 -3
- package/dist/Table/hooks/useSelection.js +145 -110
- package/dist/Table/hooks/useTable.js +404 -310
- package/dist/Table/index.js +2 -42
- package/dist/Table/treeUtil.d.ts +39 -0
- package/dist/Table/treeUtil.js +99 -77
- package/dist/Table/typings.d.ts +138 -2
- package/dist/Table/typings.js +1 -17
- package/dist/Table/util.d.ts +12 -4
- package/dist/Table/util.js +168 -109
- package/dist/Tabs/TabPane.js +51 -53
- package/dist/Tabs/Tabs.d.ts +2 -2
- package/dist/Tabs/Tabs.js +282 -179
- package/dist/Tabs/TabsContext.js +4 -32
- package/dist/Tabs/index.js +2 -42
- package/dist/Tabs/typings.d.ts +40 -0
- package/dist/Tabs/typings.js +1 -17
- package/dist/Tag/Tag.d.ts +1 -1
- package/dist/Tag/Tag.js +87 -83
- package/dist/Tag/index.js +1 -39
- package/dist/Tag/typings.d.ts +11 -1
- package/dist/Tag/typings.js +1 -17
- package/dist/TimeLine/TimeLine.js +14 -42
- package/dist/TimeLine/TimeLineItem.js +67 -54
- package/dist/TimeLine/index.js +2 -42
- package/dist/TimeLine/typings.d.ts +11 -2
- package/dist/TimeLine/typings.js +1 -17
- package/dist/TimePicker/TimePicker.d.ts +1 -4
- package/dist/TimePicker/TimePicker.js +275 -214
- package/dist/TimePicker/TimePickerPanel.js +62 -71
- package/dist/TimePicker/TimePickerRange.d.ts +4 -4
- package/dist/TimePicker/TimePickerRange.js +371 -334
- package/dist/TimePicker/TimeRangePanel.js +182 -165
- package/dist/TimePicker/TimeSpinnerPanel.js +321 -266
- package/dist/TimePicker/index.d.ts +2 -3
- package/dist/TimePicker/index.js +1 -42
- package/dist/TimePicker/main.d.ts +9 -0
- package/dist/TimePicker/main.js +17 -0
- package/dist/TimePicker/typings.d.ts +39 -21
- package/dist/TimePicker/typings.js +1 -17
- package/dist/TimePicker/useTimePicker.js +56 -66
- package/dist/TimePicker/util.js +8 -40
- package/dist/Tooltip/Tooltip.d.ts +3 -3
- package/dist/Tooltip/Tooltip.js +174 -192
- package/dist/Tooltip/TooltipContext.d.ts +1 -0
- package/dist/Tooltip/TooltipContext.js +8 -46
- package/dist/Tooltip/index.js +2 -42
- package/dist/Tooltip/typings.d.ts +14 -1
- package/dist/Tooltip/typings.js +1 -17
- package/dist/Transfer/List.js +290 -241
- package/dist/Transfer/ListBody.js +92 -106
- package/dist/Transfer/ListItem.d.ts +1 -0
- package/dist/Transfer/ListItem.js +38 -51
- package/dist/Transfer/Transfer.js +323 -280
- package/dist/Transfer/index.js +1 -39
- package/dist/Transfer/interface.js +1 -17
- package/dist/Transfer/operation.js +35 -48
- package/dist/Transfer/search.js +30 -62
- package/dist/Transfer/typings/index.d.ts +27 -0
- package/dist/Transfer/typings/index.js +1 -17
- package/dist/Transfer/typings/list.d.ts +25 -0
- package/dist/Transfer/typings/list.js +1 -17
- package/dist/Transfer/typings/listBody.d.ts +1 -0
- package/dist/Transfer/typings/listBody.js +2 -30
- package/dist/Transition/Transition.d.ts +10 -0
- package/dist/Transition/Transition.js +271 -234
- package/dist/Transition/TransitionGroup.d.ts +59 -0
- package/dist/Transition/TransitionGroup.js +136 -88
- package/dist/Transition/TransitionGroupContext.js +2 -26
- package/dist/Transition/childMapping.d.ts +23 -0
- package/dist/Transition/childMapping.js +84 -71
- package/dist/Transition/index.js +2 -42
- package/dist/Transition/util.d.ts +0 -1
- package/dist/Transition/util.js +6 -47
- package/dist/Tree/DirectoryTree.d.ts +6 -13
- package/dist/Tree/DirectoryTree.js +149 -170
- package/dist/Tree/DropIndicator.d.ts +4 -2
- package/dist/Tree/DropIndicator.js +16 -41
- package/dist/Tree/Indent.d.ts +2 -2
- package/dist/Tree/Indent.js +23 -54
- package/dist/Tree/MotionTreeNode.d.ts +4 -5
- package/dist/Tree/MotionTreeNode.js +120 -104
- package/dist/Tree/NodeList.d.ts +18 -11
- package/dist/Tree/NodeList.js +232 -216
- package/dist/Tree/RCTree.d.ts +92 -75
- package/dist/Tree/RCTree.js +980 -702
- package/dist/Tree/Tree.d.ts +18 -3
- package/dist/Tree/Tree.js +65 -80
- package/dist/Tree/TreeNode.d.ts +5 -83
- package/dist/Tree/TreeNode.js +367 -470
- package/dist/Tree/contextTypes.d.ts +40 -30
- package/dist/Tree/contextTypes.js +8 -29
- package/dist/Tree/index.d.ts +2 -2
- package/dist/Tree/index.js +4 -48
- package/dist/Tree/typings.d.ts +63 -19
- package/dist/Tree/typings.js +1 -29
- package/dist/Tree/typings.tsx--bak +245 -0
- package/dist/Tree/useUnmount.d.ts +5 -0
- package/dist/Tree/useUnmount.js +34 -0
- package/dist/Tree/util.d.ts +31 -18
- package/dist/Tree/util.js +160 -169
- package/dist/Tree/utils/conductUtil.d.ts +8 -2
- package/dist/Tree/utils/conductUtil.js +113 -93
- package/dist/Tree/utils/dictUtil.d.ts +8 -3
- package/dist/Tree/utils/dictUtil.js +44 -55
- package/dist/Tree/utils/diffUtil.d.ts +4 -3
- package/dist/Tree/utils/diffUtil.js +26 -43
- package/dist/Tree/utils/dropIndicator.js +23 -51
- package/dist/Tree/utils/iconUtil.js +44 -51
- package/dist/Tree/utils/keyUtil.d.ts +2 -0
- package/dist/Tree/utils/keyUtil.js +3 -0
- package/dist/Tree/utils/motion.js +34 -71
- package/dist/Tree/utils/pickAttrs.d.ts +5 -0
- package/dist/Tree/utils/pickAttrs.js +30 -58
- package/dist/Tree/utils/treeUtil.d.ts +40 -18
- package/dist/Tree/utils/treeUtil.js +268 -187
- package/dist/TreeSelect/TreeSelect.d.ts +1 -1
- package/dist/TreeSelect/TreeSelect.js +521 -459
- package/dist/TreeSelect/Utils.d.ts +2 -1
- package/dist/TreeSelect/Utils.js +15 -36
- package/dist/TreeSelect/index.js +1 -39
- package/dist/TreeSelect/typings.d.ts +20 -1
- package/dist/TreeSelect/typings.js +1 -17
- package/dist/Upload/Upload.js +106 -109
- package/dist/Upload/UploadContent.js +227 -182
- package/dist/Upload/UploadContext.js +5 -33
- package/dist/Upload/UploadDrag.js +77 -97
- package/dist/Upload/UploadList.js +104 -73
- package/dist/Upload/ajax.js +45 -71
- package/dist/Upload/index.js +1 -39
- package/dist/Upload/typings.d.ts +34 -0
- package/dist/Upload/typings.js +34 -36
- package/dist/Upload/use-handlers.d.ts +1 -0
- package/dist/Upload/use-handlers.js +182 -126
- package/dist/Util/Math.d.ts +34 -0
- package/dist/Util/Math.js +81 -78
- package/dist/Util/PopupManager.js +5 -27
- package/dist/Util/base.d.ts +22 -1
- package/dist/Util/base.js +109 -167
- package/dist/Util/genFileId.js +3 -29
- package/dist/Util/index.js +6 -51
- package/dist/Util/resize-event.js +31 -54
- package/dist/Util/shallowEqual.d.ts +11 -0
- package/dist/Util/shallowEqual.js +30 -28
- package/dist/Util/treeUtils.d.ts +8 -0
- package/dist/Util/treeUtils.js +68 -64
- package/dist/config/Constants.js +17 -47
- package/dist/display.css +1 -0
- package/dist/fonts/fa-brands-400.ttf +0 -0
- package/dist/fonts/fa-brands-400.woff2 +0 -0
- package/dist/fonts/fa-duotone-900.ttf +0 -0
- package/dist/fonts/fa-duotone-900.woff2 +0 -0
- package/dist/fonts/fa-light-300.ttf +0 -0
- package/dist/fonts/fa-light-300.woff2 +0 -0
- package/dist/fonts/fa-regular-400.ttf +0 -0
- package/dist/fonts/fa-regular-400.woff2 +0 -0
- package/dist/fonts/fa-solid-900.ttf +0 -0
- package/dist/fonts/fa-solid-900.woff2 +0 -0
- package/dist/fonts/fa-thin-100.ttf +0 -0
- package/dist/fonts/fa-thin-100.woff2 +0 -0
- package/dist/fonts/fa-v4compatibility.ttf +0 -0
- package/dist/fonts/fa-v4compatibility.woff2 +0 -0
- package/dist/hooks/animationPropsUtils.d.ts +8 -0
- package/dist/hooks/animationPropsUtils.js +21 -49
- package/dist/hooks/htmlPropsUtils.d.ts +8 -0
- package/dist/hooks/htmlPropsUtils.js +54 -121
- package/dist/hooks/index.js +14 -73
- package/dist/hooks/popperPropsUtils.d.ts +8 -0
- package/dist/hooks/popperPropsUtils.js +21 -67
- package/dist/hooks/prefix.d.ts +1 -1
- package/dist/hooks/prefix.js +22 -55
- package/dist/hooks/treePropsUtils.d.ts +12 -0
- package/dist/hooks/treePropsUtils.js +24 -103
- package/dist/hooks/useChildrenInstance.d.ts +7 -0
- package/dist/hooks/useChildrenInstance.js +47 -60
- package/dist/hooks/useClassNames.d.ts +81 -0
- package/dist/hooks/useClassNames.js +284 -192
- package/dist/hooks/useClickOutside.js +37 -62
- package/dist/hooks/useCommonProps.js +17 -53
- package/dist/hooks/useComponentWillMount.js +4 -28
- package/dist/hooks/useControlled.d.ts +8 -0
- package/dist/hooks/useControlled.js +31 -37
- package/dist/hooks/useForceUpdate.d.ts +1 -0
- package/dist/hooks/useForceUpdate.js +16 -34
- package/dist/hooks/useUpdateEffect.js +6 -29
- package/dist/index.css +1 -12721
- package/dist/index.d.ts +17 -15
- package/dist/index.js +71 -234
- package/dist/locale/en.d.ts +179 -0
- package/dist/locale/en.js +178 -0
- package/dist/locale/i18n.d.ts +2 -0
- package/dist/locale/i18n.js +44 -0
- package/dist/locale/zhCn.d.ts +178 -0
- package/dist/locale/zhCn.js +177 -0
- package/dist/types/common.d.ts +24 -0
- package/dist/types/common.js +1 -17
- package/dist/types/type.d.ts +5 -0
- package/dist/types/type.js +16 -28
- package/package.json +11 -24
- package/theme-chalk/avatar.scss +50 -0
- package/{dist/theme-chalk/badge/index.scss → theme-chalk/badge.scss} +1 -1
- package/{dist/theme-chalk/breadcrumb/index.scss → theme-chalk/breadcrumb.scss} +1 -1
- package/theme-chalk/build.scss +2 -0
- package/theme-chalk/button/_mixins.scss +317 -0
- package/theme-chalk/button/button-group.scss +83 -0
- package/theme-chalk/button/button.scss +382 -0
- package/theme-chalk/button/index.scss +2 -0
- package/{dist/theme-chalk/button → theme-chalk/button--bak}/_mixins.scss +3 -3
- package/{dist/theme-chalk/button → theme-chalk/button--bak}/button-group.scss +1 -1
- package/{dist/theme-chalk/button → theme-chalk/button--bak}/button.scss +2 -2
- package/theme-chalk/button--bak/index.scss +2 -0
- package/theme-chalk/button-group.scss +80 -0
- package/theme-chalk/button.scss +304 -0
- package/{dist/theme-chalk → theme-chalk}/calendar/date-picker.scss +1 -1
- package/{dist/theme-chalk → theme-chalk}/calendar/date-range-picker.scss +1 -1
- package/theme-chalk/calendar/date-table.scss +164 -0
- package/{dist/theme-chalk/calendar/date-table.scss → theme-chalk/calendar/date-table.scss--bak} +1 -1
- package/theme-chalk/calendar/index.scss +6 -0
- package/{dist/theme-chalk → theme-chalk}/calendar/month-table.scss +2 -2
- package/{dist/theme-chalk → theme-chalk}/calendar/picker-panel.scss +1 -1
- package/{dist/theme-chalk → theme-chalk}/calendar/year-table.scss +1 -1
- package/{dist/theme-chalk/card/index.scss → theme-chalk/card.scss} +1 -1
- package/theme-chalk/carousel.scss +237 -0
- package/{dist/theme-chalk/cascader → theme-chalk}/cascader-panel.scss +1 -1
- package/{dist/theme-chalk/cascader → theme-chalk}/cascader.scss +1 -1
- package/{dist/theme-chalk/checkbox-button/index.scss → theme-chalk/checkbox-button.scss} +1 -1
- package/{dist/theme-chalk/checkbox-group/index.scss → theme-chalk/checkbox-group.scss} +1 -1
- package/{dist/theme-chalk/checkbox/index.scss → theme-chalk/checkbox.scss} +4 -3
- package/{dist/theme-chalk → theme-chalk}/col/_mixins.scss +5 -3
- package/{dist/theme-chalk → theme-chalk}/col/index.scss +2 -2
- package/{dist/theme-chalk/collapse/index.scss → theme-chalk/collapse.scss} +1 -1
- package/theme-chalk/color/index.scss +20 -0
- package/{dist/theme-chalk/color-picker/index.scss → theme-chalk/color-picker.scss} +3 -3
- package/theme-chalk/common/index.scss +171 -0
- package/{dist/theme-chalk/bak → theme-chalk}/common/var.scss +184 -28
- package/theme-chalk/dark/css-vars.scss +39 -0
- package/theme-chalk/dark/var.scss +225 -0
- package/{dist/theme-chalk/date-picker/index.scss → theme-chalk/date-picker.scss} +2 -2
- package/{dist/theme-chalk/date-time-picker/time-picker.scss → theme-chalk/date-time-picker.scss} +1 -1
- package/{dist/theme-chalk/descriptions → theme-chalk}/descriptions-item.scss +1 -1
- package/{dist/theme-chalk/descriptions → theme-chalk}/descriptions.scss +1 -1
- package/theme-chalk/dev.scss +2 -0
- package/{dist/theme-chalk/dialog/index.scss → theme-chalk/dialog.scss} +1 -1
- package/theme-chalk/display.scss +46 -0
- package/{dist/theme-chalk/divider/index.scss → theme-chalk/divider.scss} +1 -1
- package/theme-chalk/doc.scss +2 -0
- package/{dist/theme-chalk/drawer/index.scss → theme-chalk/drawer.scss} +62 -66
- package/{dist/theme-chalk/dropdown/index.scss → theme-chalk/dropdown.scss} +1 -1
- package/{dist/theme-chalk/empty/index.scss → theme-chalk/empty.scss} +1 -1
- package/theme-chalk/fonts/fa-brands-400.ttf +0 -0
- package/theme-chalk/fonts/fa-brands-400.woff2 +0 -0
- package/theme-chalk/fonts/fa-duotone-900.ttf +0 -0
- package/theme-chalk/fonts/fa-duotone-900.woff2 +0 -0
- package/theme-chalk/fonts/fa-light-300.ttf +0 -0
- package/theme-chalk/fonts/fa-light-300.woff2 +0 -0
- package/theme-chalk/fonts/fa-regular-400.ttf +0 -0
- package/theme-chalk/fonts/fa-regular-400.woff2 +0 -0
- package/theme-chalk/fonts/fa-solid-900.ttf +0 -0
- package/theme-chalk/fonts/fa-solid-900.woff2 +0 -0
- package/theme-chalk/fonts/fa-thin-100.ttf +0 -0
- package/theme-chalk/fonts/fa-thin-100.woff2 +0 -0
- package/theme-chalk/fonts/fa-v4compatibility.ttf +0 -0
- package/theme-chalk/fonts/fa-v4compatibility.woff2 +0 -0
- package/{dist/theme-chalk/form/index.scss → theme-chalk/form.scss} +22 -3
- package/theme-chalk/icon/fonts.scss +9 -0
- package/{dist/theme-chalk → theme-chalk}/icon/index.scss +1 -1
- package/{dist/theme-chalk → theme-chalk}/icon/scss/_animated.scss +1 -0
- package/{dist/theme-chalk → theme-chalk}/icon/scss/_bordered-pulled.scss +1 -0
- package/{dist/theme-chalk → theme-chalk}/icon/scss/_core.scss +2 -0
- package/{dist/theme-chalk → theme-chalk}/icon/scss/_duotone-icons.scss +3 -4
- package/{dist/theme-chalk → theme-chalk}/icon/scss/_fixed-width.scss +1 -0
- package/{dist/theme-chalk → theme-chalk}/icon/scss/_functions.scss +2 -1
- package/theme-chalk/icon/scss/_icons.scss +10 -0
- package/{dist/theme-chalk → theme-chalk}/icon/scss/_list.scss +1 -0
- package/{dist/theme-chalk → theme-chalk}/icon/scss/_mixins.scss +10 -7
- package/{dist/theme-chalk → theme-chalk}/icon/scss/_rotated-flipped.scss +1 -0
- package/{dist/theme-chalk → theme-chalk}/icon/scss/_screen-reader.scss +2 -0
- package/{dist/theme-chalk → theme-chalk}/icon/scss/_shims.scss +610 -608
- package/{dist/theme-chalk → theme-chalk}/icon/scss/_sizing.scss +2 -0
- package/{dist/theme-chalk → theme-chalk}/icon/scss/_stacked.scss +1 -0
- package/theme-chalk/icon/scss/brands.scss +29 -0
- package/{dist/theme-chalk → theme-chalk}/icon/scss/duotone.scss +6 -10
- package/theme-chalk/icon/scss/fontawesome.scss +13 -0
- package/theme-chalk/icon/scss/index.scss +12 -0
- package/{dist/theme-chalk → theme-chalk}/icon/scss/light.scss +5 -9
- package/{dist/theme-chalk → theme-chalk}/icon/scss/regular.scss +5 -9
- package/{dist/theme-chalk → theme-chalk}/icon/scss/solid.scss +5 -9
- package/{dist/theme-chalk → theme-chalk}/icon/scss/thin.scss +5 -9
- package/{dist/theme-chalk/icon/scss/_variables.scss → theme-chalk/icon/scss/variables.scss} +3 -3
- package/theme-chalk/index.scss +73 -0
- package/{dist/theme-chalk → theme-chalk}/input/_mixins.scss +1 -1
- package/theme-chalk/input/index.scss +2 -0
- package/{dist/theme-chalk → theme-chalk}/input/input-range.scss +2 -1
- package/{dist/theme-chalk → theme-chalk}/input/input.scss +7 -4
- package/{dist/theme-chalk/input-number/index.scss → theme-chalk/input-number.scss} +4 -4
- package/{dist/theme-chalk/link/index.scss → theme-chalk/link.scss} +1 -86
- package/{dist/theme-chalk/loading/index.scss → theme-chalk/loading.scss} +6 -8
- package/{dist/theme-chalk/message-box/index.scss → theme-chalk/message-box.scss} +1 -1
- package/{dist/theme-chalk/message/index.scss → theme-chalk/message.scss} +18 -9
- package/{dist/theme-chalk/bak → theme-chalk}/mixins/_button.scss +224 -224
- package/theme-chalk/mixins/_col.scss +33 -0
- package/theme-chalk/mixins/_var.scss +67 -0
- package/{dist/theme-chalk/bak → theme-chalk}/mixins/config.scss +5 -5
- package/theme-chalk/mixins/function.scss +99 -0
- package/theme-chalk/mixins/mixins.scss +240 -0
- package/theme-chalk/mixins/utils.scss +39 -0
- package/{dist/theme-chalk/notification/index.scss → theme-chalk/notification.scss} +7 -6
- package/theme-chalk/pagination.scss +303 -0
- package/{dist/theme-chalk/popconfirm/index.scss → theme-chalk/popconfirm.scss} +1 -1
- package/{dist/theme-chalk/popover/index.scss → theme-chalk/popover.scss} +1 -1
- package/theme-chalk/popper.scss +104 -0
- package/{dist/theme-chalk/popper/index.scss → theme-chalk/popper.scss--bak} +1 -1
- package/{dist/theme-chalk/progress/index.scss → theme-chalk/progress.scss} +1 -1
- package/theme-chalk/radio-button.scss +169 -0
- package/{dist/theme-chalk/radio/radio-button.scss → theme-chalk/radio-button.scss--bak} +1 -1
- package/{dist/theme-chalk/radio-group/index.scss → theme-chalk/radio-group.scss} +1 -10
- package/{dist/theme-chalk/radio → theme-chalk}/radio.scss +1 -1
- package/{dist/theme-chalk/row/index.scss → theme-chalk/row.scss} +1 -1
- package/{dist/theme-chalk/scrollbar/index.scss → theme-chalk/scrollbar.scss} +1 -1
- package/{dist/theme-chalk → theme-chalk}/select/index.scss +11 -8
- package/{dist/theme-chalk/placeholder/index.scss → theme-chalk/skeleton.scss} +23 -38
- package/theme-chalk/switch.scss +300 -0
- package/{dist/theme-chalk/switch/index.scss → theme-chalk/switch.scss--bak} +1 -1
- package/{dist/theme-chalk/table/index.scss → theme-chalk/table.scss} +1 -1
- package/{dist/theme-chalk/tabs/index.scss → theme-chalk/tabs.scss} +5 -5
- package/theme-chalk/tag.scss +203 -0
- package/{dist/theme-chalk/time-line/_timeline.scss → theme-chalk/time-line.scss} +1 -1
- package/{dist/theme-chalk/time-picker/index.scss → theme-chalk/time-picker.scss} +1 -1
- package/{dist/theme-chalk/date-time-picker → theme-chalk}/time-range-picker.scss +1 -1
- package/{dist/theme-chalk/time-line/_timeline-item.scss → theme-chalk/timeline-item.scss} +2 -2
- package/{dist/theme-chalk/tooltip/index.scss → theme-chalk/tooltip.scss} +1 -1
- package/{dist/theme-chalk/transfer/index.scss → theme-chalk/transfer.scss} +1 -1
- package/{dist/theme-chalk/transition/index.scss → theme-chalk/transition.scss} +1 -1
- package/{dist/theme-chalk → theme-chalk}/tree/_directory.scss +1 -1
- package/{dist/theme-chalk → theme-chalk}/tree/_tree.scss +1 -1
- package/theme-chalk/tree/index.scss +2 -0
- package/{dist/theme-chalk/tree-select/index.scss → theme-chalk/tree-select.scss} +1 -1
- package/{dist/theme-chalk/upload/index.scss → theme-chalk/upload.scss} +1 -1
- package/theme-chalk/var.scss +83 -0
- package/dist/Tree/utils/KeyCode.d.ts +0 -110
- package/dist/Tree/utils/KeyCode.js +0 -550
- package/dist/VirtualList/Filler.d.ts +0 -11
- package/dist/VirtualList/Filler.js +0 -78
- package/dist/VirtualList/Item.d.ts +0 -7
- package/dist/VirtualList/Item.js +0 -37
- package/dist/VirtualList/ScrollBar.d.ts +0 -43
- package/dist/VirtualList/ScrollBar.js +0 -216
- package/dist/VirtualList/VirtualList.d.ts +0 -33
- package/dist/VirtualList/VirtualList.js +0 -280
- package/dist/VirtualList/hooks/useChildren.d.ts +0 -3
- package/dist/VirtualList/hooks/useChildren.js +0 -46
- package/dist/VirtualList/hooks/useDiffItem.d.ts +0 -2
- package/dist/VirtualList/hooks/useDiffItem.js +0 -39
- package/dist/VirtualList/hooks/useFrameWheel.d.ts +0 -6
- package/dist/VirtualList/hooks/useFrameWheel.js +0 -72
- package/dist/VirtualList/hooks/useHeights.d.ts +0 -3
- package/dist/VirtualList/hooks/useHeights.js +0 -83
- package/dist/VirtualList/hooks/useLayoutEffect.d.ts +0 -3
- package/dist/VirtualList/hooks/useLayoutEffect.js +0 -30
- package/dist/VirtualList/hooks/useMobileTouchMove.d.ts +0 -2
- package/dist/VirtualList/hooks/useMobileTouchMove.js +0 -92
- package/dist/VirtualList/hooks/useOriginScroll.d.ts +0 -2
- package/dist/VirtualList/hooks/useOriginScroll.js +0 -56
- package/dist/VirtualList/hooks/useScrollTo.d.ts +0 -5
- package/dist/VirtualList/hooks/useScrollTo.js +0 -111
- package/dist/VirtualList/index.d.ts +0 -2
- package/dist/VirtualList/index.js +0 -39
- package/dist/VirtualList/interface.d.ts +0 -8
- package/dist/VirtualList/interface.js +0 -17
- package/dist/VirtualList/mock.d.ts +0 -6
- package/dist/VirtualList/mock.js +0 -29
- package/dist/VirtualList/utils/CacheMap.d.ts +0 -7
- package/dist/VirtualList/utils/CacheMap.js +0 -36
- package/dist/VirtualList/utils/algorithmUtil.d.ts +0 -6
- package/dist/VirtualList/utils/algorithmUtil.js +0 -81
- package/dist/VirtualList/utils/findDOMNode.d.ts +0 -2
- package/dist/VirtualList/utils/findDOMNode.js +0 -30
- package/dist/VirtualList/utils/isFirefox.d.ts +0 -2
- package/dist/VirtualList/utils/isFirefox.js +0 -26
- package/dist/VirtualList/utils/raf.d.ts +0 -5
- package/dist/VirtualList/utils/raf.js +0 -57
- package/dist/theme-chalk/bak/common/popup.scss +0 -47
- package/dist/theme-chalk/bak/common/transition.scss +0 -118
- package/dist/theme-chalk/bak/mixins/_col.scss +0 -38
- package/dist/theme-chalk/bak/mixins/_var.scss +0 -55
- package/dist/theme-chalk/bak/mixins/function.scss +0 -85
- package/dist/theme-chalk/bak/mixins/mixins.scss +0 -215
- package/dist/theme-chalk/bak/mixins/utils.scss +0 -39
- package/dist/theme-chalk/build.scss +0 -64
- package/dist/theme-chalk/button/index.scss +0 -2
- package/dist/theme-chalk/calendar/index.scss +0 -6
- package/dist/theme-chalk/cascader/index.scss +0 -2
- package/dist/theme-chalk/common/_var.scss +0 -5
- package/dist/theme-chalk/common/index.d.ts +0 -1
- package/dist/theme-chalk/common/index.js +0 -2
- package/dist/theme-chalk/common/index.scss +0 -222
- package/dist/theme-chalk/date-time-picker/index.scss +0 -3
- package/dist/theme-chalk/descriptions/index.scss +0 -2
- package/dist/theme-chalk/icon/fonts.scss +0 -8
- package/dist/theme-chalk/icon/scss/_icons.scss +0 -11
- package/dist/theme-chalk/icon/scss/brands.scss +0 -32
- package/dist/theme-chalk/icon/scss/fontawesome.scss +0 -21
- package/dist/theme-chalk/icon/scss/index.scss +0 -15
- package/dist/theme-chalk/icon/scss/v4-shims.scss +0 -11
- package/dist/theme-chalk/index.scss +0 -65
- package/dist/theme-chalk/input/index.scss +0 -3
- package/dist/theme-chalk/pagination/index.scss +0 -515
- package/dist/theme-chalk/radio/index.scss +0 -2
- package/dist/theme-chalk/tag/index.scss +0 -360
- package/dist/theme-chalk/time-line/index.scss +0 -2
- package/dist/theme-chalk/tree/index.scss +0 -2
- /package/{dist/theme-chalk → theme-chalk}/select/option-group.scss +0 -0
- /package/{dist/theme-chalk → theme-chalk}/select/option.scss +0 -0
- /package/{dist/theme-chalk → theme-chalk}/select/select-dropdown.scss +0 -0
|
@@ -1,2606 +1,2608 @@
|
|
|
1
|
+
@use 'sass:string';
|
|
2
|
+
@use 'variables' as *;
|
|
1
3
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-glass:before {
|
|
2
|
-
content: unquote('"#{ $fa-var-martini-glass-empty }"');
|
|
4
|
+
content: string.unquote('"#{ $fa-var-martini-glass-empty }"');
|
|
3
5
|
}
|
|
4
6
|
|
|
5
7
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o {
|
|
6
|
-
font-family:
|
|
8
|
+
font-family: $fa-style-family;
|
|
7
9
|
font-weight: 400;
|
|
8
10
|
}
|
|
9
11
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before {
|
|
10
|
-
content: unquote('"#{ $fa-var-envelope }"');
|
|
12
|
+
content: string.unquote('"#{ $fa-var-envelope }"');
|
|
11
13
|
}
|
|
12
14
|
|
|
13
15
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o {
|
|
14
|
-
font-family:
|
|
16
|
+
font-family: $fa-style-family;
|
|
15
17
|
font-weight: 400;
|
|
16
18
|
}
|
|
17
19
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o:before {
|
|
18
|
-
content: unquote('"#{ $fa-var-star }"');
|
|
20
|
+
content: string.unquote('"#{ $fa-var-star }"');
|
|
19
21
|
}
|
|
20
22
|
|
|
21
23
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-remove:before {
|
|
22
|
-
content: unquote('"#{ $fa-var-xmark }"');
|
|
24
|
+
content: string.unquote('"#{ $fa-var-xmark }"');
|
|
23
25
|
}
|
|
24
26
|
|
|
25
27
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-close:before {
|
|
26
|
-
content: unquote('"#{ $fa-var-xmark }"');
|
|
28
|
+
content: string.unquote('"#{ $fa-var-xmark }"');
|
|
27
29
|
}
|
|
28
30
|
|
|
29
31
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gear:before {
|
|
30
|
-
content: unquote('"#{ $fa-var-gear }"');
|
|
32
|
+
content: string.unquote('"#{ $fa-var-gear }"');
|
|
31
33
|
}
|
|
32
34
|
|
|
33
35
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o {
|
|
34
|
-
font-family:
|
|
36
|
+
font-family: $fa-style-family;
|
|
35
37
|
font-weight: 400;
|
|
36
38
|
}
|
|
37
39
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o:before {
|
|
38
|
-
content: unquote('"#{ $fa-var-trash-can }"');
|
|
40
|
+
content: string.unquote('"#{ $fa-var-trash-can }"');
|
|
39
41
|
}
|
|
40
42
|
|
|
41
43
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-home:before {
|
|
42
|
-
content: unquote('"#{ $fa-var-house }"');
|
|
44
|
+
content: string.unquote('"#{ $fa-var-house }"');
|
|
43
45
|
}
|
|
44
46
|
|
|
45
47
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o {
|
|
46
|
-
font-family:
|
|
48
|
+
font-family: $fa-style-family;
|
|
47
49
|
font-weight: 400;
|
|
48
50
|
}
|
|
49
51
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o:before {
|
|
50
|
-
content: unquote('"#{ $fa-var-file }"');
|
|
52
|
+
content: string.unquote('"#{ $fa-var-file }"');
|
|
51
53
|
}
|
|
52
54
|
|
|
53
55
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o {
|
|
54
|
-
font-family:
|
|
56
|
+
font-family: $fa-style-family;
|
|
55
57
|
font-weight: 400;
|
|
56
58
|
}
|
|
57
59
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o:before {
|
|
58
|
-
content: unquote('"#{ $fa-var-clock }"');
|
|
60
|
+
content: string.unquote('"#{ $fa-var-clock }"');
|
|
59
61
|
}
|
|
60
62
|
|
|
61
63
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down {
|
|
62
|
-
font-family:
|
|
64
|
+
font-family: $fa-style-family;
|
|
63
65
|
font-weight: 400;
|
|
64
66
|
}
|
|
65
67
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down:before {
|
|
66
|
-
content: unquote('"#{ $fa-var-circle-down }"');
|
|
68
|
+
content: string.unquote('"#{ $fa-var-circle-down }"');
|
|
67
69
|
}
|
|
68
70
|
|
|
69
71
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up {
|
|
70
|
-
font-family:
|
|
72
|
+
font-family: $fa-style-family;
|
|
71
73
|
font-weight: 400;
|
|
72
74
|
}
|
|
73
75
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up:before {
|
|
74
|
-
content: unquote('"#{ $fa-var-circle-up }"');
|
|
76
|
+
content: string.unquote('"#{ $fa-var-circle-up }"');
|
|
75
77
|
}
|
|
76
78
|
|
|
77
79
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o {
|
|
78
|
-
font-family:
|
|
80
|
+
font-family: $fa-style-family;
|
|
79
81
|
font-weight: 400;
|
|
80
82
|
}
|
|
81
83
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o:before {
|
|
82
|
-
content: unquote('"#{ $fa-var-circle-play }"');
|
|
84
|
+
content: string.unquote('"#{ $fa-var-circle-play }"');
|
|
83
85
|
}
|
|
84
86
|
|
|
85
87
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-repeat:before {
|
|
86
|
-
content: unquote('"#{ $fa-var-arrow-rotate-right }"');
|
|
88
|
+
content: string.unquote('"#{ $fa-var-arrow-rotate-right }"');
|
|
87
89
|
}
|
|
88
90
|
|
|
89
91
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right:before {
|
|
90
|
-
content: unquote('"#{ $fa-var-arrow-rotate-right }"');
|
|
92
|
+
content: string.unquote('"#{ $fa-var-arrow-rotate-right }"');
|
|
91
93
|
}
|
|
92
94
|
|
|
93
95
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-refresh:before {
|
|
94
|
-
content: unquote('"#{ $fa-var-arrows-rotate }"');
|
|
96
|
+
content: string.unquote('"#{ $fa-var-arrows-rotate }"');
|
|
95
97
|
}
|
|
96
98
|
|
|
97
99
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt {
|
|
98
|
-
font-family:
|
|
100
|
+
font-family: $fa-style-family;
|
|
99
101
|
font-weight: 400;
|
|
100
102
|
}
|
|
101
103
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt:before {
|
|
102
|
-
content: unquote('"#{ $fa-var-rectangle-list }"');
|
|
104
|
+
content: string.unquote('"#{ $fa-var-rectangle-list }"');
|
|
103
105
|
}
|
|
104
106
|
|
|
105
107
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dedent:before {
|
|
106
|
-
content: unquote('"#{ $fa-var-outdent }"');
|
|
108
|
+
content: string.unquote('"#{ $fa-var-outdent }"');
|
|
107
109
|
}
|
|
108
110
|
|
|
109
111
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera:before {
|
|
110
|
-
content: unquote('"#{ $fa-var-video }"');
|
|
112
|
+
content: string.unquote('"#{ $fa-var-video }"');
|
|
111
113
|
}
|
|
112
114
|
|
|
113
115
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o {
|
|
114
|
-
font-family:
|
|
116
|
+
font-family: $fa-style-family;
|
|
115
117
|
font-weight: 400;
|
|
116
118
|
}
|
|
117
119
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o:before {
|
|
118
|
-
content: unquote('"#{ $fa-var-image }"');
|
|
120
|
+
content: string.unquote('"#{ $fa-var-image }"');
|
|
119
121
|
}
|
|
120
122
|
|
|
121
123
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-photo {
|
|
122
|
-
font-family:
|
|
124
|
+
font-family: $fa-style-family;
|
|
123
125
|
font-weight: 400;
|
|
124
126
|
}
|
|
125
127
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-photo:before {
|
|
126
|
-
content: unquote('"#{ $fa-var-image }"');
|
|
128
|
+
content: string.unquote('"#{ $fa-var-image }"');
|
|
127
129
|
}
|
|
128
130
|
|
|
129
131
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-image {
|
|
130
|
-
font-family:
|
|
132
|
+
font-family: $fa-style-family;
|
|
131
133
|
font-weight: 400;
|
|
132
134
|
}
|
|
133
135
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-image:before {
|
|
134
|
-
content: unquote('"#{ $fa-var-image }"');
|
|
136
|
+
content: string.unquote('"#{ $fa-var-image }"');
|
|
135
137
|
}
|
|
136
138
|
|
|
137
139
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker:before {
|
|
138
|
-
content: unquote('"#{ $fa-var-location-dot }"');
|
|
140
|
+
content: string.unquote('"#{ $fa-var-location-dot }"');
|
|
139
141
|
}
|
|
140
142
|
|
|
141
143
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o {
|
|
142
|
-
font-family:
|
|
144
|
+
font-family: $fa-style-family;
|
|
143
145
|
font-weight: 400;
|
|
144
146
|
}
|
|
145
147
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o:before {
|
|
146
|
-
content: unquote('"#{ $fa-var-pen-to-square }"');
|
|
148
|
+
content: string.unquote('"#{ $fa-var-pen-to-square }"');
|
|
147
149
|
}
|
|
148
150
|
|
|
149
151
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-edit {
|
|
150
|
-
font-family:
|
|
152
|
+
font-family: $fa-style-family;
|
|
151
153
|
font-weight: 400;
|
|
152
154
|
}
|
|
153
155
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-edit:before {
|
|
154
|
-
content: unquote('"#{ $fa-var-pen-to-square }"');
|
|
156
|
+
content: string.unquote('"#{ $fa-var-pen-to-square }"');
|
|
155
157
|
}
|
|
156
158
|
|
|
157
159
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o:before {
|
|
158
|
-
content: unquote('"#{ $fa-var-share-from-square }"');
|
|
160
|
+
content: string.unquote('"#{ $fa-var-share-from-square }"');
|
|
159
161
|
}
|
|
160
162
|
|
|
161
163
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o {
|
|
162
|
-
font-family:
|
|
164
|
+
font-family: $fa-style-family;
|
|
163
165
|
font-weight: 400;
|
|
164
166
|
}
|
|
165
167
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o:before {
|
|
166
|
-
content: unquote('"#{ $fa-var-square-check }"');
|
|
168
|
+
content: string.unquote('"#{ $fa-var-square-check }"');
|
|
167
169
|
}
|
|
168
170
|
|
|
169
171
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows:before {
|
|
170
|
-
content: unquote('"#{ $fa-var-up-down-left-right }"');
|
|
172
|
+
content: string.unquote('"#{ $fa-var-up-down-left-right }"');
|
|
171
173
|
}
|
|
172
174
|
|
|
173
175
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o {
|
|
174
|
-
font-family:
|
|
176
|
+
font-family: $fa-style-family;
|
|
175
177
|
font-weight: 400;
|
|
176
178
|
}
|
|
177
179
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o:before {
|
|
178
|
-
content: unquote('"#{ $fa-var-circle-xmark }"');
|
|
180
|
+
content: string.unquote('"#{ $fa-var-circle-xmark }"');
|
|
179
181
|
}
|
|
180
182
|
|
|
181
183
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o {
|
|
182
|
-
font-family:
|
|
184
|
+
font-family: $fa-style-family;
|
|
183
185
|
font-weight: 400;
|
|
184
186
|
}
|
|
185
187
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o:before {
|
|
186
|
-
content: unquote('"#{ $fa-var-circle-check }"');
|
|
188
|
+
content: string.unquote('"#{ $fa-var-circle-check }"');
|
|
187
189
|
}
|
|
188
190
|
|
|
189
191
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before {
|
|
190
|
-
content: unquote('"#{ $fa-var-share }"');
|
|
192
|
+
content: string.unquote('"#{ $fa-var-share }"');
|
|
191
193
|
}
|
|
192
194
|
|
|
193
195
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-expand:before {
|
|
194
|
-
content: unquote('"#{ $fa-var-up-right-and-down-left-from-center }"');
|
|
196
|
+
content: string.unquote('"#{ $fa-var-up-right-and-down-left-from-center }"');
|
|
195
197
|
}
|
|
196
198
|
|
|
197
199
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-compress:before {
|
|
198
|
-
content: unquote('"#{ $fa-var-down-left-and-up-right-to-center }"');
|
|
200
|
+
content: string.unquote('"#{ $fa-var-down-left-and-up-right-to-center }"');
|
|
199
201
|
}
|
|
200
202
|
|
|
201
203
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-eye {
|
|
202
|
-
font-family:
|
|
204
|
+
font-family: $fa-style-family;
|
|
203
205
|
font-weight: 400;
|
|
204
206
|
}
|
|
205
207
|
|
|
206
208
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-eye-slash {
|
|
207
|
-
font-family:
|
|
209
|
+
font-family: $fa-style-family;
|
|
208
210
|
font-weight: 400;
|
|
209
211
|
}
|
|
210
212
|
|
|
211
213
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-warning:before {
|
|
212
|
-
content: unquote('"#{ $fa-var-triangle-exclamation }"');
|
|
214
|
+
content: string.unquote('"#{ $fa-var-triangle-exclamation }"');
|
|
213
215
|
}
|
|
214
216
|
|
|
215
217
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar:before {
|
|
216
|
-
content: unquote('"#{ $fa-var-calendar-days }"');
|
|
218
|
+
content: string.unquote('"#{ $fa-var-calendar-days }"');
|
|
217
219
|
}
|
|
218
220
|
|
|
219
221
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v:before {
|
|
220
|
-
content: unquote('"#{ $fa-var-up-down }"');
|
|
222
|
+
content: string.unquote('"#{ $fa-var-up-down }"');
|
|
221
223
|
}
|
|
222
224
|
|
|
223
225
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h:before {
|
|
224
|
-
content: unquote('"#{ $fa-var-left-right }"');
|
|
226
|
+
content: string.unquote('"#{ $fa-var-left-right }"');
|
|
225
227
|
}
|
|
226
228
|
|
|
227
229
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart:before {
|
|
228
|
-
content: unquote('"#{ $fa-var-chart-column }"');
|
|
230
|
+
content: string.unquote('"#{ $fa-var-chart-column }"');
|
|
229
231
|
}
|
|
230
232
|
|
|
231
233
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o:before {
|
|
232
|
-
content: unquote('"#{ $fa-var-chart-column }"');
|
|
234
|
+
content: string.unquote('"#{ $fa-var-chart-column }"');
|
|
233
235
|
}
|
|
234
236
|
|
|
235
237
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square {
|
|
236
|
-
font-family:
|
|
238
|
+
font-family: $fa-style-family;
|
|
237
239
|
font-weight: 400;
|
|
238
240
|
}
|
|
239
241
|
|
|
240
242
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square {
|
|
241
|
-
font-family:
|
|
243
|
+
font-family: $fa-style-family;
|
|
242
244
|
font-weight: 400;
|
|
243
245
|
}
|
|
244
246
|
|
|
245
247
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gears:before {
|
|
246
|
-
content: unquote('"#{ $fa-var-gears }"');
|
|
248
|
+
content: string.unquote('"#{ $fa-var-gears }"');
|
|
247
249
|
}
|
|
248
250
|
|
|
249
251
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up {
|
|
250
|
-
font-family:
|
|
252
|
+
font-family: $fa-style-family;
|
|
251
253
|
font-weight: 400;
|
|
252
254
|
}
|
|
253
255
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up:before {
|
|
254
|
-
content: unquote('"#{ $fa-var-thumbs-up }"');
|
|
256
|
+
content: string.unquote('"#{ $fa-var-thumbs-up }"');
|
|
255
257
|
}
|
|
256
258
|
|
|
257
259
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down {
|
|
258
|
-
font-family:
|
|
260
|
+
font-family: $fa-style-family;
|
|
259
261
|
font-weight: 400;
|
|
260
262
|
}
|
|
261
263
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down:before {
|
|
262
|
-
content: unquote('"#{ $fa-var-thumbs-down }"');
|
|
264
|
+
content: string.unquote('"#{ $fa-var-thumbs-down }"');
|
|
263
265
|
}
|
|
264
266
|
|
|
265
267
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o {
|
|
266
|
-
font-family:
|
|
268
|
+
font-family: $fa-style-family;
|
|
267
269
|
font-weight: 400;
|
|
268
270
|
}
|
|
269
271
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o:before {
|
|
270
|
-
content: unquote('"#{ $fa-var-heart }"');
|
|
272
|
+
content: string.unquote('"#{ $fa-var-heart }"');
|
|
271
273
|
}
|
|
272
274
|
|
|
273
275
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out:before {
|
|
274
|
-
content: unquote('"#{ $fa-var-right-from-bracket }"');
|
|
276
|
+
content: string.unquote('"#{ $fa-var-right-from-bracket }"');
|
|
275
277
|
}
|
|
276
278
|
|
|
277
279
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square {
|
|
278
|
-
font-family:
|
|
280
|
+
font-family: $fa-style-family;
|
|
279
281
|
font-weight: 400;
|
|
280
282
|
}
|
|
281
283
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square:before {
|
|
282
|
-
content: unquote('"#{ $fa-var-linkedin }"');
|
|
284
|
+
content: string.unquote('"#{ $fa-var-linkedin }"');
|
|
283
285
|
}
|
|
284
286
|
|
|
285
287
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack:before {
|
|
286
|
-
content: unquote('"#{ $fa-var-thumbtack }"');
|
|
288
|
+
content: string.unquote('"#{ $fa-var-thumbtack }"');
|
|
287
289
|
}
|
|
288
290
|
|
|
289
291
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link:before {
|
|
290
|
-
content: unquote('"#{ $fa-var-up-right-from-square }"');
|
|
292
|
+
content: string.unquote('"#{ $fa-var-up-right-from-square }"');
|
|
291
293
|
}
|
|
292
294
|
|
|
293
295
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in:before {
|
|
294
|
-
content: unquote('"#{ $fa-var-right-to-bracket }"');
|
|
296
|
+
content: string.unquote('"#{ $fa-var-right-to-bracket }"');
|
|
295
297
|
}
|
|
296
298
|
|
|
297
299
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-github-square {
|
|
298
|
-
font-family:
|
|
300
|
+
font-family: $fa-style-family;
|
|
299
301
|
font-weight: 400;
|
|
300
302
|
}
|
|
301
303
|
|
|
302
304
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o {
|
|
303
|
-
font-family:
|
|
305
|
+
font-family: $fa-style-family;
|
|
304
306
|
font-weight: 400;
|
|
305
307
|
}
|
|
306
308
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o:before {
|
|
307
|
-
content: unquote('"#{ $fa-var-lemon }"');
|
|
309
|
+
content: string.unquote('"#{ $fa-var-lemon }"');
|
|
308
310
|
}
|
|
309
311
|
|
|
310
312
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o {
|
|
311
|
-
font-family:
|
|
313
|
+
font-family: $fa-style-family;
|
|
312
314
|
font-weight: 400;
|
|
313
315
|
}
|
|
314
316
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o:before {
|
|
315
|
-
content: unquote('"#{ $fa-var-square }"');
|
|
317
|
+
content: string.unquote('"#{ $fa-var-square }"');
|
|
316
318
|
}
|
|
317
319
|
|
|
318
320
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o {
|
|
319
|
-
font-family:
|
|
321
|
+
font-family: $fa-style-family;
|
|
320
322
|
font-weight: 400;
|
|
321
323
|
}
|
|
322
324
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o:before {
|
|
323
|
-
content: unquote('"#{ $fa-var-bookmark }"');
|
|
325
|
+
content: string.unquote('"#{ $fa-var-bookmark }"');
|
|
324
326
|
}
|
|
325
327
|
|
|
326
328
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter {
|
|
327
|
-
font-family:
|
|
329
|
+
font-family: $fa-style-family;
|
|
328
330
|
font-weight: 400;
|
|
329
331
|
}
|
|
330
332
|
|
|
331
333
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook {
|
|
332
|
-
font-family:
|
|
334
|
+
font-family: $fa-style-family;
|
|
333
335
|
font-weight: 400;
|
|
334
336
|
}
|
|
335
337
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook:before {
|
|
336
|
-
content: unquote('"#{ $fa-var-facebook-f }"');
|
|
338
|
+
content: string.unquote('"#{ $fa-var-facebook-f }"');
|
|
337
339
|
}
|
|
338
340
|
|
|
339
341
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f {
|
|
340
|
-
font-family:
|
|
342
|
+
font-family: $fa-style-family;
|
|
341
343
|
font-weight: 400;
|
|
342
344
|
}
|
|
343
345
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f:before {
|
|
344
|
-
content: unquote('"#{ $fa-var-facebook-f }"');
|
|
346
|
+
content: string.unquote('"#{ $fa-var-facebook-f }"');
|
|
345
347
|
}
|
|
346
348
|
|
|
347
349
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-github {
|
|
348
|
-
font-family:
|
|
350
|
+
font-family: $fa-style-family;
|
|
349
351
|
font-weight: 400;
|
|
350
352
|
}
|
|
351
353
|
|
|
352
354
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card {
|
|
353
|
-
font-family:
|
|
355
|
+
font-family: $fa-style-family;
|
|
354
356
|
font-weight: 400;
|
|
355
357
|
}
|
|
356
358
|
|
|
357
359
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-feed:before {
|
|
358
|
-
content: unquote('"#{ $fa-var-rss }"');
|
|
360
|
+
content: string.unquote('"#{ $fa-var-rss }"');
|
|
359
361
|
}
|
|
360
362
|
|
|
361
363
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o {
|
|
362
|
-
font-family:
|
|
364
|
+
font-family: $fa-style-family;
|
|
363
365
|
font-weight: 400;
|
|
364
366
|
}
|
|
365
367
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o:before {
|
|
366
|
-
content: unquote('"#{ $fa-var-hard-drive }"');
|
|
368
|
+
content: string.unquote('"#{ $fa-var-hard-drive }"');
|
|
367
369
|
}
|
|
368
370
|
|
|
369
371
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right {
|
|
370
|
-
font-family:
|
|
372
|
+
font-family: $fa-style-family;
|
|
371
373
|
font-weight: 400;
|
|
372
374
|
}
|
|
373
375
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right:before {
|
|
374
|
-
content: unquote('"#{ $fa-var-hand-point-right }"');
|
|
376
|
+
content: string.unquote('"#{ $fa-var-hand-point-right }"');
|
|
375
377
|
}
|
|
376
378
|
|
|
377
379
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left {
|
|
378
|
-
font-family:
|
|
380
|
+
font-family: $fa-style-family;
|
|
379
381
|
font-weight: 400;
|
|
380
382
|
}
|
|
381
383
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left:before {
|
|
382
|
-
content: unquote('"#{ $fa-var-hand-point-left }"');
|
|
384
|
+
content: string.unquote('"#{ $fa-var-hand-point-left }"');
|
|
383
385
|
}
|
|
384
386
|
|
|
385
387
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up {
|
|
386
|
-
font-family:
|
|
388
|
+
font-family: $fa-style-family;
|
|
387
389
|
font-weight: 400;
|
|
388
390
|
}
|
|
389
391
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up:before {
|
|
390
|
-
content: unquote('"#{ $fa-var-hand-point-up }"');
|
|
392
|
+
content: string.unquote('"#{ $fa-var-hand-point-up }"');
|
|
391
393
|
}
|
|
392
394
|
|
|
393
395
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down {
|
|
394
|
-
font-family:
|
|
396
|
+
font-family: $fa-style-family;
|
|
395
397
|
font-weight: 400;
|
|
396
398
|
}
|
|
397
399
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down:before {
|
|
398
|
-
content: unquote('"#{ $fa-var-hand-point-down }"');
|
|
400
|
+
content: string.unquote('"#{ $fa-var-hand-point-down }"');
|
|
399
401
|
}
|
|
400
402
|
|
|
401
403
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-globe:before {
|
|
402
|
-
content: unquote('"#{ $fa-var-earth-americas }"');
|
|
404
|
+
content: string.unquote('"#{ $fa-var-earth-americas }"');
|
|
403
405
|
}
|
|
404
406
|
|
|
405
407
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-tasks:before {
|
|
406
|
-
content: unquote('"#{ $fa-var-bars-progress }"');
|
|
408
|
+
content: string.unquote('"#{ $fa-var-bars-progress }"');
|
|
407
409
|
}
|
|
408
410
|
|
|
409
411
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-alt:before {
|
|
410
|
-
content: unquote('"#{ $fa-var-maximize }"');
|
|
412
|
+
content: string.unquote('"#{ $fa-var-maximize }"');
|
|
411
413
|
}
|
|
412
414
|
|
|
413
415
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-group:before {
|
|
414
|
-
content: unquote('"#{ $fa-var-users }"');
|
|
416
|
+
content: string.unquote('"#{ $fa-var-users }"');
|
|
415
417
|
}
|
|
416
418
|
|
|
417
419
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-chain:before {
|
|
418
|
-
content: unquote('"#{ $fa-var-link }"');
|
|
420
|
+
content: string.unquote('"#{ $fa-var-link }"');
|
|
419
421
|
}
|
|
420
422
|
|
|
421
423
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cut:before {
|
|
422
|
-
content: unquote('"#{ $fa-var-scissors }"');
|
|
424
|
+
content: string.unquote('"#{ $fa-var-scissors }"');
|
|
423
425
|
}
|
|
424
426
|
|
|
425
427
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o {
|
|
426
|
-
font-family:
|
|
428
|
+
font-family: $fa-style-family;
|
|
427
429
|
font-weight: 400;
|
|
428
430
|
}
|
|
429
431
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o:before {
|
|
430
|
-
content: unquote('"#{ $fa-var-copy }"');
|
|
432
|
+
content: string.unquote('"#{ $fa-var-copy }"');
|
|
431
433
|
}
|
|
432
434
|
|
|
433
435
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o {
|
|
434
|
-
font-family:
|
|
436
|
+
font-family: $fa-style-family;
|
|
435
437
|
font-weight: 400;
|
|
436
438
|
}
|
|
437
439
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o:before {
|
|
438
|
-
content: unquote('"#{ $fa-var-floppy-disk }"');
|
|
440
|
+
content: string.unquote('"#{ $fa-var-floppy-disk }"');
|
|
439
441
|
}
|
|
440
442
|
|
|
441
443
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-save {
|
|
442
|
-
font-family:
|
|
444
|
+
font-family: $fa-style-family;
|
|
443
445
|
font-weight: 400;
|
|
444
446
|
}
|
|
445
447
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-save:before {
|
|
446
|
-
content: unquote('"#{ $fa-var-floppy-disk }"');
|
|
448
|
+
content: string.unquote('"#{ $fa-var-floppy-disk }"');
|
|
447
449
|
}
|
|
448
450
|
|
|
449
451
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-navicon:before {
|
|
450
|
-
content: unquote('"#{ $fa-var-bars }"');
|
|
452
|
+
content: string.unquote('"#{ $fa-var-bars }"');
|
|
451
453
|
}
|
|
452
454
|
|
|
453
455
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-reorder:before {
|
|
454
|
-
content: unquote('"#{ $fa-var-bars }"');
|
|
456
|
+
content: string.unquote('"#{ $fa-var-bars }"');
|
|
455
457
|
}
|
|
456
458
|
|
|
457
459
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-magic:before {
|
|
458
|
-
content: unquote('"#{ $fa-var-wand-magic-sparkles }"');
|
|
460
|
+
content: string.unquote('"#{ $fa-var-wand-magic-sparkles }"');
|
|
459
461
|
}
|
|
460
462
|
|
|
461
463
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest {
|
|
462
|
-
font-family:
|
|
464
|
+
font-family: $fa-style-family;
|
|
463
465
|
font-weight: 400;
|
|
464
466
|
}
|
|
465
467
|
|
|
466
468
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square {
|
|
467
|
-
font-family:
|
|
469
|
+
font-family: $fa-style-family;
|
|
468
470
|
font-weight: 400;
|
|
469
471
|
}
|
|
470
472
|
|
|
471
473
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square {
|
|
472
|
-
font-family:
|
|
474
|
+
font-family: $fa-style-family;
|
|
473
475
|
font-weight: 400;
|
|
474
476
|
}
|
|
475
477
|
|
|
476
478
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus {
|
|
477
|
-
font-family:
|
|
479
|
+
font-family: $fa-style-family;
|
|
478
480
|
font-weight: 400;
|
|
479
481
|
}
|
|
480
482
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus:before {
|
|
481
|
-
content: unquote('"#{ $fa-var-google-plus-g }"');
|
|
483
|
+
content: string.unquote('"#{ $fa-var-google-plus-g }"');
|
|
482
484
|
}
|
|
483
485
|
|
|
484
486
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-money:before {
|
|
485
|
-
content: unquote('"#{ $fa-var-money-bill-1 }"');
|
|
487
|
+
content: string.unquote('"#{ $fa-var-money-bill-1 }"');
|
|
486
488
|
}
|
|
487
489
|
|
|
488
490
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted:before {
|
|
489
|
-
content: unquote('"#{ $fa-var-sort }"');
|
|
491
|
+
content: string.unquote('"#{ $fa-var-sort }"');
|
|
490
492
|
}
|
|
491
493
|
|
|
492
494
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc:before {
|
|
493
|
-
content: unquote('"#{ $fa-var-sort-down }"');
|
|
495
|
+
content: string.unquote('"#{ $fa-var-sort-down }"');
|
|
494
496
|
}
|
|
495
497
|
|
|
496
498
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc:before {
|
|
497
|
-
content: unquote('"#{ $fa-var-sort-up }"');
|
|
499
|
+
content: string.unquote('"#{ $fa-var-sort-up }"');
|
|
498
500
|
}
|
|
499
501
|
|
|
500
502
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin {
|
|
501
|
-
font-family:
|
|
503
|
+
font-family: $fa-style-family;
|
|
502
504
|
font-weight: 400;
|
|
503
505
|
}
|
|
504
506
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin:before {
|
|
505
|
-
content: unquote('"#{ $fa-var-linkedin-in }"');
|
|
507
|
+
content: string.unquote('"#{ $fa-var-linkedin-in }"');
|
|
506
508
|
}
|
|
507
509
|
|
|
508
510
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left:before {
|
|
509
|
-
content: unquote('"#{ $fa-var-arrow-rotate-left }"');
|
|
511
|
+
content: string.unquote('"#{ $fa-var-arrow-rotate-left }"');
|
|
510
512
|
}
|
|
511
513
|
|
|
512
514
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-legal:before {
|
|
513
|
-
content: unquote('"#{ $fa-var-gavel }"');
|
|
515
|
+
content: string.unquote('"#{ $fa-var-gavel }"');
|
|
514
516
|
}
|
|
515
517
|
|
|
516
518
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before {
|
|
517
|
-
content: unquote('"#{ $fa-var-gauge-high }"');
|
|
519
|
+
content: string.unquote('"#{ $fa-var-gauge-high }"');
|
|
518
520
|
}
|
|
519
521
|
|
|
520
522
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before {
|
|
521
|
-
content: unquote('"#{ $fa-var-gauge-high }"');
|
|
523
|
+
content: string.unquote('"#{ $fa-var-gauge-high }"');
|
|
522
524
|
}
|
|
523
525
|
|
|
524
526
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o {
|
|
525
|
-
font-family:
|
|
527
|
+
font-family: $fa-style-family;
|
|
526
528
|
font-weight: 400;
|
|
527
529
|
}
|
|
528
530
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o:before {
|
|
529
|
-
content: unquote('"#{ $fa-var-comment }"');
|
|
531
|
+
content: string.unquote('"#{ $fa-var-comment }"');
|
|
530
532
|
}
|
|
531
533
|
|
|
532
534
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o {
|
|
533
|
-
font-family:
|
|
535
|
+
font-family: $fa-style-family;
|
|
534
536
|
font-weight: 400;
|
|
535
537
|
}
|
|
536
538
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o:before {
|
|
537
|
-
content: unquote('"#{ $fa-var-comments }"');
|
|
539
|
+
content: string.unquote('"#{ $fa-var-comments }"');
|
|
538
540
|
}
|
|
539
541
|
|
|
540
542
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-flash:before {
|
|
541
|
-
content: unquote('"#{ $fa-var-bolt }"');
|
|
543
|
+
content: string.unquote('"#{ $fa-var-bolt }"');
|
|
542
544
|
}
|
|
543
545
|
|
|
544
546
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard:before {
|
|
545
|
-
content: unquote('"#{ $fa-var-paste }"');
|
|
547
|
+
content: string.unquote('"#{ $fa-var-paste }"');
|
|
546
548
|
}
|
|
547
549
|
|
|
548
550
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o {
|
|
549
|
-
font-family:
|
|
551
|
+
font-family: $fa-style-family;
|
|
550
552
|
font-weight: 400;
|
|
551
553
|
}
|
|
552
554
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o:before {
|
|
553
|
-
content: unquote('"#{ $fa-var-lightbulb }"');
|
|
555
|
+
content: string.unquote('"#{ $fa-var-lightbulb }"');
|
|
554
556
|
}
|
|
555
557
|
|
|
556
558
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-exchange:before {
|
|
557
|
-
content: unquote('"#{ $fa-var-right-left }"');
|
|
559
|
+
content: string.unquote('"#{ $fa-var-right-left }"');
|
|
558
560
|
}
|
|
559
561
|
|
|
560
562
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download:before {
|
|
561
|
-
content: unquote('"#{ $fa-var-cloud-arrow-down }"');
|
|
563
|
+
content: string.unquote('"#{ $fa-var-cloud-arrow-down }"');
|
|
562
564
|
}
|
|
563
565
|
|
|
564
566
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload:before {
|
|
565
|
-
content: unquote('"#{ $fa-var-cloud-arrow-up }"');
|
|
567
|
+
content: string.unquote('"#{ $fa-var-cloud-arrow-up }"');
|
|
566
568
|
}
|
|
567
569
|
|
|
568
570
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o {
|
|
569
|
-
font-family:
|
|
571
|
+
font-family: $fa-style-family;
|
|
570
572
|
font-weight: 400;
|
|
571
573
|
}
|
|
572
574
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o:before {
|
|
573
|
-
content: unquote('"#{ $fa-var-bell }"');
|
|
575
|
+
content: string.unquote('"#{ $fa-var-bell }"');
|
|
574
576
|
}
|
|
575
577
|
|
|
576
578
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery:before {
|
|
577
|
-
content: unquote('"#{ $fa-var-utensils }"');
|
|
579
|
+
content: string.unquote('"#{ $fa-var-utensils }"');
|
|
578
580
|
}
|
|
579
581
|
|
|
580
582
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o {
|
|
581
|
-
font-family:
|
|
583
|
+
font-family: $fa-style-family;
|
|
582
584
|
font-weight: 400;
|
|
583
585
|
}
|
|
584
586
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o:before {
|
|
585
|
-
content: unquote('"#{ $fa-var-file-lines }"');
|
|
587
|
+
content: string.unquote('"#{ $fa-var-file-lines }"');
|
|
586
588
|
}
|
|
587
589
|
|
|
588
590
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o {
|
|
589
|
-
font-family:
|
|
591
|
+
font-family: $fa-style-family;
|
|
590
592
|
font-weight: 400;
|
|
591
593
|
}
|
|
592
594
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o:before {
|
|
593
|
-
content: unquote('"#{ $fa-var-building }"');
|
|
595
|
+
content: string.unquote('"#{ $fa-var-building }"');
|
|
594
596
|
}
|
|
595
597
|
|
|
596
598
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o {
|
|
597
|
-
font-family:
|
|
599
|
+
font-family: $fa-style-family;
|
|
598
600
|
font-weight: 400;
|
|
599
601
|
}
|
|
600
602
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o:before {
|
|
601
|
-
content: unquote('"#{ $fa-var-hospital }"');
|
|
603
|
+
content: string.unquote('"#{ $fa-var-hospital }"');
|
|
602
604
|
}
|
|
603
605
|
|
|
604
606
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-tablet:before {
|
|
605
|
-
content: unquote('"#{ $fa-var-tablet-screen-button }"');
|
|
607
|
+
content: string.unquote('"#{ $fa-var-tablet-screen-button }"');
|
|
606
608
|
}
|
|
607
609
|
|
|
608
610
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile:before {
|
|
609
|
-
content: unquote('"#{ $fa-var-mobile-screen-button }"');
|
|
611
|
+
content: string.unquote('"#{ $fa-var-mobile-screen-button }"');
|
|
610
612
|
}
|
|
611
613
|
|
|
612
614
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone:before {
|
|
613
|
-
content: unquote('"#{ $fa-var-mobile-screen-button }"');
|
|
615
|
+
content: string.unquote('"#{ $fa-var-mobile-screen-button }"');
|
|
614
616
|
}
|
|
615
617
|
|
|
616
618
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o {
|
|
617
|
-
font-family:
|
|
619
|
+
font-family: $fa-style-family;
|
|
618
620
|
font-weight: 400;
|
|
619
621
|
}
|
|
620
622
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o:before {
|
|
621
|
-
content: unquote('"#{ $fa-var-circle }"');
|
|
623
|
+
content: string.unquote('"#{ $fa-var-circle }"');
|
|
622
624
|
}
|
|
623
625
|
|
|
624
626
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply:before {
|
|
625
|
-
content: unquote('"#{ $fa-var-reply }"');
|
|
627
|
+
content: string.unquote('"#{ $fa-var-reply }"');
|
|
626
628
|
}
|
|
627
629
|
|
|
628
630
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-github-alt {
|
|
629
|
-
font-family:
|
|
631
|
+
font-family: $fa-style-family;
|
|
630
632
|
font-weight: 400;
|
|
631
633
|
}
|
|
632
634
|
|
|
633
635
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o {
|
|
634
|
-
font-family:
|
|
636
|
+
font-family: $fa-style-family;
|
|
635
637
|
font-weight: 400;
|
|
636
638
|
}
|
|
637
639
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o:before {
|
|
638
|
-
content: unquote('"#{ $fa-var-folder }"');
|
|
640
|
+
content: string.unquote('"#{ $fa-var-folder }"');
|
|
639
641
|
}
|
|
640
642
|
|
|
641
643
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o {
|
|
642
|
-
font-family:
|
|
644
|
+
font-family: $fa-style-family;
|
|
643
645
|
font-weight: 400;
|
|
644
646
|
}
|
|
645
647
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o:before {
|
|
646
|
-
content: unquote('"#{ $fa-var-folder-open }"');
|
|
648
|
+
content: string.unquote('"#{ $fa-var-folder-open }"');
|
|
647
649
|
}
|
|
648
650
|
|
|
649
651
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o {
|
|
650
|
-
font-family:
|
|
652
|
+
font-family: $fa-style-family;
|
|
651
653
|
font-weight: 400;
|
|
652
654
|
}
|
|
653
655
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o:before {
|
|
654
|
-
content: unquote('"#{ $fa-var-face-smile }"');
|
|
656
|
+
content: string.unquote('"#{ $fa-var-face-smile }"');
|
|
655
657
|
}
|
|
656
658
|
|
|
657
659
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o {
|
|
658
|
-
font-family:
|
|
660
|
+
font-family: $fa-style-family;
|
|
659
661
|
font-weight: 400;
|
|
660
662
|
}
|
|
661
663
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o:before {
|
|
662
|
-
content: unquote('"#{ $fa-var-face-frown }"');
|
|
664
|
+
content: string.unquote('"#{ $fa-var-face-frown }"');
|
|
663
665
|
}
|
|
664
666
|
|
|
665
667
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o {
|
|
666
|
-
font-family:
|
|
668
|
+
font-family: $fa-style-family;
|
|
667
669
|
font-weight: 400;
|
|
668
670
|
}
|
|
669
671
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o:before {
|
|
670
|
-
content: unquote('"#{ $fa-var-face-meh }"');
|
|
672
|
+
content: string.unquote('"#{ $fa-var-face-meh }"');
|
|
671
673
|
}
|
|
672
674
|
|
|
673
675
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o {
|
|
674
|
-
font-family:
|
|
676
|
+
font-family: $fa-style-family;
|
|
675
677
|
font-weight: 400;
|
|
676
678
|
}
|
|
677
679
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o:before {
|
|
678
|
-
content: unquote('"#{ $fa-var-keyboard }"');
|
|
680
|
+
content: string.unquote('"#{ $fa-var-keyboard }"');
|
|
679
681
|
}
|
|
680
682
|
|
|
681
683
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o {
|
|
682
|
-
font-family:
|
|
684
|
+
font-family: $fa-style-family;
|
|
683
685
|
font-weight: 400;
|
|
684
686
|
}
|
|
685
687
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o:before {
|
|
686
|
-
content: unquote('"#{ $fa-var-flag }"');
|
|
688
|
+
content: string.unquote('"#{ $fa-var-flag }"');
|
|
687
689
|
}
|
|
688
690
|
|
|
689
691
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all:before {
|
|
690
|
-
content: unquote('"#{ $fa-var-reply-all }"');
|
|
692
|
+
content: string.unquote('"#{ $fa-var-reply-all }"');
|
|
691
693
|
}
|
|
692
694
|
|
|
693
695
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o {
|
|
694
|
-
font-family:
|
|
696
|
+
font-family: $fa-style-family;
|
|
695
697
|
font-weight: 400;
|
|
696
698
|
}
|
|
697
699
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o:before {
|
|
698
|
-
content: unquote('"#{ $fa-var-star-half-stroke }"');
|
|
700
|
+
content: string.unquote('"#{ $fa-var-star-half-stroke }"');
|
|
699
701
|
}
|
|
700
702
|
|
|
701
703
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty {
|
|
702
|
-
font-family:
|
|
704
|
+
font-family: $fa-style-family;
|
|
703
705
|
font-weight: 400;
|
|
704
706
|
}
|
|
705
707
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty:before {
|
|
706
|
-
content: unquote('"#{ $fa-var-star-half-stroke }"');
|
|
708
|
+
content: string.unquote('"#{ $fa-var-star-half-stroke }"');
|
|
707
709
|
}
|
|
708
710
|
|
|
709
711
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full {
|
|
710
|
-
font-family:
|
|
712
|
+
font-family: $fa-style-family;
|
|
711
713
|
font-weight: 400;
|
|
712
714
|
}
|
|
713
715
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full:before {
|
|
714
|
-
content: unquote('"#{ $fa-var-star-half-stroke }"');
|
|
716
|
+
content: string.unquote('"#{ $fa-var-star-half-stroke }"');
|
|
715
717
|
}
|
|
716
718
|
|
|
717
719
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork:before {
|
|
718
|
-
content: unquote('"#{ $fa-var-code-branch }"');
|
|
720
|
+
content: string.unquote('"#{ $fa-var-code-branch }"');
|
|
719
721
|
}
|
|
720
722
|
|
|
721
723
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken:before {
|
|
722
|
-
content: unquote('"#{ $fa-var-link-slash }"');
|
|
724
|
+
content: string.unquote('"#{ $fa-var-link-slash }"');
|
|
723
725
|
}
|
|
724
726
|
|
|
725
727
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-unlink:before {
|
|
726
|
-
content: unquote('"#{ $fa-var-link-slash }"');
|
|
728
|
+
content: string.unquote('"#{ $fa-var-link-slash }"');
|
|
727
729
|
}
|
|
728
730
|
|
|
729
731
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o {
|
|
730
|
-
font-family:
|
|
732
|
+
font-family: $fa-style-family;
|
|
731
733
|
font-weight: 400;
|
|
732
734
|
}
|
|
733
735
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o:before {
|
|
734
|
-
content: unquote('"#{ $fa-var-calendar }"');
|
|
736
|
+
content: string.unquote('"#{ $fa-var-calendar }"');
|
|
735
737
|
}
|
|
736
738
|
|
|
737
739
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-maxcdn {
|
|
738
|
-
font-family:
|
|
740
|
+
font-family: $fa-style-family;
|
|
739
741
|
font-weight: 400;
|
|
740
742
|
}
|
|
741
743
|
|
|
742
744
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-html5 {
|
|
743
|
-
font-family:
|
|
745
|
+
font-family: $fa-style-family;
|
|
744
746
|
font-weight: 400;
|
|
745
747
|
}
|
|
746
748
|
|
|
747
749
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-css3 {
|
|
748
|
-
font-family:
|
|
750
|
+
font-family: $fa-style-family;
|
|
749
751
|
font-weight: 400;
|
|
750
752
|
}
|
|
751
753
|
|
|
752
754
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-unlock-alt:before {
|
|
753
|
-
content: unquote('"#{ $fa-var-unlock }"');
|
|
755
|
+
content: string.unquote('"#{ $fa-var-unlock }"');
|
|
754
756
|
}
|
|
755
757
|
|
|
756
758
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o {
|
|
757
|
-
font-family:
|
|
759
|
+
font-family: $fa-style-family;
|
|
758
760
|
font-weight: 400;
|
|
759
761
|
}
|
|
760
762
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o:before {
|
|
761
|
-
content: unquote('"#{ $fa-var-square-minus }"');
|
|
763
|
+
content: string.unquote('"#{ $fa-var-square-minus }"');
|
|
762
764
|
}
|
|
763
765
|
|
|
764
766
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-level-up:before {
|
|
765
|
-
content: unquote('"#{ $fa-var-turn-up }"');
|
|
767
|
+
content: string.unquote('"#{ $fa-var-turn-up }"');
|
|
766
768
|
}
|
|
767
769
|
|
|
768
770
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-level-down:before {
|
|
769
|
-
content: unquote('"#{ $fa-var-turn-down }"');
|
|
771
|
+
content: string.unquote('"#{ $fa-var-turn-down }"');
|
|
770
772
|
}
|
|
771
773
|
|
|
772
774
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square:before {
|
|
773
|
-
content: unquote('"#{ $fa-var-square-pen }"');
|
|
775
|
+
content: string.unquote('"#{ $fa-var-square-pen }"');
|
|
774
776
|
}
|
|
775
777
|
|
|
776
778
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square:before {
|
|
777
|
-
content: unquote('"#{ $fa-var-square-up-right }"');
|
|
779
|
+
content: string.unquote('"#{ $fa-var-square-up-right }"');
|
|
778
780
|
}
|
|
779
781
|
|
|
780
782
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-compass {
|
|
781
|
-
font-family:
|
|
783
|
+
font-family: $fa-style-family;
|
|
782
784
|
font-weight: 400;
|
|
783
785
|
}
|
|
784
786
|
|
|
785
787
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down {
|
|
786
|
-
font-family:
|
|
788
|
+
font-family: $fa-style-family;
|
|
787
789
|
font-weight: 400;
|
|
788
790
|
}
|
|
789
791
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down:before {
|
|
790
|
-
content: unquote('"#{ $fa-var-square-caret-down }"');
|
|
792
|
+
content: string.unquote('"#{ $fa-var-square-caret-down }"');
|
|
791
793
|
}
|
|
792
794
|
|
|
793
795
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down {
|
|
794
|
-
font-family:
|
|
796
|
+
font-family: $fa-style-family;
|
|
795
797
|
font-weight: 400;
|
|
796
798
|
}
|
|
797
799
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down:before {
|
|
798
|
-
content: unquote('"#{ $fa-var-square-caret-down }"');
|
|
800
|
+
content: string.unquote('"#{ $fa-var-square-caret-down }"');
|
|
799
801
|
}
|
|
800
802
|
|
|
801
803
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up {
|
|
802
|
-
font-family:
|
|
804
|
+
font-family: $fa-style-family;
|
|
803
805
|
font-weight: 400;
|
|
804
806
|
}
|
|
805
807
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up:before {
|
|
806
|
-
content: unquote('"#{ $fa-var-square-caret-up }"');
|
|
808
|
+
content: string.unquote('"#{ $fa-var-square-caret-up }"');
|
|
807
809
|
}
|
|
808
810
|
|
|
809
811
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up {
|
|
810
|
-
font-family:
|
|
812
|
+
font-family: $fa-style-family;
|
|
811
813
|
font-weight: 400;
|
|
812
814
|
}
|
|
813
815
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up:before {
|
|
814
|
-
content: unquote('"#{ $fa-var-square-caret-up }"');
|
|
816
|
+
content: string.unquote('"#{ $fa-var-square-caret-up }"');
|
|
815
817
|
}
|
|
816
818
|
|
|
817
819
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right {
|
|
818
|
-
font-family:
|
|
820
|
+
font-family: $fa-style-family;
|
|
819
821
|
font-weight: 400;
|
|
820
822
|
}
|
|
821
823
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right:before {
|
|
822
|
-
content: unquote('"#{ $fa-var-square-caret-right }"');
|
|
824
|
+
content: string.unquote('"#{ $fa-var-square-caret-right }"');
|
|
823
825
|
}
|
|
824
826
|
|
|
825
827
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right {
|
|
826
|
-
font-family:
|
|
828
|
+
font-family: $fa-style-family;
|
|
827
829
|
font-weight: 400;
|
|
828
830
|
}
|
|
829
831
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right:before {
|
|
830
|
-
content: unquote('"#{ $fa-var-square-caret-right }"');
|
|
832
|
+
content: string.unquote('"#{ $fa-var-square-caret-right }"');
|
|
831
833
|
}
|
|
832
834
|
|
|
833
835
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-eur:before {
|
|
834
|
-
content: unquote('"#{ $fa-var-euro-sign }"');
|
|
836
|
+
content: string.unquote('"#{ $fa-var-euro-sign }"');
|
|
835
837
|
}
|
|
836
838
|
|
|
837
839
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-euro:before {
|
|
838
|
-
content: unquote('"#{ $fa-var-euro-sign }"');
|
|
840
|
+
content: string.unquote('"#{ $fa-var-euro-sign }"');
|
|
839
841
|
}
|
|
840
842
|
|
|
841
843
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gbp:before {
|
|
842
|
-
content: unquote('"#{ $fa-var-sterling-sign }"');
|
|
844
|
+
content: string.unquote('"#{ $fa-var-sterling-sign }"');
|
|
843
845
|
}
|
|
844
846
|
|
|
845
847
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-usd:before {
|
|
846
|
-
content: unquote('"#{ $fa-var-dollar-sign }"');
|
|
848
|
+
content: string.unquote('"#{ $fa-var-dollar-sign }"');
|
|
847
849
|
}
|
|
848
850
|
|
|
849
851
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dollar:before {
|
|
850
|
-
content: unquote('"#{ $fa-var-dollar-sign }"');
|
|
852
|
+
content: string.unquote('"#{ $fa-var-dollar-sign }"');
|
|
851
853
|
}
|
|
852
854
|
|
|
853
855
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-inr:before {
|
|
854
|
-
content: unquote('"#{ $fa-var-indian-rupee-sign }"');
|
|
856
|
+
content: string.unquote('"#{ $fa-var-indian-rupee-sign }"');
|
|
855
857
|
}
|
|
856
858
|
|
|
857
859
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-rupee:before {
|
|
858
|
-
content: unquote('"#{ $fa-var-indian-rupee-sign }"');
|
|
860
|
+
content: string.unquote('"#{ $fa-var-indian-rupee-sign }"');
|
|
859
861
|
}
|
|
860
862
|
|
|
861
863
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-jpy:before {
|
|
862
|
-
content: unquote('"#{ $fa-var-yen-sign }"');
|
|
864
|
+
content: string.unquote('"#{ $fa-var-yen-sign }"');
|
|
863
865
|
}
|
|
864
866
|
|
|
865
867
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cny:before {
|
|
866
|
-
content: unquote('"#{ $fa-var-yen-sign }"');
|
|
868
|
+
content: string.unquote('"#{ $fa-var-yen-sign }"');
|
|
867
869
|
}
|
|
868
870
|
|
|
869
871
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-rmb:before {
|
|
870
|
-
content: unquote('"#{ $fa-var-yen-sign }"');
|
|
872
|
+
content: string.unquote('"#{ $fa-var-yen-sign }"');
|
|
871
873
|
}
|
|
872
874
|
|
|
873
875
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yen:before {
|
|
874
|
-
content: unquote('"#{ $fa-var-yen-sign }"');
|
|
876
|
+
content: string.unquote('"#{ $fa-var-yen-sign }"');
|
|
875
877
|
}
|
|
876
878
|
|
|
877
879
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-rub:before {
|
|
878
|
-
content: unquote('"#{ $fa-var-ruble-sign }"');
|
|
880
|
+
content: string.unquote('"#{ $fa-var-ruble-sign }"');
|
|
879
881
|
}
|
|
880
882
|
|
|
881
883
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ruble:before {
|
|
882
|
-
content: unquote('"#{ $fa-var-ruble-sign }"');
|
|
884
|
+
content: string.unquote('"#{ $fa-var-ruble-sign }"');
|
|
883
885
|
}
|
|
884
886
|
|
|
885
887
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-rouble:before {
|
|
886
|
-
content: unquote('"#{ $fa-var-ruble-sign }"');
|
|
888
|
+
content: string.unquote('"#{ $fa-var-ruble-sign }"');
|
|
887
889
|
}
|
|
888
890
|
|
|
889
891
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-krw:before {
|
|
890
|
-
content: unquote('"#{ $fa-var-won-sign }"');
|
|
892
|
+
content: string.unquote('"#{ $fa-var-won-sign }"');
|
|
891
893
|
}
|
|
892
894
|
|
|
893
895
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-won:before {
|
|
894
|
-
content: unquote('"#{ $fa-var-won-sign }"');
|
|
896
|
+
content: string.unquote('"#{ $fa-var-won-sign }"');
|
|
895
897
|
}
|
|
896
898
|
|
|
897
899
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-btc {
|
|
898
|
-
font-family:
|
|
900
|
+
font-family: $fa-style-family;
|
|
899
901
|
font-weight: 400;
|
|
900
902
|
}
|
|
901
903
|
|
|
902
904
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin {
|
|
903
|
-
font-family:
|
|
905
|
+
font-family: $fa-style-family;
|
|
904
906
|
font-weight: 400;
|
|
905
907
|
}
|
|
906
908
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin:before {
|
|
907
|
-
content: unquote('"#{ $fa-var-btc }"');
|
|
909
|
+
content: string.unquote('"#{ $fa-var-btc }"');
|
|
908
910
|
}
|
|
909
911
|
|
|
910
912
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text:before {
|
|
911
|
-
content: unquote('"#{ $fa-var-file-lines }"');
|
|
913
|
+
content: string.unquote('"#{ $fa-var-file-lines }"');
|
|
912
914
|
}
|
|
913
915
|
|
|
914
916
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before {
|
|
915
|
-
content: unquote('"#{ $fa-var-arrow-down-a-z }"');
|
|
917
|
+
content: string.unquote('"#{ $fa-var-arrow-down-a-z }"');
|
|
916
918
|
}
|
|
917
919
|
|
|
918
920
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before {
|
|
919
|
-
content: unquote('"#{ $fa-var-arrow-down-z-a }"');
|
|
921
|
+
content: string.unquote('"#{ $fa-var-arrow-down-z-a }"');
|
|
920
922
|
}
|
|
921
923
|
|
|
922
924
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before {
|
|
923
|
-
content: unquote('"#{ $fa-var-arrow-down-short-wide }"');
|
|
925
|
+
content: string.unquote('"#{ $fa-var-arrow-down-short-wide }"');
|
|
924
926
|
}
|
|
925
927
|
|
|
926
928
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before {
|
|
927
|
-
content: unquote('"#{ $fa-var-arrow-down-wide-short }"');
|
|
929
|
+
content: string.unquote('"#{ $fa-var-arrow-down-wide-short }"');
|
|
928
930
|
}
|
|
929
931
|
|
|
930
932
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before {
|
|
931
|
-
content: unquote('"#{ $fa-var-arrow-down-1-9 }"');
|
|
933
|
+
content: string.unquote('"#{ $fa-var-arrow-down-1-9 }"');
|
|
932
934
|
}
|
|
933
935
|
|
|
934
936
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before {
|
|
935
|
-
content: unquote('"#{ $fa-var-arrow-down-9-1 }"');
|
|
937
|
+
content: string.unquote('"#{ $fa-var-arrow-down-9-1 }"');
|
|
936
938
|
}
|
|
937
939
|
|
|
938
940
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square {
|
|
939
|
-
font-family:
|
|
941
|
+
font-family: $fa-style-family;
|
|
940
942
|
font-weight: 400;
|
|
941
943
|
}
|
|
942
944
|
|
|
943
945
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube {
|
|
944
|
-
font-family:
|
|
946
|
+
font-family: $fa-style-family;
|
|
945
947
|
font-weight: 400;
|
|
946
948
|
}
|
|
947
949
|
|
|
948
950
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-xing {
|
|
949
|
-
font-family:
|
|
951
|
+
font-family: $fa-style-family;
|
|
950
952
|
font-weight: 400;
|
|
951
953
|
}
|
|
952
954
|
|
|
953
955
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square {
|
|
954
|
-
font-family:
|
|
956
|
+
font-family: $fa-style-family;
|
|
955
957
|
font-weight: 400;
|
|
956
958
|
}
|
|
957
959
|
|
|
958
960
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play {
|
|
959
|
-
font-family:
|
|
961
|
+
font-family: $fa-style-family;
|
|
960
962
|
font-weight: 400;
|
|
961
963
|
}
|
|
962
964
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play:before {
|
|
963
|
-
content: unquote('"#{ $fa-var-youtube }"');
|
|
965
|
+
content: string.unquote('"#{ $fa-var-youtube }"');
|
|
964
966
|
}
|
|
965
967
|
|
|
966
968
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dropbox {
|
|
967
|
-
font-family:
|
|
969
|
+
font-family: $fa-style-family;
|
|
968
970
|
font-weight: 400;
|
|
969
971
|
}
|
|
970
972
|
|
|
971
973
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-overflow {
|
|
972
|
-
font-family:
|
|
974
|
+
font-family: $fa-style-family;
|
|
973
975
|
font-weight: 400;
|
|
974
976
|
}
|
|
975
977
|
|
|
976
978
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-instagram {
|
|
977
|
-
font-family:
|
|
979
|
+
font-family: $fa-style-family;
|
|
978
980
|
font-weight: 400;
|
|
979
981
|
}
|
|
980
982
|
|
|
981
983
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-flickr {
|
|
982
|
-
font-family:
|
|
984
|
+
font-family: $fa-style-family;
|
|
983
985
|
font-weight: 400;
|
|
984
986
|
}
|
|
985
987
|
|
|
986
988
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-adn {
|
|
987
|
-
font-family:
|
|
989
|
+
font-family: $fa-style-family;
|
|
988
990
|
font-weight: 400;
|
|
989
991
|
}
|
|
990
992
|
|
|
991
993
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket {
|
|
992
|
-
font-family:
|
|
994
|
+
font-family: $fa-style-family;
|
|
993
995
|
font-weight: 400;
|
|
994
996
|
}
|
|
995
997
|
|
|
996
998
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square {
|
|
997
|
-
font-family:
|
|
999
|
+
font-family: $fa-style-family;
|
|
998
1000
|
font-weight: 400;
|
|
999
1001
|
}
|
|
1000
1002
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square:before {
|
|
1001
|
-
content: unquote('"#{ $fa-var-bitbucket }"');
|
|
1003
|
+
content: string.unquote('"#{ $fa-var-bitbucket }"');
|
|
1002
1004
|
}
|
|
1003
1005
|
|
|
1004
1006
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr {
|
|
1005
|
-
font-family:
|
|
1007
|
+
font-family: $fa-style-family;
|
|
1006
1008
|
font-weight: 400;
|
|
1007
1009
|
}
|
|
1008
1010
|
|
|
1009
1011
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square {
|
|
1010
|
-
font-family:
|
|
1012
|
+
font-family: $fa-style-family;
|
|
1011
1013
|
font-weight: 400;
|
|
1012
1014
|
}
|
|
1013
1015
|
|
|
1014
1016
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down:before {
|
|
1015
|
-
content: unquote('"#{ $fa-var-down-long }"');
|
|
1017
|
+
content: string.unquote('"#{ $fa-var-down-long }"');
|
|
1016
1018
|
}
|
|
1017
1019
|
|
|
1018
1020
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up:before {
|
|
1019
|
-
content: unquote('"#{ $fa-var-up-long }"');
|
|
1021
|
+
content: string.unquote('"#{ $fa-var-up-long }"');
|
|
1020
1022
|
}
|
|
1021
1023
|
|
|
1022
1024
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left:before {
|
|
1023
|
-
content: unquote('"#{ $fa-var-left-long }"');
|
|
1025
|
+
content: string.unquote('"#{ $fa-var-left-long }"');
|
|
1024
1026
|
}
|
|
1025
1027
|
|
|
1026
1028
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right:before {
|
|
1027
|
-
content: unquote('"#{ $fa-var-right-long }"');
|
|
1029
|
+
content: string.unquote('"#{ $fa-var-right-long }"');
|
|
1028
1030
|
}
|
|
1029
1031
|
|
|
1030
1032
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-apple {
|
|
1031
|
-
font-family:
|
|
1033
|
+
font-family: $fa-style-family;
|
|
1032
1034
|
font-weight: 400;
|
|
1033
1035
|
}
|
|
1034
1036
|
|
|
1035
1037
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-windows {
|
|
1036
|
-
font-family:
|
|
1038
|
+
font-family: $fa-style-family;
|
|
1037
1039
|
font-weight: 400;
|
|
1038
1040
|
}
|
|
1039
1041
|
|
|
1040
1042
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-android {
|
|
1041
|
-
font-family:
|
|
1043
|
+
font-family: $fa-style-family;
|
|
1042
1044
|
font-weight: 400;
|
|
1043
1045
|
}
|
|
1044
1046
|
|
|
1045
1047
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linux {
|
|
1046
|
-
font-family:
|
|
1048
|
+
font-family: $fa-style-family;
|
|
1047
1049
|
font-weight: 400;
|
|
1048
1050
|
}
|
|
1049
1051
|
|
|
1050
1052
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dribbble {
|
|
1051
|
-
font-family:
|
|
1053
|
+
font-family: $fa-style-family;
|
|
1052
1054
|
font-weight: 400;
|
|
1053
1055
|
}
|
|
1054
1056
|
|
|
1055
1057
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-skype {
|
|
1056
|
-
font-family:
|
|
1058
|
+
font-family: $fa-style-family;
|
|
1057
1059
|
font-weight: 400;
|
|
1058
1060
|
}
|
|
1059
1061
|
|
|
1060
1062
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-foursquare {
|
|
1061
|
-
font-family:
|
|
1063
|
+
font-family: $fa-style-family;
|
|
1062
1064
|
font-weight: 400;
|
|
1063
1065
|
}
|
|
1064
1066
|
|
|
1065
1067
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-trello {
|
|
1066
|
-
font-family:
|
|
1068
|
+
font-family: $fa-style-family;
|
|
1067
1069
|
font-weight: 400;
|
|
1068
1070
|
}
|
|
1069
1071
|
|
|
1070
1072
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gratipay {
|
|
1071
|
-
font-family:
|
|
1073
|
+
font-family: $fa-style-family;
|
|
1072
1074
|
font-weight: 400;
|
|
1073
1075
|
}
|
|
1074
1076
|
|
|
1075
1077
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip {
|
|
1076
|
-
font-family:
|
|
1078
|
+
font-family: $fa-style-family;
|
|
1077
1079
|
font-weight: 400;
|
|
1078
1080
|
}
|
|
1079
1081
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip:before {
|
|
1080
|
-
content: unquote('"#{ $fa-var-gratipay }"');
|
|
1082
|
+
content: string.unquote('"#{ $fa-var-gratipay }"');
|
|
1081
1083
|
}
|
|
1082
1084
|
|
|
1083
1085
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o {
|
|
1084
|
-
font-family:
|
|
1086
|
+
font-family: $fa-style-family;
|
|
1085
1087
|
font-weight: 400;
|
|
1086
1088
|
}
|
|
1087
1089
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o:before {
|
|
1088
|
-
content: unquote('"#{ $fa-var-sun }"');
|
|
1090
|
+
content: string.unquote('"#{ $fa-var-sun }"');
|
|
1089
1091
|
}
|
|
1090
1092
|
|
|
1091
1093
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o {
|
|
1092
|
-
font-family:
|
|
1094
|
+
font-family: $fa-style-family;
|
|
1093
1095
|
font-weight: 400;
|
|
1094
1096
|
}
|
|
1095
1097
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o:before {
|
|
1096
|
-
content: unquote('"#{ $fa-var-moon }"');
|
|
1098
|
+
content: string.unquote('"#{ $fa-var-moon }"');
|
|
1097
1099
|
}
|
|
1098
1100
|
|
|
1099
1101
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vk {
|
|
1100
|
-
font-family:
|
|
1102
|
+
font-family: $fa-style-family;
|
|
1101
1103
|
font-weight: 400;
|
|
1102
1104
|
}
|
|
1103
1105
|
|
|
1104
1106
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-weibo {
|
|
1105
|
-
font-family:
|
|
1107
|
+
font-family: $fa-style-family;
|
|
1106
1108
|
font-weight: 400;
|
|
1107
1109
|
}
|
|
1108
1110
|
|
|
1109
1111
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-renren {
|
|
1110
|
-
font-family:
|
|
1112
|
+
font-family: $fa-style-family;
|
|
1111
1113
|
font-weight: 400;
|
|
1112
1114
|
}
|
|
1113
1115
|
|
|
1114
1116
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pagelines {
|
|
1115
|
-
font-family:
|
|
1117
|
+
font-family: $fa-style-family;
|
|
1116
1118
|
font-weight: 400;
|
|
1117
1119
|
}
|
|
1118
1120
|
|
|
1119
1121
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-exchange {
|
|
1120
|
-
font-family:
|
|
1122
|
+
font-family: $fa-style-family;
|
|
1121
1123
|
font-weight: 400;
|
|
1122
1124
|
}
|
|
1123
1125
|
|
|
1124
1126
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right {
|
|
1125
|
-
font-family:
|
|
1127
|
+
font-family: $fa-style-family;
|
|
1126
1128
|
font-weight: 400;
|
|
1127
1129
|
}
|
|
1128
1130
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right:before {
|
|
1129
|
-
content: unquote('"#{ $fa-var-circle-right }"');
|
|
1131
|
+
content: string.unquote('"#{ $fa-var-circle-right }"');
|
|
1130
1132
|
}
|
|
1131
1133
|
|
|
1132
1134
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left {
|
|
1133
|
-
font-family:
|
|
1135
|
+
font-family: $fa-style-family;
|
|
1134
1136
|
font-weight: 400;
|
|
1135
1137
|
}
|
|
1136
1138
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left:before {
|
|
1137
|
-
content: unquote('"#{ $fa-var-circle-left }"');
|
|
1139
|
+
content: string.unquote('"#{ $fa-var-circle-left }"');
|
|
1138
1140
|
}
|
|
1139
1141
|
|
|
1140
1142
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left {
|
|
1141
|
-
font-family:
|
|
1143
|
+
font-family: $fa-style-family;
|
|
1142
1144
|
font-weight: 400;
|
|
1143
1145
|
}
|
|
1144
1146
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left:before {
|
|
1145
|
-
content: unquote('"#{ $fa-var-square-caret-left }"');
|
|
1147
|
+
content: string.unquote('"#{ $fa-var-square-caret-left }"');
|
|
1146
1148
|
}
|
|
1147
1149
|
|
|
1148
1150
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left {
|
|
1149
|
-
font-family:
|
|
1151
|
+
font-family: $fa-style-family;
|
|
1150
1152
|
font-weight: 400;
|
|
1151
1153
|
}
|
|
1152
1154
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left:before {
|
|
1153
|
-
content: unquote('"#{ $fa-var-square-caret-left }"');
|
|
1155
|
+
content: string.unquote('"#{ $fa-var-square-caret-left }"');
|
|
1154
1156
|
}
|
|
1155
1157
|
|
|
1156
1158
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o {
|
|
1157
|
-
font-family:
|
|
1159
|
+
font-family: $fa-style-family;
|
|
1158
1160
|
font-weight: 400;
|
|
1159
1161
|
}
|
|
1160
1162
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o:before {
|
|
1161
|
-
content: unquote('"#{ $fa-var-circle-dot }"');
|
|
1163
|
+
content: string.unquote('"#{ $fa-var-circle-dot }"');
|
|
1162
1164
|
}
|
|
1163
1165
|
|
|
1164
1166
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square {
|
|
1165
|
-
font-family:
|
|
1167
|
+
font-family: $fa-style-family;
|
|
1166
1168
|
font-weight: 400;
|
|
1167
1169
|
}
|
|
1168
1170
|
|
|
1169
1171
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-try:before {
|
|
1170
|
-
content: unquote('"#{ $fa-var-turkish-lira-sign }"');
|
|
1172
|
+
content: string.unquote('"#{ $fa-var-turkish-lira-sign }"');
|
|
1171
1173
|
}
|
|
1172
1174
|
|
|
1173
1175
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira:before {
|
|
1174
|
-
content: unquote('"#{ $fa-var-turkish-lira-sign }"');
|
|
1176
|
+
content: string.unquote('"#{ $fa-var-turkish-lira-sign }"');
|
|
1175
1177
|
}
|
|
1176
1178
|
|
|
1177
1179
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o {
|
|
1178
|
-
font-family:
|
|
1180
|
+
font-family: $fa-style-family;
|
|
1179
1181
|
font-weight: 400;
|
|
1180
1182
|
}
|
|
1181
1183
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o:before {
|
|
1182
|
-
content: unquote('"#{ $fa-var-square-plus }"');
|
|
1184
|
+
content: string.unquote('"#{ $fa-var-square-plus }"');
|
|
1183
1185
|
}
|
|
1184
1186
|
|
|
1185
1187
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-slack {
|
|
1186
|
-
font-family:
|
|
1188
|
+
font-family: $fa-style-family;
|
|
1187
1189
|
font-weight: 400;
|
|
1188
1190
|
}
|
|
1189
1191
|
|
|
1190
1192
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wordpress {
|
|
1191
|
-
font-family:
|
|
1193
|
+
font-family: $fa-style-family;
|
|
1192
1194
|
font-weight: 400;
|
|
1193
1195
|
}
|
|
1194
1196
|
|
|
1195
1197
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-openid {
|
|
1196
|
-
font-family:
|
|
1198
|
+
font-family: $fa-style-family;
|
|
1197
1199
|
font-weight: 400;
|
|
1198
1200
|
}
|
|
1199
1201
|
|
|
1200
1202
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before {
|
|
1201
|
-
content: unquote('"#{ $fa-var-building-columns }"');
|
|
1203
|
+
content: string.unquote('"#{ $fa-var-building-columns }"');
|
|
1202
1204
|
}
|
|
1203
1205
|
|
|
1204
1206
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before {
|
|
1205
|
-
content: unquote('"#{ $fa-var-building-columns }"');
|
|
1207
|
+
content: string.unquote('"#{ $fa-var-building-columns }"');
|
|
1206
1208
|
}
|
|
1207
1209
|
|
|
1208
1210
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board:before {
|
|
1209
|
-
content: unquote('"#{ $fa-var-graduation-cap }"');
|
|
1211
|
+
content: string.unquote('"#{ $fa-var-graduation-cap }"');
|
|
1210
1212
|
}
|
|
1211
1213
|
|
|
1212
1214
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yahoo {
|
|
1213
|
-
font-family:
|
|
1215
|
+
font-family: $fa-style-family;
|
|
1214
1216
|
font-weight: 400;
|
|
1215
1217
|
}
|
|
1216
1218
|
|
|
1217
1219
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google {
|
|
1218
|
-
font-family:
|
|
1220
|
+
font-family: $fa-style-family;
|
|
1219
1221
|
font-weight: 400;
|
|
1220
1222
|
}
|
|
1221
1223
|
|
|
1222
1224
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit {
|
|
1223
|
-
font-family:
|
|
1225
|
+
font-family: $fa-style-family;
|
|
1224
1226
|
font-weight: 400;
|
|
1225
1227
|
}
|
|
1226
1228
|
|
|
1227
1229
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square {
|
|
1228
|
-
font-family:
|
|
1230
|
+
font-family: $fa-style-family;
|
|
1229
1231
|
font-weight: 400;
|
|
1230
1232
|
}
|
|
1231
1233
|
|
|
1232
1234
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon-circle {
|
|
1233
|
-
font-family:
|
|
1235
|
+
font-family: $fa-style-family;
|
|
1234
1236
|
font-weight: 400;
|
|
1235
1237
|
}
|
|
1236
1238
|
|
|
1237
1239
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon {
|
|
1238
|
-
font-family:
|
|
1240
|
+
font-family: $fa-style-family;
|
|
1239
1241
|
font-weight: 400;
|
|
1240
1242
|
}
|
|
1241
1243
|
|
|
1242
1244
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-delicious {
|
|
1243
|
-
font-family:
|
|
1245
|
+
font-family: $fa-style-family;
|
|
1244
1246
|
font-weight: 400;
|
|
1245
1247
|
}
|
|
1246
1248
|
|
|
1247
1249
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-digg {
|
|
1248
|
-
font-family:
|
|
1250
|
+
font-family: $fa-style-family;
|
|
1249
1251
|
font-weight: 400;
|
|
1250
1252
|
}
|
|
1251
1253
|
|
|
1252
1254
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-pp {
|
|
1253
|
-
font-family:
|
|
1255
|
+
font-family: $fa-style-family;
|
|
1254
1256
|
font-weight: 400;
|
|
1255
1257
|
}
|
|
1256
1258
|
|
|
1257
1259
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-alt {
|
|
1258
|
-
font-family:
|
|
1260
|
+
font-family: $fa-style-family;
|
|
1259
1261
|
font-weight: 400;
|
|
1260
1262
|
}
|
|
1261
1263
|
|
|
1262
1264
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-drupal {
|
|
1263
|
-
font-family:
|
|
1265
|
+
font-family: $fa-style-family;
|
|
1264
1266
|
font-weight: 400;
|
|
1265
1267
|
}
|
|
1266
1268
|
|
|
1267
1269
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-joomla {
|
|
1268
|
-
font-family:
|
|
1270
|
+
font-family: $fa-style-family;
|
|
1269
1271
|
font-weight: 400;
|
|
1270
1272
|
}
|
|
1271
1273
|
|
|
1272
1274
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-behance {
|
|
1273
|
-
font-family:
|
|
1275
|
+
font-family: $fa-style-family;
|
|
1274
1276
|
font-weight: 400;
|
|
1275
1277
|
}
|
|
1276
1278
|
|
|
1277
1279
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square {
|
|
1278
|
-
font-family:
|
|
1280
|
+
font-family: $fa-style-family;
|
|
1279
1281
|
font-weight: 400;
|
|
1280
1282
|
}
|
|
1281
1283
|
|
|
1282
1284
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-steam {
|
|
1283
|
-
font-family:
|
|
1285
|
+
font-family: $fa-style-family;
|
|
1284
1286
|
font-weight: 400;
|
|
1285
1287
|
}
|
|
1286
1288
|
|
|
1287
1289
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square {
|
|
1288
|
-
font-family:
|
|
1290
|
+
font-family: $fa-style-family;
|
|
1289
1291
|
font-weight: 400;
|
|
1290
1292
|
}
|
|
1291
1293
|
|
|
1292
1294
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before {
|
|
1293
|
-
content: unquote('"#{ $fa-var-car }"');
|
|
1295
|
+
content: string.unquote('"#{ $fa-var-car }"');
|
|
1294
1296
|
}
|
|
1295
1297
|
|
|
1296
1298
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cab:before {
|
|
1297
|
-
content: unquote('"#{ $fa-var-taxi }"');
|
|
1299
|
+
content: string.unquote('"#{ $fa-var-taxi }"');
|
|
1298
1300
|
}
|
|
1299
1301
|
|
|
1300
1302
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-spotify {
|
|
1301
|
-
font-family:
|
|
1303
|
+
font-family: $fa-style-family;
|
|
1302
1304
|
font-weight: 400;
|
|
1303
1305
|
}
|
|
1304
1306
|
|
|
1305
1307
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart {
|
|
1306
|
-
font-family:
|
|
1308
|
+
font-family: $fa-style-family;
|
|
1307
1309
|
font-weight: 400;
|
|
1308
1310
|
}
|
|
1309
1311
|
|
|
1310
1312
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-soundcloud {
|
|
1311
|
-
font-family:
|
|
1313
|
+
font-family: $fa-style-family;
|
|
1312
1314
|
font-weight: 400;
|
|
1313
1315
|
}
|
|
1314
1316
|
|
|
1315
1317
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o {
|
|
1316
|
-
font-family:
|
|
1318
|
+
font-family: $fa-style-family;
|
|
1317
1319
|
font-weight: 400;
|
|
1318
1320
|
}
|
|
1319
1321
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o:before {
|
|
1320
|
-
content: unquote('"#{ $fa-var-file-pdf }"');
|
|
1322
|
+
content: string.unquote('"#{ $fa-var-file-pdf }"');
|
|
1321
1323
|
}
|
|
1322
1324
|
|
|
1323
1325
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o {
|
|
1324
|
-
font-family:
|
|
1326
|
+
font-family: $fa-style-family;
|
|
1325
1327
|
font-weight: 400;
|
|
1326
1328
|
}
|
|
1327
1329
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o:before {
|
|
1328
|
-
content: unquote('"#{ $fa-var-file-word }"');
|
|
1330
|
+
content: string.unquote('"#{ $fa-var-file-word }"');
|
|
1329
1331
|
}
|
|
1330
1332
|
|
|
1331
1333
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o {
|
|
1332
|
-
font-family:
|
|
1334
|
+
font-family: $fa-style-family;
|
|
1333
1335
|
font-weight: 400;
|
|
1334
1336
|
}
|
|
1335
1337
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o:before {
|
|
1336
|
-
content: unquote('"#{ $fa-var-file-excel }"');
|
|
1338
|
+
content: string.unquote('"#{ $fa-var-file-excel }"');
|
|
1337
1339
|
}
|
|
1338
1340
|
|
|
1339
1341
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o {
|
|
1340
|
-
font-family:
|
|
1342
|
+
font-family: $fa-style-family;
|
|
1341
1343
|
font-weight: 400;
|
|
1342
1344
|
}
|
|
1343
1345
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o:before {
|
|
1344
|
-
content: unquote('"#{ $fa-var-file-powerpoint }"');
|
|
1346
|
+
content: string.unquote('"#{ $fa-var-file-powerpoint }"');
|
|
1345
1347
|
}
|
|
1346
1348
|
|
|
1347
1349
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o {
|
|
1348
|
-
font-family:
|
|
1350
|
+
font-family: $fa-style-family;
|
|
1349
1351
|
font-weight: 400;
|
|
1350
1352
|
}
|
|
1351
1353
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o:before {
|
|
1352
|
-
content: unquote('"#{ $fa-var-file-image }"');
|
|
1354
|
+
content: string.unquote('"#{ $fa-var-file-image }"');
|
|
1353
1355
|
}
|
|
1354
1356
|
|
|
1355
1357
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o {
|
|
1356
|
-
font-family:
|
|
1358
|
+
font-family: $fa-style-family;
|
|
1357
1359
|
font-weight: 400;
|
|
1358
1360
|
}
|
|
1359
1361
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o:before {
|
|
1360
|
-
content: unquote('"#{ $fa-var-file-image }"');
|
|
1362
|
+
content: string.unquote('"#{ $fa-var-file-image }"');
|
|
1361
1363
|
}
|
|
1362
1364
|
|
|
1363
1365
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o {
|
|
1364
|
-
font-family:
|
|
1366
|
+
font-family: $fa-style-family;
|
|
1365
1367
|
font-weight: 400;
|
|
1366
1368
|
}
|
|
1367
1369
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o:before {
|
|
1368
|
-
content: unquote('"#{ $fa-var-file-image }"');
|
|
1370
|
+
content: string.unquote('"#{ $fa-var-file-image }"');
|
|
1369
1371
|
}
|
|
1370
1372
|
|
|
1371
1373
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o {
|
|
1372
|
-
font-family:
|
|
1374
|
+
font-family: $fa-style-family;
|
|
1373
1375
|
font-weight: 400;
|
|
1374
1376
|
}
|
|
1375
1377
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o:before {
|
|
1376
|
-
content: unquote('"#{ $fa-var-file-zipper }"');
|
|
1378
|
+
content: string.unquote('"#{ $fa-var-file-zipper }"');
|
|
1377
1379
|
}
|
|
1378
1380
|
|
|
1379
1381
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o {
|
|
1380
|
-
font-family:
|
|
1382
|
+
font-family: $fa-style-family;
|
|
1381
1383
|
font-weight: 400;
|
|
1382
1384
|
}
|
|
1383
1385
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o:before {
|
|
1384
|
-
content: unquote('"#{ $fa-var-file-zipper }"');
|
|
1386
|
+
content: string.unquote('"#{ $fa-var-file-zipper }"');
|
|
1385
1387
|
}
|
|
1386
1388
|
|
|
1387
1389
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o {
|
|
1388
|
-
font-family:
|
|
1390
|
+
font-family: $fa-style-family;
|
|
1389
1391
|
font-weight: 400;
|
|
1390
1392
|
}
|
|
1391
1393
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o:before {
|
|
1392
|
-
content: unquote('"#{ $fa-var-file-audio }"');
|
|
1394
|
+
content: string.unquote('"#{ $fa-var-file-audio }"');
|
|
1393
1395
|
}
|
|
1394
1396
|
|
|
1395
1397
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o {
|
|
1396
|
-
font-family:
|
|
1398
|
+
font-family: $fa-style-family;
|
|
1397
1399
|
font-weight: 400;
|
|
1398
1400
|
}
|
|
1399
1401
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o:before {
|
|
1400
|
-
content: unquote('"#{ $fa-var-file-audio }"');
|
|
1402
|
+
content: string.unquote('"#{ $fa-var-file-audio }"');
|
|
1401
1403
|
}
|
|
1402
1404
|
|
|
1403
1405
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o {
|
|
1404
|
-
font-family:
|
|
1406
|
+
font-family: $fa-style-family;
|
|
1405
1407
|
font-weight: 400;
|
|
1406
1408
|
}
|
|
1407
1409
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o:before {
|
|
1408
|
-
content: unquote('"#{ $fa-var-file-video }"');
|
|
1410
|
+
content: string.unquote('"#{ $fa-var-file-video }"');
|
|
1409
1411
|
}
|
|
1410
1412
|
|
|
1411
1413
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o {
|
|
1412
|
-
font-family:
|
|
1414
|
+
font-family: $fa-style-family;
|
|
1413
1415
|
font-weight: 400;
|
|
1414
1416
|
}
|
|
1415
1417
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o:before {
|
|
1416
|
-
content: unquote('"#{ $fa-var-file-video }"');
|
|
1418
|
+
content: string.unquote('"#{ $fa-var-file-video }"');
|
|
1417
1419
|
}
|
|
1418
1420
|
|
|
1419
1421
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o {
|
|
1420
|
-
font-family:
|
|
1422
|
+
font-family: $fa-style-family;
|
|
1421
1423
|
font-weight: 400;
|
|
1422
1424
|
}
|
|
1423
1425
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o:before {
|
|
1424
|
-
content: unquote('"#{ $fa-var-file-code }"');
|
|
1426
|
+
content: string.unquote('"#{ $fa-var-file-code }"');
|
|
1425
1427
|
}
|
|
1426
1428
|
|
|
1427
1429
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vine {
|
|
1428
|
-
font-family:
|
|
1430
|
+
font-family: $fa-style-family;
|
|
1429
1431
|
font-weight: 400;
|
|
1430
1432
|
}
|
|
1431
1433
|
|
|
1432
1434
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-codepen {
|
|
1433
|
-
font-family:
|
|
1435
|
+
font-family: $fa-style-family;
|
|
1434
1436
|
font-weight: 400;
|
|
1435
1437
|
}
|
|
1436
1438
|
|
|
1437
1439
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-jsfiddle {
|
|
1438
|
-
font-family:
|
|
1440
|
+
font-family: $fa-style-family;
|
|
1439
1441
|
font-weight: 400;
|
|
1440
1442
|
}
|
|
1441
1443
|
|
|
1442
1444
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy:before {
|
|
1443
|
-
content: unquote('"#{ $fa-var-life-ring }"');
|
|
1445
|
+
content: string.unquote('"#{ $fa-var-life-ring }"');
|
|
1444
1446
|
}
|
|
1445
1447
|
|
|
1446
1448
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy:before {
|
|
1447
|
-
content: unquote('"#{ $fa-var-life-ring }"');
|
|
1449
|
+
content: string.unquote('"#{ $fa-var-life-ring }"');
|
|
1448
1450
|
}
|
|
1449
1451
|
|
|
1450
1452
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver:before {
|
|
1451
|
-
content: unquote('"#{ $fa-var-life-ring }"');
|
|
1453
|
+
content: string.unquote('"#{ $fa-var-life-ring }"');
|
|
1452
1454
|
}
|
|
1453
1455
|
|
|
1454
1456
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-support:before {
|
|
1455
|
-
content: unquote('"#{ $fa-var-life-ring }"');
|
|
1457
|
+
content: string.unquote('"#{ $fa-var-life-ring }"');
|
|
1456
1458
|
}
|
|
1457
1459
|
|
|
1458
1460
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o-notch:before {
|
|
1459
|
-
content: unquote('"#{ $fa-var-circle-notch }"');
|
|
1461
|
+
content: string.unquote('"#{ $fa-var-circle-notch }"');
|
|
1460
1462
|
}
|
|
1461
1463
|
|
|
1462
1464
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-rebel {
|
|
1463
|
-
font-family:
|
|
1465
|
+
font-family: $fa-style-family;
|
|
1464
1466
|
font-weight: 400;
|
|
1465
1467
|
}
|
|
1466
1468
|
|
|
1467
1469
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ra {
|
|
1468
|
-
font-family:
|
|
1470
|
+
font-family: $fa-style-family;
|
|
1469
1471
|
font-weight: 400;
|
|
1470
1472
|
}
|
|
1471
1473
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ra:before {
|
|
1472
|
-
content: unquote('"#{ $fa-var-rebel }"');
|
|
1474
|
+
content: string.unquote('"#{ $fa-var-rebel }"');
|
|
1473
1475
|
}
|
|
1474
1476
|
|
|
1475
1477
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance {
|
|
1476
|
-
font-family:
|
|
1478
|
+
font-family: $fa-style-family;
|
|
1477
1479
|
font-weight: 400;
|
|
1478
1480
|
}
|
|
1479
1481
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance:before {
|
|
1480
|
-
content: unquote('"#{ $fa-var-rebel }"');
|
|
1482
|
+
content: string.unquote('"#{ $fa-var-rebel }"');
|
|
1481
1483
|
}
|
|
1482
1484
|
|
|
1483
1485
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-empire {
|
|
1484
|
-
font-family:
|
|
1486
|
+
font-family: $fa-style-family;
|
|
1485
1487
|
font-weight: 400;
|
|
1486
1488
|
}
|
|
1487
1489
|
|
|
1488
1490
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ge {
|
|
1489
|
-
font-family:
|
|
1491
|
+
font-family: $fa-style-family;
|
|
1490
1492
|
font-weight: 400;
|
|
1491
1493
|
}
|
|
1492
1494
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ge:before {
|
|
1493
|
-
content: unquote('"#{ $fa-var-empire }"');
|
|
1495
|
+
content: string.unquote('"#{ $fa-var-empire }"');
|
|
1494
1496
|
}
|
|
1495
1497
|
|
|
1496
1498
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-git-square {
|
|
1497
|
-
font-family:
|
|
1499
|
+
font-family: $fa-style-family;
|
|
1498
1500
|
font-weight: 400;
|
|
1499
1501
|
}
|
|
1500
1502
|
|
|
1501
1503
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-git {
|
|
1502
|
-
font-family:
|
|
1504
|
+
font-family: $fa-style-family;
|
|
1503
1505
|
font-weight: 400;
|
|
1504
1506
|
}
|
|
1505
1507
|
|
|
1506
1508
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hacker-news {
|
|
1507
|
-
font-family:
|
|
1509
|
+
font-family: $fa-style-family;
|
|
1508
1510
|
font-weight: 400;
|
|
1509
1511
|
}
|
|
1510
1512
|
|
|
1511
1513
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square {
|
|
1512
|
-
font-family:
|
|
1514
|
+
font-family: $fa-style-family;
|
|
1513
1515
|
font-weight: 400;
|
|
1514
1516
|
}
|
|
1515
1517
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square:before {
|
|
1516
|
-
content: unquote('"#{ $fa-var-hacker-news }"');
|
|
1518
|
+
content: string.unquote('"#{ $fa-var-hacker-news }"');
|
|
1517
1519
|
}
|
|
1518
1520
|
|
|
1519
1521
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square {
|
|
1520
|
-
font-family:
|
|
1522
|
+
font-family: $fa-style-family;
|
|
1521
1523
|
font-weight: 400;
|
|
1522
1524
|
}
|
|
1523
1525
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square:before {
|
|
1524
|
-
content: unquote('"#{ $fa-var-hacker-news }"');
|
|
1526
|
+
content: string.unquote('"#{ $fa-var-hacker-news }"');
|
|
1525
1527
|
}
|
|
1526
1528
|
|
|
1527
1529
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-tencent-weibo {
|
|
1528
|
-
font-family:
|
|
1530
|
+
font-family: $fa-style-family;
|
|
1529
1531
|
font-weight: 400;
|
|
1530
1532
|
}
|
|
1531
1533
|
|
|
1532
1534
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-qq {
|
|
1533
|
-
font-family:
|
|
1535
|
+
font-family: $fa-style-family;
|
|
1534
1536
|
font-weight: 400;
|
|
1535
1537
|
}
|
|
1536
1538
|
|
|
1537
1539
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-weixin {
|
|
1538
|
-
font-family:
|
|
1540
|
+
font-family: $fa-style-family;
|
|
1539
1541
|
font-weight: 400;
|
|
1540
1542
|
}
|
|
1541
1543
|
|
|
1542
1544
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat {
|
|
1543
|
-
font-family:
|
|
1545
|
+
font-family: $fa-style-family;
|
|
1544
1546
|
font-weight: 400;
|
|
1545
1547
|
}
|
|
1546
1548
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat:before {
|
|
1547
|
-
content: unquote('"#{ $fa-var-weixin }"');
|
|
1549
|
+
content: string.unquote('"#{ $fa-var-weixin }"');
|
|
1548
1550
|
}
|
|
1549
1551
|
|
|
1550
1552
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-send:before {
|
|
1551
|
-
content: unquote('"#{ $fa-var-paper-plane }"');
|
|
1553
|
+
content: string.unquote('"#{ $fa-var-paper-plane }"');
|
|
1552
1554
|
}
|
|
1553
1555
|
|
|
1554
1556
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o {
|
|
1555
|
-
font-family:
|
|
1557
|
+
font-family: $fa-style-family;
|
|
1556
1558
|
font-weight: 400;
|
|
1557
1559
|
}
|
|
1558
1560
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o:before {
|
|
1559
|
-
content: unquote('"#{ $fa-var-paper-plane }"');
|
|
1561
|
+
content: string.unquote('"#{ $fa-var-paper-plane }"');
|
|
1560
1562
|
}
|
|
1561
1563
|
|
|
1562
1564
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o {
|
|
1563
|
-
font-family:
|
|
1565
|
+
font-family: $fa-style-family;
|
|
1564
1566
|
font-weight: 400;
|
|
1565
1567
|
}
|
|
1566
1568
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o:before {
|
|
1567
|
-
content: unquote('"#{ $fa-var-paper-plane }"');
|
|
1569
|
+
content: string.unquote('"#{ $fa-var-paper-plane }"');
|
|
1568
1570
|
}
|
|
1569
1571
|
|
|
1570
1572
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin {
|
|
1571
|
-
font-family:
|
|
1573
|
+
font-family: $fa-style-family;
|
|
1572
1574
|
font-weight: 400;
|
|
1573
1575
|
}
|
|
1574
1576
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin:before {
|
|
1575
|
-
content: unquote('"#{ $fa-var-circle }"');
|
|
1577
|
+
content: string.unquote('"#{ $fa-var-circle }"');
|
|
1576
1578
|
}
|
|
1577
1579
|
|
|
1578
1580
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-header:before {
|
|
1579
|
-
content: unquote('"#{ $fa-var-heading }"');
|
|
1581
|
+
content: string.unquote('"#{ $fa-var-heading }"');
|
|
1580
1582
|
}
|
|
1581
1583
|
|
|
1582
1584
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o {
|
|
1583
|
-
font-family:
|
|
1585
|
+
font-family: $fa-style-family;
|
|
1584
1586
|
font-weight: 400;
|
|
1585
1587
|
}
|
|
1586
1588
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o:before {
|
|
1587
|
-
content: unquote('"#{ $fa-var-futbol }"');
|
|
1589
|
+
content: string.unquote('"#{ $fa-var-futbol }"');
|
|
1588
1590
|
}
|
|
1589
1591
|
|
|
1590
1592
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o {
|
|
1591
|
-
font-family:
|
|
1593
|
+
font-family: $fa-style-family;
|
|
1592
1594
|
font-weight: 400;
|
|
1593
1595
|
}
|
|
1594
1596
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o:before {
|
|
1595
|
-
content: unquote('"#{ $fa-var-futbol }"');
|
|
1597
|
+
content: string.unquote('"#{ $fa-var-futbol }"');
|
|
1596
1598
|
}
|
|
1597
1599
|
|
|
1598
1600
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-slideshare {
|
|
1599
|
-
font-family:
|
|
1601
|
+
font-family: $fa-style-family;
|
|
1600
1602
|
font-weight: 400;
|
|
1601
1603
|
}
|
|
1602
1604
|
|
|
1603
1605
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-twitch {
|
|
1604
|
-
font-family:
|
|
1606
|
+
font-family: $fa-style-family;
|
|
1605
1607
|
font-weight: 400;
|
|
1606
1608
|
}
|
|
1607
1609
|
|
|
1608
1610
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yelp {
|
|
1609
|
-
font-family:
|
|
1611
|
+
font-family: $fa-style-family;
|
|
1610
1612
|
font-weight: 400;
|
|
1611
1613
|
}
|
|
1612
1614
|
|
|
1613
1615
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o {
|
|
1614
|
-
font-family:
|
|
1616
|
+
font-family: $fa-style-family;
|
|
1615
1617
|
font-weight: 400;
|
|
1616
1618
|
}
|
|
1617
1619
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o:before {
|
|
1618
|
-
content: unquote('"#{ $fa-var-newspaper }"');
|
|
1620
|
+
content: string.unquote('"#{ $fa-var-newspaper }"');
|
|
1619
1621
|
}
|
|
1620
1622
|
|
|
1621
1623
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-paypal {
|
|
1622
|
-
font-family:
|
|
1624
|
+
font-family: $fa-style-family;
|
|
1623
1625
|
font-weight: 400;
|
|
1624
1626
|
}
|
|
1625
1627
|
|
|
1626
1628
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-wallet {
|
|
1627
|
-
font-family:
|
|
1629
|
+
font-family: $fa-style-family;
|
|
1628
1630
|
font-weight: 400;
|
|
1629
1631
|
}
|
|
1630
1632
|
|
|
1631
1633
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-visa {
|
|
1632
|
-
font-family:
|
|
1634
|
+
font-family: $fa-style-family;
|
|
1633
1635
|
font-weight: 400;
|
|
1634
1636
|
}
|
|
1635
1637
|
|
|
1636
1638
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-mastercard {
|
|
1637
|
-
font-family:
|
|
1639
|
+
font-family: $fa-style-family;
|
|
1638
1640
|
font-weight: 400;
|
|
1639
1641
|
}
|
|
1640
1642
|
|
|
1641
1643
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-discover {
|
|
1642
|
-
font-family:
|
|
1644
|
+
font-family: $fa-style-family;
|
|
1643
1645
|
font-weight: 400;
|
|
1644
1646
|
}
|
|
1645
1647
|
|
|
1646
1648
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-amex {
|
|
1647
|
-
font-family:
|
|
1649
|
+
font-family: $fa-style-family;
|
|
1648
1650
|
font-weight: 400;
|
|
1649
1651
|
}
|
|
1650
1652
|
|
|
1651
1653
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-paypal {
|
|
1652
|
-
font-family:
|
|
1654
|
+
font-family: $fa-style-family;
|
|
1653
1655
|
font-weight: 400;
|
|
1654
1656
|
}
|
|
1655
1657
|
|
|
1656
1658
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-stripe {
|
|
1657
|
-
font-family:
|
|
1659
|
+
font-family: $fa-style-family;
|
|
1658
1660
|
font-weight: 400;
|
|
1659
1661
|
}
|
|
1660
1662
|
|
|
1661
1663
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o {
|
|
1662
|
-
font-family:
|
|
1664
|
+
font-family: $fa-style-family;
|
|
1663
1665
|
font-weight: 400;
|
|
1664
1666
|
}
|
|
1665
1667
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o:before {
|
|
1666
|
-
content: unquote('"#{ $fa-var-bell-slash }"');
|
|
1668
|
+
content: string.unquote('"#{ $fa-var-bell-slash }"');
|
|
1667
1669
|
}
|
|
1668
1670
|
|
|
1669
1671
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash:before {
|
|
1670
|
-
content: unquote('"#{ $fa-var-trash-can }"');
|
|
1672
|
+
content: string.unquote('"#{ $fa-var-trash-can }"');
|
|
1671
1673
|
}
|
|
1672
1674
|
|
|
1673
1675
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-copyright {
|
|
1674
|
-
font-family:
|
|
1676
|
+
font-family: $fa-style-family;
|
|
1675
1677
|
font-weight: 400;
|
|
1676
1678
|
}
|
|
1677
1679
|
|
|
1678
1680
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper:before {
|
|
1679
|
-
content: unquote('"#{ $fa-var-eye-dropper }"');
|
|
1681
|
+
content: string.unquote('"#{ $fa-var-eye-dropper }"');
|
|
1680
1682
|
}
|
|
1681
1683
|
|
|
1682
1684
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart:before {
|
|
1683
|
-
content: unquote('"#{ $fa-var-chart-area }"');
|
|
1685
|
+
content: string.unquote('"#{ $fa-var-chart-area }"');
|
|
1684
1686
|
}
|
|
1685
1687
|
|
|
1686
1688
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart:before {
|
|
1687
|
-
content: unquote('"#{ $fa-var-chart-pie }"');
|
|
1689
|
+
content: string.unquote('"#{ $fa-var-chart-pie }"');
|
|
1688
1690
|
}
|
|
1689
1691
|
|
|
1690
1692
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart:before {
|
|
1691
|
-
content: unquote('"#{ $fa-var-chart-line }"');
|
|
1693
|
+
content: string.unquote('"#{ $fa-var-chart-line }"');
|
|
1692
1694
|
}
|
|
1693
1695
|
|
|
1694
1696
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm {
|
|
1695
|
-
font-family:
|
|
1697
|
+
font-family: $fa-style-family;
|
|
1696
1698
|
font-weight: 400;
|
|
1697
1699
|
}
|
|
1698
1700
|
|
|
1699
1701
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square {
|
|
1700
|
-
font-family:
|
|
1702
|
+
font-family: $fa-style-family;
|
|
1701
1703
|
font-weight: 400;
|
|
1702
1704
|
}
|
|
1703
1705
|
|
|
1704
1706
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ioxhost {
|
|
1705
|
-
font-family:
|
|
1707
|
+
font-family: $fa-style-family;
|
|
1706
1708
|
font-weight: 400;
|
|
1707
1709
|
}
|
|
1708
1710
|
|
|
1709
1711
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-angellist {
|
|
1710
|
-
font-family:
|
|
1712
|
+
font-family: $fa-style-family;
|
|
1711
1713
|
font-weight: 400;
|
|
1712
1714
|
}
|
|
1713
1715
|
|
|
1714
1716
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc {
|
|
1715
|
-
font-family:
|
|
1717
|
+
font-family: $fa-style-family;
|
|
1716
1718
|
font-weight: 400;
|
|
1717
1719
|
}
|
|
1718
1720
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc:before {
|
|
1719
|
-
content: unquote('"#{ $fa-var-closed-captioning }"');
|
|
1721
|
+
content: string.unquote('"#{ $fa-var-closed-captioning }"');
|
|
1720
1722
|
}
|
|
1721
1723
|
|
|
1722
1724
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ils:before {
|
|
1723
|
-
content: unquote('"#{ $fa-var-shekel-sign }"');
|
|
1725
|
+
content: string.unquote('"#{ $fa-var-shekel-sign }"');
|
|
1724
1726
|
}
|
|
1725
1727
|
|
|
1726
1728
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-shekel:before {
|
|
1727
|
-
content: unquote('"#{ $fa-var-shekel-sign }"');
|
|
1729
|
+
content: string.unquote('"#{ $fa-var-shekel-sign }"');
|
|
1728
1730
|
}
|
|
1729
1731
|
|
|
1730
1732
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel:before {
|
|
1731
|
-
content: unquote('"#{ $fa-var-shekel-sign }"');
|
|
1733
|
+
content: string.unquote('"#{ $fa-var-shekel-sign }"');
|
|
1732
1734
|
}
|
|
1733
1735
|
|
|
1734
1736
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-buysellads {
|
|
1735
|
-
font-family:
|
|
1737
|
+
font-family: $fa-style-family;
|
|
1736
1738
|
font-weight: 400;
|
|
1737
1739
|
}
|
|
1738
1740
|
|
|
1739
1741
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-connectdevelop {
|
|
1740
|
-
font-family:
|
|
1742
|
+
font-family: $fa-style-family;
|
|
1741
1743
|
font-weight: 400;
|
|
1742
1744
|
}
|
|
1743
1745
|
|
|
1744
1746
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dashcube {
|
|
1745
|
-
font-family:
|
|
1747
|
+
font-family: $fa-style-family;
|
|
1746
1748
|
font-weight: 400;
|
|
1747
1749
|
}
|
|
1748
1750
|
|
|
1749
1751
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-forumbee {
|
|
1750
|
-
font-family:
|
|
1752
|
+
font-family: $fa-style-family;
|
|
1751
1753
|
font-weight: 400;
|
|
1752
1754
|
}
|
|
1753
1755
|
|
|
1754
1756
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-leanpub {
|
|
1755
|
-
font-family:
|
|
1757
|
+
font-family: $fa-style-family;
|
|
1756
1758
|
font-weight: 400;
|
|
1757
1759
|
}
|
|
1758
1760
|
|
|
1759
1761
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sellsy {
|
|
1760
|
-
font-family:
|
|
1762
|
+
font-family: $fa-style-family;
|
|
1761
1763
|
font-weight: 400;
|
|
1762
1764
|
}
|
|
1763
1765
|
|
|
1764
1766
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-shirtsinbulk {
|
|
1765
|
-
font-family:
|
|
1767
|
+
font-family: $fa-style-family;
|
|
1766
1768
|
font-weight: 400;
|
|
1767
1769
|
}
|
|
1768
1770
|
|
|
1769
1771
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-simplybuilt {
|
|
1770
|
-
font-family:
|
|
1772
|
+
font-family: $fa-style-family;
|
|
1771
1773
|
font-weight: 400;
|
|
1772
1774
|
}
|
|
1773
1775
|
|
|
1774
1776
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-skyatlas {
|
|
1775
|
-
font-family:
|
|
1777
|
+
font-family: $fa-style-family;
|
|
1776
1778
|
font-weight: 400;
|
|
1777
1779
|
}
|
|
1778
1780
|
|
|
1779
1781
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond {
|
|
1780
|
-
font-family:
|
|
1782
|
+
font-family: $fa-style-family;
|
|
1781
1783
|
font-weight: 400;
|
|
1782
1784
|
}
|
|
1783
1785
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond:before {
|
|
1784
|
-
content: unquote('"#{ $fa-var-gem }"');
|
|
1786
|
+
content: string.unquote('"#{ $fa-var-gem }"');
|
|
1785
1787
|
}
|
|
1786
1788
|
|
|
1787
1789
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-transgender:before {
|
|
1788
|
-
content: unquote('"#{ $fa-var-mars-and-venus }"');
|
|
1790
|
+
content: string.unquote('"#{ $fa-var-mars-and-venus }"');
|
|
1789
1791
|
}
|
|
1790
1792
|
|
|
1791
1793
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-intersex:before {
|
|
1792
|
-
content: unquote('"#{ $fa-var-mars-and-venus }"');
|
|
1794
|
+
content: string.unquote('"#{ $fa-var-mars-and-venus }"');
|
|
1793
1795
|
}
|
|
1794
1796
|
|
|
1795
1797
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-transgender-alt:before {
|
|
1796
|
-
content: unquote('"#{ $fa-var-transgender }"');
|
|
1798
|
+
content: string.unquote('"#{ $fa-var-transgender }"');
|
|
1797
1799
|
}
|
|
1798
1800
|
|
|
1799
1801
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official {
|
|
1800
|
-
font-family:
|
|
1802
|
+
font-family: $fa-style-family;
|
|
1801
1803
|
font-weight: 400;
|
|
1802
1804
|
}
|
|
1803
1805
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official:before {
|
|
1804
|
-
content: unquote('"#{ $fa-var-facebook }"');
|
|
1806
|
+
content: string.unquote('"#{ $fa-var-facebook }"');
|
|
1805
1807
|
}
|
|
1806
1808
|
|
|
1807
1809
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-p {
|
|
1808
|
-
font-family:
|
|
1810
|
+
font-family: $fa-style-family;
|
|
1809
1811
|
font-weight: 400;
|
|
1810
1812
|
}
|
|
1811
1813
|
|
|
1812
1814
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-whatsapp {
|
|
1813
|
-
font-family:
|
|
1815
|
+
font-family: $fa-style-family;
|
|
1814
1816
|
font-weight: 400;
|
|
1815
1817
|
}
|
|
1816
1818
|
|
|
1817
1819
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hotel:before {
|
|
1818
|
-
content: unquote('"#{ $fa-var-bed }"');
|
|
1820
|
+
content: string.unquote('"#{ $fa-var-bed }"');
|
|
1819
1821
|
}
|
|
1820
1822
|
|
|
1821
1823
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-viacoin {
|
|
1822
|
-
font-family:
|
|
1824
|
+
font-family: $fa-style-family;
|
|
1823
1825
|
font-weight: 400;
|
|
1824
1826
|
}
|
|
1825
1827
|
|
|
1826
1828
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-medium {
|
|
1827
|
-
font-family:
|
|
1829
|
+
font-family: $fa-style-family;
|
|
1828
1830
|
font-weight: 400;
|
|
1829
1831
|
}
|
|
1830
1832
|
|
|
1831
1833
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator {
|
|
1832
|
-
font-family:
|
|
1834
|
+
font-family: $fa-style-family;
|
|
1833
1835
|
font-weight: 400;
|
|
1834
1836
|
}
|
|
1835
1837
|
|
|
1836
1838
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc {
|
|
1837
|
-
font-family:
|
|
1839
|
+
font-family: $fa-style-family;
|
|
1838
1840
|
font-weight: 400;
|
|
1839
1841
|
}
|
|
1840
1842
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc:before {
|
|
1841
|
-
content: unquote('"#{ $fa-var-y-combinator }"');
|
|
1843
|
+
content: string.unquote('"#{ $fa-var-y-combinator }"');
|
|
1842
1844
|
}
|
|
1843
1845
|
|
|
1844
1846
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-optin-monster {
|
|
1845
|
-
font-family:
|
|
1847
|
+
font-family: $fa-style-family;
|
|
1846
1848
|
font-weight: 400;
|
|
1847
1849
|
}
|
|
1848
1850
|
|
|
1849
1851
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-opencart {
|
|
1850
|
-
font-family:
|
|
1852
|
+
font-family: $fa-style-family;
|
|
1851
1853
|
font-weight: 400;
|
|
1852
1854
|
}
|
|
1853
1855
|
|
|
1854
1856
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-expeditedssl {
|
|
1855
|
-
font-family:
|
|
1857
|
+
font-family: $fa-style-family;
|
|
1856
1858
|
font-weight: 400;
|
|
1857
1859
|
}
|
|
1858
1860
|
|
|
1859
1861
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4:before {
|
|
1860
|
-
content: unquote('"#{ $fa-var-battery-full }"');
|
|
1862
|
+
content: string.unquote('"#{ $fa-var-battery-full }"');
|
|
1861
1863
|
}
|
|
1862
1864
|
|
|
1863
1865
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery:before {
|
|
1864
|
-
content: unquote('"#{ $fa-var-battery-full }"');
|
|
1866
|
+
content: string.unquote('"#{ $fa-var-battery-full }"');
|
|
1865
1867
|
}
|
|
1866
1868
|
|
|
1867
1869
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3:before {
|
|
1868
|
-
content: unquote('"#{ $fa-var-battery-three-quarters }"');
|
|
1870
|
+
content: string.unquote('"#{ $fa-var-battery-three-quarters }"');
|
|
1869
1871
|
}
|
|
1870
1872
|
|
|
1871
1873
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2:before {
|
|
1872
|
-
content: unquote('"#{ $fa-var-battery-half }"');
|
|
1874
|
+
content: string.unquote('"#{ $fa-var-battery-half }"');
|
|
1873
1875
|
}
|
|
1874
1876
|
|
|
1875
1877
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1:before {
|
|
1876
|
-
content: unquote('"#{ $fa-var-battery-quarter }"');
|
|
1878
|
+
content: string.unquote('"#{ $fa-var-battery-quarter }"');
|
|
1877
1879
|
}
|
|
1878
1880
|
|
|
1879
1881
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0:before {
|
|
1880
|
-
content: unquote('"#{ $fa-var-battery-empty }"');
|
|
1882
|
+
content: string.unquote('"#{ $fa-var-battery-empty }"');
|
|
1881
1883
|
}
|
|
1882
1884
|
|
|
1883
1885
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-object-group {
|
|
1884
|
-
font-family:
|
|
1886
|
+
font-family: $fa-style-family;
|
|
1885
1887
|
font-weight: 400;
|
|
1886
1888
|
}
|
|
1887
1889
|
|
|
1888
1890
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-object-ungroup {
|
|
1889
|
-
font-family:
|
|
1891
|
+
font-family: $fa-style-family;
|
|
1890
1892
|
font-weight: 400;
|
|
1891
1893
|
}
|
|
1892
1894
|
|
|
1893
1895
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o {
|
|
1894
|
-
font-family:
|
|
1896
|
+
font-family: $fa-style-family;
|
|
1895
1897
|
font-weight: 400;
|
|
1896
1898
|
}
|
|
1897
1899
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o:before {
|
|
1898
|
-
content: unquote('"#{ $fa-var-note-sticky }"');
|
|
1900
|
+
content: string.unquote('"#{ $fa-var-note-sticky }"');
|
|
1899
1901
|
}
|
|
1900
1902
|
|
|
1901
1903
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-jcb {
|
|
1902
|
-
font-family:
|
|
1904
|
+
font-family: $fa-style-family;
|
|
1903
1905
|
font-weight: 400;
|
|
1904
1906
|
}
|
|
1905
1907
|
|
|
1906
1908
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-diners-club {
|
|
1907
|
-
font-family:
|
|
1909
|
+
font-family: $fa-style-family;
|
|
1908
1910
|
font-weight: 400;
|
|
1909
1911
|
}
|
|
1910
1912
|
|
|
1911
1913
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-clone {
|
|
1912
|
-
font-family:
|
|
1914
|
+
font-family: $fa-style-family;
|
|
1913
1915
|
font-weight: 400;
|
|
1914
1916
|
}
|
|
1915
1917
|
|
|
1916
1918
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o:before {
|
|
1917
|
-
content: unquote('"#{ $fa-var-hourglass-empty }"');
|
|
1919
|
+
content: string.unquote('"#{ $fa-var-hourglass-empty }"');
|
|
1918
1920
|
}
|
|
1919
1921
|
|
|
1920
1922
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1:before {
|
|
1921
|
-
content: unquote('"#{ $fa-var-hourglass-start }"');
|
|
1923
|
+
content: string.unquote('"#{ $fa-var-hourglass-start }"');
|
|
1922
1924
|
}
|
|
1923
1925
|
|
|
1924
1926
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-half:before {
|
|
1925
|
-
content: unquote('"#{ $fa-var-hourglass }"');
|
|
1927
|
+
content: string.unquote('"#{ $fa-var-hourglass }"');
|
|
1926
1928
|
}
|
|
1927
1929
|
|
|
1928
1930
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2:before {
|
|
1929
|
-
content: unquote('"#{ $fa-var-hourglass }"');
|
|
1931
|
+
content: string.unquote('"#{ $fa-var-hourglass }"');
|
|
1930
1932
|
}
|
|
1931
1933
|
|
|
1932
1934
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3:before {
|
|
1933
|
-
content: unquote('"#{ $fa-var-hourglass-end }"');
|
|
1935
|
+
content: string.unquote('"#{ $fa-var-hourglass-end }"');
|
|
1934
1936
|
}
|
|
1935
1937
|
|
|
1936
1938
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o {
|
|
1937
|
-
font-family:
|
|
1939
|
+
font-family: $fa-style-family;
|
|
1938
1940
|
font-weight: 400;
|
|
1939
1941
|
}
|
|
1940
1942
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o:before {
|
|
1941
|
-
content: unquote('"#{ $fa-var-hand-back-fist }"');
|
|
1943
|
+
content: string.unquote('"#{ $fa-var-hand-back-fist }"');
|
|
1942
1944
|
}
|
|
1943
1945
|
|
|
1944
1946
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o {
|
|
1945
|
-
font-family:
|
|
1947
|
+
font-family: $fa-style-family;
|
|
1946
1948
|
font-weight: 400;
|
|
1947
1949
|
}
|
|
1948
1950
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o:before {
|
|
1949
|
-
content: unquote('"#{ $fa-var-hand-back-fist }"');
|
|
1951
|
+
content: string.unquote('"#{ $fa-var-hand-back-fist }"');
|
|
1950
1952
|
}
|
|
1951
1953
|
|
|
1952
1954
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o {
|
|
1953
|
-
font-family:
|
|
1955
|
+
font-family: $fa-style-family;
|
|
1954
1956
|
font-weight: 400;
|
|
1955
1957
|
}
|
|
1956
1958
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o:before {
|
|
1957
|
-
content: unquote('"#{ $fa-var-hand }"');
|
|
1959
|
+
content: string.unquote('"#{ $fa-var-hand }"');
|
|
1958
1960
|
}
|
|
1959
1961
|
|
|
1960
1962
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o {
|
|
1961
|
-
font-family:
|
|
1963
|
+
font-family: $fa-style-family;
|
|
1962
1964
|
font-weight: 400;
|
|
1963
1965
|
}
|
|
1964
1966
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o:before {
|
|
1965
|
-
content: unquote('"#{ $fa-var-hand }"');
|
|
1967
|
+
content: string.unquote('"#{ $fa-var-hand }"');
|
|
1966
1968
|
}
|
|
1967
1969
|
|
|
1968
1970
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o {
|
|
1969
|
-
font-family:
|
|
1971
|
+
font-family: $fa-style-family;
|
|
1970
1972
|
font-weight: 400;
|
|
1971
1973
|
}
|
|
1972
1974
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o:before {
|
|
1973
|
-
content: unquote('"#{ $fa-var-hand-scissors }"');
|
|
1975
|
+
content: string.unquote('"#{ $fa-var-hand-scissors }"');
|
|
1974
1976
|
}
|
|
1975
1977
|
|
|
1976
1978
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o {
|
|
1977
|
-
font-family:
|
|
1979
|
+
font-family: $fa-style-family;
|
|
1978
1980
|
font-weight: 400;
|
|
1979
1981
|
}
|
|
1980
1982
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o:before {
|
|
1981
|
-
content: unquote('"#{ $fa-var-hand-lizard }"');
|
|
1983
|
+
content: string.unquote('"#{ $fa-var-hand-lizard }"');
|
|
1982
1984
|
}
|
|
1983
1985
|
|
|
1984
1986
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o {
|
|
1985
|
-
font-family:
|
|
1987
|
+
font-family: $fa-style-family;
|
|
1986
1988
|
font-weight: 400;
|
|
1987
1989
|
}
|
|
1988
1990
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o:before {
|
|
1989
|
-
content: unquote('"#{ $fa-var-hand-spock }"');
|
|
1991
|
+
content: string.unquote('"#{ $fa-var-hand-spock }"');
|
|
1990
1992
|
}
|
|
1991
1993
|
|
|
1992
1994
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o {
|
|
1993
|
-
font-family:
|
|
1995
|
+
font-family: $fa-style-family;
|
|
1994
1996
|
font-weight: 400;
|
|
1995
1997
|
}
|
|
1996
1998
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o:before {
|
|
1997
|
-
content: unquote('"#{ $fa-var-hand-pointer }"');
|
|
1999
|
+
content: string.unquote('"#{ $fa-var-hand-pointer }"');
|
|
1998
2000
|
}
|
|
1999
2001
|
|
|
2000
2002
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o {
|
|
2001
|
-
font-family:
|
|
2003
|
+
font-family: $fa-style-family;
|
|
2002
2004
|
font-weight: 400;
|
|
2003
2005
|
}
|
|
2004
2006
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o:before {
|
|
2005
|
-
content: unquote('"#{ $fa-var-hand-peace }"');
|
|
2007
|
+
content: string.unquote('"#{ $fa-var-hand-peace }"');
|
|
2006
2008
|
}
|
|
2007
2009
|
|
|
2008
2010
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-registered {
|
|
2009
|
-
font-family:
|
|
2011
|
+
font-family: $fa-style-family;
|
|
2010
2012
|
font-weight: 400;
|
|
2011
2013
|
}
|
|
2012
2014
|
|
|
2013
2015
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-creative-commons {
|
|
2014
|
-
font-family:
|
|
2016
|
+
font-family: $fa-style-family;
|
|
2015
2017
|
font-weight: 400;
|
|
2016
2018
|
}
|
|
2017
2019
|
|
|
2018
2020
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gg {
|
|
2019
|
-
font-family:
|
|
2021
|
+
font-family: $fa-style-family;
|
|
2020
2022
|
font-weight: 400;
|
|
2021
2023
|
}
|
|
2022
2024
|
|
|
2023
2025
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gg-circle {
|
|
2024
|
-
font-family:
|
|
2026
|
+
font-family: $fa-style-family;
|
|
2025
2027
|
font-weight: 400;
|
|
2026
2028
|
}
|
|
2027
2029
|
|
|
2028
2030
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki {
|
|
2029
|
-
font-family:
|
|
2031
|
+
font-family: $fa-style-family;
|
|
2030
2032
|
font-weight: 400;
|
|
2031
2033
|
}
|
|
2032
2034
|
|
|
2033
2035
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square {
|
|
2034
|
-
font-family:
|
|
2036
|
+
font-family: $fa-style-family;
|
|
2035
2037
|
font-weight: 400;
|
|
2036
2038
|
}
|
|
2037
2039
|
|
|
2038
2040
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-get-pocket {
|
|
2039
|
-
font-family:
|
|
2041
|
+
font-family: $fa-style-family;
|
|
2040
2042
|
font-weight: 400;
|
|
2041
2043
|
}
|
|
2042
2044
|
|
|
2043
2045
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wikipedia-w {
|
|
2044
|
-
font-family:
|
|
2046
|
+
font-family: $fa-style-family;
|
|
2045
2047
|
font-weight: 400;
|
|
2046
2048
|
}
|
|
2047
2049
|
|
|
2048
2050
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-safari {
|
|
2049
|
-
font-family:
|
|
2051
|
+
font-family: $fa-style-family;
|
|
2050
2052
|
font-weight: 400;
|
|
2051
2053
|
}
|
|
2052
2054
|
|
|
2053
2055
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-chrome {
|
|
2054
|
-
font-family:
|
|
2056
|
+
font-family: $fa-style-family;
|
|
2055
2057
|
font-weight: 400;
|
|
2056
2058
|
}
|
|
2057
2059
|
|
|
2058
2060
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-firefox {
|
|
2059
|
-
font-family:
|
|
2061
|
+
font-family: $fa-style-family;
|
|
2060
2062
|
font-weight: 400;
|
|
2061
2063
|
}
|
|
2062
2064
|
|
|
2063
2065
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-opera {
|
|
2064
|
-
font-family:
|
|
2066
|
+
font-family: $fa-style-family;
|
|
2065
2067
|
font-weight: 400;
|
|
2066
2068
|
}
|
|
2067
2069
|
|
|
2068
2070
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-internet-explorer {
|
|
2069
|
-
font-family:
|
|
2071
|
+
font-family: $fa-style-family;
|
|
2070
2072
|
font-weight: 400;
|
|
2071
2073
|
}
|
|
2072
2074
|
|
|
2073
2075
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-television:before {
|
|
2074
|
-
content: unquote('"#{ $fa-var-tv }"');
|
|
2076
|
+
content: string.unquote('"#{ $fa-var-tv }"');
|
|
2075
2077
|
}
|
|
2076
2078
|
|
|
2077
2079
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-contao {
|
|
2078
|
-
font-family:
|
|
2080
|
+
font-family: $fa-style-family;
|
|
2079
2081
|
font-weight: 400;
|
|
2080
2082
|
}
|
|
2081
2083
|
|
|
2082
2084
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-500px {
|
|
2083
|
-
font-family:
|
|
2085
|
+
font-family: $fa-style-family;
|
|
2084
2086
|
font-weight: 400;
|
|
2085
2087
|
}
|
|
2086
2088
|
|
|
2087
2089
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-amazon {
|
|
2088
|
-
font-family:
|
|
2090
|
+
font-family: $fa-style-family;
|
|
2089
2091
|
font-weight: 400;
|
|
2090
2092
|
}
|
|
2091
2093
|
|
|
2092
2094
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o {
|
|
2093
|
-
font-family:
|
|
2095
|
+
font-family: $fa-style-family;
|
|
2094
2096
|
font-weight: 400;
|
|
2095
2097
|
}
|
|
2096
2098
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o:before {
|
|
2097
|
-
content: unquote('"#{ $fa-var-calendar-plus }"');
|
|
2099
|
+
content: string.unquote('"#{ $fa-var-calendar-plus }"');
|
|
2098
2100
|
}
|
|
2099
2101
|
|
|
2100
2102
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o {
|
|
2101
|
-
font-family:
|
|
2103
|
+
font-family: $fa-style-family;
|
|
2102
2104
|
font-weight: 400;
|
|
2103
2105
|
}
|
|
2104
2106
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o:before {
|
|
2105
|
-
content: unquote('"#{ $fa-var-calendar-minus }"');
|
|
2107
|
+
content: string.unquote('"#{ $fa-var-calendar-minus }"');
|
|
2106
2108
|
}
|
|
2107
2109
|
|
|
2108
2110
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o {
|
|
2109
|
-
font-family:
|
|
2111
|
+
font-family: $fa-style-family;
|
|
2110
2112
|
font-weight: 400;
|
|
2111
2113
|
}
|
|
2112
2114
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o:before {
|
|
2113
|
-
content: unquote('"#{ $fa-var-calendar-xmark }"');
|
|
2115
|
+
content: string.unquote('"#{ $fa-var-calendar-xmark }"');
|
|
2114
2116
|
}
|
|
2115
2117
|
|
|
2116
2118
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o {
|
|
2117
|
-
font-family:
|
|
2119
|
+
font-family: $fa-style-family;
|
|
2118
2120
|
font-weight: 400;
|
|
2119
2121
|
}
|
|
2120
2122
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o:before {
|
|
2121
|
-
content: unquote('"#{ $fa-var-calendar-check }"');
|
|
2123
|
+
content: string.unquote('"#{ $fa-var-calendar-check }"');
|
|
2122
2124
|
}
|
|
2123
2125
|
|
|
2124
2126
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o {
|
|
2125
|
-
font-family:
|
|
2127
|
+
font-family: $fa-style-family;
|
|
2126
2128
|
font-weight: 400;
|
|
2127
2129
|
}
|
|
2128
2130
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before {
|
|
2129
|
-
content: unquote('"#{ $fa-var-map }"');
|
|
2131
|
+
content: string.unquote('"#{ $fa-var-map }"');
|
|
2130
2132
|
}
|
|
2131
2133
|
|
|
2132
2134
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before {
|
|
2133
|
-
content: unquote('"#{ $fa-var-comment-dots }"');
|
|
2135
|
+
content: string.unquote('"#{ $fa-var-comment-dots }"');
|
|
2134
2136
|
}
|
|
2135
2137
|
|
|
2136
2138
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o {
|
|
2137
|
-
font-family:
|
|
2139
|
+
font-family: $fa-style-family;
|
|
2138
2140
|
font-weight: 400;
|
|
2139
2141
|
}
|
|
2140
2142
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o:before {
|
|
2141
|
-
content: unquote('"#{ $fa-var-comment-dots }"');
|
|
2143
|
+
content: string.unquote('"#{ $fa-var-comment-dots }"');
|
|
2142
2144
|
}
|
|
2143
2145
|
|
|
2144
2146
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-houzz {
|
|
2145
|
-
font-family:
|
|
2147
|
+
font-family: $fa-style-family;
|
|
2146
2148
|
font-weight: 400;
|
|
2147
2149
|
}
|
|
2148
2150
|
|
|
2149
2151
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo {
|
|
2150
|
-
font-family:
|
|
2152
|
+
font-family: $fa-style-family;
|
|
2151
2153
|
font-weight: 400;
|
|
2152
2154
|
}
|
|
2153
2155
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo:before {
|
|
2154
|
-
content: unquote('"#{ $fa-var-vimeo-v }"');
|
|
2156
|
+
content: string.unquote('"#{ $fa-var-vimeo-v }"');
|
|
2155
2157
|
}
|
|
2156
2158
|
|
|
2157
2159
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-black-tie {
|
|
2158
|
-
font-family:
|
|
2160
|
+
font-family: $fa-style-family;
|
|
2159
2161
|
font-weight: 400;
|
|
2160
2162
|
}
|
|
2161
2163
|
|
|
2162
2164
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-fonticons {
|
|
2163
|
-
font-family:
|
|
2165
|
+
font-family: $fa-style-family;
|
|
2164
2166
|
font-weight: 400;
|
|
2165
2167
|
}
|
|
2166
2168
|
|
|
2167
2169
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-alien {
|
|
2168
|
-
font-family:
|
|
2170
|
+
font-family: $fa-style-family;
|
|
2169
2171
|
font-weight: 400;
|
|
2170
2172
|
}
|
|
2171
2173
|
|
|
2172
2174
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-edge {
|
|
2173
|
-
font-family:
|
|
2175
|
+
font-family: $fa-style-family;
|
|
2174
2176
|
font-weight: 400;
|
|
2175
2177
|
}
|
|
2176
2178
|
|
|
2177
2179
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt:before {
|
|
2178
|
-
content: unquote('"#{ $fa-var-credit-card }"');
|
|
2180
|
+
content: string.unquote('"#{ $fa-var-credit-card }"');
|
|
2179
2181
|
}
|
|
2180
2182
|
|
|
2181
2183
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-codiepie {
|
|
2182
|
-
font-family:
|
|
2184
|
+
font-family: $fa-style-family;
|
|
2183
2185
|
font-weight: 400;
|
|
2184
2186
|
}
|
|
2185
2187
|
|
|
2186
2188
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-modx {
|
|
2187
|
-
font-family:
|
|
2189
|
+
font-family: $fa-style-family;
|
|
2188
2190
|
font-weight: 400;
|
|
2189
2191
|
}
|
|
2190
2192
|
|
|
2191
2193
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-fort-awesome {
|
|
2192
|
-
font-family:
|
|
2194
|
+
font-family: $fa-style-family;
|
|
2193
2195
|
font-weight: 400;
|
|
2194
2196
|
}
|
|
2195
2197
|
|
|
2196
2198
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-usb {
|
|
2197
|
-
font-family:
|
|
2199
|
+
font-family: $fa-style-family;
|
|
2198
2200
|
font-weight: 400;
|
|
2199
2201
|
}
|
|
2200
2202
|
|
|
2201
2203
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-product-hunt {
|
|
2202
|
-
font-family:
|
|
2204
|
+
font-family: $fa-style-family;
|
|
2203
2205
|
font-weight: 400;
|
|
2204
2206
|
}
|
|
2205
2207
|
|
|
2206
2208
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-mixcloud {
|
|
2207
|
-
font-family:
|
|
2209
|
+
font-family: $fa-style-family;
|
|
2208
2210
|
font-weight: 400;
|
|
2209
2211
|
}
|
|
2210
2212
|
|
|
2211
2213
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-scribd {
|
|
2212
|
-
font-family:
|
|
2214
|
+
font-family: $fa-style-family;
|
|
2213
2215
|
font-weight: 400;
|
|
2214
2216
|
}
|
|
2215
2217
|
|
|
2216
2218
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o {
|
|
2217
|
-
font-family:
|
|
2219
|
+
font-family: $fa-style-family;
|
|
2218
2220
|
font-weight: 400;
|
|
2219
2221
|
}
|
|
2220
2222
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o:before {
|
|
2221
|
-
content: unquote('"#{ $fa-var-circle-pause }"');
|
|
2223
|
+
content: string.unquote('"#{ $fa-var-circle-pause }"');
|
|
2222
2224
|
}
|
|
2223
2225
|
|
|
2224
2226
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o {
|
|
2225
|
-
font-family:
|
|
2227
|
+
font-family: $fa-style-family;
|
|
2226
2228
|
font-weight: 400;
|
|
2227
2229
|
}
|
|
2228
2230
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o:before {
|
|
2229
|
-
content: unquote('"#{ $fa-var-circle-stop }"');
|
|
2231
|
+
content: string.unquote('"#{ $fa-var-circle-stop }"');
|
|
2230
2232
|
}
|
|
2231
2233
|
|
|
2232
2234
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth {
|
|
2233
|
-
font-family:
|
|
2235
|
+
font-family: $fa-style-family;
|
|
2234
2236
|
font-weight: 400;
|
|
2235
2237
|
}
|
|
2236
2238
|
|
|
2237
2239
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth-b {
|
|
2238
|
-
font-family:
|
|
2240
|
+
font-family: $fa-style-family;
|
|
2239
2241
|
font-weight: 400;
|
|
2240
2242
|
}
|
|
2241
2243
|
|
|
2242
2244
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gitlab {
|
|
2243
|
-
font-family:
|
|
2245
|
+
font-family: $fa-style-family;
|
|
2244
2246
|
font-weight: 400;
|
|
2245
2247
|
}
|
|
2246
2248
|
|
|
2247
2249
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wpbeginner {
|
|
2248
|
-
font-family:
|
|
2250
|
+
font-family: $fa-style-family;
|
|
2249
2251
|
font-weight: 400;
|
|
2250
2252
|
}
|
|
2251
2253
|
|
|
2252
2254
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wpforms {
|
|
2253
|
-
font-family:
|
|
2255
|
+
font-family: $fa-style-family;
|
|
2254
2256
|
font-weight: 400;
|
|
2255
2257
|
}
|
|
2256
2258
|
|
|
2257
2259
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-envira {
|
|
2258
|
-
font-family:
|
|
2260
|
+
font-family: $fa-style-family;
|
|
2259
2261
|
font-weight: 400;
|
|
2260
2262
|
}
|
|
2261
2263
|
|
|
2262
2264
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt {
|
|
2263
|
-
font-family:
|
|
2265
|
+
font-family: $fa-style-family;
|
|
2264
2266
|
font-weight: 400;
|
|
2265
2267
|
}
|
|
2266
2268
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt:before {
|
|
2267
|
-
content: unquote('"#{ $fa-var-accessible-icon }"');
|
|
2269
|
+
content: string.unquote('"#{ $fa-var-accessible-icon }"');
|
|
2268
2270
|
}
|
|
2269
2271
|
|
|
2270
2272
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o {
|
|
2271
|
-
font-family:
|
|
2273
|
+
font-family: $fa-style-family;
|
|
2272
2274
|
font-weight: 400;
|
|
2273
2275
|
}
|
|
2274
2276
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o:before {
|
|
2275
|
-
content: unquote('"#{ $fa-var-circle-question }"');
|
|
2277
|
+
content: string.unquote('"#{ $fa-var-circle-question }"');
|
|
2276
2278
|
}
|
|
2277
2279
|
|
|
2278
2280
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone:before {
|
|
2279
|
-
content: unquote('"#{ $fa-var-phone-volume }"');
|
|
2281
|
+
content: string.unquote('"#{ $fa-var-phone-volume }"');
|
|
2280
2282
|
}
|
|
2281
2283
|
|
|
2282
2284
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting:before {
|
|
2283
|
-
content: unquote('"#{ $fa-var-hands-asl-interpreting }"');
|
|
2285
|
+
content: string.unquote('"#{ $fa-var-hands-asl-interpreting }"');
|
|
2284
2286
|
}
|
|
2285
2287
|
|
|
2286
2288
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-deafness:before {
|
|
2287
|
-
content: unquote('"#{ $fa-var-ear-deaf }"');
|
|
2289
|
+
content: string.unquote('"#{ $fa-var-ear-deaf }"');
|
|
2288
2290
|
}
|
|
2289
2291
|
|
|
2290
2292
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing:before {
|
|
2291
|
-
content: unquote('"#{ $fa-var-ear-deaf }"');
|
|
2293
|
+
content: string.unquote('"#{ $fa-var-ear-deaf }"');
|
|
2292
2294
|
}
|
|
2293
2295
|
|
|
2294
2296
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-glide {
|
|
2295
|
-
font-family:
|
|
2297
|
+
font-family: $fa-style-family;
|
|
2296
2298
|
font-weight: 400;
|
|
2297
2299
|
}
|
|
2298
2300
|
|
|
2299
2301
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-glide-g {
|
|
2300
|
-
font-family:
|
|
2302
|
+
font-family: $fa-style-family;
|
|
2301
2303
|
font-weight: 400;
|
|
2302
2304
|
}
|
|
2303
2305
|
|
|
2304
2306
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-signing:before {
|
|
2305
|
-
content: unquote('"#{ $fa-var-hands }"');
|
|
2307
|
+
content: string.unquote('"#{ $fa-var-hands }"');
|
|
2306
2308
|
}
|
|
2307
2309
|
|
|
2308
2310
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo {
|
|
2309
|
-
font-family:
|
|
2311
|
+
font-family: $fa-style-family;
|
|
2310
2312
|
font-weight: 400;
|
|
2311
2313
|
}
|
|
2312
2314
|
|
|
2313
2315
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square {
|
|
2314
|
-
font-family:
|
|
2316
|
+
font-family: $fa-style-family;
|
|
2315
2317
|
font-weight: 400;
|
|
2316
2318
|
}
|
|
2317
2319
|
|
|
2318
2320
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat {
|
|
2319
|
-
font-family:
|
|
2321
|
+
font-family: $fa-style-family;
|
|
2320
2322
|
font-weight: 400;
|
|
2321
2323
|
}
|
|
2322
2324
|
|
|
2323
2325
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost {
|
|
2324
|
-
font-family:
|
|
2326
|
+
font-family: $fa-style-family;
|
|
2325
2327
|
font-weight: 400;
|
|
2326
2328
|
}
|
|
2327
2329
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost:before {
|
|
2328
|
-
content: unquote('"#{ $fa-var-snapchat }"');
|
|
2330
|
+
content: string.unquote('"#{ $fa-var-snapchat }"');
|
|
2329
2331
|
}
|
|
2330
2332
|
|
|
2331
2333
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square {
|
|
2332
|
-
font-family:
|
|
2334
|
+
font-family: $fa-style-family;
|
|
2333
2335
|
font-weight: 400;
|
|
2334
2336
|
}
|
|
2335
2337
|
|
|
2336
2338
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper {
|
|
2337
|
-
font-family:
|
|
2339
|
+
font-family: $fa-style-family;
|
|
2338
2340
|
font-weight: 400;
|
|
2339
2341
|
}
|
|
2340
2342
|
|
|
2341
2343
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-first-order {
|
|
2342
|
-
font-family:
|
|
2344
|
+
font-family: $fa-style-family;
|
|
2343
2345
|
font-weight: 400;
|
|
2344
2346
|
}
|
|
2345
2347
|
|
|
2346
2348
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yoast {
|
|
2347
|
-
font-family:
|
|
2349
|
+
font-family: $fa-style-family;
|
|
2348
2350
|
font-weight: 400;
|
|
2349
2351
|
}
|
|
2350
2352
|
|
|
2351
2353
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-themeisle {
|
|
2352
|
-
font-family:
|
|
2354
|
+
font-family: $fa-style-family;
|
|
2353
2355
|
font-weight: 400;
|
|
2354
2356
|
}
|
|
2355
2357
|
|
|
2356
2358
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official {
|
|
2357
|
-
font-family:
|
|
2359
|
+
font-family: $fa-style-family;
|
|
2358
2360
|
font-weight: 400;
|
|
2359
2361
|
}
|
|
2360
2362
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official:before {
|
|
2361
|
-
content: unquote('"#{ $fa-var-google-plus }"');
|
|
2363
|
+
content: string.unquote('"#{ $fa-var-google-plus }"');
|
|
2362
2364
|
}
|
|
2363
2365
|
|
|
2364
2366
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle {
|
|
2365
|
-
font-family:
|
|
2367
|
+
font-family: $fa-style-family;
|
|
2366
2368
|
font-weight: 400;
|
|
2367
2369
|
}
|
|
2368
2370
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle:before {
|
|
2369
|
-
content: unquote('"#{ $fa-var-google-plus }"');
|
|
2371
|
+
content: string.unquote('"#{ $fa-var-google-plus }"');
|
|
2370
2372
|
}
|
|
2371
2373
|
|
|
2372
2374
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-font-awesome {
|
|
2373
|
-
font-family:
|
|
2375
|
+
font-family: $fa-style-family;
|
|
2374
2376
|
font-weight: 400;
|
|
2375
2377
|
}
|
|
2376
2378
|
|
|
2377
2379
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-fa {
|
|
2378
|
-
font-family:
|
|
2380
|
+
font-family: $fa-style-family;
|
|
2379
2381
|
font-weight: 400;
|
|
2380
2382
|
}
|
|
2381
2383
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-fa:before {
|
|
2382
|
-
content: unquote('"#{ $fa-var-font-awesome }"');
|
|
2384
|
+
content: string.unquote('"#{ $fa-var-font-awesome }"');
|
|
2383
2385
|
}
|
|
2384
2386
|
|
|
2385
2387
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o {
|
|
2386
|
-
font-family:
|
|
2388
|
+
font-family: $fa-style-family;
|
|
2387
2389
|
font-weight: 400;
|
|
2388
2390
|
}
|
|
2389
2391
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o:before {
|
|
2390
|
-
content: unquote('"#{ $fa-var-handshake }"');
|
|
2392
|
+
content: string.unquote('"#{ $fa-var-handshake }"');
|
|
2391
2393
|
}
|
|
2392
2394
|
|
|
2393
2395
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o {
|
|
2394
|
-
font-family:
|
|
2396
|
+
font-family: $fa-style-family;
|
|
2395
2397
|
font-weight: 400;
|
|
2396
2398
|
}
|
|
2397
2399
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o:before {
|
|
2398
|
-
content: unquote('"#{ $fa-var-envelope-open }"');
|
|
2400
|
+
content: string.unquote('"#{ $fa-var-envelope-open }"');
|
|
2399
2401
|
}
|
|
2400
2402
|
|
|
2401
2403
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linode {
|
|
2402
|
-
font-family:
|
|
2404
|
+
font-family: $fa-style-family;
|
|
2403
2405
|
font-weight: 400;
|
|
2404
2406
|
}
|
|
2405
2407
|
|
|
2406
2408
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o {
|
|
2407
|
-
font-family:
|
|
2409
|
+
font-family: $fa-style-family;
|
|
2408
2410
|
font-weight: 400;
|
|
2409
2411
|
}
|
|
2410
2412
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o:before {
|
|
2411
|
-
content: unquote('"#{ $fa-var-address-book }"');
|
|
2413
|
+
content: string.unquote('"#{ $fa-var-address-book }"');
|
|
2412
2414
|
}
|
|
2413
2415
|
|
|
2414
2416
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard:before {
|
|
2415
|
-
content: unquote('"#{ $fa-var-address-card }"');
|
|
2417
|
+
content: string.unquote('"#{ $fa-var-address-card }"');
|
|
2416
2418
|
}
|
|
2417
2419
|
|
|
2418
2420
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o {
|
|
2419
|
-
font-family:
|
|
2421
|
+
font-family: $fa-style-family;
|
|
2420
2422
|
font-weight: 400;
|
|
2421
2423
|
}
|
|
2422
2424
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o:before {
|
|
2423
|
-
content: unquote('"#{ $fa-var-address-card }"');
|
|
2425
|
+
content: string.unquote('"#{ $fa-var-address-card }"');
|
|
2424
2426
|
}
|
|
2425
2427
|
|
|
2426
2428
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o {
|
|
2427
|
-
font-family:
|
|
2429
|
+
font-family: $fa-style-family;
|
|
2428
2430
|
font-weight: 400;
|
|
2429
2431
|
}
|
|
2430
2432
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o:before {
|
|
2431
|
-
content: unquote('"#{ $fa-var-address-card }"');
|
|
2433
|
+
content: string.unquote('"#{ $fa-var-address-card }"');
|
|
2432
2434
|
}
|
|
2433
2435
|
|
|
2434
2436
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o {
|
|
2435
|
-
font-family:
|
|
2437
|
+
font-family: $fa-style-family;
|
|
2436
2438
|
font-weight: 400;
|
|
2437
2439
|
}
|
|
2438
2440
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o:before {
|
|
2439
|
-
content: unquote('"#{ $fa-var-circle-user }"');
|
|
2441
|
+
content: string.unquote('"#{ $fa-var-circle-user }"');
|
|
2440
2442
|
}
|
|
2441
2443
|
|
|
2442
2444
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o {
|
|
2443
|
-
font-family:
|
|
2445
|
+
font-family: $fa-style-family;
|
|
2444
2446
|
font-weight: 400;
|
|
2445
2447
|
}
|
|
2446
2448
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o:before {
|
|
2447
|
-
content: unquote('"#{ $fa-var-user }"');
|
|
2449
|
+
content: string.unquote('"#{ $fa-var-user }"');
|
|
2448
2450
|
}
|
|
2449
2451
|
|
|
2450
2452
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-badge {
|
|
2451
|
-
font-family:
|
|
2453
|
+
font-family: $fa-style-family;
|
|
2452
2454
|
font-weight: 400;
|
|
2453
2455
|
}
|
|
2454
2456
|
|
|
2455
2457
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license:before {
|
|
2456
|
-
content: unquote('"#{ $fa-var-id-card }"');
|
|
2458
|
+
content: string.unquote('"#{ $fa-var-id-card }"');
|
|
2457
2459
|
}
|
|
2458
2460
|
|
|
2459
2461
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o {
|
|
2460
|
-
font-family:
|
|
2462
|
+
font-family: $fa-style-family;
|
|
2461
2463
|
font-weight: 400;
|
|
2462
2464
|
}
|
|
2463
2465
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o:before {
|
|
2464
|
-
content: unquote('"#{ $fa-var-id-card }"');
|
|
2466
|
+
content: string.unquote('"#{ $fa-var-id-card }"');
|
|
2465
2467
|
}
|
|
2466
2468
|
|
|
2467
2469
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o {
|
|
2468
|
-
font-family:
|
|
2470
|
+
font-family: $fa-style-family;
|
|
2469
2471
|
font-weight: 400;
|
|
2470
2472
|
}
|
|
2471
2473
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o:before {
|
|
2472
|
-
content: unquote('"#{ $fa-var-id-card }"');
|
|
2474
|
+
content: string.unquote('"#{ $fa-var-id-card }"');
|
|
2473
2475
|
}
|
|
2474
2476
|
|
|
2475
2477
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-quora {
|
|
2476
|
-
font-family:
|
|
2478
|
+
font-family: $fa-style-family;
|
|
2477
2479
|
font-weight: 400;
|
|
2478
2480
|
}
|
|
2479
2481
|
|
|
2480
2482
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-free-code-camp {
|
|
2481
|
-
font-family:
|
|
2483
|
+
font-family: $fa-style-family;
|
|
2482
2484
|
font-weight: 400;
|
|
2483
2485
|
}
|
|
2484
2486
|
|
|
2485
2487
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-telegram {
|
|
2486
|
-
font-family:
|
|
2488
|
+
font-family: $fa-style-family;
|
|
2487
2489
|
font-weight: 400;
|
|
2488
2490
|
}
|
|
2489
2491
|
|
|
2490
2492
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4:before {
|
|
2491
|
-
content: unquote('"#{ $fa-var-temperature-full }"');
|
|
2493
|
+
content: string.unquote('"#{ $fa-var-temperature-full }"');
|
|
2492
2494
|
}
|
|
2493
2495
|
|
|
2494
2496
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer:before {
|
|
2495
|
-
content: unquote('"#{ $fa-var-temperature-full }"');
|
|
2497
|
+
content: string.unquote('"#{ $fa-var-temperature-full }"');
|
|
2496
2498
|
}
|
|
2497
2499
|
|
|
2498
2500
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3:before {
|
|
2499
|
-
content: unquote('"#{ $fa-var-temperature-three-quarters }"');
|
|
2501
|
+
content: string.unquote('"#{ $fa-var-temperature-three-quarters }"');
|
|
2500
2502
|
}
|
|
2501
2503
|
|
|
2502
2504
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2:before {
|
|
2503
|
-
content: unquote('"#{ $fa-var-temperature-half }"');
|
|
2505
|
+
content: string.unquote('"#{ $fa-var-temperature-half }"');
|
|
2504
2506
|
}
|
|
2505
2507
|
|
|
2506
2508
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1:before {
|
|
2507
|
-
content: unquote('"#{ $fa-var-temperature-quarter }"');
|
|
2509
|
+
content: string.unquote('"#{ $fa-var-temperature-quarter }"');
|
|
2508
2510
|
}
|
|
2509
2511
|
|
|
2510
2512
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0:before {
|
|
2511
|
-
content: unquote('"#{ $fa-var-temperature-empty }"');
|
|
2513
|
+
content: string.unquote('"#{ $fa-var-temperature-empty }"');
|
|
2512
2514
|
}
|
|
2513
2515
|
|
|
2514
2516
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub:before {
|
|
2515
|
-
content: unquote('"#{ $fa-var-bath }"');
|
|
2517
|
+
content: string.unquote('"#{ $fa-var-bath }"');
|
|
2516
2518
|
}
|
|
2517
2519
|
|
|
2518
2520
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-s15:before {
|
|
2519
|
-
content: unquote('"#{ $fa-var-bath }"');
|
|
2521
|
+
content: string.unquote('"#{ $fa-var-bath }"');
|
|
2520
2522
|
}
|
|
2521
2523
|
|
|
2522
2524
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-maximize {
|
|
2523
|
-
font-family:
|
|
2525
|
+
font-family: $fa-style-family;
|
|
2524
2526
|
font-weight: 400;
|
|
2525
2527
|
}
|
|
2526
2528
|
|
|
2527
2529
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-restore {
|
|
2528
|
-
font-family:
|
|
2530
|
+
font-family: $fa-style-family;
|
|
2529
2531
|
font-weight: 400;
|
|
2530
2532
|
}
|
|
2531
2533
|
|
|
2532
2534
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle:before {
|
|
2533
|
-
content: unquote('"#{ $fa-var-rectangle-xmark }"');
|
|
2535
|
+
content: string.unquote('"#{ $fa-var-rectangle-xmark }"');
|
|
2534
2536
|
}
|
|
2535
2537
|
|
|
2536
2538
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o {
|
|
2537
|
-
font-family:
|
|
2539
|
+
font-family: $fa-style-family;
|
|
2538
2540
|
font-weight: 400;
|
|
2539
2541
|
}
|
|
2540
2542
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o:before {
|
|
2541
|
-
content: unquote('"#{ $fa-var-rectangle-xmark }"');
|
|
2543
|
+
content: string.unquote('"#{ $fa-var-rectangle-xmark }"');
|
|
2542
2544
|
}
|
|
2543
2545
|
|
|
2544
2546
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o {
|
|
2545
|
-
font-family:
|
|
2547
|
+
font-family: $fa-style-family;
|
|
2546
2548
|
font-weight: 400;
|
|
2547
2549
|
}
|
|
2548
2550
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o:before {
|
|
2549
|
-
content: unquote('"#{ $fa-var-rectangle-xmark }"');
|
|
2551
|
+
content: string.unquote('"#{ $fa-var-rectangle-xmark }"');
|
|
2550
2552
|
}
|
|
2551
2553
|
|
|
2552
2554
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bandcamp {
|
|
2553
|
-
font-family:
|
|
2555
|
+
font-family: $fa-style-family;
|
|
2554
2556
|
font-weight: 400;
|
|
2555
2557
|
}
|
|
2556
2558
|
|
|
2557
2559
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-grav {
|
|
2558
|
-
font-family:
|
|
2560
|
+
font-family: $fa-style-family;
|
|
2559
2561
|
font-weight: 400;
|
|
2560
2562
|
}
|
|
2561
2563
|
|
|
2562
2564
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-etsy {
|
|
2563
|
-
font-family:
|
|
2565
|
+
font-family: $fa-style-family;
|
|
2564
2566
|
font-weight: 400;
|
|
2565
2567
|
}
|
|
2566
2568
|
|
|
2567
2569
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-imdb {
|
|
2568
|
-
font-family:
|
|
2570
|
+
font-family: $fa-style-family;
|
|
2569
2571
|
font-weight: 400;
|
|
2570
2572
|
}
|
|
2571
2573
|
|
|
2572
2574
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ravelry {
|
|
2573
|
-
font-family:
|
|
2575
|
+
font-family: $fa-style-family;
|
|
2574
2576
|
font-weight: 400;
|
|
2575
2577
|
}
|
|
2576
2578
|
|
|
2577
2579
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast {
|
|
2578
|
-
font-family:
|
|
2580
|
+
font-family: $fa-style-family;
|
|
2579
2581
|
font-weight: 400;
|
|
2580
2582
|
}
|
|
2581
2583
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast:before {
|
|
2582
|
-
content: unquote('"#{ $fa-var-sellcast }"');
|
|
2584
|
+
content: string.unquote('"#{ $fa-var-sellcast }"');
|
|
2583
2585
|
}
|
|
2584
2586
|
|
|
2585
2587
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o {
|
|
2586
|
-
font-family:
|
|
2588
|
+
font-family: $fa-style-family;
|
|
2587
2589
|
font-weight: 400;
|
|
2588
2590
|
}
|
|
2589
2591
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o:before {
|
|
2590
|
-
content: unquote('"#{ $fa-var-snowflake }"');
|
|
2592
|
+
content: string.unquote('"#{ $fa-var-snowflake }"');
|
|
2591
2593
|
}
|
|
2592
2594
|
|
|
2593
2595
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-superpowers {
|
|
2594
|
-
font-family:
|
|
2596
|
+
font-family: $fa-style-family;
|
|
2595
2597
|
font-weight: 400;
|
|
2596
2598
|
}
|
|
2597
2599
|
|
|
2598
2600
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wpexplorer {
|
|
2599
|
-
font-family:
|
|
2601
|
+
font-family: $fa-style-family;
|
|
2600
2602
|
font-weight: 400;
|
|
2601
2603
|
}
|
|
2602
2604
|
|
|
2603
2605
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-meetup {
|
|
2604
|
-
font-family:
|
|
2606
|
+
font-family: $fa-style-family;
|
|
2605
2607
|
font-weight: 400;
|
|
2606
2608
|
}
|