@cwellt_software/cwellt-reactjs-lib 1.1.5 → 1.1.7
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/dist/index.cjs.js +1314 -70
- package/dist/index.css +2 -2
- package/dist/index.d.ts +235 -4
- package/dist/index.es.js +1310 -71
- package/dist/playground/main.d.ts.map +1 -1
- package/dist/src/common/classes/CwSelectList.js +12 -0
- package/dist/src/common/classes/CwSelectListItems.js +14 -0
- package/dist/src/common/functions/collections.js +18 -0
- package/dist/src/common/functions/colorManipulation.js +76 -0
- package/dist/src/common/functions/dsl/UiEventDSL.js +20 -0
- package/dist/src/common/functions/useSingleAndDoubleClicks.js +28 -0
- package/dist/src/components/control/action/button/CwButton.js +13 -0
- package/dist/src/components/control/action/buttons/CwButtons.js +188 -0
- package/dist/src/components/control/action/contextmenu/CwContextMenu.js +43 -0
- package/dist/src/components/control/action/contextual-menu/CwContextualMenu.js +55 -0
- package/dist/src/components/control/action/search/CwSearch.js +67 -0
- package/dist/src/components/control/action/tooltip-dialog/CwTooltipDialog.js +11 -0
- package/dist/src/components/control/choice/checkbox/CwCheckbox.js +15 -0
- package/dist/src/components/control/choice/deprecated/MultiSelect_deprecated_.js +99 -0
- package/dist/src/components/control/choice/dropdown/CwDropdown.js +27 -0
- package/dist/src/components/control/choice/dropdown/CwDropdownContainer.js +30 -0
- package/dist/src/components/control/choice/dropdown/CwDropdownFilter.js +10 -0
- package/dist/src/components/control/choice/multi-filter/CwMultiFilter.js +298 -0
- package/dist/src/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.js +17 -0
- package/dist/src/components/control/choice/multiselect/CwHeadFilter.js +80 -0
- package/dist/src/components/control/choice/multiselect/CwMultiselect.js +393 -0
- package/dist/src/components/control/choice/multiselect/CwOptionList.js +36 -0
- package/dist/src/components/control/choice/option/CwOption.js +16 -0
- package/dist/src/components/control/choice/select/CwSelect.js +36 -0
- package/dist/src/components/control/choice/toggle/CwToggle.js +9 -0
- package/dist/src/components/control/input/any/CwInput.js +16 -0
- package/dist/src/components/control/input/color/CwColorPicker.js +210 -0
- package/dist/src/components/control/input/color/CwInputColor.js +142 -0
- package/dist/src/components/control/input/date/CwInputDate.js +29 -0
- package/dist/src/components/control/input/date-picker/CwInputDatePicker.js +109 -0
- package/dist/src/components/control/input/date-text/CwInputDateText.js +90 -0
- package/dist/src/components/control/input/datetime/CwInputDatetime.js +29 -0
- package/dist/src/components/control/input/digit/CwDigit.js +28 -0
- package/dist/src/components/control/input/file/CwFileUpload.js +52 -0
- package/dist/src/components/control/input/file/CwFileUploadMultiple.js +148 -0
- package/dist/src/components/control/input/image/CwInputImage.js +52 -0
- package/dist/src/components/control/input/image-area/CwImageArea.js +113 -0
- package/dist/src/components/control/input/new-dates/CwDatePicker.d.ts +42 -0
- package/dist/src/components/control/input/new-dates/CwDatePicker.d.ts.map +1 -0
- package/dist/src/components/control/input/new-dates/CwDateRangePicker.d.ts +63 -0
- package/dist/src/components/control/input/new-dates/CwDateRangePicker.d.ts.map +1 -0
- package/dist/src/components/control/input/new-dates/CwDateTimePicker.d.ts +47 -0
- package/dist/src/components/control/input/new-dates/CwDateTimePicker.d.ts.map +1 -0
- package/dist/src/components/control/input/new-dates/CwDateTimePickerCompact.d.ts +46 -0
- package/dist/src/components/control/input/new-dates/CwDateTimePickerCompact.d.ts.map +1 -0
- package/dist/src/components/control/input/new-dates/CwTimePicker.d.ts +38 -0
- package/dist/src/components/control/input/new-dates/CwTimePicker.d.ts.map +1 -0
- package/dist/src/components/control/input/new-dates/dateRangePresets.d.ts +19 -0
- package/dist/src/components/control/input/new-dates/dateRangePresets.d.ts.map +1 -0
- package/dist/src/components/control/input/number/CwInputNumber.js +11 -0
- package/dist/src/components/control/input/phone/CwInputPhone.js +24 -0
- package/dist/src/components/control/input/text/CwInputText.js +31 -0
- package/dist/src/components/control/input/text-area/CwTextArea.js +9 -0
- package/dist/src/components/control/input/time/CwTime.js +29 -0
- package/dist/src/components/control/input/weekday/CwWeekdaySelector.js +143 -0
- package/dist/src/components/custom/find-airport/CwFindAirportComp.js +240 -0
- package/dist/src/components/custom/scheduler/CwSchedulerComp.js +211 -0
- package/dist/src/components/custom/scheduler/CwSuperSchedulerComp.js +269 -0
- package/dist/src/components/custom/scheduler/components/EventRender.js +142 -0
- package/dist/src/components/custom/scheduler/components/ResourceListRender.js +12 -0
- package/dist/src/components/custom/scheduler/components/ResourceRender.js +26 -0
- package/dist/src/components/custom/scheduler/components/day_headers/DayHeader.js +13 -0
- package/dist/src/components/custom/scheduler/components/day_headers/MonthHeader.js +12 -0
- package/dist/src/components/custom/scheduler/components/day_headers/MyDaysHeader.js +62 -0
- package/dist/src/components/custom/scheduler/components/day_headers/WeekHeader.js +13 -0
- package/dist/src/components/custom/scheduler/components/resources_title_list/ResourcesTitleList.js +24 -0
- package/dist/src/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.js +17 -0
- package/dist/src/components/custom/scheduler/components/scheduler_header/SchedulerHeader.js +26 -0
- package/dist/src/components/custom/scheduler/components/scheduler_timeline/SchedulerTimeLine.js +23 -0
- package/dist/src/components/custom/scheduler/components/time_headers/TimeHeader.js +31 -0
- package/dist/src/components/custom/scheduler/components/time_headers/TimeHeaderRow.js +16 -0
- package/dist/src/components/custom/scheduler/components/time_line/TimeLine.js +12 -0
- package/dist/src/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.js +5 -0
- package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDates.js +15 -0
- package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.js +5 -0
- package/dist/src/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.js +43 -0
- package/dist/src/components/custom/scheduler/logic/dates/getMonthHeaderData.js +35 -0
- package/dist/src/components/custom/scheduler/logic/dates/getUtcToday.js +6 -0
- package/dist/src/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.js +20 -0
- package/dist/src/components/custom/scheduler/logic/dates/listOfDatesToWeeks.js +55 -0
- package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisionType.js +13 -0
- package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisions.js +16 -0
- package/dist/src/components/custom/scheduler/logic/filtering/filterEvents.js +33 -0
- package/dist/src/components/custom/scheduler/logic/filtering/filterResources.js +14 -0
- package/dist/src/components/custom/scheduler/logic/filtering/hasSameProperties.js +10 -0
- package/dist/src/components/custom/scheduler/logic/onDrop/OnDrop.js +45 -0
- package/dist/src/components/custom/scheduler/logic/pixels/getHeightLineScheduler.js +14 -0
- package/dist/src/components/custom/scheduler/logic/pixels/getPixelsForEvent.js +32 -0
- package/dist/src/components/custom/scheduler/logic/pixels/heightScheduler.js +14 -0
- package/dist/src/components/custom/scheduler/logic/pixels/heightSchedulerPinned.js +9 -0
- package/dist/src/components/custom/scheduler/logic/state_handle/doubleClickOnResource.js +5 -0
- package/dist/src/components/custom/scheduler/logic/state_handle/handleResourceChange.js +11 -0
- package/dist/src/components/custom/scheduler/logic/state_handle/onDragOver.js +9 -0
- package/dist/src/components/custom/scheduler/logic/state_handle/onDropEventToResource.js +3 -0
- package/dist/src/components/custom/scheduler/logic/strings/compareStrings.js +7 -0
- package/dist/src/components/custom/scheduler/logic/strings/getGUID.js +7 -0
- package/dist/src/components/custom/scheduler/logic/ui/checkIfSlotAvailable.js +8 -0
- package/dist/src/components/custom/scheduler/logic/ui/getEventsOfResource.js +45 -0
- package/dist/src/components/custom/scheduler/logic/ui/getTimeHeaders.js +35 -0
- package/dist/src/components/custom/scheduler/logic/ui/isAllowedToMove.js +19 -0
- package/dist/src/components/custom/scheduler/logic/ui/updateResourceVisibility.js +15 -0
- package/dist/src/components/custom/scheduler/state/CblDragAndDrop.js +18 -0
- package/dist/src/components/custom/scheduler/state/CwSchedulerProps.js +1 -0
- package/dist/src/components/custom/scheduler/state/Resource.js +18 -0
- package/dist/src/components/custom/scheduler/state/State.js +1 -0
- package/dist/src/components/custom/scheduler/state/cblEvent.js +28 -0
- package/dist/src/components/custom/scheduler/state/cblEventCompProps.js +1 -0
- package/dist/src/components/custom/scheduler/state/resourceCompProps2.js +1 -0
- package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.js +123 -0
- package/dist/src/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.d.ts +2 -1
- package/dist/src/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.js +118 -0
- package/dist/src/components/custom/scheduler-new/presentation/SchedulerPresenter.js +166 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/header/HeaderDivision.js +26 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/header/HeaderTitle.js +8 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.js +86 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.js +60 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.js +24 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/Event.js +150 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/EventSideDrag.js +11 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.js +176 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.js +8 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/timeline/TimeLine.js +39 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/timeline/WeekEndLine.js +8 -0
- package/dist/src/components/custom/scheduler-new/presentation/helpers.js +43 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/WeekendCalc.js +24 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/dateFromPercentage.js +7 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/eventIsVisible.js +7 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.js +113 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getDivisions.js +21 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getEventSizes.js +30 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.js +13 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getPercentageFromMouseEvent.js +7 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.js +32 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.js +12 -0
- package/dist/src/components/custom/scheduler-temporal/CwSchedulerComp2.js +267 -0
- package/dist/src/components/custom/scheduler-temporal/CwSuperSchedulerComp.js +269 -0
- package/dist/src/components/custom/scheduler-temporal/components/EventRender.js +142 -0
- package/dist/src/components/custom/scheduler-temporal/components/ResourceListRender.js +12 -0
- package/dist/src/components/custom/scheduler-temporal/components/ResourceRender.js +26 -0
- package/dist/src/components/custom/scheduler-temporal/components/day_headers/DayHeader.js +13 -0
- package/dist/src/components/custom/scheduler-temporal/components/day_headers/MonthHeader.js +12 -0
- package/dist/src/components/custom/scheduler-temporal/components/day_headers/MyDaysHeader.js +62 -0
- package/dist/src/components/custom/scheduler-temporal/components/day_headers/WeekHeader.js +13 -0
- package/dist/src/components/custom/scheduler-temporal/components/resources_title_list/ResourcesTitleList.js +22 -0
- package/dist/src/components/custom/scheduler-temporal/components/scheduler_content_area/SchedulerContentArea.js +17 -0
- package/dist/src/components/custom/scheduler-temporal/components/scheduler_header/SchedulerHeader.js +26 -0
- package/dist/src/components/custom/scheduler-temporal/components/scheduler_timeline/SchedulerTimeLine.js +23 -0
- package/dist/src/components/custom/scheduler-temporal/components/time_headers/TimeHeader.js +31 -0
- package/dist/src/components/custom/scheduler-temporal/components/time_headers/TimeHeaderRow.js +16 -0
- package/dist/src/components/custom/scheduler-temporal/components/time_line/TimeLine.js +12 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/addMinutesToDateFromPx.js +5 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDates.js +15 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDatesWithoutCeil.js +5 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/getFormatedTimeForHeader.js +43 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/getMonthHeaderData.js +35 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/getUtcToday.js +6 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/getWeekHeaderDataFromWeekRange.js +20 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/listOfDatesToWeeks.js +55 -0
- package/dist/src/components/custom/scheduler-temporal/logic/divisions/calculateDivisionType.js +13 -0
- package/dist/src/components/custom/scheduler-temporal/logic/divisions/calculateDivisions.js +16 -0
- package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterAndProcessResources.js +10 -0
- package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterEvents.js +34 -0
- package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterResources.js +14 -0
- package/dist/src/components/custom/scheduler-temporal/logic/filtering/hasSameProperties.js +10 -0
- package/dist/src/components/custom/scheduler-temporal/logic/onDrop/OnDrop.js +36 -0
- package/dist/src/components/custom/scheduler-temporal/logic/pixels/getHeightLineScheduler.js +14 -0
- package/dist/src/components/custom/scheduler-temporal/logic/pixels/getPixelsForEvent.js +32 -0
- package/dist/src/components/custom/scheduler-temporal/logic/pixels/heightScheduler.js +14 -0
- package/dist/src/components/custom/scheduler-temporal/logic/pixels/heightSchedulerPinned.js +9 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/doubleClickOnResource.js +5 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/handlePropChanges.js +178 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/handleResourceChange.js +11 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onDragOver.js +9 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onDropEventToResource.js +3 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onResizeEvent.js +3 -0
- package/dist/src/components/custom/scheduler-temporal/logic/strings/compareStrings.js +7 -0
- package/dist/src/components/custom/scheduler-temporal/logic/strings/getGUID.js +7 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/checkIfSlotAvailable.js +9 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/getEventsOfResource.js +92 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/getHasPropsChanged.js +242 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/getTimeHeaders.js +35 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/isAllowedToMove.js +19 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/shouldTriggerScroll.js +241 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/updateResourceVisibility.js +15 -0
- package/dist/src/components/custom/scheduler-temporal/state/CblDragAndDrop.js +18 -0
- package/dist/src/components/custom/scheduler-temporal/state/Resource.js +18 -0
- package/dist/src/components/custom/scheduler-temporal/state/cblEvent.js +28 -0
- package/dist/src/components/custom/scheduler-temporal/state/cblEventCompProps.js +1 -0
- package/dist/src/components/custom/scheduler-temporal/state/resourceCompProps2.js +1 -0
- package/dist/src/components/custom/super-scheduler/PinRowHeader.d.ts.map +1 -1
- package/dist/src/components/custom/super-scheduler/PinRowHeader.js +53 -0
- package/dist/src/components/custom/super-scheduler/SuperScheduler.js +23 -0
- package/dist/src/components/custom/super-scheduler/SuperSchedulerEvents.js +15 -0
- package/dist/src/components/custom/super-scheduler/SuperSchedulerPresenter.js +45 -0
- package/dist/src/components/display/data/accordion/CwAccordionContainer.js +20 -0
- package/dist/src/components/display/data/generic_tooltip/CwGenericTooltip.js +138 -0
- package/dist/src/components/display/data/table/CwTable.d.ts.map +1 -1
- package/dist/src/components/display/data/table/CwTable.js +203 -0
- package/dist/src/components/display/graphics/icon/CwIcon.js +23 -0
- package/dist/src/components/display/graphics/loading/CwLoading.js +27 -0
- package/dist/src/components/display/graphics/loading-small/CwLoadingSmall.js +20 -0
- package/dist/src/components/display/text/heading/CwHeadingMain.js +5 -0
- package/dist/src/components/display/text/heading/CwHeadingSecond.js +5 -0
- package/dist/src/components/display/text/label/CwLabel.js +13 -0
- package/dist/src/components/display/text/message/CwMessage.js +75 -0
- package/dist/src/components/display/text/note/CwNote.js +78 -0
- package/dist/src/components/display/text/tag/CwChip.js +57 -0
- package/dist/src/components/display/text/tag/CwTag.js +21 -0
- package/dist/src/components/display/text/tooltip/CwTooltip.js +4 -0
- package/dist/src/components/layout/align/CwAlign.js +54 -0
- package/dist/src/components/layout/card/CwCard.js +55 -0
- package/dist/src/components/layout/card/CwCardList.js +38 -0
- package/dist/src/components/layout/dialog/CwDialog.js +255 -0
- package/dist/src/components/layout/dialog/CwDialogManager.js +44 -0
- package/dist/src/components/layout/list/details/CwExpandable.js +28 -0
- package/dist/src/components/layout/list/key-value/CwKeyValueList.d.ts +2 -3
- package/dist/src/components/layout/list/key-value/CwKeyValueList.d.ts.map +1 -1
- package/dist/src/components/layout/list/key-value/CwKeyValueList.js +23 -0
- package/dist/src/components/layout/list/sortable/CwSortableList.js +73 -0
- package/dist/src/components/layout/list/sortable/useSortableList.js +53 -0
- package/dist/src/components/layout/modal/CwModalReportFunctional.js +23 -0
- package/dist/src/components/layout/modal/hover/CwModalHover.js +61 -0
- package/dist/src/components/layout/modal/legacy/cw_modal.js +44 -0
- package/dist/src/components/layout/modal/legacy/cw_modal_confirm.js +39 -0
- package/dist/src/components/layout/modal/legacy/cw_modal_iframe.js +44 -0
- package/dist/src/components/layout/modal/legacy/cw_modal_report.js +26 -0
- package/dist/src/components/layout/table/grouped/CwTableGrouped.js +70 -0
- package/dist/src/components/layout/tabs/CwTabs.js +53 -0
- package/dist/src/index.d.ts +6 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +187 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/getDefaultDivisions.test.js +48 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/hoursBetween.test.js +15 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/monthDivisions.test.js +42 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/weekendCalc.test.js +30 -0
- package/dist/test/components/custom/scheduler/addMinutesToDateFromPx.test.js +43 -0
- package/dist/test/components/custom/scheduler/checkIfSlotAvailable.test.js +30 -0
- package/dist/test/components/custom/scheduler/daysBetweenTwoDates.test.js +61 -0
- package/dist/test/components/custom/scheduler/daysBetweenTwoDatesWithoutCeilForEvent.test.js +27 -0
- package/dist/test/components/custom/scheduler/getGUID.test.js +30 -0
- package/dist/test/components/custom/scheduler/getPixelsForEvent.test.js +38 -0
- package/dist/test/components/custom/scheduler/getTimeHeaders.test.js +35 -0
- package/dist/test/components/custom/scheduler/hasSameProperties.test.js +51 -0
- package/dist/test/components/custom/scheduler/isAllowedToMove.test.js +28 -0
- package/dist/test/components/custom/scheduler/listOfDatesToWeeks.test.js +72 -0
- package/dist/test/jest.setup.js +1 -0
- package/package.json +6 -2
- package/dist/assets/asset-DnHaq7m- +0 -50
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-full-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-grad-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-opsz-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-slnt-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-standard-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-wdth-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-wght-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-xopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-xtra-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-yopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytas-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytde-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytfi-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytlc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytuc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-full-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-grad-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-opsz-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-slnt-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-standard-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-wdth-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-wght-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-xopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-xtra-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-yopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytas-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytde-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytfi-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytlc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytuc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-full-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-grad-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-opsz-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-slnt-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-standard-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-wdth-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-wght-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-xopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-xtra-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-yopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytas-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytde-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytfi-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytlc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytuc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-full-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-grad-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-opsz-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-slnt-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-standard-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-wdth-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-wght-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-xopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-xtra-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-yopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytas-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytde-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytfi-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytlc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytuc-normal.woff2 +0 -0
- package/dist/content/icons/cw-icons/css/cw-icons.css +0 -2784
- package/dist/content/icons/cw-icons/fonts/cwAvinodeFont/CblAvinodeIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwAvinodeFont/CblAvinodeIcon.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwAvinodeFont/CblAvinodeIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwAvinodeFont/CblAvinodeIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.svg +0 -38
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.svg +0 -29
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblCrewControlReact.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblCrewControlReact.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblCrewControlReact.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblCrewControlReact.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblDutyIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblDutyIcon.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblDutyIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblDutyIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/SessionWarning.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/SessionWarning.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/SessionWarning.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/SessionWarning.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.svg +0 -26
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrol.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrol.svg +0 -13
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrol.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrol.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.svg +0 -29
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.svg +0 -29
- package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.svg +0 -17
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.svg +0 -20
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewSchedulingFont.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewSchedulingFont.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewSchedulingFont.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewSchedulingFont.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.svg +0 -20
- package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/ArchiveEmanual.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/ArchiveEmanual.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/ArchiveEmanual.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/ArchiveEmanual.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/CblEmanualNewIcons.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/CblEmanualNewIcons.svg +0 -14
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/CblEmanualNewIcons.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/CblEmanualNewIcons.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.svg +0 -38
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualApprovedFile.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualApprovedFile.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualApprovedFile.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualApprovedFile.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.svg +0 -17
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMarkLink.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMarkLink.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMarkLink.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMarkLink.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFolder.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFolder.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFolder.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFolder.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFont.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFont.svg +0 -13
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFont.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFont.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.svg +0 -32
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPendingIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPendingIcon.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPendingIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPendingIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishFile.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishFile.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishFile.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishFile.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishIconFile.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishIconFile.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishIconFile.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishIconFile.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrash.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrash.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrash.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrash.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrashRight.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrashRight.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrashRight.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrashRight.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/LibraryIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/LibraryIcon.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/LibraryIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/LibraryIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.svg +0 -158
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/cwellt_icon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/cwellt_icon.svg +0 -18
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/cwellt_icon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/cwellt_icon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.svg +0 -62
- package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesIcons/CblFavoritesIcons.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesIcons/CblFavoritesIcons.svg +0 -43
- package/dist/content/icons/cw-icons/fonts/cwFavoritesIcons/CblFavoritesIcons.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesIcons/CblFavoritesIcons.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFgIconsFonts/CblFigIcons.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFgIconsFonts/CblFigIcons.svg +0 -49
- package/dist/content/icons/cw-icons/fonts/cwFgIconsFonts/CblFigIcons.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFgIconsFonts/CblFigIcons.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.svg +0 -41
- package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/CblUndoIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/CblUndoIcon.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/CblUndoIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/CblUndoIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/FlightWatchOnTimeIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/FlightWatchOnTimeIcon.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/FlightWatchOnTimeIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/FlightWatchOnTimeIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.svg +0 -41
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/IDCardStatusIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/IDCardStatusIcon.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/IDCardStatusIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/IDCardStatusIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.svg +0 -17
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/calculator.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/calculator.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/calculator.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/calculator.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/icons_cwellt.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/icons_cwellt.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/icons_cwellt.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/icons_cwellt.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwOpstoolReactFont/opstoolReactIcons.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwOpstoolReactFont/opstoolReactIcons.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwOpstoolReactFont/opstoolReactIcons.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwOpstoolReactFont/opstoolReactIcons.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.svg +0 -17
- package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.svg +0 -50
- package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.svg +0 -17
- package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.woff2 +0 -0
- package/dist/content/icons/font-awesome/webfonts/fa-brands-400.ttf +0 -0
- package/dist/content/icons/font-awesome/webfonts/fa-regular-400.ttf +0 -0
- package/dist/content/icons/font-awesome/webfonts/fa-solid-900.ttf +0 -0
- package/dist/content/icons/font-awesome/webfonts/fa-v4compatibility.ttf +0 -0
- package/dist/index.cjs.js.map +0 -1
- package/dist/index.css.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.esm.js +0 -4836
- package/dist/src/common/functions/reactor.d.ts +0 -2
- package/dist/src/common/functions/reactor.d.ts.map +0 -1
- package/dist/src/components/control/input/chipper/CwChip.d.ts +0 -12
- package/dist/src/components/control/input/chipper/CwChip.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/components/ClearSchedulerButton.d.ts +0 -8
- package/dist/src/components/custom/scheduler/components/ClearSchedulerButton.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/filtering/filterAndProcessResources.d.ts +0 -14
- package/dist/src/components/custom/scheduler/logic/filtering/filterAndProcessResources.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/pixels/calculateMaxPxFromDateRange.d.ts +0 -2
- package/dist/src/components/custom/scheduler/logic/pixels/calculateMaxPxFromDateRange.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/state_handle/handleDateChange.d.ts +0 -5
- package/dist/src/components/custom/scheduler/logic/state_handle/handleDateChange.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/state_handle/handlePropChanges.d.ts +0 -5
- package/dist/src/components/custom/scheduler/logic/state_handle/handlePropChanges.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/state_handle/onResizeEvent.d.ts +0 -3
- package/dist/src/components/custom/scheduler/logic/state_handle/onResizeEvent.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/ui/getHasPropsChanged.d.ts +0 -3
- package/dist/src/components/custom/scheduler/logic/ui/getHasPropsChanged.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/ui/shouldTriggerScroll.d.ts +0 -3
- package/dist/src/components/custom/scheduler/logic/ui/shouldTriggerScroll.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/state/EventProps.d.ts +0 -7
- package/dist/src/components/custom/scheduler/state/EventProps.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgrounEvent.d.ts +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgrounEvent.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/cancellablePromise.d.ts +0 -7
- package/dist/src/components/custom/scheduler-new/presentation/components/row/cancellablePromise.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/useCancellablePromise.d.ts +0 -7
- package/dist/src/components/custom/scheduler-new/presentation/components/row/useCancellablePromise.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsByResource.d.ts +0 -5
- package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsByResource.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/external/Event.d.ts +0 -9
- package/dist/src/components/custom/scheduler-new/presentation/state/external/Event.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/external/Row.d.ts +0 -5
- package/dist/src/components/custom/scheduler-new/presentation/state/external/Row.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/EventSideDragState.d.ts +0 -6
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/EventSideDragState.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/HeaderDivision.d.ts +0 -5
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/HeaderDivision.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerEventState.d.ts +0 -14
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerEventState.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerHeaderState.d.ts +0 -11
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerHeaderState.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerRow.d.ts +0 -8
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerRow.d.ts.map +0 -1
- package/dist/test/components/custom/newScheduler/presentation/logic/getDefaultDivisions.test.d.ts.map +0 -1
- package/dist/test/components/custom/scheduler/calculateMaxPxFromDateRange.test.d.ts +0 -2
- package/dist/test/components/custom/scheduler/calculateMaxPxFromDateRange.test.d.ts.map +0 -1
- package/dist/test/components/custom/scheduler/filterEvents.test.d.ts.map +0 -1
- package/dist/test/components/custom/scheduler/shouldTriggerScroll.test.d.ts.map +0 -1
- package/dist/test/example.test.d.ts +0 -1
- package/dist/test/example.test.d.ts.map +0 -1
- /package/dist/src/{components/custom/scheduler-new/presentation/TestScheduler.d.ts → common/interfaces/CwSelectListProps.js} +0 -0
- /package/dist/{test/components/custom/newScheduler/presentation/logic/getDefaultDivisions.test.d.ts → src/components/custom/scheduler-new/presentation/components/header/SchedulerHeaderState.js} +0 -0
- /package/dist/{test/components/custom/newScheduler/presentation/logic/hoursBetween.test.d.ts → src/components/custom/scheduler-new/presentation/state/ui/SchedulerState.js} +0 -0
- /package/dist/{test/components/custom/newScheduler/presentation/logic/weekendCalc.test.d.ts → src/components/custom/scheduler-new/presentation/state/ui/WeekRange.js} +0 -0
- /package/dist/{test/components/custom/scheduler/filterEvents.test.d.ts → src/components/custom/scheduler-temporal/state/CwSchedulerProps.js} +0 -0
- /package/dist/{test/components/custom/scheduler/shouldTriggerScroll.test.d.ts → src/components/custom/scheduler-temporal/state/State.js} +0 -0
|
@@ -1,2784 +0,0 @@
|
|
|
1
|
-
/* #region [ Crew ] */
|
|
2
|
-
|
|
3
|
-
@font-face {
|
|
4
|
-
font-style: normal;
|
|
5
|
-
font-weight: normal;
|
|
6
|
-
src: url("../fonts/cwCrewFont/Crew.eot");
|
|
7
|
-
src: url("../fonts/cwCrewFont/Crew.eot");
|
|
8
|
-
src:
|
|
9
|
-
url("../fonts/cwCrewFont/Crew.eot?#iefix") format("embedded-opentype"),
|
|
10
|
-
url("../fonts/cwCrewFont/Crew.woff2") format("woff2"),
|
|
11
|
-
url("../fonts/cwCrewFont/Crew.woff") format("woff"),
|
|
12
|
-
url("../fonts/cwCrewFont/Crew.ttf") format("truetype"),
|
|
13
|
-
url("../fonts/cwCrewFont/Crew.svg#font") format("svg");
|
|
14
|
-
font-family: "Crew";
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
18
|
-
@font-face {
|
|
19
|
-
src: url("../fonts/cwCrewFont/Crew.svg#Crew") format("svg");
|
|
20
|
-
font-family: "Crew";
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
[data-icons8]:before {
|
|
25
|
-
content: attr(data-icons8);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.icons8-share:before,
|
|
29
|
-
.icons8-passport:before,
|
|
30
|
-
.icons8-agreement:before,
|
|
31
|
-
.icons8-document:before,
|
|
32
|
-
.icons8-paid:before,
|
|
33
|
-
.icons8,
|
|
34
|
-
[data-icons8]:before {
|
|
35
|
-
-moz-osx-font-smoothing: grayscale;
|
|
36
|
-
-webkit-font-smoothing: antialiased;
|
|
37
|
-
font-smoothing: antialiased;
|
|
38
|
-
display: inline-block;
|
|
39
|
-
font-style: normal;
|
|
40
|
-
font-variant: normal;
|
|
41
|
-
font-weight: normal;
|
|
42
|
-
line-height: 1;
|
|
43
|
-
font-family: "Crew";
|
|
44
|
-
text-decoration: inherit;
|
|
45
|
-
text-rendering: optimizeLegibility;
|
|
46
|
-
text-transform: none;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.icons8-share:before {
|
|
50
|
-
content: "\f100";
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.icons8-passport:before {
|
|
54
|
-
content: "\f101";
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.icons8-agreement:before {
|
|
58
|
-
content: "\f102";
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.icons8-document:before {
|
|
62
|
-
content: "\f103";
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.icons8-paid:before {
|
|
66
|
-
content: "\f104";
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
/* #endregion */
|
|
70
|
-
|
|
71
|
-
/* #region [ CrewControl ]*/
|
|
72
|
-
|
|
73
|
-
@font-face {
|
|
74
|
-
font-style: normal;
|
|
75
|
-
font-weight: normal;
|
|
76
|
-
src: url("../fonts/cwCrewControlFont/Crew Control.eot");
|
|
77
|
-
src:
|
|
78
|
-
url("../fonts/cwCrewControlFont/Crew Control.eot?#iefix") format("embedded-opentype"),
|
|
79
|
-
url("../fonts/cwCrewControlFont/Crew Control.woff2") format("woff2"),
|
|
80
|
-
url("../fonts/cwCrewControlFont/Crew Control.woff") format("woff"),
|
|
81
|
-
url("../fonts/cwCrewControlFont/Crew Control.ttf") format("truetype"),
|
|
82
|
-
url("../fonts/cwCrewControlFont/Crew Control.svg#font") format("svg");
|
|
83
|
-
font-family: "Crew Control";
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
87
|
-
@font-face {
|
|
88
|
-
src: url("../fonts/cwCrewControlFont/Crew Control.svg#Crew Control") format("svg");
|
|
89
|
-
font-family: "Crew Control";
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
[data-icons8]:before {
|
|
94
|
-
content: attr(data-icons8);
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.icons8-timeline-week:before,
|
|
98
|
-
.icons8-sign-up-in-calendar:before,
|
|
99
|
-
.icons8-replicate-rows:before,
|
|
100
|
-
.icons8-undelete:before,
|
|
101
|
-
.icons8-flight-crew:before,
|
|
102
|
-
.icons8,
|
|
103
|
-
[data-icons8]:before {
|
|
104
|
-
-moz-osx-font-smoothing: grayscale;
|
|
105
|
-
-webkit-font-smoothing: antialiased;
|
|
106
|
-
font-smoothing: antialiased;
|
|
107
|
-
display: inline-block;
|
|
108
|
-
font-style: normal;
|
|
109
|
-
font-variant: normal;
|
|
110
|
-
font-weight: normal;
|
|
111
|
-
line-height: 1;
|
|
112
|
-
font-family: "Crew Control";
|
|
113
|
-
text-decoration: inherit;
|
|
114
|
-
text-rendering: optimizeLegibility;
|
|
115
|
-
text-transform: none;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.icons8-timeline-week:before {
|
|
119
|
-
content: "\f101";
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.icons8-sign-up-in-calendar:before {
|
|
123
|
-
content: "\f102";
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.icons8-replicate-rows:before {
|
|
127
|
-
content: "\f103";
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.icons8-undelete:before {
|
|
131
|
-
content: "\f104";
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.icons8-flight-crew:before {
|
|
135
|
-
content: "\f105";
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
/* #endregion */
|
|
139
|
-
|
|
140
|
-
/* #region [ CrewPlanning ] */
|
|
141
|
-
@font-face {
|
|
142
|
-
font-style: normal;
|
|
143
|
-
font-weight: normal;
|
|
144
|
-
src: url("../fonts/cwCrewPlanningFont/Crew Planning.eot");
|
|
145
|
-
src:
|
|
146
|
-
url("../fonts/cwCrewPlanningFont/Crew Planning.eot?#iefix") format("embedded-opentype"),
|
|
147
|
-
url("../fonts/cwCrewPlanningFont/Crew Planning.woff2") format("woff2"),
|
|
148
|
-
url("../fonts/cwCrewPlanningFont/Crew Planning.woff") format("woff"),
|
|
149
|
-
url("../fonts/cwCrewPlanningFont/Crew Planning.ttf") format("truetype"),
|
|
150
|
-
url("../fonts/cwCrewPlanningFont/Crew Planning.svg#font") format("svg");
|
|
151
|
-
font-family: "Crew Planning";
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
155
|
-
@font-face {
|
|
156
|
-
src: url("../fonts/cwCrewPlanningFont/Crew Planning.svg#Crew Planning") format("svg");
|
|
157
|
-
font-family: "Crew Planning";
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
[data-icons8]:before {
|
|
162
|
-
content: attr(data-icons8);
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.icons8-move-grabber:before,
|
|
166
|
-
.icons8,
|
|
167
|
-
[data-icons8]:before {
|
|
168
|
-
-moz-osx-font-smoothing: grayscale;
|
|
169
|
-
-webkit-font-smoothing: antialiased;
|
|
170
|
-
font-smoothing: antialiased;
|
|
171
|
-
display: inline-block;
|
|
172
|
-
font-style: normal;
|
|
173
|
-
font-variant: normal;
|
|
174
|
-
font-weight: normal;
|
|
175
|
-
line-height: 1;
|
|
176
|
-
font-family: "Crew Planning";
|
|
177
|
-
text-decoration: inherit;
|
|
178
|
-
text-rendering: optimizeLegibility;
|
|
179
|
-
text-transform: none;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.icons8-move-grabber:before {
|
|
183
|
-
content: "\f100";
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
@font-face {
|
|
187
|
-
font-style: normal;
|
|
188
|
-
font-weight: normal;
|
|
189
|
-
src: url("../fonts/cwCrewPlanningFont/CrewPlanningFont.eot");
|
|
190
|
-
src:
|
|
191
|
-
url("../fonts/cwCrewPlanningFont//CrewPlanningFont.eot?#iefix") format("embedded-opentype"),
|
|
192
|
-
url("../fonts/cwCrewPlanningFont//CrewPlanningFont.woff2") format("woff2"),
|
|
193
|
-
url("../fonts/cwCrewPlanningFont//CrewPlanningFont.woff") format("woff"),
|
|
194
|
-
url("../fonts/cwCrewPlanningFont//CrewPlanningFont.ttf") format("truetype"),
|
|
195
|
-
url("../fonts/cwCrewPlanningFont//CrewPlanningFont.svg#font") format("svg");
|
|
196
|
-
font-family: "CrewPlanning";
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
200
|
-
@font-face {
|
|
201
|
-
src: url("../fonts/cwCrewPlanningFont/CrewPlanningFont.svg#CrewPlanningFont") format("svg");
|
|
202
|
-
font-family: "CrewPlanning";
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
[data-icons8]:before {
|
|
207
|
-
content: attr(data-icons8);
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
.icons8-pack-luggage:before,
|
|
211
|
-
.icons8-schedule:before,
|
|
212
|
-
.icons8,
|
|
213
|
-
[data-icons8]:before {
|
|
214
|
-
-moz-osx-font-smoothing: grayscale;
|
|
215
|
-
-webkit-font-smoothing: antialiased;
|
|
216
|
-
font-smoothing: antialiased;
|
|
217
|
-
display: inline-block;
|
|
218
|
-
font-style: normal;
|
|
219
|
-
font-variant: normal;
|
|
220
|
-
font-weight: normal;
|
|
221
|
-
line-height: 1;
|
|
222
|
-
font-family: "CrewPlanning";
|
|
223
|
-
text-decoration: inherit;
|
|
224
|
-
text-rendering: optimizeLegibility;
|
|
225
|
-
text-transform: none;
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
.icons8-pack-luggage:before {
|
|
229
|
-
content: "\f100";
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
.icons8-schedule:before {
|
|
233
|
-
content: "\f101";
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
@font-face {
|
|
237
|
-
font-style: normal;
|
|
238
|
-
font-weight: normal;
|
|
239
|
-
src: url("../fonts/cwCrewPlanningFont/CrewSchedulingFont.eot?5qrn5x");
|
|
240
|
-
src:
|
|
241
|
-
url("../fonts/cwCrewPlanningFont/CrewSchedulingFont.eot?5qrn5x#iefix") format("embedded-opentype"),
|
|
242
|
-
url("../fonts/cwCrewPlanningFont/CrewSchedulingFont.ttf?5qrn5x") format("truetype"),
|
|
243
|
-
url("../fonts/cwCrewPlanningFont/CrewSchedulingFont.woff?5qrn5x") format("woff"),
|
|
244
|
-
url("../fonts/cwCrewPlanningFont/CrewSchedulingFont.svg?5qrn5x#CrewSchedulingFont") format("svg");
|
|
245
|
-
font-family: "CrewSchedulingFont";
|
|
246
|
-
font-display: block;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
[class^="icon-"],
|
|
250
|
-
[class*=" icon-"] {
|
|
251
|
-
speak: never;
|
|
252
|
-
|
|
253
|
-
/* Better Font Rendering =========== */
|
|
254
|
-
-webkit-font-smoothing: antialiased;
|
|
255
|
-
-moz-osx-font-smoothing: grayscale;
|
|
256
|
-
font-style: normal;
|
|
257
|
-
font-variant: normal;
|
|
258
|
-
font-weight: normal;
|
|
259
|
-
line-height: 1;
|
|
260
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
261
|
-
font-family: "CrewSchedulingFont" !important;
|
|
262
|
-
text-transform: none;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.icon-generatePairing:before {
|
|
266
|
-
content: "\e900";
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
.icon-pairings:before {
|
|
270
|
-
content: "\e901";
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
/* #endregion */
|
|
274
|
-
|
|
275
|
-
/* #region [ Favorites ] */
|
|
276
|
-
|
|
277
|
-
@font-face {
|
|
278
|
-
font-style: normal;
|
|
279
|
-
font-weight: normal;
|
|
280
|
-
src: url("../fonts/cwFavoritesFont/Favorites.eot");
|
|
281
|
-
src:
|
|
282
|
-
url("../fonts/cwFavoritesFont/Favorites.eot?#iefix") format("embedded-opentype"),
|
|
283
|
-
url("../fonts/cwFavoritesFont/Favorites.woff2") format("woff2"),
|
|
284
|
-
url("../fonts/cwFavoritesFont/Favorites.woff") format("woff"),
|
|
285
|
-
url("../fonts/cwFavoritesFont/Favorites.ttf") format("truetype"),
|
|
286
|
-
url("../fonts/cwFavoritesFont/Favorites.svg#font") format("svg");
|
|
287
|
-
font-family: "Favorites";
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
291
|
-
@font-face {
|
|
292
|
-
src: url("../fonts/cwFavoritesFont/Favorites.svg#Favorites") format("svg");
|
|
293
|
-
font-family: "Favorites";
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
[data-icons8]:before {
|
|
298
|
-
content: attr(data-icons8);
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
.icons8-message-preview:before,
|
|
302
|
-
.icons8-notepad:before,
|
|
303
|
-
.icons8-bus:before,
|
|
304
|
-
.icons8-boarding-pass:before,
|
|
305
|
-
.icons8-ticket:before,
|
|
306
|
-
.icons8-ticket-confirmed:before,
|
|
307
|
-
.icons8-plane-ladder:before,
|
|
308
|
-
.icons8-traveler:before,
|
|
309
|
-
.icons8-world-map:before,
|
|
310
|
-
.icons8-flight-seat:before,
|
|
311
|
-
.icons8-airplane-mode-on:before,
|
|
312
|
-
.icons8-konferenztelefonat:before,
|
|
313
|
-
.icons8-new-file:before,
|
|
314
|
-
.icons8-document:before,
|
|
315
|
-
.icons8-email-document:before,
|
|
316
|
-
.icons8-submit-document:before,
|
|
317
|
-
.icons8,
|
|
318
|
-
[data-icons8]:before {
|
|
319
|
-
-moz-osx-font-smoothing: grayscale;
|
|
320
|
-
-webkit-font-smoothing: antialiased;
|
|
321
|
-
font-smoothing: antialiased;
|
|
322
|
-
display: inline-block;
|
|
323
|
-
font-style: normal;
|
|
324
|
-
font-variant: normal;
|
|
325
|
-
font-weight: normal;
|
|
326
|
-
font-size: 1.55em;
|
|
327
|
-
line-height: 1;
|
|
328
|
-
font-family: "Favorites";
|
|
329
|
-
text-decoration: inherit;
|
|
330
|
-
text-rendering: optimizeLegibility;
|
|
331
|
-
text-transform: none;
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
.icons8-message-preview:before {
|
|
335
|
-
content: "\f120";
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
.icons8-notepad:before {
|
|
339
|
-
content: "\f13f";
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
.icons8-bus:before {
|
|
343
|
-
content: "\f143";
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
.icons8-boarding-pass:before {
|
|
347
|
-
content: "\f144";
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
.icons8-ticket:before {
|
|
351
|
-
content: "\f145";
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
.icons8-ticket-confirmed:before {
|
|
355
|
-
content: "\f146";
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
.icons8-plane-ladder:before {
|
|
359
|
-
content: "\f147";
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.icons8-traveler:before {
|
|
363
|
-
content: "\f148";
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
.icons8-world-map:before {
|
|
367
|
-
content: "\f149";
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
.icons8-flight-seat:before {
|
|
371
|
-
content: "\f14c";
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
.icons8-airplane-mode-on:before {
|
|
375
|
-
content: "\f14f";
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
.icons8-konferenztelefonat:before {
|
|
379
|
-
content: "\f152";
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
.icons8-new-file:before {
|
|
383
|
-
content: "\f154";
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
.icons8-document:before {
|
|
387
|
-
content: "\f155";
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.icons8-email-document:before {
|
|
391
|
-
content: "\f156";
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
.icons8-submit-document:before {
|
|
395
|
-
content: "\f157";
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
/* #endregion */
|
|
399
|
-
|
|
400
|
-
/* #region [ Dispatch ] */
|
|
401
|
-
|
|
402
|
-
@font-face {
|
|
403
|
-
font-style: normal;
|
|
404
|
-
font-weight: normal;
|
|
405
|
-
src: url("../fonts/cwDispatchFont/Dispatch.eot");
|
|
406
|
-
src:
|
|
407
|
-
url("../fonts/cwDispatchFont/Dispatch.eot?#iefix") format("embedded-opentype"),
|
|
408
|
-
url("../fonts/cwDispatchFont/Dispatch.woff2") format("woff2"),
|
|
409
|
-
url("../fonts/cwDispatchFont/Dispatch.woff") format("woff"),
|
|
410
|
-
url("../fonts/cwDispatchFont/Dispatch.ttf") format("truetype"),
|
|
411
|
-
url("../fonts/cwDispatchFont/Dispatch.svg#font") format("svg");
|
|
412
|
-
font-family: "Dispatch";
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
416
|
-
@font-face {
|
|
417
|
-
src: url("../fonts/cwDispatchFont/Dispatch.svg#Dispatch") format("svg");
|
|
418
|
-
font-family: "Dispatch";
|
|
419
|
-
}
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
[data-icons8]:before {
|
|
423
|
-
content: attr(data-icons8);
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
.icons8-ok:before,
|
|
427
|
-
.icons8-box-important:before,
|
|
428
|
-
.icons8,
|
|
429
|
-
[data-icons8]:before {
|
|
430
|
-
-moz-osx-font-smoothing: grayscale;
|
|
431
|
-
-webkit-font-smoothing: antialiased;
|
|
432
|
-
font-smoothing: antialiased;
|
|
433
|
-
display: inline-block;
|
|
434
|
-
font-style: normal;
|
|
435
|
-
font-variant: normal;
|
|
436
|
-
font-weight: normal;
|
|
437
|
-
line-height: 1;
|
|
438
|
-
font-family: "Dispatch";
|
|
439
|
-
text-decoration: inherit;
|
|
440
|
-
text-rendering: optimizeLegibility;
|
|
441
|
-
text-transform: none;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
.icons8-ok:before {
|
|
445
|
-
content: "\f102";
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
.icons8-box-important:before {
|
|
449
|
-
content: "\f103";
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
/* #endregion */
|
|
453
|
-
|
|
454
|
-
/* #region [ FlightOps ] */
|
|
455
|
-
|
|
456
|
-
@font-face {
|
|
457
|
-
font-style: normal;
|
|
458
|
-
font-weight: normal;
|
|
459
|
-
src: url("../fonts/cwFlightOpsFont/FlightOps.eot");
|
|
460
|
-
src:
|
|
461
|
-
url("../fonts/cwFlightOpsFont/FlightOps.eot?#iefix") format("embedded-opentype"),
|
|
462
|
-
url("../fonts/cwFlightOpsFont/FlightOps.woff2") format("woff2"),
|
|
463
|
-
url("../fonts/cwFlightOpsFont/FlightOps.woff") format("woff"),
|
|
464
|
-
url("../fonts/cwFlightOpsFont/FlightOps.ttf") format("truetype"),
|
|
465
|
-
url("../fonts/cwFlightOpsFont/FlightOps.svg#font") format("svg");
|
|
466
|
-
font-family: "FlightOps";
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
470
|
-
@font-face {
|
|
471
|
-
src: url("../fonts/cwFlightOpsFont/FlightOps.svg#FlightOps") format("svg");
|
|
472
|
-
font-family: "FlightOps";
|
|
473
|
-
}
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
[data-icons8]:before {
|
|
477
|
-
content: attr(data-icons8);
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
.icons8-page-down-button:before,
|
|
481
|
-
.icons8-runway:before,
|
|
482
|
-
.icons8-fire-extinguisher:before,
|
|
483
|
-
.icons8-gas-station:before,
|
|
484
|
-
.icons8-compass:before,
|
|
485
|
-
.icons8-earth-element:before,
|
|
486
|
-
.icons8-google-maps:before,
|
|
487
|
-
.icons8-copy:before,
|
|
488
|
-
.icons8-export-csv:before,
|
|
489
|
-
.icons8,
|
|
490
|
-
[data-icons8]:before {
|
|
491
|
-
-moz-osx-font-smoothing: grayscale;
|
|
492
|
-
-webkit-font-smoothing: antialiased;
|
|
493
|
-
font-smoothing: antialiased;
|
|
494
|
-
display: inline-block;
|
|
495
|
-
font-style: normal;
|
|
496
|
-
font-variant: normal;
|
|
497
|
-
font-weight: normal;
|
|
498
|
-
line-height: 1;
|
|
499
|
-
font-family: "FlightOps";
|
|
500
|
-
text-decoration: inherit;
|
|
501
|
-
text-rendering: optimizeLegibility;
|
|
502
|
-
text-transform: none;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
.icons8-page-down-button:before {
|
|
506
|
-
content: "\f101";
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
.icons8-runway:before {
|
|
510
|
-
content: "\f102";
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
.icons8-fire-extinguisher:before {
|
|
514
|
-
content: "\f103";
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
.icons8-gas-station:before {
|
|
518
|
-
content: "\f104";
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
.icons8-compass:before {
|
|
522
|
-
content: "\f105";
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
.icons8-earth-element:before {
|
|
526
|
-
content: "\f106";
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
.icons8-google-maps:before {
|
|
530
|
-
content: "\f107";
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
.icons8-copy:before {
|
|
534
|
-
content: "\f108";
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
.icons8-export-csv:before {
|
|
538
|
-
content: "\f109";
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
/* #endregion */
|
|
542
|
-
|
|
543
|
-
/* #region [ General ] */
|
|
544
|
-
|
|
545
|
-
@font-face {
|
|
546
|
-
font-style: normal;
|
|
547
|
-
font-weight: normal;
|
|
548
|
-
src: url("../fonts/cwGeneralFont/General.eot");
|
|
549
|
-
src:
|
|
550
|
-
url("../fonts/cwGeneralFont/General.eot?#iefix") format("embedded-opentype"),
|
|
551
|
-
url("../fonts/cwGeneralFont/General.woff2") format("woff2"),
|
|
552
|
-
url("../fonts/cwGeneralFont/General.woff") format("woff"),
|
|
553
|
-
url("../fonts/cwGeneralFont/General.ttf") format("truetype"),
|
|
554
|
-
url("../fonts/cwGeneralFont/General.svg#font") format("svg");
|
|
555
|
-
font-family: "General";
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
559
|
-
@font-face {
|
|
560
|
-
src: url("../fonts/cwGeneralFont/General.svg#General") format("svg");
|
|
561
|
-
font-family: "General";
|
|
562
|
-
}
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
[data-icons8]:before {
|
|
566
|
-
content: attr(data-icons8);
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
.icons8-xls:before,
|
|
570
|
-
.icons8-txt:before,
|
|
571
|
-
.icons8-jpg:before,
|
|
572
|
-
.icons8-png:before,
|
|
573
|
-
.icons8-funnel:before,
|
|
574
|
-
.icons8-alphabetical-sorting-2:before,
|
|
575
|
-
.icons8-send:before,
|
|
576
|
-
.icons8-graph-report:before,
|
|
577
|
-
.icons8-left:before,
|
|
578
|
-
.icons8,
|
|
579
|
-
[data-icons8]:before {
|
|
580
|
-
-moz-osx-font-smoothing: grayscale;
|
|
581
|
-
-webkit-font-smoothing: antialiased;
|
|
582
|
-
font-smoothing: antialiased;
|
|
583
|
-
display: inline-block;
|
|
584
|
-
font-style: normal;
|
|
585
|
-
font-variant: normal;
|
|
586
|
-
font-weight: normal;
|
|
587
|
-
line-height: 1;
|
|
588
|
-
font-family: "General";
|
|
589
|
-
text-decoration: inherit;
|
|
590
|
-
text-rendering: optimizeLegibility;
|
|
591
|
-
text-transform: none;
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
.icons8-xls:before {
|
|
595
|
-
content: "\f101";
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
.icons8-txt:before {
|
|
599
|
-
content: "\f102";
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
.icons8-jpg:before {
|
|
603
|
-
content: "\f103";
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
.icons8-png:before {
|
|
607
|
-
content: "\f104";
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
.icons8-funnel:before {
|
|
611
|
-
content: "\f10e";
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
.icons8-alphabetical-sorting-2:before {
|
|
615
|
-
content: "\f10f";
|
|
616
|
-
}
|
|
617
|
-
|
|
618
|
-
.icons8-send:before {
|
|
619
|
-
content: "\f111";
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
.icons8-graph-report:before {
|
|
623
|
-
content: "\f112";
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
.icons8-left:before {
|
|
627
|
-
content: "\f114";
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
@font-face {
|
|
631
|
-
font-style: normal;
|
|
632
|
-
font-weight: normal;
|
|
633
|
-
src: url("../fonts/cwGeneralFont/IDCardStatusIcon.eot?pjtxun");
|
|
634
|
-
src:
|
|
635
|
-
url("../fonts/cwGeneralFont/IDCardStatusIcon.eot?pjtxun#iefix") format("embedded-opentype"),
|
|
636
|
-
url("../fonts/cwGeneralFont/IDCardStatusIcon.ttf?pjtxun") format("truetype"),
|
|
637
|
-
url("../fonts/cwGeneralFont/IDCardStatusIcon.woff?pjtxun") format("woff"),
|
|
638
|
-
url("../fonts/cwGeneralFont/IDCardStatusIcon.svg?pjtxun#IDCardStatusIcon") format("svg");
|
|
639
|
-
font-family: "IDCardStatusIcon";
|
|
640
|
-
font-display: block;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
[class^="icons8-"],
|
|
644
|
-
[class*=" icons8-"] {
|
|
645
|
-
speak: never;
|
|
646
|
-
|
|
647
|
-
/* Better Font Rendering =========== */
|
|
648
|
-
-webkit-font-smoothing: antialiased;
|
|
649
|
-
-moz-osx-font-smoothing: grayscale;
|
|
650
|
-
font-style: normal;
|
|
651
|
-
font-variant: normal;
|
|
652
|
-
font-weight: normal;
|
|
653
|
-
line-height: 1;
|
|
654
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
655
|
-
font-family: "IDCardStatusIcon" !important;
|
|
656
|
-
text-transform: none;
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
.icons8-IDCardInavlidStatusIcon:before {
|
|
660
|
-
content: "\e901";
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
.icons8-IDCardValidStatusIcon:before {
|
|
664
|
-
content: "\e900";
|
|
665
|
-
}
|
|
666
|
-
|
|
667
|
-
@font-face {
|
|
668
|
-
font-style: normal;
|
|
669
|
-
font-weight: normal;
|
|
670
|
-
src: url("../fonts/cwGeneralFont/FlightWatchOnTimeIcon.eot?dwgc5j");
|
|
671
|
-
src:
|
|
672
|
-
url("../fonts/cwGeneralFont/FlightWatchOnTimeIcon.eot?dwgc5j#iefix") format("embedded-opentype"),
|
|
673
|
-
url("../fonts/cwGeneralFont/FlightWatchOnTimeIcon.ttf?dwgc5j") format("truetype"),
|
|
674
|
-
url("../fonts/cwGeneralFont/FlightWatchOnTimeIcon.woff?dwgc5j") format("woff"),
|
|
675
|
-
url("../fonts/cwGeneralFont/FlightWatchOnTimeIcon.svg?dwgc5j#FlightWatchOnTimeIcon") format("svg");
|
|
676
|
-
font-family: "FlightWatchOnTimeIcon";
|
|
677
|
-
font-display: block;
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
[class^="icons8-"],
|
|
681
|
-
[class*=" icons8-"] {
|
|
682
|
-
speak: never;
|
|
683
|
-
|
|
684
|
-
/* Better Font Rendering =========== */
|
|
685
|
-
-webkit-font-smoothing: antialiased;
|
|
686
|
-
-moz-osx-font-smoothing: grayscale;
|
|
687
|
-
font-style: normal;
|
|
688
|
-
font-variant: normal;
|
|
689
|
-
font-weight: normal;
|
|
690
|
-
line-height: 1;
|
|
691
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
692
|
-
font-family: "FlightWatchOnTimeIcon" !important;
|
|
693
|
-
text-transform: none;
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
.icons8-FlighWatchOnTimeIcon:before {
|
|
697
|
-
content: "\e900";
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
@font-face {
|
|
701
|
-
font-style: normal;
|
|
702
|
-
font-weight: normal;
|
|
703
|
-
src: url("../fonts/cwGeneralFont/CblUndoIcon.eot?jaxo3s");
|
|
704
|
-
src:
|
|
705
|
-
url("../fonts/cwGeneralFont/CblUndoIcon.eot?jaxo3s#iefix") format("embedded-opentype"),
|
|
706
|
-
url("../fonts/cwGeneralFont/CblUndoIcon.ttf?jaxo3s") format("truetype"),
|
|
707
|
-
url("../fonts/cwGeneralFont/CblUndoIcon.woff?jaxo3s") format("woff"),
|
|
708
|
-
url("../fonts/cwGeneralFont/CblUndoIcon.svg?jaxo3s#CblUndoIcon") format("svg");
|
|
709
|
-
font-family: "CblUndoIcon";
|
|
710
|
-
font-display: block;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
[class^="icons8-"],
|
|
714
|
-
[class*=" icons8-"] {
|
|
715
|
-
speak: never;
|
|
716
|
-
|
|
717
|
-
/* Better Font Rendering =========== */
|
|
718
|
-
-webkit-font-smoothing: antialiased;
|
|
719
|
-
-moz-osx-font-smoothing: grayscale;
|
|
720
|
-
font-style: normal;
|
|
721
|
-
font-variant: normal;
|
|
722
|
-
font-weight: normal;
|
|
723
|
-
line-height: 1;
|
|
724
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
725
|
-
font-family: "CblUndoIcon" !important;
|
|
726
|
-
text-transform: none;
|
|
727
|
-
}
|
|
728
|
-
|
|
729
|
-
.icons8-icons8-undo:before {
|
|
730
|
-
content: "\e900";
|
|
731
|
-
}
|
|
732
|
-
|
|
733
|
-
/* #endregion */
|
|
734
|
-
|
|
735
|
-
/* #region [ Pax Relations ] */
|
|
736
|
-
|
|
737
|
-
@font-face {
|
|
738
|
-
font-style: normal;
|
|
739
|
-
font-weight: normal;
|
|
740
|
-
src: url("../fonts/cwPaxRelationsFont/Pax Relations.eot");
|
|
741
|
-
src:
|
|
742
|
-
url("../fonts/cwPaxRelationsFont/Pax Relations.eot?#iefix") format("embedded-opentype"),
|
|
743
|
-
url("../fonts/cwPaxRelationsFont/Pax Relations.woff2") format("woff2"),
|
|
744
|
-
url("../fonts/cwPaxRelationsFont/Pax Relations.woff") format("woff"),
|
|
745
|
-
url("../fonts/cwPaxRelationsFont/Pax Relations.ttf") format("truetype"),
|
|
746
|
-
url("../fonts/cwPaxRelationsFont/Pax Relations.svg#font") format("svg");
|
|
747
|
-
font-family: "Pax Relations";
|
|
748
|
-
}
|
|
749
|
-
|
|
750
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
751
|
-
@font-face {
|
|
752
|
-
src: url("../fonts/cwPaxRelationsFont/Pax Relations.svg#Pax Relations") format("svg");
|
|
753
|
-
font-family: "Pax Relations";
|
|
754
|
-
}
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
[data-icons8]:before {
|
|
758
|
-
content: attr(data-icons8);
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
.icons8-merge-files:before,
|
|
762
|
-
.icons8,
|
|
763
|
-
[data-icons8]:before {
|
|
764
|
-
-moz-osx-font-smoothing: grayscale;
|
|
765
|
-
-webkit-font-smoothing: antialiased;
|
|
766
|
-
font-smoothing: antialiased;
|
|
767
|
-
display: inline-block;
|
|
768
|
-
font-style: normal;
|
|
769
|
-
font-variant: normal;
|
|
770
|
-
font-weight: normal;
|
|
771
|
-
line-height: 1;
|
|
772
|
-
font-family: "Pax Relations";
|
|
773
|
-
text-decoration: inherit;
|
|
774
|
-
text-rendering: optimizeLegibility;
|
|
775
|
-
text-transform: none;
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
.icons8-merge-files:before {
|
|
779
|
-
content: "\f100";
|
|
780
|
-
}
|
|
781
|
-
|
|
782
|
-
/* #endregion */
|
|
783
|
-
|
|
784
|
-
/* #region [ Sales ] */
|
|
785
|
-
|
|
786
|
-
@font-face {
|
|
787
|
-
font-style: normal;
|
|
788
|
-
font-weight: normal;
|
|
789
|
-
src: url("../fonts/cwSalesFont/Sales.eot");
|
|
790
|
-
src:
|
|
791
|
-
url("../fonts/cwSalesFont/Sales.eot?#iefix") format("embedded-opentype"),
|
|
792
|
-
url("../fonts/cwSalesFont/Sales.woff2") format("woff2"),
|
|
793
|
-
url("../fonts/cwSalesFont/Sales.woff") format("woff"),
|
|
794
|
-
url("../fonts/cwSalesFont/Sales.ttf") format("truetype"),
|
|
795
|
-
url("../fonts/cwSalesFont/Sales.svg#font") format("svg");
|
|
796
|
-
font-family: "Sales";
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
800
|
-
@font-face {
|
|
801
|
-
src: url("../fonts/cwSalesFont/Sales.svg#Sales") format("svg");
|
|
802
|
-
font-family: "Sales";
|
|
803
|
-
}
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
[data-icons8]:before {
|
|
807
|
-
content: attr(data-icons8);
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
.icons8-journey:before,
|
|
811
|
-
.icons8-airplane-take-off:before,
|
|
812
|
-
.icons8-around-the-globe:before,
|
|
813
|
-
.icons8-play-for-work:before,
|
|
814
|
-
.icons8-calculator:before,
|
|
815
|
-
.icons8-user:before,
|
|
816
|
-
.icons8-airplane:before,
|
|
817
|
-
.icons8-ticket:before,
|
|
818
|
-
.icons8-invoice:before,
|
|
819
|
-
.icons8-airport:before,
|
|
820
|
-
.icons8-available-updates:before,
|
|
821
|
-
.icons8-airplane-landing:before,
|
|
822
|
-
.icons8,
|
|
823
|
-
[data-icons8]:before {
|
|
824
|
-
-moz-osx-font-smoothing: grayscale;
|
|
825
|
-
-webkit-font-smoothing: antialiased;
|
|
826
|
-
font-smoothing: antialiased;
|
|
827
|
-
display: inline-block;
|
|
828
|
-
font-style: normal;
|
|
829
|
-
font-variant: normal;
|
|
830
|
-
font-weight: normal;
|
|
831
|
-
line-height: 1;
|
|
832
|
-
font-family: "Sales";
|
|
833
|
-
text-decoration: inherit;
|
|
834
|
-
text-rendering: optimizeLegibility;
|
|
835
|
-
text-transform: none;
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
.icons8-journey:before {
|
|
839
|
-
content: "\f100";
|
|
840
|
-
}
|
|
841
|
-
|
|
842
|
-
.icons8-airplane-take-off:before {
|
|
843
|
-
content: "\f101";
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
.icons8-around-the-globe:before {
|
|
847
|
-
content: "\f102";
|
|
848
|
-
}
|
|
849
|
-
|
|
850
|
-
.icons8-play-for-work:before {
|
|
851
|
-
content: "\f104";
|
|
852
|
-
}
|
|
853
|
-
|
|
854
|
-
.icons8-calculator:before {
|
|
855
|
-
content: "\f105";
|
|
856
|
-
}
|
|
857
|
-
|
|
858
|
-
.icons8-user:before {
|
|
859
|
-
content: "\f106";
|
|
860
|
-
}
|
|
861
|
-
|
|
862
|
-
.icons8-airplane:before {
|
|
863
|
-
content: "\f108";
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
.icons8-ticket:before {
|
|
867
|
-
content: "\f109";
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
.icons8-invoice:before {
|
|
871
|
-
content: "\f10a";
|
|
872
|
-
}
|
|
873
|
-
|
|
874
|
-
.icons8-airport:before {
|
|
875
|
-
content: "\f10b";
|
|
876
|
-
}
|
|
877
|
-
|
|
878
|
-
.icons8-available-updates:before {
|
|
879
|
-
content: "\f10c";
|
|
880
|
-
}
|
|
881
|
-
|
|
882
|
-
.icons8-airplane-landing:before {
|
|
883
|
-
content: "\f10d";
|
|
884
|
-
}
|
|
885
|
-
|
|
886
|
-
/* #endregion */
|
|
887
|
-
|
|
888
|
-
/* #region [ Training ] */
|
|
889
|
-
|
|
890
|
-
@font-face {
|
|
891
|
-
font-style: normal;
|
|
892
|
-
font-weight: normal;
|
|
893
|
-
src: url("../fonts/cwTrainingFont/Training.eot");
|
|
894
|
-
src:
|
|
895
|
-
url("../fonts/cwTrainingFont/Training.eot?#iefix") format("embedded-opentype"),
|
|
896
|
-
url("../fonts/cwTrainingFont/Training.woff2") format("woff2"),
|
|
897
|
-
url("../fonts/cwTrainingFont/Training.woff") format("woff"),
|
|
898
|
-
url("../fonts/cwTrainingFont/Training.ttf") format("truetype"),
|
|
899
|
-
url("../fonts/cwTrainingFont/Training.svg#font") format("svg");
|
|
900
|
-
font-family: "Training";
|
|
901
|
-
}
|
|
902
|
-
|
|
903
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
904
|
-
@font-face {
|
|
905
|
-
src: url("../fonts/cwTrainingFont/Training.svg#Training") format("svg");
|
|
906
|
-
font-family: "Training";
|
|
907
|
-
}
|
|
908
|
-
}
|
|
909
|
-
|
|
910
|
-
[data-icons8]:before {
|
|
911
|
-
content: attr(data-icons8);
|
|
912
|
-
}
|
|
913
|
-
|
|
914
|
-
.icons8-lock:before,
|
|
915
|
-
.icons8,
|
|
916
|
-
[data-icons8]:before {
|
|
917
|
-
-moz-osx-font-smoothing: grayscale;
|
|
918
|
-
-webkit-font-smoothing: antialiased;
|
|
919
|
-
font-smoothing: antialiased;
|
|
920
|
-
display: inline-block;
|
|
921
|
-
font-style: normal;
|
|
922
|
-
font-variant: normal;
|
|
923
|
-
font-weight: normal;
|
|
924
|
-
line-height: 1;
|
|
925
|
-
font-family: "Training";
|
|
926
|
-
text-decoration: inherit;
|
|
927
|
-
text-rendering: optimizeLegibility;
|
|
928
|
-
text-transform: none;
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
.icons8-lock:before {
|
|
932
|
-
content: "\f100";
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
/* #endregion */
|
|
936
|
-
|
|
937
|
-
/* #region [ FavoritesElements ] */
|
|
938
|
-
@font-face {
|
|
939
|
-
font-style: normal;
|
|
940
|
-
font-weight: normal;
|
|
941
|
-
src: url("../fonts/cwFavoritesElement/Favorites.eot");
|
|
942
|
-
src:
|
|
943
|
-
url("../fonts/cwFavoritesElement/Favorites.eot?#iefix") format("embedded-opentype"),
|
|
944
|
-
url("../fonts/cwFavoritesElement/Favorites.woff2") format("woff2"),
|
|
945
|
-
url("../fonts/cwFavoritesElement/Favorites.woff") format("woff"),
|
|
946
|
-
url("../fonts/cwFavoritesElement/Favorites.ttf") format("truetype"),
|
|
947
|
-
url("../fonts/cwFavoritesElement/Favorites.svg#font") format("svg");
|
|
948
|
-
font-family: "Favorites";
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
952
|
-
@font-face {
|
|
953
|
-
src: url("../fonts/cwFavoritesElement/Favorites.svg#Favorites") format("svg");
|
|
954
|
-
font-family: "Favorites";
|
|
955
|
-
}
|
|
956
|
-
}
|
|
957
|
-
|
|
958
|
-
[data-icons8]:before {
|
|
959
|
-
content: attr(data-icons8);
|
|
960
|
-
}
|
|
961
|
-
|
|
962
|
-
.icons8-airport-transfer:before,
|
|
963
|
-
.icons8-enter:before,
|
|
964
|
-
.icons8-cloud:before,
|
|
965
|
-
.icons8-windows8:before,
|
|
966
|
-
.icons8-hide:before,
|
|
967
|
-
.icons8-error:before,
|
|
968
|
-
.icons8-alarm:before,
|
|
969
|
-
.icons8-about:before,
|
|
970
|
-
.icons8-timesheet:before,
|
|
971
|
-
.icons8-todo-list:before,
|
|
972
|
-
.icons8-task-planning:before,
|
|
973
|
-
.icons8-secured-letter:before,
|
|
974
|
-
.icons8-exit:before,
|
|
975
|
-
.icons8-trash:before,
|
|
976
|
-
.icons8-trash-can:before,
|
|
977
|
-
.icons8-plus-math:before,
|
|
978
|
-
.icons8-reset:before,
|
|
979
|
-
.icons8-search:before,
|
|
980
|
-
.icons8-print:before,
|
|
981
|
-
.icons8-expand-arrow:before,
|
|
982
|
-
.icons8-collapse-arrow:before,
|
|
983
|
-
.icons8-forward:before,
|
|
984
|
-
.icons8-back:before,
|
|
985
|
-
.icons8-menu-rounded:before,
|
|
986
|
-
.icons8-save:before,
|
|
987
|
-
.icons8-show-property:before,
|
|
988
|
-
.icons8-view:before,
|
|
989
|
-
.icons8-low-price:before,
|
|
990
|
-
.icons8-estimate:before,
|
|
991
|
-
.icons8-message-preview:before,
|
|
992
|
-
.icons8-info-squared:before,
|
|
993
|
-
.icons8-installing-updates:before,
|
|
994
|
-
.icons8-funnel:before,
|
|
995
|
-
.icons8-edit-file:before,
|
|
996
|
-
.icons8-unavailable:before,
|
|
997
|
-
.icons8-travel-diary:before,
|
|
998
|
-
.icons8-calendar:before,
|
|
999
|
-
.icons8-clock:before,
|
|
1000
|
-
.icons8-phone-contact:before,
|
|
1001
|
-
.icons8-share:before,
|
|
1002
|
-
.icons8-timezone-globe:before,
|
|
1003
|
-
.icons8-airport:before,
|
|
1004
|
-
.icons8-opened-folder:before,
|
|
1005
|
-
.icons8-alphabetical-sorting:before,
|
|
1006
|
-
.icons8-in-transit:before,
|
|
1007
|
-
.icons8-click---collect:before,
|
|
1008
|
-
.icons8-crop:before,
|
|
1009
|
-
.icons8-crop-2:before,
|
|
1010
|
-
.icons8,
|
|
1011
|
-
[data-icons8]:before {
|
|
1012
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1013
|
-
-webkit-font-smoothing: antialiased;
|
|
1014
|
-
font-smoothing: antialiased;
|
|
1015
|
-
display: inline-block;
|
|
1016
|
-
font-style: normal;
|
|
1017
|
-
font-variant: normal;
|
|
1018
|
-
font-weight: normal;
|
|
1019
|
-
line-height: 1;
|
|
1020
|
-
font-family: "Favorites";
|
|
1021
|
-
text-decoration: inherit;
|
|
1022
|
-
text-rendering: optimizeLegibility;
|
|
1023
|
-
text-transform: none;
|
|
1024
|
-
}
|
|
1025
|
-
|
|
1026
|
-
.icons8-airport-transfer:before {
|
|
1027
|
-
content: "\f100";
|
|
1028
|
-
}
|
|
1029
|
-
|
|
1030
|
-
.icons8-enter:before {
|
|
1031
|
-
content: "\f101";
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
|
-
.icons8-cloud:before {
|
|
1035
|
-
content: "\f102";
|
|
1036
|
-
}
|
|
1037
|
-
|
|
1038
|
-
.icons8-windows8:before {
|
|
1039
|
-
content: "\f103";
|
|
1040
|
-
}
|
|
1041
|
-
|
|
1042
|
-
.icons8-hide:before {
|
|
1043
|
-
content: "\f104";
|
|
1044
|
-
}
|
|
1045
|
-
|
|
1046
|
-
.icons8-error:before {
|
|
1047
|
-
content: "\f105";
|
|
1048
|
-
}
|
|
1049
|
-
|
|
1050
|
-
.icons8-alarm:before {
|
|
1051
|
-
content: "\f106";
|
|
1052
|
-
}
|
|
1053
|
-
|
|
1054
|
-
.icons8-about:before {
|
|
1055
|
-
content: "\f107";
|
|
1056
|
-
}
|
|
1057
|
-
|
|
1058
|
-
.icons8-timesheet:before {
|
|
1059
|
-
content: "\f109";
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
.icons8-todo-list:before {
|
|
1063
|
-
content: "\f10a";
|
|
1064
|
-
}
|
|
1065
|
-
|
|
1066
|
-
.icons8-task-planning:before {
|
|
1067
|
-
content: "\f10b";
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
.icons8-secured-letter:before {
|
|
1071
|
-
content: "\f10c";
|
|
1072
|
-
}
|
|
1073
|
-
|
|
1074
|
-
.icons8-exit:before {
|
|
1075
|
-
content: "\f10d";
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
.icons8-trash:before {
|
|
1079
|
-
content: "\f10e";
|
|
1080
|
-
}
|
|
1081
|
-
|
|
1082
|
-
.icons8-trash-can:before {
|
|
1083
|
-
content: "\f10f";
|
|
1084
|
-
}
|
|
1085
|
-
|
|
1086
|
-
.icons8-plus-math:before {
|
|
1087
|
-
content: "\f110";
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
.icons8-reset:before {
|
|
1091
|
-
content: "\f111";
|
|
1092
|
-
}
|
|
1093
|
-
|
|
1094
|
-
.icons8-search:before {
|
|
1095
|
-
content: "\f112";
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
|
-
.icons8-print:before {
|
|
1099
|
-
content: "\f113";
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
|
-
.icons8-expand-arrow:before {
|
|
1103
|
-
content: "\f114";
|
|
1104
|
-
}
|
|
1105
|
-
|
|
1106
|
-
.icons8-collapse-arrow:before {
|
|
1107
|
-
content: "\f115";
|
|
1108
|
-
}
|
|
1109
|
-
|
|
1110
|
-
.icons8-forward:before {
|
|
1111
|
-
content: "\f116";
|
|
1112
|
-
}
|
|
1113
|
-
|
|
1114
|
-
.icons8-back:before {
|
|
1115
|
-
content: "\f117";
|
|
1116
|
-
}
|
|
1117
|
-
|
|
1118
|
-
.icons8-menu-rounded:before {
|
|
1119
|
-
content: "\f118";
|
|
1120
|
-
color: #fff !important;
|
|
1121
|
-
}
|
|
1122
|
-
|
|
1123
|
-
.icons8-save:before {
|
|
1124
|
-
content: "\f119";
|
|
1125
|
-
}
|
|
1126
|
-
|
|
1127
|
-
.icons8-show-property:before {
|
|
1128
|
-
content: "\f11a";
|
|
1129
|
-
}
|
|
1130
|
-
|
|
1131
|
-
.icons8-view:before {
|
|
1132
|
-
content: "\f11b";
|
|
1133
|
-
}
|
|
1134
|
-
|
|
1135
|
-
.icons8-low-price:before {
|
|
1136
|
-
content: "\f11d";
|
|
1137
|
-
}
|
|
1138
|
-
|
|
1139
|
-
.icons8-estimate:before {
|
|
1140
|
-
content: "\f11f";
|
|
1141
|
-
}
|
|
1142
|
-
|
|
1143
|
-
.icons8-message-preview:before {
|
|
1144
|
-
content: "\f120";
|
|
1145
|
-
}
|
|
1146
|
-
|
|
1147
|
-
.icons8-info-squared:before {
|
|
1148
|
-
content: "\f121";
|
|
1149
|
-
}
|
|
1150
|
-
|
|
1151
|
-
.icons8-installing-updates:before {
|
|
1152
|
-
content: "\f122";
|
|
1153
|
-
}
|
|
1154
|
-
|
|
1155
|
-
.icons8-funnel:before {
|
|
1156
|
-
content: "\f123";
|
|
1157
|
-
}
|
|
1158
|
-
|
|
1159
|
-
.icons8-edit-file:before {
|
|
1160
|
-
content: "\f124";
|
|
1161
|
-
}
|
|
1162
|
-
|
|
1163
|
-
.icons8-unavailable:before {
|
|
1164
|
-
content: "\f125";
|
|
1165
|
-
}
|
|
1166
|
-
|
|
1167
|
-
.icons8-travel-diary:before {
|
|
1168
|
-
content: "\f126";
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1171
|
-
.icons8-calendar:before {
|
|
1172
|
-
content: "\f127";
|
|
1173
|
-
}
|
|
1174
|
-
|
|
1175
|
-
.icons8-clock:before {
|
|
1176
|
-
content: "\f128";
|
|
1177
|
-
}
|
|
1178
|
-
|
|
1179
|
-
.icons8-phone-contact:before {
|
|
1180
|
-
content: "\f129";
|
|
1181
|
-
}
|
|
1182
|
-
|
|
1183
|
-
.icons8-share:before {
|
|
1184
|
-
content: "\f12a";
|
|
1185
|
-
}
|
|
1186
|
-
|
|
1187
|
-
.icons8-timezone-globe:before {
|
|
1188
|
-
content: "\f12b";
|
|
1189
|
-
}
|
|
1190
|
-
|
|
1191
|
-
.icons8-airport:before {
|
|
1192
|
-
content: "\f12c";
|
|
1193
|
-
}
|
|
1194
|
-
|
|
1195
|
-
.icons8-opened-folder:before {
|
|
1196
|
-
content: "\f12d";
|
|
1197
|
-
}
|
|
1198
|
-
|
|
1199
|
-
.icons8-alphabetical-sorting:before {
|
|
1200
|
-
content: "\f12e";
|
|
1201
|
-
}
|
|
1202
|
-
|
|
1203
|
-
.icons8-in-transit:before {
|
|
1204
|
-
content: "\f12f";
|
|
1205
|
-
}
|
|
1206
|
-
|
|
1207
|
-
.icons8-click---collect:before {
|
|
1208
|
-
content: "\f130";
|
|
1209
|
-
}
|
|
1210
|
-
|
|
1211
|
-
.icons8-crop:before {
|
|
1212
|
-
content: "\f131";
|
|
1213
|
-
}
|
|
1214
|
-
|
|
1215
|
-
.icons8-crop-2:before {
|
|
1216
|
-
content: "\f132";
|
|
1217
|
-
}
|
|
1218
|
-
|
|
1219
|
-
/* #endregion */
|
|
1220
|
-
|
|
1221
|
-
/* #region [ CblFavoritesIcons ] */
|
|
1222
|
-
@font-face {
|
|
1223
|
-
font-style: normal;
|
|
1224
|
-
font-weight: normal;
|
|
1225
|
-
src: url("../fonts/cwFavoritesIcons/CblFavoritesIcons.eot?c2uxmy");
|
|
1226
|
-
src:
|
|
1227
|
-
url("../fonts/cwFavoritesIcons/CblFavoritesIcons.eot?c2uxmy#iefix") format("embedded-opentype"),
|
|
1228
|
-
url("../fonts/cwFavoritesIcons/CblFavoritesIcons.ttf?c2uxmy") format("truetype"),
|
|
1229
|
-
url("../fonts/cwFavoritesIcons/CblFavoritesIcons.woff?c2uxmy") format("woff"),
|
|
1230
|
-
url("../fonts/cwFavoritesIcons/CblFavoritesIcons.svg?c2uxmy#CblFavoritesIcons") format("svg");
|
|
1231
|
-
font-family: "CblFavoritesIcons";
|
|
1232
|
-
font-display: block;
|
|
1233
|
-
}
|
|
1234
|
-
|
|
1235
|
-
[class^="CblFavIcons-"],
|
|
1236
|
-
[class*=" CblFavIcons-"] {
|
|
1237
|
-
speak: never;
|
|
1238
|
-
|
|
1239
|
-
/* Better Font Rendering =========== */
|
|
1240
|
-
-webkit-font-smoothing: antialiased;
|
|
1241
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1242
|
-
font-style: normal;
|
|
1243
|
-
font-variant: normal;
|
|
1244
|
-
font-weight: normal;
|
|
1245
|
-
line-height: 1;
|
|
1246
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
1247
|
-
font-family: "CblFavoritesIcons" !important;
|
|
1248
|
-
text-transform: none;
|
|
1249
|
-
}
|
|
1250
|
-
|
|
1251
|
-
.CblFavIcons-icons8-agreement:before {
|
|
1252
|
-
content: "\e900";
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
.CblFavIcons-icons8-airplane-take-off:before {
|
|
1256
|
-
content: "\e901";
|
|
1257
|
-
}
|
|
1258
|
-
|
|
1259
|
-
.CblFavIcons-icons8-airport-1:before {
|
|
1260
|
-
content: "\e902";
|
|
1261
|
-
}
|
|
1262
|
-
|
|
1263
|
-
.CblFavIcons-icons8-airport:before {
|
|
1264
|
-
content: "\e903";
|
|
1265
|
-
}
|
|
1266
|
-
|
|
1267
|
-
.CblFavIcons-icons8-around-the-globe:before {
|
|
1268
|
-
content: "\e904";
|
|
1269
|
-
}
|
|
1270
|
-
|
|
1271
|
-
.CblFavIcons-icons8-bulleted-list:before {
|
|
1272
|
-
content: "\e905";
|
|
1273
|
-
}
|
|
1274
|
-
|
|
1275
|
-
.CblFavIcons-icons8-calculator-1:before {
|
|
1276
|
-
content: "\e906";
|
|
1277
|
-
}
|
|
1278
|
-
|
|
1279
|
-
.CblFavIcons-icons8-calculator-2:before {
|
|
1280
|
-
content: "\e907";
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
.CblFavIcons-icons8-calculator-3:before {
|
|
1284
|
-
content: "\e908";
|
|
1285
|
-
}
|
|
1286
|
-
|
|
1287
|
-
.CblFavIcons-icons8-calculator-4:before {
|
|
1288
|
-
content: "\e909";
|
|
1289
|
-
}
|
|
1290
|
-
|
|
1291
|
-
.CblFavIcons-icons8-calculator:before {
|
|
1292
|
-
content: "\e90a";
|
|
1293
|
-
}
|
|
1294
|
-
|
|
1295
|
-
.CblFavIcons-icons8-copy:before {
|
|
1296
|
-
content: "\e90b";
|
|
1297
|
-
}
|
|
1298
|
-
|
|
1299
|
-
.CblFavIcons-icons8-document-1:before {
|
|
1300
|
-
content: "\e90c";
|
|
1301
|
-
}
|
|
1302
|
-
|
|
1303
|
-
.CblFavIcons-icons8-document:before {
|
|
1304
|
-
content: "\e90d";
|
|
1305
|
-
}
|
|
1306
|
-
|
|
1307
|
-
.CblFavIcons-icons8-doorbell-1:before {
|
|
1308
|
-
content: "\e90e";
|
|
1309
|
-
}
|
|
1310
|
-
|
|
1311
|
-
.CblFavIcons-icons8-doorbell:before {
|
|
1312
|
-
content: "\e90f";
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
|
-
.CblFavIcons-icons8-file-1:before {
|
|
1316
|
-
content: "\e910";
|
|
1317
|
-
}
|
|
1318
|
-
|
|
1319
|
-
.CblFavIcons-icons8-file:before {
|
|
1320
|
-
content: "\e911";
|
|
1321
|
-
}
|
|
1322
|
-
|
|
1323
|
-
.CblFavIcons-icons8-flight-crew:before {
|
|
1324
|
-
content: "\e912";
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
.CblFavIcons-icons8-funnel:before {
|
|
1328
|
-
content: "\e913";
|
|
1329
|
-
}
|
|
1330
|
-
|
|
1331
|
-
.CblFavIcons-icons8-graph-report-1:before {
|
|
1332
|
-
content: "\e914";
|
|
1333
|
-
}
|
|
1334
|
-
|
|
1335
|
-
.CblFavIcons-icons8-graph-report:before {
|
|
1336
|
-
content: "\e915";
|
|
1337
|
-
}
|
|
1338
|
-
|
|
1339
|
-
.CblFavIcons-icons8-hide:before {
|
|
1340
|
-
content: "\e916";
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
.CblFavIcons-icons8-invoice:before {
|
|
1344
|
-
content: "\e917";
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
|
-
.CblFavIcons-icons8-journey:before {
|
|
1348
|
-
content: "\e918";
|
|
1349
|
-
}
|
|
1350
|
-
|
|
1351
|
-
.CblFavIcons-icons8-passport-1:before {
|
|
1352
|
-
content: "\e919";
|
|
1353
|
-
}
|
|
1354
|
-
|
|
1355
|
-
.CblFavIcons-icons8-passport:before {
|
|
1356
|
-
content: "\e91a";
|
|
1357
|
-
}
|
|
1358
|
-
|
|
1359
|
-
.CblFavIcons-icons8-print-1:before {
|
|
1360
|
-
content: "\e91b";
|
|
1361
|
-
}
|
|
1362
|
-
|
|
1363
|
-
.CblFavIcons-icons8-print-2:before {
|
|
1364
|
-
content: "\e91c";
|
|
1365
|
-
}
|
|
1366
|
-
|
|
1367
|
-
.CblFavIcons-icons8-print:before {
|
|
1368
|
-
content: "\e91d";
|
|
1369
|
-
}
|
|
1370
|
-
|
|
1371
|
-
.CblFavIcons-icons8-show:before {
|
|
1372
|
-
content: "\e91e";
|
|
1373
|
-
}
|
|
1374
|
-
|
|
1375
|
-
.CblFavIcons-icons8-user-1:before {
|
|
1376
|
-
content: "\e91f";
|
|
1377
|
-
}
|
|
1378
|
-
|
|
1379
|
-
.CblFavIcons-icons8-user:before {
|
|
1380
|
-
content: "\e920";
|
|
1381
|
-
}
|
|
1382
|
-
|
|
1383
|
-
/* #endregion */
|
|
1384
|
-
|
|
1385
|
-
/* #region [ CrewControlNewIcons ] */
|
|
1386
|
-
|
|
1387
|
-
@font-face {
|
|
1388
|
-
font-style: normal;
|
|
1389
|
-
font-weight: normal;
|
|
1390
|
-
src: url("../fonts/cwCrewControlNewIcon/cblcrewcontrol.eot?s0wbgt");
|
|
1391
|
-
src:
|
|
1392
|
-
url("../fonts/cwCrewControlNewIcon/cblcrewcontrol.eot?s0wbgt#iefix") format("embedded-opentype"),
|
|
1393
|
-
url("../fonts/cwCrewControlNewIcon/cblcrewcontrol.ttf?s0wbgt") format("truetype"),
|
|
1394
|
-
url("../fonts/cwCrewControlNewIcon/cblcrewcontrol.woff?s0wbgt") format("woff"),
|
|
1395
|
-
url("../fonts/cwCrewControlNewIcon/cblcrewcontrol.svg?s0wbgt#cblicon_") format("svg");
|
|
1396
|
-
font-family: "cblcrewcontrol";
|
|
1397
|
-
font-display: block;
|
|
1398
|
-
}
|
|
1399
|
-
|
|
1400
|
-
[class^="cbl-"],
|
|
1401
|
-
[class*=" cbl-"] {
|
|
1402
|
-
speak: never;
|
|
1403
|
-
|
|
1404
|
-
/* Better Font Rendering =========== */
|
|
1405
|
-
-webkit-font-smoothing: antialiased;
|
|
1406
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1407
|
-
font-style: normal;
|
|
1408
|
-
font-variant: normal;
|
|
1409
|
-
font-weight: normal;
|
|
1410
|
-
line-height: 1;
|
|
1411
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
1412
|
-
/* font-family: "cblcrewcontrol" !important; */
|
|
1413
|
-
text-transform: none;
|
|
1414
|
-
}
|
|
1415
|
-
|
|
1416
|
-
.cbl-certificate:before {
|
|
1417
|
-
content: "\e900";
|
|
1418
|
-
}
|
|
1419
|
-
|
|
1420
|
-
.cbl-flight-crew:before {
|
|
1421
|
-
content: "\e901";
|
|
1422
|
-
}
|
|
1423
|
-
|
|
1424
|
-
.cbl-typeratingicon:before {
|
|
1425
|
-
content: "\e902";
|
|
1426
|
-
}
|
|
1427
|
-
|
|
1428
|
-
@font-face {
|
|
1429
|
-
font-style: normal;
|
|
1430
|
-
font-weight: normal;
|
|
1431
|
-
src: url("../fonts/cwCrewControlNewIcon/cblcrewcontrolfont.eot");
|
|
1432
|
-
src:
|
|
1433
|
-
url("../fonts/cwCrewControlNewIcon/cblcrewcontrolfont.eot?#iefix") format("embedded-opentype"),
|
|
1434
|
-
url("../fonts/cwCrewControlNewIcon/cblcrewcontrolfont.woff2") format("woff2"),
|
|
1435
|
-
url("../fonts/cwCrewControlNewIcon/cblcrewcontrolfont.woff") format("woff"),
|
|
1436
|
-
url("../fonts/cwCrewControlNewIcon/cblcrewcontrolfont.ttf") format("truetype"),
|
|
1437
|
-
url("../fonts/cwCrewControlNewIcon/cblcrewcontrolfont.svg#font") format("svg");
|
|
1438
|
-
font-family: "cblcrewcontrolfont";
|
|
1439
|
-
}
|
|
1440
|
-
|
|
1441
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
1442
|
-
@font-face {
|
|
1443
|
-
src: url("../fonts/cwCrewControlNewIcon/cblcrewcontrolfont.svg#cblcrewcontrolfont") format("svg");
|
|
1444
|
-
font-family: "cblcrewcontrolfont";
|
|
1445
|
-
}
|
|
1446
|
-
}
|
|
1447
|
-
|
|
1448
|
-
[data-icons8]:before {
|
|
1449
|
-
content: attr(data-icons8);
|
|
1450
|
-
}
|
|
1451
|
-
|
|
1452
|
-
.cbl-airplane-mode-on:before,
|
|
1453
|
-
.cbl-lock:before,
|
|
1454
|
-
.cbl-birthday:before,
|
|
1455
|
-
.cbl-link:before,
|
|
1456
|
-
.cbl-delete-user-male:before,
|
|
1457
|
-
.icons8,
|
|
1458
|
-
[data-icons8]:before {
|
|
1459
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1460
|
-
-webkit-font-smoothing: antialiased;
|
|
1461
|
-
font-smoothing: antialiased;
|
|
1462
|
-
display: inline-block;
|
|
1463
|
-
font-style: normal;
|
|
1464
|
-
font-variant: normal;
|
|
1465
|
-
font-weight: normal;
|
|
1466
|
-
line-height: 1;
|
|
1467
|
-
font-family: "cblcrewcontrolfont";
|
|
1468
|
-
text-decoration: inherit;
|
|
1469
|
-
text-rendering: optimizeLegibility;
|
|
1470
|
-
text-transform: none;
|
|
1471
|
-
}
|
|
1472
|
-
|
|
1473
|
-
.cbl-airplane-mode-on:before {
|
|
1474
|
-
content: "\f100";
|
|
1475
|
-
}
|
|
1476
|
-
|
|
1477
|
-
.cbl-lock:before {
|
|
1478
|
-
content: "\f101";
|
|
1479
|
-
}
|
|
1480
|
-
|
|
1481
|
-
.cbl-birthday:before {
|
|
1482
|
-
content: "\f102";
|
|
1483
|
-
}
|
|
1484
|
-
|
|
1485
|
-
.cbl-link:before {
|
|
1486
|
-
content: "\f103";
|
|
1487
|
-
}
|
|
1488
|
-
|
|
1489
|
-
.cbl-delete-user-male:before {
|
|
1490
|
-
content: "\f104";
|
|
1491
|
-
}
|
|
1492
|
-
|
|
1493
|
-
.cwellt_90deg::before {
|
|
1494
|
-
transform: rotate(90deg) !important;
|
|
1495
|
-
font-weight: bolder !important;
|
|
1496
|
-
}
|
|
1497
|
-
|
|
1498
|
-
.cwellt_Less90deg::before {
|
|
1499
|
-
transform: rotate(-90deg) !important;
|
|
1500
|
-
font-weight: bolder !important;
|
|
1501
|
-
}
|
|
1502
|
-
|
|
1503
|
-
/* #endregion CrewControlNewIcons */
|
|
1504
|
-
|
|
1505
|
-
/* #region [ CblGeneralNewFontIcon ] */
|
|
1506
|
-
|
|
1507
|
-
@font-face {
|
|
1508
|
-
font-style: normal;
|
|
1509
|
-
font-weight: normal;
|
|
1510
|
-
src: url("../fonts/cwNewGeneralFontIcon/Favorites.eot");
|
|
1511
|
-
src:
|
|
1512
|
-
url("../fonts/cwNewGeneralFontIcon/Favorites.eot?#iefix") format("embedded-opentype"),
|
|
1513
|
-
url("../fonts/cwNewGeneralFontIcon/Favorites.woff2") format("woff2"),
|
|
1514
|
-
url("../fonts/cwNewGeneralFontIcon/Favorites.woff") format("woff"),
|
|
1515
|
-
url("../fonts/cwNewGeneralFontIcon/Favorites.ttf") format("truetype"),
|
|
1516
|
-
url("../fonts/cwNewGeneralFontIcon/Favorites.svg#font") format("svg");
|
|
1517
|
-
font-family: "Favoritespin";
|
|
1518
|
-
}
|
|
1519
|
-
|
|
1520
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
1521
|
-
@font-face {
|
|
1522
|
-
src: url("../fonts/cwNewGeneralFontIcon/Favorites.svg#Favorites") format("svg");
|
|
1523
|
-
font-family: "Favoritespin";
|
|
1524
|
-
}
|
|
1525
|
-
}
|
|
1526
|
-
|
|
1527
|
-
[data-icons8]:before {
|
|
1528
|
-
content: attr(data-icons8);
|
|
1529
|
-
}
|
|
1530
|
-
|
|
1531
|
-
.cbl_pin:before,
|
|
1532
|
-
.icons8,
|
|
1533
|
-
[data-icons8]:before {
|
|
1534
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1535
|
-
-webkit-font-smoothing: antialiased;
|
|
1536
|
-
font-smoothing: antialiased;
|
|
1537
|
-
display: inline-block;
|
|
1538
|
-
font-style: normal;
|
|
1539
|
-
font-variant: normal;
|
|
1540
|
-
font-weight: normal;
|
|
1541
|
-
line-height: 1;
|
|
1542
|
-
font-family: "Favoritespin";
|
|
1543
|
-
text-decoration: inherit;
|
|
1544
|
-
text-rendering: optimizeLegibility;
|
|
1545
|
-
text-transform: none;
|
|
1546
|
-
}
|
|
1547
|
-
|
|
1548
|
-
.cbl_pin:before {
|
|
1549
|
-
content: "\f105";
|
|
1550
|
-
}
|
|
1551
|
-
|
|
1552
|
-
.cbl_pin45deg::before {
|
|
1553
|
-
transform: rotate(45deg) !important;
|
|
1554
|
-
}
|
|
1555
|
-
|
|
1556
|
-
.cbl_pinLess45deg::before {
|
|
1557
|
-
transform: rotate(-45deg) !important;
|
|
1558
|
-
}
|
|
1559
|
-
|
|
1560
|
-
@font-face {
|
|
1561
|
-
font-style: normal;
|
|
1562
|
-
font-weight: normal;
|
|
1563
|
-
src: url("../fonts/cwNewGeneralFontIcon/calculator.eot?ywy1yo");
|
|
1564
|
-
src:
|
|
1565
|
-
url("../fonts/cwNewGeneralFontIcon/calculator.eot?ywy1yo#iefix") format("embedded-opentype"),
|
|
1566
|
-
url("../fonts/cwNewGeneralFontIcon/calculator.ttf?ywy1yo") format("truetype"),
|
|
1567
|
-
url("../fonts/cwNewGeneralFontIcon/calculator.woff?ywy1yo") format("woff"),
|
|
1568
|
-
url("../fonts/cwNewGeneralFontIcon/calculator.svg?ywy1yo#calculator") format("svg");
|
|
1569
|
-
font-family: "calculator";
|
|
1570
|
-
font-display: block;
|
|
1571
|
-
}
|
|
1572
|
-
|
|
1573
|
-
[class^="cbl_"],
|
|
1574
|
-
[class*=" cbl_"] {
|
|
1575
|
-
speak: never;
|
|
1576
|
-
|
|
1577
|
-
/* Better Font Rendering =========== */
|
|
1578
|
-
-webkit-font-smoothing: antialiased;
|
|
1579
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1580
|
-
font-style: normal;
|
|
1581
|
-
font-variant: normal;
|
|
1582
|
-
font-weight: normal;
|
|
1583
|
-
line-height: 1;
|
|
1584
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
1585
|
-
/* font-family: "calculator" !important; */
|
|
1586
|
-
text-transform: none;
|
|
1587
|
-
}
|
|
1588
|
-
|
|
1589
|
-
.cbl_calculator_line:before {
|
|
1590
|
-
margin-top: 0.25em;
|
|
1591
|
-
margin-right: 0.25em;
|
|
1592
|
-
margin-bottom: 0.25em;
|
|
1593
|
-
margin-left: 0.25em;
|
|
1594
|
-
content: "\e901" !important;
|
|
1595
|
-
font-size: 14px;
|
|
1596
|
-
}
|
|
1597
|
-
|
|
1598
|
-
@font-face {
|
|
1599
|
-
font-style: normal;
|
|
1600
|
-
font-weight: normal;
|
|
1601
|
-
src: url("../fonts/cwNewGeneralFontIcon/icons_cwellt.eot?ch64ja");
|
|
1602
|
-
src:
|
|
1603
|
-
url("../fonts/cwNewGeneralFontIcon/icons_cwellt.eot?ch64ja#iefix") format("embedded-opentype"),
|
|
1604
|
-
url("../fonts/cwNewGeneralFontIcon/icons_cwellt.ttf?ch64ja") format("truetype"),
|
|
1605
|
-
url("../fonts/cwNewGeneralFontIcon/icons_cwellt.svg?ch64ja#icons_cwellt") format("svg");
|
|
1606
|
-
font-family: "icons_cwellt";
|
|
1607
|
-
font-display: block;
|
|
1608
|
-
}
|
|
1609
|
-
|
|
1610
|
-
[class^="cwellt_crewcontrol_icon"],
|
|
1611
|
-
[class*=" cwellt_crewcontrol_icon"] {
|
|
1612
|
-
speak: never;
|
|
1613
|
-
|
|
1614
|
-
/* Better Font Rendering =========== */
|
|
1615
|
-
-webkit-font-smoothing: antialiased;
|
|
1616
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1617
|
-
font-style: normal;
|
|
1618
|
-
font-variant: normal;
|
|
1619
|
-
font-weight: normal;
|
|
1620
|
-
line-height: 1;
|
|
1621
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
1622
|
-
font-family: "icons_cwellt" !important;
|
|
1623
|
-
text-transform: none;
|
|
1624
|
-
}
|
|
1625
|
-
|
|
1626
|
-
.cwellt_crewcontrol_iconcwellt_homeIcon:before {
|
|
1627
|
-
content: "\e900";
|
|
1628
|
-
}
|
|
1629
|
-
|
|
1630
|
-
/* #endregion */
|
|
1631
|
-
|
|
1632
|
-
/* #region [ CblCrewControlFont ] */
|
|
1633
|
-
|
|
1634
|
-
@font-face {
|
|
1635
|
-
font-style: normal;
|
|
1636
|
-
font-weight: normal;
|
|
1637
|
-
src: url("../fonts/cwCrewControlFont/CblCrewControl.eot");
|
|
1638
|
-
src:
|
|
1639
|
-
url("../fonts/cwCrewControlFont/CblCrewControl.eot?#iefix") format("embedded-opentype"),
|
|
1640
|
-
url("../fonts/cwCrewControlFont/CblCrewControl.woff2") format("woff2"),
|
|
1641
|
-
url("../fonts/cwCrewControlFont/CblCrewControl.woff") format("woff"),
|
|
1642
|
-
url("../fonts/cwCrewControlFont/CblCrewControl.ttf") format("truetype"),
|
|
1643
|
-
url("../fonts/cwCrewControlFont/CblCrewControl.svg#font") format("svg");
|
|
1644
|
-
font-family: "CblCrewControl";
|
|
1645
|
-
}
|
|
1646
|
-
|
|
1647
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
1648
|
-
@font-face {
|
|
1649
|
-
src: url("../fonts/cwCrewControlFont/CblCrewControl.svg#CblCrewControl") format("svg");
|
|
1650
|
-
font-family: "CblCrewControl";
|
|
1651
|
-
}
|
|
1652
|
-
}
|
|
1653
|
-
|
|
1654
|
-
[data-icons8]:before {
|
|
1655
|
-
content: attr(data-icons8);
|
|
1656
|
-
}
|
|
1657
|
-
|
|
1658
|
-
.CblCrewControl_-date-to:before,
|
|
1659
|
-
.CblCrewControl_-date-to-2:before,
|
|
1660
|
-
.CblCrewControl_-date-to-3:before,
|
|
1661
|
-
.CblCrewControl_-date-span:before,
|
|
1662
|
-
.CblCrewControl_-date-span-2:before,
|
|
1663
|
-
.CblCrewControl_-date-span-3:before,
|
|
1664
|
-
.CblCrewControl_-view-schedule:before,
|
|
1665
|
-
.CblCrewControl_-view-schedule-2:before,
|
|
1666
|
-
.icons8,
|
|
1667
|
-
[data-icons8]:before {
|
|
1668
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1669
|
-
-webkit-font-smoothing: antialiased;
|
|
1670
|
-
font-smoothing: antialiased;
|
|
1671
|
-
display: inline-block;
|
|
1672
|
-
font-style: normal;
|
|
1673
|
-
font-variant: normal;
|
|
1674
|
-
font-weight: normal;
|
|
1675
|
-
line-height: 1;
|
|
1676
|
-
font-family: "CblCrewControl";
|
|
1677
|
-
text-decoration: inherit;
|
|
1678
|
-
text-rendering: optimizeLegibility;
|
|
1679
|
-
text-transform: none;
|
|
1680
|
-
}
|
|
1681
|
-
|
|
1682
|
-
.CblCrewControl_-date-to:before {
|
|
1683
|
-
content: "\f100";
|
|
1684
|
-
}
|
|
1685
|
-
|
|
1686
|
-
.CblCrewControl_-date-to-2:before {
|
|
1687
|
-
content: "\f101";
|
|
1688
|
-
}
|
|
1689
|
-
|
|
1690
|
-
.CblCrewControl_-date-to-3:before {
|
|
1691
|
-
content: "\f102";
|
|
1692
|
-
}
|
|
1693
|
-
|
|
1694
|
-
.CblCrewControl_-date-span:before {
|
|
1695
|
-
content: "\f103";
|
|
1696
|
-
}
|
|
1697
|
-
|
|
1698
|
-
.CblCrewControl_-date-span-2:before {
|
|
1699
|
-
content: "\f104";
|
|
1700
|
-
}
|
|
1701
|
-
|
|
1702
|
-
.CblCrewControl_-date-span-3:before {
|
|
1703
|
-
content: "\f105";
|
|
1704
|
-
}
|
|
1705
|
-
|
|
1706
|
-
.CblCrewControl_-view-schedule:before {
|
|
1707
|
-
content: "\f106";
|
|
1708
|
-
}
|
|
1709
|
-
|
|
1710
|
-
.CblCrewControl_-view-schedule-2:before {
|
|
1711
|
-
content: "\f107";
|
|
1712
|
-
}
|
|
1713
|
-
|
|
1714
|
-
@font-face {
|
|
1715
|
-
font-style: normal;
|
|
1716
|
-
font-weight: normal;
|
|
1717
|
-
src: url("../fonts/cwCrewControlNewIcon/CblCrewControlReact.eot?h1t3an");
|
|
1718
|
-
src:
|
|
1719
|
-
url("../fonts/cwCrewControlNewIcon/CblCrewControlReact.eot?h1t3an#iefix") format("embedded-opentype"),
|
|
1720
|
-
url("../fonts/cwCrewControlNewIcon/CblCrewControlReact.ttf?h1t3an") format("truetype"),
|
|
1721
|
-
url("../fonts/cwCrewControlNewIcon/CblCrewControlReact.woff?h1t3an") format("woff"),
|
|
1722
|
-
url("../fonts/cwCrewControlNewIcon/CblCrewControlReact.svg?h1t3an#CblCrewControlReact") format("svg");
|
|
1723
|
-
font-family: "CblCrewControlReact";
|
|
1724
|
-
font-display: block;
|
|
1725
|
-
}
|
|
1726
|
-
|
|
1727
|
-
[class^="CblCrewControlReact"],
|
|
1728
|
-
[class*=" CblCrewControlReact"] {
|
|
1729
|
-
speak: never;
|
|
1730
|
-
|
|
1731
|
-
/* Better Font Rendering =========== */
|
|
1732
|
-
-webkit-font-smoothing: antialiased;
|
|
1733
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1734
|
-
font-style: normal;
|
|
1735
|
-
font-variant: normal;
|
|
1736
|
-
font-weight: normal;
|
|
1737
|
-
line-height: 1;
|
|
1738
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
1739
|
-
font-family: "CblCrewControlReact";
|
|
1740
|
-
text-transform: none;
|
|
1741
|
-
}
|
|
1742
|
-
|
|
1743
|
-
.CblCrewControlReacticons8-save:before {
|
|
1744
|
-
content: "\e900";
|
|
1745
|
-
}
|
|
1746
|
-
|
|
1747
|
-
.CblCrewControlReacticons8-undo:before {
|
|
1748
|
-
content: "\e901";
|
|
1749
|
-
}
|
|
1750
|
-
|
|
1751
|
-
/* DutyIcon */
|
|
1752
|
-
|
|
1753
|
-
@font-face {
|
|
1754
|
-
font-style: normal;
|
|
1755
|
-
font-weight: normal;
|
|
1756
|
-
src: url("../fonts/cwCrewControlNewIcon/cblDuty.eot");
|
|
1757
|
-
src:
|
|
1758
|
-
url("../fonts/cwCrewControlNewIcon/cblDuty.eot?#iefix") format("embedded-opentype"),
|
|
1759
|
-
url("../fonts/cwCrewControlNewIcon/cblDuty.woff2") format("woff2"),
|
|
1760
|
-
url("../fonts/cwCrewControlNewIcon/cblDuty.woff") format("woff"),
|
|
1761
|
-
url("../fonts/cwCrewControlNewIcon/cblDuty.ttf") format("truetype"),
|
|
1762
|
-
url("../fonts/cwCrewControlNewIcon/cblDuty.svg#font") format("svg");
|
|
1763
|
-
font-family: "cblDuty";
|
|
1764
|
-
}
|
|
1765
|
-
|
|
1766
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
1767
|
-
@font-face {
|
|
1768
|
-
src: url("../fonts/cwCrewControlNewIcon/cblDuty.svg#cblDuty") format("svg");
|
|
1769
|
-
font-family: "cblDuty";
|
|
1770
|
-
}
|
|
1771
|
-
}
|
|
1772
|
-
|
|
1773
|
-
[data-icons8]:before {
|
|
1774
|
-
content: attr(data-icons8);
|
|
1775
|
-
}
|
|
1776
|
-
|
|
1777
|
-
.cblDuty_-duty-free:before,
|
|
1778
|
-
.cblDuty_-duty-free-2:before,
|
|
1779
|
-
.cblDuty_-duty-free-3:before,
|
|
1780
|
-
.cblDuty_-duty-free-4:before,
|
|
1781
|
-
.icons8,
|
|
1782
|
-
[data-icons8]:before {
|
|
1783
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1784
|
-
-webkit-font-smoothing: antialiased;
|
|
1785
|
-
font-smoothing: antialiased;
|
|
1786
|
-
display: inline-block;
|
|
1787
|
-
font-style: normal;
|
|
1788
|
-
font-variant: normal;
|
|
1789
|
-
font-weight: normal;
|
|
1790
|
-
line-height: 1;
|
|
1791
|
-
font-family: "cblDuty";
|
|
1792
|
-
text-decoration: inherit;
|
|
1793
|
-
text-rendering: optimizeLegibility;
|
|
1794
|
-
text-transform: none;
|
|
1795
|
-
}
|
|
1796
|
-
|
|
1797
|
-
.cblDuty_-duty-free:before {
|
|
1798
|
-
content: "\f100";
|
|
1799
|
-
}
|
|
1800
|
-
|
|
1801
|
-
.cblDuty_-duty-free-2:before {
|
|
1802
|
-
content: "\f101";
|
|
1803
|
-
}
|
|
1804
|
-
|
|
1805
|
-
.cblDuty_-duty-free-3:before {
|
|
1806
|
-
content: "\f102";
|
|
1807
|
-
}
|
|
1808
|
-
|
|
1809
|
-
.cblDuty_-duty-free-4:before {
|
|
1810
|
-
content: "\f103";
|
|
1811
|
-
}
|
|
1812
|
-
|
|
1813
|
-
@font-face {
|
|
1814
|
-
font-style: normal;
|
|
1815
|
-
font-weight: normal;
|
|
1816
|
-
src: url("../fonts/cwCrewControlNewIcon/CblDutyIcon.eot?8q2y9f");
|
|
1817
|
-
src:
|
|
1818
|
-
url("../fonts/cwCrewControlNewIcon/CblDutyIcon.eot?8q2y9f#iefix") format("embedded-opentype"),
|
|
1819
|
-
url("../fonts/cwCrewControlNewIcon/CblDutyIcon.ttf?8q2y9f") format("truetype"),
|
|
1820
|
-
url("../fonts/cwCrewControlNewIcon/CblDutyIcon.woff?8q2y9f") format("woff"),
|
|
1821
|
-
url("../fonts/cwCrewControlNewIcon/CblDutyIcon.svg?8q2y9f#CblDutyIcon") format("svg");
|
|
1822
|
-
font-family: "CblDutyIcon";
|
|
1823
|
-
font-display: block;
|
|
1824
|
-
}
|
|
1825
|
-
|
|
1826
|
-
[class^="cblduty_"],
|
|
1827
|
-
[class*=" cblduty_"] {
|
|
1828
|
-
speak: never;
|
|
1829
|
-
|
|
1830
|
-
/* Better Font Rendering =========== */
|
|
1831
|
-
-webkit-font-smoothing: antialiased;
|
|
1832
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1833
|
-
font-style: normal;
|
|
1834
|
-
font-variant: normal;
|
|
1835
|
-
font-weight: normal;
|
|
1836
|
-
line-height: 1;
|
|
1837
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
1838
|
-
font-family: "CblDutyIcon" !important;
|
|
1839
|
-
text-transform: none;
|
|
1840
|
-
}
|
|
1841
|
-
|
|
1842
|
-
.cblduty_icons8-duty-free:before {
|
|
1843
|
-
content: "\e900";
|
|
1844
|
-
}
|
|
1845
|
-
|
|
1846
|
-
/* Session Warning font */
|
|
1847
|
-
@font-face {
|
|
1848
|
-
font-style: normal;
|
|
1849
|
-
font-weight: normal;
|
|
1850
|
-
/* src: url('../fonts/CblCrewControlNewIcon/SessionWarning.eot') */
|
|
1851
|
-
src: url("../fonts/cwCrewControlNewIcon/SessionWarning.eot?fwxjkr");
|
|
1852
|
-
src:
|
|
1853
|
-
url("../fonts/cwCrewControlNewIcon/SessionWarning.eot?fwxjkr#iefix") format("embedded-opentype"),
|
|
1854
|
-
url("../fonts/cwCrewControlNewIcon/SessionWarning.ttf?fwxjkr") format("truetype"),
|
|
1855
|
-
url("../fonts/cwCrewControlNewIcon/SessionWarning.woff?fwxjkr") format("woff"),
|
|
1856
|
-
url("../fonts/cwCrewControlNewIcon/SessionWarning.svg?fwxjkr#SessionWarning") format("svg");
|
|
1857
|
-
font-family: "SessionWarning";
|
|
1858
|
-
font-display: block;
|
|
1859
|
-
}
|
|
1860
|
-
|
|
1861
|
-
[class^="icons8_"],
|
|
1862
|
-
[class*=" icons8_"] {
|
|
1863
|
-
speak: never;
|
|
1864
|
-
|
|
1865
|
-
/* Better Font Rendering =========== */
|
|
1866
|
-
-webkit-font-smoothing: antialiased;
|
|
1867
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1868
|
-
font-style: normal;
|
|
1869
|
-
font-variant: normal;
|
|
1870
|
-
font-weight: normal;
|
|
1871
|
-
line-height: 1;
|
|
1872
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
1873
|
-
font-family: "SessionWarning" !important;
|
|
1874
|
-
text-transform: none;
|
|
1875
|
-
}
|
|
1876
|
-
|
|
1877
|
-
.icons8_SessionWarning:before {
|
|
1878
|
-
content: "\e900";
|
|
1879
|
-
}
|
|
1880
|
-
|
|
1881
|
-
.icons8_visibleSave:before {
|
|
1882
|
-
content: "\e901";
|
|
1883
|
-
}
|
|
1884
|
-
|
|
1885
|
-
/* #endregion */
|
|
1886
|
-
|
|
1887
|
-
/* #region [ EmmanualFont ] */
|
|
1888
|
-
|
|
1889
|
-
@font-face {
|
|
1890
|
-
font-style: normal;
|
|
1891
|
-
font-weight: normal;
|
|
1892
|
-
/* src: url("../fonts/CblEmanualFont/Emanual.eot") */
|
|
1893
|
-
src: url("../fonts/cwEmanualFont/Emanual.eot");
|
|
1894
|
-
src:
|
|
1895
|
-
url("../fonts/cwEmanualFont/Emanual.eot?#iefix") format("embedded-opentype"),
|
|
1896
|
-
/* url("../fonts/CblEmanualFont/Emanual.woff2") format("woff2"), */ url("../fonts/cwEmanualFont/Emanual.woff")
|
|
1897
|
-
format("woff"),
|
|
1898
|
-
url("../fonts/cwEmanualFont/Emanual.ttf") format("truetype"),
|
|
1899
|
-
url("../fonts/cwEmanualFont/Emanual.svg#font") format("svg");
|
|
1900
|
-
font-family: "Emanual";
|
|
1901
|
-
}
|
|
1902
|
-
|
|
1903
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
1904
|
-
@font-face {
|
|
1905
|
-
src: url("../fonts/cwEmanualFont/Emanual.svg#Emanual") format("svg");
|
|
1906
|
-
font-family: "Emanual";
|
|
1907
|
-
}
|
|
1908
|
-
}
|
|
1909
|
-
|
|
1910
|
-
[data-icons8]:before {
|
|
1911
|
-
content: attr(data-icons8);
|
|
1912
|
-
}
|
|
1913
|
-
|
|
1914
|
-
.icons8-onedrive:before,
|
|
1915
|
-
.icons8-user-folder:before,
|
|
1916
|
-
.icons8-cloud-folder:before,
|
|
1917
|
-
.icons8-images-folder:before,
|
|
1918
|
-
.icons8-archive-folder:before,
|
|
1919
|
-
.icons8-downloads-folder:before,
|
|
1920
|
-
.icons8-downloads:before,
|
|
1921
|
-
.icons8-file-explorer:before,
|
|
1922
|
-
.icons8,
|
|
1923
|
-
[data-icons8]:before {
|
|
1924
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1925
|
-
-webkit-font-smoothing: antialiased;
|
|
1926
|
-
font-smoothing: antialiased;
|
|
1927
|
-
display: inline-block;
|
|
1928
|
-
font-style: normal;
|
|
1929
|
-
font-variant: normal;
|
|
1930
|
-
font-weight: normal;
|
|
1931
|
-
line-height: 1;
|
|
1932
|
-
font-family: "Emanual";
|
|
1933
|
-
text-decoration: inherit;
|
|
1934
|
-
text-rendering: optimizeLegibility;
|
|
1935
|
-
text-transform: none;
|
|
1936
|
-
}
|
|
1937
|
-
|
|
1938
|
-
.icons8-onedrive:before {
|
|
1939
|
-
content: "\f100";
|
|
1940
|
-
}
|
|
1941
|
-
|
|
1942
|
-
.icons8-user-folder:before {
|
|
1943
|
-
content: "\f101";
|
|
1944
|
-
}
|
|
1945
|
-
|
|
1946
|
-
.icons8-cloud-folder:before {
|
|
1947
|
-
content: "\f102";
|
|
1948
|
-
}
|
|
1949
|
-
|
|
1950
|
-
.icons8-images-folder:before {
|
|
1951
|
-
content: "\f103";
|
|
1952
|
-
}
|
|
1953
|
-
|
|
1954
|
-
.icons8-archive-folder:before {
|
|
1955
|
-
content: "\f104";
|
|
1956
|
-
}
|
|
1957
|
-
|
|
1958
|
-
.icons8-downloads-folder:before {
|
|
1959
|
-
content: "\f105";
|
|
1960
|
-
}
|
|
1961
|
-
|
|
1962
|
-
.icons8-downloads:before {
|
|
1963
|
-
content: "\f106";
|
|
1964
|
-
}
|
|
1965
|
-
|
|
1966
|
-
.icons8-file-explorer:before {
|
|
1967
|
-
content: "\f107";
|
|
1968
|
-
}
|
|
1969
|
-
|
|
1970
|
-
/* Other Emmanuel fonts */
|
|
1971
|
-
@font-face {
|
|
1972
|
-
font-style: normal;
|
|
1973
|
-
font-weight: normal;
|
|
1974
|
-
src: url("../fonts/cwEmanualFont/EmanualFont.eot?g268gt");
|
|
1975
|
-
src:
|
|
1976
|
-
url("../fonts/cwEmanualFont/EmanualFont.eot?g268gt#iefix") format("embedded-opentype"),
|
|
1977
|
-
url("../fonts/cwEmanualFont/EmanualFont.ttf?g268gt") format("truetype"),
|
|
1978
|
-
/* url('../fonts/cwEmanualFont/EmanualFont.woff') format('woff'), */
|
|
1979
|
-
url("../fonts/cwEmanualFont/EmanualFont.woff?g268gt") format("woff"),
|
|
1980
|
-
url("../fonts/cwEmanualFont/EmanualFont.svg?g268gt#EmanualFont") format("svg");
|
|
1981
|
-
font-family: "EmanualFont";
|
|
1982
|
-
font-display: block;
|
|
1983
|
-
}
|
|
1984
|
-
|
|
1985
|
-
[class^="Emanual"],
|
|
1986
|
-
[class*=" Emanual"] {
|
|
1987
|
-
speak: never;
|
|
1988
|
-
-webkit-font-smoothing: antialiased;
|
|
1989
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1990
|
-
font-style: normal;
|
|
1991
|
-
font-variant: normal;
|
|
1992
|
-
font-weight: normal;
|
|
1993
|
-
line-height: 1;
|
|
1994
|
-
font-family: "EmanualFont" !important;
|
|
1995
|
-
text-transform: none;
|
|
1996
|
-
}
|
|
1997
|
-
|
|
1998
|
-
.EmanualaddFolder:before {
|
|
1999
|
-
content: "\e900";
|
|
2000
|
-
}
|
|
2001
|
-
|
|
2002
|
-
.EmanualEditFolder:before {
|
|
2003
|
-
content: "\e902";
|
|
2004
|
-
}
|
|
2005
|
-
|
|
2006
|
-
.EmanualselectedFolder:before {
|
|
2007
|
-
content: "\e903";
|
|
2008
|
-
}
|
|
2009
|
-
|
|
2010
|
-
@font-face {
|
|
2011
|
-
font-style: normal;
|
|
2012
|
-
font-weight: normal;
|
|
2013
|
-
src: url("../fonts/cwEmanualFont/EmanualBookMark.eot");
|
|
2014
|
-
src:
|
|
2015
|
-
url("../fonts/cwEmanualFont/EmanualBookMark.eot?#iefix") format("embedded-opentype"),
|
|
2016
|
-
url("../fonts/cwEmanualFont/EmanualBookMark.woff2") format("woff2"),
|
|
2017
|
-
url("../fonts/cwEmanualFont/EmanualBookMark.woff") format("woff"),
|
|
2018
|
-
url("../fonts/cwEmanualFont/EmanualBookMark.ttf") format("truetype"),
|
|
2019
|
-
url("../fonts/cwEmanualFont/EmanualBookMark.svg#font") format("svg");
|
|
2020
|
-
font-family: "EmanualBookMark";
|
|
2021
|
-
}
|
|
2022
|
-
|
|
2023
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
2024
|
-
@font-face {
|
|
2025
|
-
src: url("../fonts/cwEmanualFont/EmanualBookMark.svg#EmanualBookMark") format("svg");
|
|
2026
|
-
font-family: "EmanualBookMark";
|
|
2027
|
-
}
|
|
2028
|
-
}
|
|
2029
|
-
|
|
2030
|
-
[data-icons8]:before {
|
|
2031
|
-
content: attr(data-icons8);
|
|
2032
|
-
}
|
|
2033
|
-
|
|
2034
|
-
.icons8-star:before,
|
|
2035
|
-
.icons8,
|
|
2036
|
-
[data-icons8]:before {
|
|
2037
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2038
|
-
-webkit-font-smoothing: antialiased;
|
|
2039
|
-
font-smoothing: antialiased;
|
|
2040
|
-
display: inline-block;
|
|
2041
|
-
font-style: normal;
|
|
2042
|
-
font-variant: normal;
|
|
2043
|
-
font-weight: normal;
|
|
2044
|
-
line-height: 1;
|
|
2045
|
-
font-family: "EmanualBookMark";
|
|
2046
|
-
text-decoration: inherit;
|
|
2047
|
-
text-rendering: optimizeLegibility;
|
|
2048
|
-
text-transform: none;
|
|
2049
|
-
}
|
|
2050
|
-
|
|
2051
|
-
.icons8-star:before {
|
|
2052
|
-
content: "\f100";
|
|
2053
|
-
}
|
|
2054
|
-
|
|
2055
|
-
@font-face {
|
|
2056
|
-
font-style: normal;
|
|
2057
|
-
font-weight: normal;
|
|
2058
|
-
src: url("../fonts/cwEmanualFont/EmanualFolder.eot?of0xx0");
|
|
2059
|
-
src:
|
|
2060
|
-
url("../fonts/cwEmanualFont/EmanualFolder.eot?of0xx0#iefix") format("embedded-opentype"),
|
|
2061
|
-
url("../fonts/cwEmanualFont/EmanualFolder.ttf?of0xx0") format("truetype"),
|
|
2062
|
-
url("../fonts/cwEmanualFont/EmanualFolder.woff?of0xx0") format("woff"),
|
|
2063
|
-
url("../fonts/cwEmanualFont/EmanualFolder.svg?of0xx0#EmanualFolder") format("svg");
|
|
2064
|
-
font-family: "EmanualFolder";
|
|
2065
|
-
font-display: block;
|
|
2066
|
-
}
|
|
2067
|
-
|
|
2068
|
-
[class^="icons8-"],
|
|
2069
|
-
[class*=" icons8-"] {
|
|
2070
|
-
speak: never;
|
|
2071
|
-
|
|
2072
|
-
/* Better Font Rendering =========== */
|
|
2073
|
-
-webkit-font-smoothing: antialiased;
|
|
2074
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2075
|
-
font-style: normal;
|
|
2076
|
-
font-variant: normal;
|
|
2077
|
-
font-weight: normal;
|
|
2078
|
-
line-height: 1;
|
|
2079
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
2080
|
-
font-family: "EmanualFolder" !important;
|
|
2081
|
-
text-transform: none;
|
|
2082
|
-
}
|
|
2083
|
-
|
|
2084
|
-
.icons8-EmanualFolder:before {
|
|
2085
|
-
content: "\e900";
|
|
2086
|
-
}
|
|
2087
|
-
|
|
2088
|
-
@font-face {
|
|
2089
|
-
font-style: normal;
|
|
2090
|
-
font-weight: normal;
|
|
2091
|
-
src: url("../fonts/cwEmanualFont/EmanualFontNew.eot");
|
|
2092
|
-
src:
|
|
2093
|
-
url("../fonts/cwEmanualFont/EmanualFontNew.eot?#iefix") format("embedded-opentype"),
|
|
2094
|
-
url("../fonts/cwEmanualFont/EmanualFontNew.woff2") format("woff2"),
|
|
2095
|
-
url("../fonts/cwEmanualFont/EmanualFontNew.woff") format("woff"),
|
|
2096
|
-
url("../fonts/cwEmanualFont/EmanualFontNew.ttf") format("truetype"),
|
|
2097
|
-
url("../fonts/cwEmanualFont/EmanualFontNew.svg#font") format("svg");
|
|
2098
|
-
font-family: "EmanualFontNew";
|
|
2099
|
-
}
|
|
2100
|
-
|
|
2101
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
2102
|
-
@font-face {
|
|
2103
|
-
src: url("../fonts/cwEmanualFont/EmanualFontNew.svg#EmanualFontNew") format("svg");
|
|
2104
|
-
font-family: "EmanualFontNew";
|
|
2105
|
-
}
|
|
2106
|
-
}
|
|
2107
|
-
|
|
2108
|
-
[data-icons8]:before {
|
|
2109
|
-
content: attr(data-icons8);
|
|
2110
|
-
}
|
|
2111
|
-
|
|
2112
|
-
.icons8-empty-trash:before,
|
|
2113
|
-
.icons8-full-trash:before,
|
|
2114
|
-
.icons8-bookmark:before,
|
|
2115
|
-
.icons8-bookmark-2:before,
|
|
2116
|
-
.icons8-add-bookmark:before,
|
|
2117
|
-
.icons8-add-bookmark-2:before,
|
|
2118
|
-
.icons8,
|
|
2119
|
-
[data-icons8]:before {
|
|
2120
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2121
|
-
-webkit-font-smoothing: antialiased;
|
|
2122
|
-
font-smoothing: antialiased;
|
|
2123
|
-
display: inline-block;
|
|
2124
|
-
font-style: normal;
|
|
2125
|
-
font-variant: normal;
|
|
2126
|
-
font-weight: normal;
|
|
2127
|
-
line-height: 1;
|
|
2128
|
-
font-family: "EmanualFontNew";
|
|
2129
|
-
text-decoration: inherit;
|
|
2130
|
-
text-rendering: optimizeLegibility;
|
|
2131
|
-
text-transform: none;
|
|
2132
|
-
}
|
|
2133
|
-
|
|
2134
|
-
.icons8-empty-trash:before {
|
|
2135
|
-
content: "\f100";
|
|
2136
|
-
}
|
|
2137
|
-
|
|
2138
|
-
.icons8-full-trash:before {
|
|
2139
|
-
content: "\f101";
|
|
2140
|
-
}
|
|
2141
|
-
|
|
2142
|
-
.icons8-bookmark:before {
|
|
2143
|
-
content: "\f102";
|
|
2144
|
-
}
|
|
2145
|
-
|
|
2146
|
-
.icons8-bookmark-2:before {
|
|
2147
|
-
content: "\f103";
|
|
2148
|
-
}
|
|
2149
|
-
|
|
2150
|
-
.icons8-add-bookmark:before {
|
|
2151
|
-
content: "\f104";
|
|
2152
|
-
}
|
|
2153
|
-
|
|
2154
|
-
.icons8-add-bookmark-2:before {
|
|
2155
|
-
content: "\f105";
|
|
2156
|
-
}
|
|
2157
|
-
|
|
2158
|
-
@font-face {
|
|
2159
|
-
font-style: normal;
|
|
2160
|
-
font-weight: normal;
|
|
2161
|
-
src: url("../fonts/cwEmanualFont/EmanualRestoreTrash.eot?dr0304");
|
|
2162
|
-
src:
|
|
2163
|
-
url("../fonts/cwEmanualFont/EmanualRestoreTrash.eot?dr0304#iefix") format("embedded-opentype"),
|
|
2164
|
-
url("../fonts/cwEmanualFont/EmanualRestoreTrash.ttf?dr0304") format("truetype"),
|
|
2165
|
-
url("../fonts/cwEmanualFont/EmanualRestoreTrash.woff?dr0304") format("woff"),
|
|
2166
|
-
url("../fonts/cwEmanualFont/EmanualRestoreTrash.svg?dr0304#EmanualRestoreTrash") format("svg");
|
|
2167
|
-
font-family: "EmanualRestoreTrash";
|
|
2168
|
-
font-display: block;
|
|
2169
|
-
}
|
|
2170
|
-
|
|
2171
|
-
[class^="icons8-"],
|
|
2172
|
-
[class*=" icons8-"] {
|
|
2173
|
-
speak: never;
|
|
2174
|
-
|
|
2175
|
-
/* Better Font Rendering =========== */
|
|
2176
|
-
-webkit-font-smoothing: antialiased;
|
|
2177
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2178
|
-
font-style: normal;
|
|
2179
|
-
font-variant: normal;
|
|
2180
|
-
font-weight: normal;
|
|
2181
|
-
line-height: 1;
|
|
2182
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
2183
|
-
font-family: "EmanualRestoreTrash" !important;
|
|
2184
|
-
text-transform: none;
|
|
2185
|
-
}
|
|
2186
|
-
|
|
2187
|
-
.icons8-icons8-trash:before {
|
|
2188
|
-
content: "\e900";
|
|
2189
|
-
}
|
|
2190
|
-
|
|
2191
|
-
@font-face {
|
|
2192
|
-
font-style: normal;
|
|
2193
|
-
font-weight: normal;
|
|
2194
|
-
src: url("../fonts/cwEmanualFont/EmanualRestoreTrashRight.eot?hi308t");
|
|
2195
|
-
src:
|
|
2196
|
-
url("../fonts/cwEmanualFont/EmanualRestoreTrashRight.eot?hi308t#iefix") format("embedded-opentype"),
|
|
2197
|
-
url("../fonts/cwEmanualFont/EmanualRestoreTrashRight.ttf?hi308t") format("truetype"),
|
|
2198
|
-
url("../fonts/cwEmanualFont/EmanualRestoreTrashRight.woff?hi308t") format("woff"),
|
|
2199
|
-
url("../fonts/cwEmanualFont/EmanualRestoreTrashRight.svg?hi308t#EmanualRestoreTrashRight") format("svg");
|
|
2200
|
-
font-family: "EmanualRestoreTrashRight";
|
|
2201
|
-
font-display: block;
|
|
2202
|
-
}
|
|
2203
|
-
|
|
2204
|
-
[class^="icons8-"],
|
|
2205
|
-
[class*=" icons8-"] {
|
|
2206
|
-
speak: never;
|
|
2207
|
-
|
|
2208
|
-
/* Better Font Rendering =========== */
|
|
2209
|
-
-webkit-font-smoothing: antialiased;
|
|
2210
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2211
|
-
font-style: normal;
|
|
2212
|
-
font-variant: normal;
|
|
2213
|
-
font-weight: normal;
|
|
2214
|
-
line-height: 1;
|
|
2215
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
2216
|
-
font-family: "EmanualRestoreTrashRight" !important;
|
|
2217
|
-
text-transform: none;
|
|
2218
|
-
}
|
|
2219
|
-
|
|
2220
|
-
.icons8-icons8-trashRight:before {
|
|
2221
|
-
content: "\e900";
|
|
2222
|
-
}
|
|
2223
|
-
|
|
2224
|
-
@font-face {
|
|
2225
|
-
font-style: normal;
|
|
2226
|
-
font-weight: normal;
|
|
2227
|
-
src: url("../fonts/cwEmanualFont/ArchiveEmanual.eot?6iz9oi");
|
|
2228
|
-
src:
|
|
2229
|
-
url("../fonts/cwEmanualFont/ArchiveEmanual.eot?6iz9oi#iefix") format("embedded-opentype"),
|
|
2230
|
-
url("../fonts/cwEmanualFont/ArchiveEmanual.ttf?6iz9oi") format("truetype"),
|
|
2231
|
-
url("../fonts/cwEmanualFont/ArchiveEmanual.woff?6iz9oi") format("woff"),
|
|
2232
|
-
url("../fonts/cwEmanualFont/ArchiveEmanual.svg?6iz9oi#ArchiveEmanual") format("svg");
|
|
2233
|
-
font-family: "ArchiveEmanual";
|
|
2234
|
-
font-display: block;
|
|
2235
|
-
}
|
|
2236
|
-
|
|
2237
|
-
[class^="icons8-"],
|
|
2238
|
-
[class*=" icons8-"] {
|
|
2239
|
-
speak: never;
|
|
2240
|
-
|
|
2241
|
-
-webkit-font-smoothing: antialiased;
|
|
2242
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2243
|
-
font-style: normal;
|
|
2244
|
-
font-variant: normal;
|
|
2245
|
-
font-weight: normal;
|
|
2246
|
-
line-height: 1;
|
|
2247
|
-
font-family: "ArchiveEmanual" !important;
|
|
2248
|
-
text-transform: none;
|
|
2249
|
-
}
|
|
2250
|
-
|
|
2251
|
-
.icons8-Archive:before {
|
|
2252
|
-
content: "\e900";
|
|
2253
|
-
}
|
|
2254
|
-
|
|
2255
|
-
.icons8-ArchiveRestore:before {
|
|
2256
|
-
content: "\e901";
|
|
2257
|
-
}
|
|
2258
|
-
|
|
2259
|
-
@font-face {
|
|
2260
|
-
font-style: normal;
|
|
2261
|
-
font-weight: normal;
|
|
2262
|
-
src: url("../fonts/cwEmanualFont/EmanualApprovedFile.eot?zexbgf");
|
|
2263
|
-
src:
|
|
2264
|
-
url("../fonts/cwEmanualFont/EmanualApprovedFile.eot?zexbgf#iefix") format("embedded-opentype"),
|
|
2265
|
-
url("../fonts/cwEmanualFont/EmanualApprovedFile.ttf?zexbgf") format("truetype"),
|
|
2266
|
-
url("../fonts/cwEmanualFont/EmanualApprovedFile.woff?zexbgf") format("woff"),
|
|
2267
|
-
url("../fonts/cwEmanualFont/EmanualApprovedFile.svg?zexbgf#EmanualApprovedFile") format("svg");
|
|
2268
|
-
font-family: "EmanualApprovedFile";
|
|
2269
|
-
font-display: block;
|
|
2270
|
-
}
|
|
2271
|
-
|
|
2272
|
-
[class^="icons8-"],
|
|
2273
|
-
[class*=" icons8-"] {
|
|
2274
|
-
speak: never;
|
|
2275
|
-
|
|
2276
|
-
/* Better Font Rendering =========== */
|
|
2277
|
-
-webkit-font-smoothing: antialiased;
|
|
2278
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2279
|
-
font-style: normal;
|
|
2280
|
-
font-variant: normal;
|
|
2281
|
-
font-weight: normal;
|
|
2282
|
-
line-height: 1;
|
|
2283
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
2284
|
-
font-family: "EmanualApprovedFile" !important;
|
|
2285
|
-
text-transform: none;
|
|
2286
|
-
}
|
|
2287
|
-
|
|
2288
|
-
.icons8-approvedFile:before {
|
|
2289
|
-
content: "\e900";
|
|
2290
|
-
}
|
|
2291
|
-
|
|
2292
|
-
@font-face {
|
|
2293
|
-
font-style: normal;
|
|
2294
|
-
font-weight: normal;
|
|
2295
|
-
src: url("../fonts/cwEmanualFont/EmanualPublishFile.eot?b1vt5o");
|
|
2296
|
-
src:
|
|
2297
|
-
url("../fonts/cwEmanualFont/EmanualPublishFile.eot?b1vt5o#iefix") format("embedded-opentype"),
|
|
2298
|
-
url("../fonts/cwEmanualFont/EmanualPublishFile.ttf?b1vt5o") format("truetype"),
|
|
2299
|
-
url("../fonts/cwEmanualFont/EmanualPublishFile.woff?b1vt5o") format("woff"),
|
|
2300
|
-
url("../fonts/cwEmanualFont/EmanualPublishFile.svg?b1vt5o#EmanualPublishFile") format("svg");
|
|
2301
|
-
font-family: "EmanualPublishFile";
|
|
2302
|
-
font-display: block;
|
|
2303
|
-
}
|
|
2304
|
-
|
|
2305
|
-
[class^="icons8-"],
|
|
2306
|
-
[class*=" icons8-"] {
|
|
2307
|
-
speak: never;
|
|
2308
|
-
|
|
2309
|
-
/* Better Font Rendering =========== */
|
|
2310
|
-
-webkit-font-smoothing: antialiased;
|
|
2311
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2312
|
-
font-style: normal;
|
|
2313
|
-
font-variant: normal;
|
|
2314
|
-
font-weight: normal;
|
|
2315
|
-
line-height: 1;
|
|
2316
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
2317
|
-
font-family: "EmanualPublishFile" !important;
|
|
2318
|
-
text-transform: none;
|
|
2319
|
-
}
|
|
2320
|
-
|
|
2321
|
-
.icons8-PublishFile:before {
|
|
2322
|
-
content: "\e900";
|
|
2323
|
-
}
|
|
2324
|
-
|
|
2325
|
-
@font-face {
|
|
2326
|
-
font-style: normal;
|
|
2327
|
-
font-weight: normal;
|
|
2328
|
-
src: url("../fonts/cwEmanualFont/EmanualPendingIcon.eot?9820o7");
|
|
2329
|
-
src:
|
|
2330
|
-
url("../fonts/cwEmanualFont/EmanualPendingIcon.eot?9820o7#iefix") format("embedded-opentype"),
|
|
2331
|
-
url("../fonts/cwEmanualFont/EmanualPendingIcon.ttf?9820o7") format("truetype"),
|
|
2332
|
-
url("../fonts/cwEmanualFont/EmanualPendingIcon.woff?9820o7") format("woff"),
|
|
2333
|
-
url("../fonts/cwEmanualFont/EmanualPendingIcon.svg?9820o7#EmanualPendingIcon") format("svg");
|
|
2334
|
-
font-family: "EmanualPendingIcon";
|
|
2335
|
-
font-display: block;
|
|
2336
|
-
}
|
|
2337
|
-
|
|
2338
|
-
[class^="icons8-"],
|
|
2339
|
-
[class*=" icons8-"] {
|
|
2340
|
-
speak: never;
|
|
2341
|
-
|
|
2342
|
-
/* Better Font Rendering =========== */
|
|
2343
|
-
-webkit-font-smoothing: antialiased;
|
|
2344
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2345
|
-
font-style: normal;
|
|
2346
|
-
font-variant: normal;
|
|
2347
|
-
font-weight: normal;
|
|
2348
|
-
line-height: 1;
|
|
2349
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
2350
|
-
font-family: "EmanualPendingIcon" !important;
|
|
2351
|
-
text-transform: none;
|
|
2352
|
-
}
|
|
2353
|
-
|
|
2354
|
-
.icons8-pending:before {
|
|
2355
|
-
content: "\e900";
|
|
2356
|
-
}
|
|
2357
|
-
|
|
2358
|
-
@font-face {
|
|
2359
|
-
font-style: normal;
|
|
2360
|
-
font-weight: normal;
|
|
2361
|
-
src: url("../fonts/cwEmanualFont/EmanualPublishIconFile.eot?uiqcjl");
|
|
2362
|
-
src:
|
|
2363
|
-
url("../fonts/cwEmanualFont/EmanualPublishIconFile.eot?uiqcjl#iefix") format("embedded-opentype"),
|
|
2364
|
-
url("../fonts/cwEmanualFont/EmanualPublishIconFile.ttf?uiqcjl") format("truetype"),
|
|
2365
|
-
url("../fonts/cwEmanualFont/EmanualPublishIconFile.woff?uiqcjl") format("woff"),
|
|
2366
|
-
url("../fonts/cwEmanualFont/EmanualPublishIconFile.svg?uiqcjl#EmanualPublishIconFile") format("svg");
|
|
2367
|
-
font-family: "EmanualPublishIconFile";
|
|
2368
|
-
font-display: block;
|
|
2369
|
-
}
|
|
2370
|
-
|
|
2371
|
-
[class^="icons8-"],
|
|
2372
|
-
[class*=" icons8-"] {
|
|
2373
|
-
speak: never;
|
|
2374
|
-
|
|
2375
|
-
/* Better Font Rendering =========== */
|
|
2376
|
-
-webkit-font-smoothing: antialiased;
|
|
2377
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2378
|
-
font-style: normal;
|
|
2379
|
-
font-variant: normal;
|
|
2380
|
-
font-weight: normal;
|
|
2381
|
-
line-height: 1;
|
|
2382
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
2383
|
-
font-family: "EmanualPublishIconFile" !important;
|
|
2384
|
-
text-transform: none;
|
|
2385
|
-
}
|
|
2386
|
-
|
|
2387
|
-
.icons8-EmanualPublishIcon:before {
|
|
2388
|
-
content: "\e900";
|
|
2389
|
-
}
|
|
2390
|
-
|
|
2391
|
-
@font-face {
|
|
2392
|
-
font-style: normal;
|
|
2393
|
-
font-weight: normal;
|
|
2394
|
-
src: url("../fonts/cwEmanualFont/EmanualBookMarkLink.eot?f9lxq");
|
|
2395
|
-
src:
|
|
2396
|
-
url("../fonts/cwEmanualFont/EmanualBookMarkLink.eot?f9lxq#iefix") format("embedded-opentype"),
|
|
2397
|
-
url("../fonts/cwEmanualFont/EmanualBookMarkLink.ttf?f9lxq") format("truetype"),
|
|
2398
|
-
url("../fonts/cwEmanualFont/EmanualBookMarkLink.woff?f9lxq") format("woff"),
|
|
2399
|
-
url("../fonts/cwEmanualFont/EmanualBookMarkLink.svg?f9lxq#EmanualBookMarkLink") format("svg");
|
|
2400
|
-
font-family: "EmanualBookMarkLink";
|
|
2401
|
-
font-display: block;
|
|
2402
|
-
}
|
|
2403
|
-
|
|
2404
|
-
[class^="icons8-"],
|
|
2405
|
-
[class*=" icons8-"] {
|
|
2406
|
-
speak: never;
|
|
2407
|
-
|
|
2408
|
-
/* Better Font Rendering =========== */
|
|
2409
|
-
-webkit-font-smoothing: antialiased;
|
|
2410
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2411
|
-
font-style: normal;
|
|
2412
|
-
font-variant: normal;
|
|
2413
|
-
font-weight: normal;
|
|
2414
|
-
line-height: 1;
|
|
2415
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
2416
|
-
font-family: "EmanualBookMarkLink" !important;
|
|
2417
|
-
text-transform: none;
|
|
2418
|
-
}
|
|
2419
|
-
|
|
2420
|
-
.icons8-EmanualBookMarkLink:before {
|
|
2421
|
-
content: "\e900";
|
|
2422
|
-
}
|
|
2423
|
-
|
|
2424
|
-
@font-face {
|
|
2425
|
-
font-style: normal;
|
|
2426
|
-
font-weight: normal;
|
|
2427
|
-
src: url("../fonts/cwEmanualFont/LibraryIcon.eot?t04iky");
|
|
2428
|
-
src:
|
|
2429
|
-
url("../fonts/cwEmanualFont/LibraryIcon.eot?t04iky#iefix") format("embedded-opentype"),
|
|
2430
|
-
url("../fonts/cwEmanualFont/LibraryIcon.ttf?t04iky") format("truetype"),
|
|
2431
|
-
url("../fonts/cwEmanualFont/LibraryIcon.woff?t04iky") format("woff"),
|
|
2432
|
-
url("../fonts/cwEmanualFont/LibraryIcon.svg?t04iky#LibraryIcon") format("svg");
|
|
2433
|
-
font-family: "LibraryIcon";
|
|
2434
|
-
font-display: block;
|
|
2435
|
-
}
|
|
2436
|
-
|
|
2437
|
-
[class^="icons8-"],
|
|
2438
|
-
[class*=" icons8-"] {
|
|
2439
|
-
speak: never;
|
|
2440
|
-
|
|
2441
|
-
/* Better Font Rendering =========== */
|
|
2442
|
-
-webkit-font-smoothing: antialiased;
|
|
2443
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2444
|
-
font-style: normal;
|
|
2445
|
-
font-variant: normal;
|
|
2446
|
-
font-weight: normal;
|
|
2447
|
-
line-height: 1;
|
|
2448
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
2449
|
-
font-family: "LibraryIcon" !important;
|
|
2450
|
-
text-transform: none;
|
|
2451
|
-
}
|
|
2452
|
-
|
|
2453
|
-
.icons8-icons8-facebook-like:before {
|
|
2454
|
-
content: "\e900";
|
|
2455
|
-
}
|
|
2456
|
-
|
|
2457
|
-
.icons8-icons8-ok-hand:before {
|
|
2458
|
-
content: "\e901";
|
|
2459
|
-
}
|
|
2460
|
-
|
|
2461
|
-
@font-face {
|
|
2462
|
-
font-style: normal;
|
|
2463
|
-
font-weight: normal;
|
|
2464
|
-
src: url("../fonts/cwEmanualFont/CblEmanualNewIcons.eot?g1e828");
|
|
2465
|
-
src:
|
|
2466
|
-
url("../fonts/cwEmanualFont/CblEmanualNewIcons.eot?g1e828#iefix") format("embedded-opentype"),
|
|
2467
|
-
url("../fonts/cwEmanualFont/CblEmanualNewIcons.ttf?g1e828") format("truetype"),
|
|
2468
|
-
url("../fonts/cwEmanualFont/CblEmanualNewIcons.woff?g1e828") format("woff"),
|
|
2469
|
-
url("../fonts/cwEmanualFont/CblEmanualNewIcons.svg?g1e828#CblEmanualNewIcons") format("svg");
|
|
2470
|
-
font-family: "CblEmanualNewIcons";
|
|
2471
|
-
font-display: block;
|
|
2472
|
-
}
|
|
2473
|
-
|
|
2474
|
-
[class^="icons8-"],
|
|
2475
|
-
[class*=" icons8-"] {
|
|
2476
|
-
speak: never;
|
|
2477
|
-
|
|
2478
|
-
/* Better Font Rendering =========== */
|
|
2479
|
-
-webkit-font-smoothing: antialiased;
|
|
2480
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2481
|
-
font-style: normal;
|
|
2482
|
-
font-variant: normal;
|
|
2483
|
-
font-weight: normal;
|
|
2484
|
-
line-height: 1;
|
|
2485
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
2486
|
-
font-family: "CblEmanualNewIcons" !important;
|
|
2487
|
-
text-transform: none;
|
|
2488
|
-
}
|
|
2489
|
-
|
|
2490
|
-
.icons8-icons8-book:before {
|
|
2491
|
-
content: "\e900";
|
|
2492
|
-
}
|
|
2493
|
-
|
|
2494
|
-
.icons8-icons8-bookSolid:before {
|
|
2495
|
-
content: "\e901";
|
|
2496
|
-
}
|
|
2497
|
-
|
|
2498
|
-
.icons8-icons8-FileReaded:before {
|
|
2499
|
-
content: "\e902";
|
|
2500
|
-
}
|
|
2501
|
-
|
|
2502
|
-
.icons8-icons8-PublishHistory:before {
|
|
2503
|
-
content: "\e903";
|
|
2504
|
-
}
|
|
2505
|
-
|
|
2506
|
-
/* #endregion */
|
|
2507
|
-
|
|
2508
|
-
/* #region [ CblFigIcons ] */
|
|
2509
|
-
|
|
2510
|
-
@font-face {
|
|
2511
|
-
font-style: normal;
|
|
2512
|
-
font-weight: normal;
|
|
2513
|
-
/* src: url('../fonts/cwFgIconsFonts/CblFigIcons.eot'); */
|
|
2514
|
-
src: url("../fonts/cwFgIconsFonts/CblFigIcons.eot?rk4j8i");
|
|
2515
|
-
src:
|
|
2516
|
-
url("../fonts/cwFgIconsFonts/CblFigIcons.eot?rk4j8i#iefix") format("embedded-opentype"),
|
|
2517
|
-
url("../fonts/cwFgIconsFonts/CblFigIcons.ttf?rk4j8i") format("truetype"),
|
|
2518
|
-
url("../fonts/cwFgIconsFonts/CblFigIcons.woff?rk4j8i") format("woff"),
|
|
2519
|
-
url("../fonts/cwFgIconsFonts/CblFigIcons.svg?rk4j8i#CblFigIcons") format("svg");
|
|
2520
|
-
font-family: "CblFigIcons";
|
|
2521
|
-
font-display: block;
|
|
2522
|
-
}
|
|
2523
|
-
|
|
2524
|
-
[class^="CblFgIcon_"],
|
|
2525
|
-
[class*=" CblFgIcon_"] {
|
|
2526
|
-
speak: never;
|
|
2527
|
-
|
|
2528
|
-
/* Better Font Rendering =========== */
|
|
2529
|
-
-webkit-font-smoothing: antialiased;
|
|
2530
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2531
|
-
font-style: normal;
|
|
2532
|
-
font-variant: normal;
|
|
2533
|
-
font-weight: normal;
|
|
2534
|
-
line-height: 1;
|
|
2535
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
2536
|
-
font-family: "CblFigIcons" !important;
|
|
2537
|
-
text-transform: none;
|
|
2538
|
-
}
|
|
2539
|
-
|
|
2540
|
-
.CblFgIcon_DownNumberCblFigIcon:before {
|
|
2541
|
-
content: "\e900";
|
|
2542
|
-
}
|
|
2543
|
-
|
|
2544
|
-
.CblFgIcon_UpNumberCblFigIcon:before {
|
|
2545
|
-
content: "\e901";
|
|
2546
|
-
}
|
|
2547
|
-
|
|
2548
|
-
.CblFgIcon_UpNumberCblFigIcon1:before {
|
|
2549
|
-
content: "\e902";
|
|
2550
|
-
}
|
|
2551
|
-
|
|
2552
|
-
.CblFgIcon_SolidInfoCblFigIcon:before {
|
|
2553
|
-
content: "\e903";
|
|
2554
|
-
}
|
|
2555
|
-
|
|
2556
|
-
.CblFgIcon_UncheckedCblFigIcon:before {
|
|
2557
|
-
content: "\e904";
|
|
2558
|
-
}
|
|
2559
|
-
|
|
2560
|
-
.CblFgIcon_Type-E2CblFigIcon:before {
|
|
2561
|
-
content: "\e905";
|
|
2562
|
-
}
|
|
2563
|
-
|
|
2564
|
-
.CblFgIcon_StarCblFigIcon:before {
|
|
2565
|
-
content: "\e906";
|
|
2566
|
-
}
|
|
2567
|
-
|
|
2568
|
-
.CblFgIcon_SolidCloseCblFigIcon:before {
|
|
2569
|
-
content: "\e907";
|
|
2570
|
-
}
|
|
2571
|
-
|
|
2572
|
-
.CblFgIcon_SheetCblFigIcon:before {
|
|
2573
|
-
content: "\e908";
|
|
2574
|
-
}
|
|
2575
|
-
|
|
2576
|
-
.CblFgIcon_SearchCblFigIcon:before {
|
|
2577
|
-
content: "\e909";
|
|
2578
|
-
}
|
|
2579
|
-
|
|
2580
|
-
.CblFgIcon_SaveCblFigIcon:before {
|
|
2581
|
-
content: "\e90a";
|
|
2582
|
-
}
|
|
2583
|
-
|
|
2584
|
-
.CblFgIcon_RightDoubleCblFigIcon:before {
|
|
2585
|
-
content: "\e90b";
|
|
2586
|
-
}
|
|
2587
|
-
|
|
2588
|
-
.CblFgIcon_RightCblFigIcon:before {
|
|
2589
|
-
content: "\e90c";
|
|
2590
|
-
}
|
|
2591
|
-
|
|
2592
|
-
.CblFgIcon_RefreshCblFigIcon:before {
|
|
2593
|
-
content: "\e90d";
|
|
2594
|
-
}
|
|
2595
|
-
|
|
2596
|
-
.CblFgIcon_Question-MarkCblFigIcon:before {
|
|
2597
|
-
content: "\e90e";
|
|
2598
|
-
}
|
|
2599
|
-
|
|
2600
|
-
.CblFgIcon_PlusCblFigIcon:before {
|
|
2601
|
-
content: "\e90f";
|
|
2602
|
-
}
|
|
2603
|
-
|
|
2604
|
-
.CblFgIcon_PageCblFigIcon:before {
|
|
2605
|
-
content: "\e910";
|
|
2606
|
-
}
|
|
2607
|
-
|
|
2608
|
-
.CblFgIcon_OutlineCblFigIcon:before {
|
|
2609
|
-
content: "\e911";
|
|
2610
|
-
}
|
|
2611
|
-
|
|
2612
|
-
.CblFgIcon_OptionsCblFigIcon:before {
|
|
2613
|
-
content: "\e912";
|
|
2614
|
-
}
|
|
2615
|
-
|
|
2616
|
-
.CblFgIcon_MenuCblFigIcon:before {
|
|
2617
|
-
content: "\e913";
|
|
2618
|
-
}
|
|
2619
|
-
|
|
2620
|
-
.CblFgIcon_LoaderCblFigIcon .path1:before {
|
|
2621
|
-
content: "\e914";
|
|
2622
|
-
color: rgb(104, 97, 97);
|
|
2623
|
-
}
|
|
2624
|
-
|
|
2625
|
-
.CblFgIcon_LoaderCblFigIcon .path2:before {
|
|
2626
|
-
margin-left: -1.111328125em;
|
|
2627
|
-
content: "\e915";
|
|
2628
|
-
color: rgb(255, 255, 255);
|
|
2629
|
-
}
|
|
2630
|
-
|
|
2631
|
-
.CblFgIcon_LoaderCblFigIcon .path3:before {
|
|
2632
|
-
margin-left: -1.111328125em;
|
|
2633
|
-
content: "\e916";
|
|
2634
|
-
color: rgb(255, 255, 255);
|
|
2635
|
-
}
|
|
2636
|
-
|
|
2637
|
-
.CblFgIcon_LoaderCblFigIcon .path4:before {
|
|
2638
|
-
margin-left: -1.111328125em;
|
|
2639
|
-
content: "\e917";
|
|
2640
|
-
color: rgb(255, 255, 255);
|
|
2641
|
-
}
|
|
2642
|
-
|
|
2643
|
-
.CblFgIcon_LoaderCblFigIcon .path5:before {
|
|
2644
|
-
margin-left: -1.111328125em;
|
|
2645
|
-
content: "\e918";
|
|
2646
|
-
color: rgb(255, 255, 255);
|
|
2647
|
-
}
|
|
2648
|
-
|
|
2649
|
-
.CblFgIcon_LoaderCblFigIcon .path6:before {
|
|
2650
|
-
margin-left: -1.111328125em;
|
|
2651
|
-
content: "\e919";
|
|
2652
|
-
color: rgb(255, 255, 255);
|
|
2653
|
-
}
|
|
2654
|
-
|
|
2655
|
-
.CblFgIcon_ListCblFigIcon:before {
|
|
2656
|
-
content: "\e91a";
|
|
2657
|
-
}
|
|
2658
|
-
|
|
2659
|
-
.CblFgIcon_LeftDoubleCblFigIcon:before {
|
|
2660
|
-
content: "\e91b";
|
|
2661
|
-
}
|
|
2662
|
-
|
|
2663
|
-
.CblFgIcon_LeftCblFigIcon:before {
|
|
2664
|
-
content: "\e91c";
|
|
2665
|
-
}
|
|
2666
|
-
|
|
2667
|
-
.CblFgIcon_Function-ItemsCblFigIcon:before {
|
|
2668
|
-
content: "\e91d";
|
|
2669
|
-
}
|
|
2670
|
-
|
|
2671
|
-
.CblFgIcon_FolderCblFigIcon:before {
|
|
2672
|
-
content: "\e91e";
|
|
2673
|
-
}
|
|
2674
|
-
|
|
2675
|
-
.CblFgIcon_DownCblFigIconSmall:before {
|
|
2676
|
-
content: "\e91f";
|
|
2677
|
-
}
|
|
2678
|
-
|
|
2679
|
-
.CblFgIcon_AlertCblFigIcon:before {
|
|
2680
|
-
content: "\e920";
|
|
2681
|
-
}
|
|
2682
|
-
|
|
2683
|
-
.CblFgIcon_Arrow-Right-UpCblFigIcon:before {
|
|
2684
|
-
content: "\e921";
|
|
2685
|
-
}
|
|
2686
|
-
|
|
2687
|
-
.CblFgIcon_CheckBigCblFigIcon:before {
|
|
2688
|
-
content: "\e922";
|
|
2689
|
-
}
|
|
2690
|
-
|
|
2691
|
-
.CblFgIcon_CheckedCblFigIcon:before {
|
|
2692
|
-
content: "\e923";
|
|
2693
|
-
}
|
|
2694
|
-
|
|
2695
|
-
.CblFgIcon_CheckSmallCblFigIcon:before {
|
|
2696
|
-
content: "\e924";
|
|
2697
|
-
}
|
|
2698
|
-
|
|
2699
|
-
.CblFgIcon_ClockCblFigIcon:before {
|
|
2700
|
-
content: "\e925";
|
|
2701
|
-
}
|
|
2702
|
-
|
|
2703
|
-
.CblFgIcon_DownCblFigIconBig:before {
|
|
2704
|
-
content: "\e926";
|
|
2705
|
-
}
|
|
2706
|
-
|
|
2707
|
-
/* #endregion */
|
|
2708
|
-
|
|
2709
|
-
/* #region [ opstoolReactIcons ] */
|
|
2710
|
-
|
|
2711
|
-
@font-face {
|
|
2712
|
-
font-style: normal;
|
|
2713
|
-
font-weight: normal;
|
|
2714
|
-
src: url("../fonts/cwOpstoolReactFont/opstoolReactIcons.eot?oet3wd");
|
|
2715
|
-
src:
|
|
2716
|
-
url("../fonts/cwOpstoolReactFont/opstoolReactIcons.eot?oet3wd#iefix") format("embedded-opentype"),
|
|
2717
|
-
url("../fonts/cwOpstoolReactFont/opstoolReactIcons.ttf?oet3wd") format("truetype"),
|
|
2718
|
-
url("../fonts/cwOpstoolReactFont/opstoolReactIcons.woff?oet3wd") format("woff"),
|
|
2719
|
-
url("../fonts/cwOpstoolReactFont/opstoolReactIcons.svg?oet3wd#opstoolReactIcons") format("svg");
|
|
2720
|
-
font-family: "opstoolReactIcons";
|
|
2721
|
-
font-display: block;
|
|
2722
|
-
}
|
|
2723
|
-
|
|
2724
|
-
[class^="icons-"],
|
|
2725
|
-
[class*=" icons-"] {
|
|
2726
|
-
speak: never;
|
|
2727
|
-
|
|
2728
|
-
/* Better Font Rendering =========== */
|
|
2729
|
-
-webkit-font-smoothing: antialiased;
|
|
2730
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2731
|
-
font-style: normal;
|
|
2732
|
-
font-variant: normal;
|
|
2733
|
-
font-weight: normal;
|
|
2734
|
-
line-height: 1;
|
|
2735
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
2736
|
-
font-family: "opstoolReactIcons" !important;
|
|
2737
|
-
text-transform: none;
|
|
2738
|
-
}
|
|
2739
|
-
|
|
2740
|
-
.icons-Opstool_btnDLA:before {
|
|
2741
|
-
content: "\e900";
|
|
2742
|
-
}
|
|
2743
|
-
|
|
2744
|
-
.icons-Opstool_btnMVT:before {
|
|
2745
|
-
content: "\e901";
|
|
2746
|
-
}
|
|
2747
|
-
|
|
2748
|
-
/* #endregion */
|
|
2749
|
-
|
|
2750
|
-
/* #region [ Avinode icon ] */
|
|
2751
|
-
@font-face {
|
|
2752
|
-
font-style: normal;
|
|
2753
|
-
font-weight: normal;
|
|
2754
|
-
src: url("../fonts/cwAvinodeFont/CblAvinodeIcon.eot?jci3i0");
|
|
2755
|
-
src:
|
|
2756
|
-
url("../fonts/cwAvinodeFont/CblAvinodeIcon.eot?jci3i0#iefix") format("embedded-opentype"),
|
|
2757
|
-
url("../fonts/cwAvinodeFont/CblAvinodeIcon.ttf?jci3i0") format("truetype"),
|
|
2758
|
-
url("../fonts/cwAvinodeFont/CblAvinodeIcon.woff?jci3i0") format("woff"),
|
|
2759
|
-
url("../fonts/cwAvinodeFont/CblAvinodeIcon.svg?jci3i0#CblAvinodeIcon") format("svg");
|
|
2760
|
-
font-family: "CblAvinodeIcon";
|
|
2761
|
-
font-display: block;
|
|
2762
|
-
}
|
|
2763
|
-
|
|
2764
|
-
[class^="CblAvinodeIcon-"],
|
|
2765
|
-
[class*=" CblAvinodeIcon-"] {
|
|
2766
|
-
speak: never;
|
|
2767
|
-
|
|
2768
|
-
/* Better Font Rendering =========== */
|
|
2769
|
-
-webkit-font-smoothing: antialiased;
|
|
2770
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2771
|
-
font-style: normal;
|
|
2772
|
-
font-variant: normal;
|
|
2773
|
-
font-weight: normal;
|
|
2774
|
-
line-height: 1;
|
|
2775
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
2776
|
-
font-family: "CblAvinodeIcon" !important;
|
|
2777
|
-
text-transform: none;
|
|
2778
|
-
}
|
|
2779
|
-
|
|
2780
|
-
.CblAvinodeIcon-icons8-sent:before {
|
|
2781
|
-
content: "\e900";
|
|
2782
|
-
}
|
|
2783
|
-
|
|
2784
|
-
/* #endregion */
|