@festo-ui/angular 4.0.3-pre-20221213.1 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -53
- package/css/bundle.css +1 -1
- package/css/image-gallery.css +1 -1
- package/css/popover.css +1 -1
- package/esm2020/festo-ui-angular.mjs +2 -2
- package/esm2020/lib/components/accordion/accordion-header/accordion-header.component.mjs +5 -5
- package/esm2020/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.mjs +5 -5
- package/esm2020/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.mjs +5 -5
- package/esm2020/lib/components/accordion/accordion-item/accordion-item.component.mjs +30 -25
- package/esm2020/lib/components/accordion/accordion.component.mjs +9 -9
- package/esm2020/lib/components/accordion/index.mjs +1 -1
- package/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +8 -5
- package/esm2020/lib/components/buttons/button/button.component.mjs +7 -6
- package/esm2020/lib/components/buttons/link-button/link-button.component.mjs +7 -6
- package/esm2020/lib/components/chips/chip/chip.component.mjs +6 -5
- package/esm2020/lib/components/chips/chip-container/chip-container.component.mjs +6 -5
- package/esm2020/lib/components/components.module.mjs +148 -151
- package/esm2020/lib/components/loading-indicator/loading-indicator.component.mjs +6 -5
- package/esm2020/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.mjs +7 -6
- package/esm2020/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.mjs +7 -6
- package/esm2020/lib/components/mobile-flyout/mobile-flyout.component.mjs +7 -7
- package/esm2020/lib/components/pagination/pagination.component.mjs +7 -5
- package/esm2020/lib/components/popovers/legend/legend.component.mjs +12 -12
- package/esm2020/lib/components/popovers/legend/legend.directive.mjs +7 -7
- package/esm2020/lib/components/popovers/popover/popover.component.mjs +6 -6
- package/esm2020/lib/components/popovers/popover-content/popover-content.component.mjs +14 -16
- package/esm2020/lib/components/popovers/popover-content/popover-content.directive.mjs +6 -6
- package/esm2020/lib/components/popovers/popover-menu/popover-menu.component.mjs +16 -17
- package/esm2020/lib/components/popovers/popover-ref.mjs +2 -2
- package/esm2020/lib/components/popovers/popover.defaults.mjs +17 -18
- package/esm2020/lib/components/popovers/popover.models.mjs +1 -17
- package/esm2020/lib/components/popovers/popover.service.mjs +28 -29
- package/esm2020/lib/components/popovers/tooltip/tooltip.directive.mjs +14 -15
- package/esm2020/lib/components/progress/progress.component.mjs +7 -5
- package/esm2020/lib/components/scroll/index.mjs +1 -1
- package/esm2020/lib/components/scroll/scrollable.directive.mjs +9 -6
- package/esm2020/lib/components/search-input/search-input.component.mjs +18 -8
- package/esm2020/lib/components/snackbar/snackbar-container.component.mjs +6 -6
- package/esm2020/lib/components/snackbar/snackbar-container.directive.mjs +10 -13
- package/esm2020/lib/components/snackbar/snackbar.component.mjs +8 -6
- package/esm2020/lib/components/snackbar/snackbar.models.mjs +1 -1
- package/esm2020/lib/components/snackbar/snackbar.module.mjs +7 -8
- package/esm2020/lib/components/snackbar/snackbar.service.mjs +4 -4
- package/esm2020/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.mjs +5 -5
- package/esm2020/lib/components/stepper-horizontal/stepper-horizontal.component.mjs +7 -6
- package/esm2020/lib/components/stepper-vertical/step-vertical/step-vertical.component.mjs +7 -6
- package/esm2020/lib/components/stepper-vertical/stepper-vertical.component.mjs +6 -6
- package/esm2020/lib/components/table-header-cell/table-header-cell.directive.mjs +8 -7
- package/esm2020/lib/components/tabs/tab-pane/tab-pane.component.mjs +5 -5
- package/esm2020/lib/components/tabs/tabs.component.mjs +108 -22
- package/esm2020/lib/directives/click-outside.directive.mjs +29 -0
- package/esm2020/lib/festo-angular.module.mjs +9 -72
- package/esm2020/lib/forms/checkbox/checkbox.component.mjs +26 -21
- package/esm2020/lib/forms/color-indicator/color-indicator.component.mjs +28 -8
- package/esm2020/lib/forms/color-picker/color-helper.mjs +16 -8
- package/esm2020/lib/forms/color-picker/color-picker.component.mjs +35 -16
- package/esm2020/lib/forms/date-picker/date-picker.component.mjs +25 -22
- package/esm2020/lib/forms/date-range-picker/date-range-picker.component.mjs +29 -25
- package/esm2020/lib/forms/flatpickr/flatpickr.component.mjs +55 -0
- package/esm2020/lib/forms/forms.module.mjs +106 -79
- package/esm2020/lib/forms/radio/radio.component.mjs +43 -39
- package/esm2020/lib/forms/segment/segment-control/segment-control.component.mjs +15 -12
- package/esm2020/lib/forms/segment/segment.component.mjs +28 -23
- package/esm2020/lib/forms/select/chip-text.pipe.mjs +15 -10
- package/esm2020/lib/forms/select/select-option/select-option.component.mjs +7 -6
- package/esm2020/lib/forms/select/select.component.mjs +49 -41
- package/esm2020/lib/forms/slider/slider.component.mjs +24 -21
- package/esm2020/lib/forms/switch/switch.component.mjs +18 -17
- package/esm2020/lib/forms/text-area/text-area.component.mjs +16 -9
- package/esm2020/lib/forms/text-editor/text-editor.component.mjs +69 -61
- package/esm2020/lib/forms/text-input/text-input.component.mjs +38 -11
- package/esm2020/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.mjs +8 -6
- package/esm2020/lib/forms/time-picker/time-picker.component.mjs +18 -15
- package/esm2020/lib/forms/unique-selection-dispatcher.mjs +7 -5
- package/esm2020/lib/forms/value-accessor-base.mjs +5 -5
- package/esm2020/lib/modals/alert/alert.component.mjs +54 -0
- package/esm2020/lib/modals/confirm/confirm.component.mjs +55 -0
- package/esm2020/lib/modals/custom-modal/custom-modal.component.mjs +70 -0
- package/esm2020/lib/modals/image-gallery/image-gallery.component.mjs +62 -0
- package/esm2020/lib/modals/index.mjs +2 -0
- package/esm2020/lib/{components/modals → modals}/modal.service.mjs +8 -11
- package/esm2020/lib/modals/modals.module.mjs +28 -0
- package/esm2020/lib/modals/prompt/prompt.component.mjs +106 -0
- package/esm2020/lib/pipes/safe-html.pipe.mjs +5 -5
- package/esm2020/public-api.mjs +66 -0
- package/fesm2015/festo-ui-angular.mjs +4659 -4507
- package/fesm2015/festo-ui-angular.mjs.map +1 -1
- package/fesm2020/festo-ui-angular.mjs +4590 -4478
- package/fesm2020/festo-ui-angular.mjs.map +1 -1
- package/index.d.ts +5 -13
- package/lib/components/accordion/accordion-header/accordion-header.component.d.ts +1 -1
- package/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.d.ts +1 -1
- package/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.d.ts +1 -1
- package/lib/components/accordion/accordion-item/accordion-item.component.d.ts +6 -5
- package/lib/components/accordion/accordion.component.d.ts +2 -2
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +1 -1
- package/lib/components/buttons/button/button.component.d.ts +4 -4
- package/lib/components/buttons/link-button/link-button.component.d.ts +4 -4
- package/lib/components/chips/chip/chip.component.d.ts +2 -2
- package/lib/components/chips/chip-container/chip-container.component.d.ts +1 -1
- package/lib/components/components.module.d.ts +35 -68
- package/lib/components/loading-indicator/loading-indicator.component.d.ts +1 -1
- package/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.d.ts +1 -1
- package/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.d.ts +1 -1
- package/lib/components/mobile-flyout/mobile-flyout.component.d.ts +1 -1
- package/lib/components/pagination/pagination.component.d.ts +1 -1
- package/lib/components/popovers/legend/legend.component.d.ts +2 -2
- package/lib/components/popovers/legend/legend.directive.d.ts +2 -2
- package/lib/components/popovers/popover/popover.component.d.ts +4 -4
- package/lib/components/popovers/popover-content/popover-content.component.d.ts +2 -2
- package/lib/components/popovers/popover-content/popover-content.directive.d.ts +2 -2
- package/lib/components/popovers/popover-menu/popover-menu.component.d.ts +6 -6
- package/lib/components/popovers/popover-ref.d.ts +2 -2
- package/lib/components/popovers/popover.defaults.d.ts +4 -4
- package/lib/components/popovers/popover.models.d.ts +8 -20
- package/lib/components/popovers/tooltip/tooltip.directive.d.ts +1 -1
- package/lib/components/progress/progress.component.d.ts +1 -1
- package/lib/components/scroll/scrollable.directive.d.ts +1 -1
- package/lib/components/search-input/search-input.component.d.ts +1 -1
- package/lib/components/snackbar/snackbar-container.component.d.ts +1 -1
- package/lib/components/snackbar/snackbar-container.directive.d.ts +4 -7
- package/lib/components/snackbar/snackbar.component.d.ts +1 -1
- package/lib/components/snackbar/snackbar.module.d.ts +5 -5
- package/lib/components/snackbar/snackbar.service.d.ts +1 -1
- package/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.d.ts +1 -1
- package/lib/components/stepper-horizontal/stepper-horizontal.component.d.ts +1 -1
- package/lib/components/stepper-vertical/step-vertical/step-vertical.component.d.ts +2 -2
- package/lib/components/stepper-vertical/stepper-vertical.component.d.ts +1 -1
- package/lib/components/table-header-cell/table-header-cell.directive.d.ts +8 -8
- package/lib/components/tabs/tab-pane/tab-pane.component.d.ts +7 -7
- package/lib/components/tabs/tabs.component.d.ts +11 -11
- package/lib/{components → directives}/click-outside.directive.d.ts +1 -1
- package/lib/festo-angular.module.d.ts +6 -11
- package/lib/forms/checkbox/checkbox.component.d.ts +1 -1
- package/lib/forms/color-indicator/color-indicator.component.d.ts +1 -1
- package/lib/forms/color-picker/color-helper.d.ts +4 -4
- package/lib/forms/color-picker/color-picker.component.d.ts +6 -6
- package/lib/forms/date-picker/date-picker.component.d.ts +11 -11
- package/lib/forms/date-range-picker/date-range-picker.component.d.ts +12 -12
- package/lib/{wrappers → forms}/flatpickr/flatpickr.component.d.ts +5 -5
- package/lib/forms/forms.module.d.ts +24 -39
- package/lib/forms/radio/radio.component.d.ts +12 -12
- package/lib/forms/segment/segment-control/segment-control.component.d.ts +11 -13
- package/lib/forms/segment/segment.component.d.ts +3 -3
- package/lib/forms/select/chip-text.pipe.d.ts +1 -1
- package/lib/forms/select/select-option/select-option.component.d.ts +3 -3
- package/lib/forms/select/select.component.d.ts +11 -11
- package/lib/forms/slider/slider.component.d.ts +6 -6
- package/lib/forms/switch/switch.component.d.ts +5 -5
- package/lib/forms/text-area/text-area.component.d.ts +12 -12
- package/lib/forms/text-editor/text-editor.component.d.ts +16 -16
- package/lib/forms/text-input/text-input.component.d.ts +4 -4
- package/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.d.ts +6 -6
- package/lib/forms/time-picker/time-picker.component.d.ts +8 -8
- package/lib/forms/unique-selection-dispatcher.d.ts +2 -2
- package/lib/forms/value-accessor-base.d.ts +4 -4
- package/lib/{components/modals → modals}/alert/alert.component.d.ts +2 -2
- package/lib/{components/modals → modals}/confirm/confirm.component.d.ts +2 -2
- package/lib/{components/modals → modals}/custom-modal/custom-modal.component.d.ts +1 -1
- package/lib/{components → modals}/image-gallery/image-gallery.component.d.ts +2 -2
- package/lib/{components/modals → modals}/index.d.ts +1 -1
- package/lib/{components/modals → modals}/modal.service.d.ts +1 -1
- package/lib/modals/modals.module.d.ts +18 -0
- package/lib/{components/modals → modals}/prompt/prompt.component.d.ts +2 -2
- package/lib/pipes/safe-html.pipe.d.ts +1 -1
- package/package.json +13 -16
- package/public-api.d.ts +62 -0
- package/scss/base/image-gallery.scss +3 -0
- package/scss/base/popover.scss +9 -0
- package/scss/base/styles.scss +5 -0
- package/esm2020/index.mjs +0 -26
- package/esm2020/lib/components/click-outside.directive.mjs +0 -28
- package/esm2020/lib/components/image-gallery/image-gallery.component.mjs +0 -60
- package/esm2020/lib/components/image-gallery/image-gallery.module.mjs +0 -22
- package/esm2020/lib/components/modals/alert/alert.component.mjs +0 -52
- package/esm2020/lib/components/modals/confirm/confirm.component.mjs +0 -53
- package/esm2020/lib/components/modals/custom-modal/custom-modal.component.mjs +0 -70
- package/esm2020/lib/components/modals/index.mjs +0 -2
- package/esm2020/lib/components/modals/modals.module.mjs +0 -31
- package/esm2020/lib/components/modals/prompt/prompt.component.mjs +0 -102
- package/esm2020/lib/content/content.module.mjs +0 -20
- package/esm2020/lib/content/icon/icon.component.mjs +0 -17
- package/esm2020/lib/forms/container-host.mjs +0 -27
- package/esm2020/lib/forms/date-picker.module.mjs +0 -28
- package/esm2020/lib/forms/text-editor/text-editor.module.mjs +0 -25
- package/esm2020/lib/layout/layout.module.mjs +0 -18
- package/esm2020/lib/pipes/pipes.module.mjs +0 -20
- package/esm2020/lib/wrappers/flatpickr/flatpickr.component.mjs +0 -59
- package/lib/components/image-gallery/image-gallery.module.d.ts +0 -11
- package/lib/components/modals/modals.module.d.ts +0 -20
- package/lib/content/content.module.d.ts +0 -9
- package/lib/content/icon/icon.component.d.ts +0 -45
- package/lib/forms/container-host.d.ts +0 -11
- package/lib/forms/date-picker.module.d.ts +0 -17
- package/lib/forms/text-editor/text-editor.module.d.ts +0 -14
- package/lib/layout/layout.module.d.ts +0 -7
- package/lib/pipes/pipes.module.d.ts +0 -9
- package/scss/base/components/accordion/accordion-header/accordion-header.component.scss +0 -12
- package/scss/base/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.scss +0 -109
- package/scss/base/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.scss +0 -9
- package/scss/base/components/accordion/accordion-item/accordion-item.component.scss +0 -71
- package/scss/base/components/accordion/accordion.component.scss +0 -6
- package/scss/base/components/breadcrumb/breadcrumb.component.scss +0 -0
- package/scss/base/components/buttons/button/button.component.scss +0 -7
- package/scss/base/components/buttons/link-button/link-button.component.scss +0 -0
- package/scss/base/components/chips/chip/chip.component.scss +0 -0
- package/scss/base/components/chips/chip-container/chip-container.component.scss +0 -0
- package/scss/base/components/image-gallery/image-gallery.component.scss +0 -0
- package/scss/base/components/image-gallery/styles.scss +0 -5
- package/scss/base/components/loading-indicator/loading-indicator.component.scss +0 -0
- package/scss/base/components/modals/alert/alert.component.scss +0 -0
- package/scss/base/components/modals/confirm/confirm.component.scss +0 -0
- package/scss/base/components/modals/prompt/prompt.component.scss +0 -0
- package/scss/base/components/pagination/pagination.component.scss +0 -0
- package/scss/base/components/popovers/legend/legend.component.scss +0 -9
- package/scss/base/components/popovers/popover/popover.component.scss +0 -0
- package/scss/base/components/popovers/popover/styles.scss +0 -84
- package/scss/base/components/popovers/popover-content/popover-content.component.scss +0 -12
- package/scss/base/components/popovers/popover-menu/popover-menu.component.scss +0 -0
- package/scss/base/components/scroll/scroll-story-helper.scss +0 -12
- package/scss/base/components/search-input/search-input.component.scss +0 -7
- package/scss/base/components/snackbar/snackbar-container.component.scss +0 -3
- package/scss/base/components/snackbar/snackbar.component.scss +0 -3
- package/scss/base/components/stepper-horizontal/step-horizontal/step-horizontal.component.scss +0 -23
- package/scss/base/components/stepper-vertical/step-vertical/step-vertical.component.scss +0 -6
- package/scss/base/components/tabs/tab-pane/tab-pane.component.scss +0 -7
- package/scss/base/components/tabs/tabs.component.scss +0 -326
- package/scss/base/content/icon/icon.component.scss +0 -0
- package/scss/base/forms/checkbox/checkbox.component.scss +0 -160
- package/scss/base/forms/color-indicator/color-indicator.component.scss +0 -59
- package/scss/base/forms/color-picker/color-picker.component.scss +0 -207
- package/scss/base/forms/date-picker/date-picker.component.scss +0 -5
- package/scss/base/forms/date-range-picker/date-range-picker.component.scss +0 -34
- package/scss/base/forms/radio/radio.component.scss +0 -9
- package/scss/base/forms/segment/segment-control/segment-control.component.scss +0 -0
- package/scss/base/forms/segment/segment.component.scss +0 -0
- package/scss/base/forms/select/select-option/select-option.component.scss +0 -0
- package/scss/base/forms/select/select.component.scss +0 -251
- package/scss/base/forms/slider/slider.component.scss +0 -20
- package/scss/base/forms/switch/switch.component.scss +0 -145
- package/scss/base/forms/text-area/text-area.component.scss +0 -43
- package/scss/base/forms/text-editor/text-editor.component.scss +0 -294
- package/scss/base/forms/text-input/text-input.component.scss +0 -60
- package/scss/base/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.scss +0 -10
- package/scss/base/forms/time-picker/time-picker.component.scss +0 -5
|
@@ -1,207 +0,0 @@
|
|
|
1
|
-
@import "../../../../../web-essentials/scss/variables";
|
|
2
|
-
@import "../../../../../web-essentials/scss/popover";
|
|
3
|
-
|
|
4
|
-
$baseSize: 184px;
|
|
5
|
-
$knobSize: 14px;
|
|
6
|
-
|
|
7
|
-
.fwe-color-picker {
|
|
8
|
-
width: 216px;
|
|
9
|
-
&.fwe-alpha-active {
|
|
10
|
-
width: 245px;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.fwe-gradient-picker {
|
|
14
|
-
position: relative;
|
|
15
|
-
width: $baseSize + $knobSize;
|
|
16
|
-
height: $baseSize + $knobSize;
|
|
17
|
-
margin: -$knobSize * 0.5;
|
|
18
|
-
.fwe-brightness-gradient {
|
|
19
|
-
position: absolute;
|
|
20
|
-
top: $knobSize * 0.5;
|
|
21
|
-
bottom: $knobSize * 0.5;
|
|
22
|
-
right: $knobSize * 0.5;
|
|
23
|
-
left: $knobSize * 0.5;
|
|
24
|
-
background-image: linear-gradient(transparent, black);
|
|
25
|
-
}
|
|
26
|
-
.fwe-saturation-gradient {
|
|
27
|
-
position: absolute;
|
|
28
|
-
top: $knobSize * 0.5;
|
|
29
|
-
bottom: $knobSize * 0.5;
|
|
30
|
-
right: $knobSize * 0.5;
|
|
31
|
-
left: $knobSize * 0.5;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.fwe-vertical-picker {
|
|
36
|
-
position: relative;
|
|
37
|
-
height: $baseSize + $knobSize;
|
|
38
|
-
width: $knobSize;
|
|
39
|
-
margin: -$knobSize * 0.5 -3px;
|
|
40
|
-
margin-left: 18px;
|
|
41
|
-
.fwe-picker-background {
|
|
42
|
-
margin: $knobSize * 0.5 3px;
|
|
43
|
-
height: $baseSize;
|
|
44
|
-
width: 8px;
|
|
45
|
-
border-radius: $border-radius-s;
|
|
46
|
-
}
|
|
47
|
-
.fwe-knob {
|
|
48
|
-
left: -3px;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.fwe-hue-picker {
|
|
53
|
-
@extend .fwe-vertical-picker;
|
|
54
|
-
.fwe-picker-background {
|
|
55
|
-
background-image: linear-gradient(#ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.fwe-alpha-picker {
|
|
60
|
-
@extend .fwe-vertical-picker;
|
|
61
|
-
.fwe-no-color-pattern {
|
|
62
|
-
margin: $knobSize * 0.5 3px;
|
|
63
|
-
position: absolute;
|
|
64
|
-
}
|
|
65
|
-
.fwe-picker-background {
|
|
66
|
-
position: absolute;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.fwe-type-select {
|
|
71
|
-
position: relative;
|
|
72
|
-
display: flex;
|
|
73
|
-
.fwe-type-indicator {
|
|
74
|
-
.fwe-input-type {
|
|
75
|
-
font-size: $font-size-small;
|
|
76
|
-
line-height: calc(#{$font-size-small} + 5px);
|
|
77
|
-
font-weight: $font-weight-bold;
|
|
78
|
-
}
|
|
79
|
-
flex-shrink: 1;
|
|
80
|
-
cursor: pointer;
|
|
81
|
-
display: flex;
|
|
82
|
-
&:hover {
|
|
83
|
-
color: $hero;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
.fwe-icon-arrows-collapse {
|
|
87
|
-
margin-left: 16px;
|
|
88
|
-
line-height: 16px;
|
|
89
|
-
}
|
|
90
|
-
.fwe-popover {
|
|
91
|
-
position: absolute;
|
|
92
|
-
z-index: 1;
|
|
93
|
-
top: 24px;
|
|
94
|
-
left: 0px;
|
|
95
|
-
.fwe-type-item {
|
|
96
|
-
cursor: pointer;
|
|
97
|
-
display: flex;
|
|
98
|
-
padding: 8px;
|
|
99
|
-
&:hover {
|
|
100
|
-
color: $hero;
|
|
101
|
-
}
|
|
102
|
-
.fwe-icon-menu-check {
|
|
103
|
-
opacity: 0;
|
|
104
|
-
margin-right: 8px;
|
|
105
|
-
}
|
|
106
|
-
&.fwe-selected {
|
|
107
|
-
cursor: default;
|
|
108
|
-
.fwe-icon-menu-check {
|
|
109
|
-
opacity: 1;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
/* remove spinner buttons from input */
|
|
117
|
-
// Chrome, Safari, Edge, Opera
|
|
118
|
-
input::-webkit-outer-spin-button,
|
|
119
|
-
input::-webkit-inner-spin-button {
|
|
120
|
-
-webkit-appearance: none;
|
|
121
|
-
margin: 0;
|
|
122
|
-
}
|
|
123
|
-
// Firefox
|
|
124
|
-
input[type="number"] {
|
|
125
|
-
-moz-appearance: textfield;
|
|
126
|
-
}
|
|
127
|
-
input {
|
|
128
|
-
padding-right: 0px !important;
|
|
129
|
-
text-align: center;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
.fwe-hex-input {
|
|
133
|
-
width: 75px;
|
|
134
|
-
margin-right: 16px;
|
|
135
|
-
}
|
|
136
|
-
.fwe-red-input {
|
|
137
|
-
width: 32px;
|
|
138
|
-
margin-right: 8px;
|
|
139
|
-
}
|
|
140
|
-
.fwe-green-input {
|
|
141
|
-
width: 32px;
|
|
142
|
-
margin-right: 8px;
|
|
143
|
-
}
|
|
144
|
-
.fwe-blue-input {
|
|
145
|
-
width: 32px;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.fwe-alpha-input {
|
|
149
|
-
span input {
|
|
150
|
-
width: 48px;
|
|
151
|
-
padding-right: 16px !important;
|
|
152
|
-
}
|
|
153
|
-
.fwe-percent-char {
|
|
154
|
-
margin-left: -16px;
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.fwe-color-grid {
|
|
159
|
-
display: flex;
|
|
160
|
-
flex-wrap: wrap;
|
|
161
|
-
margin-right: -$spacer-xxs;
|
|
162
|
-
margin-bottom: -$spacer-xxs;
|
|
163
|
-
.fwe-color-item {
|
|
164
|
-
align-items: center;
|
|
165
|
-
display: flex;
|
|
166
|
-
justify-content: center;
|
|
167
|
-
color: white;
|
|
168
|
-
height: $spacer-m;
|
|
169
|
-
width: $spacer-m;
|
|
170
|
-
border-radius: $border-radius-s;
|
|
171
|
-
margin-right: $spacer-xxs;
|
|
172
|
-
margin-bottom: $spacer-xxs;
|
|
173
|
-
&.fwe-white-item {
|
|
174
|
-
border: 1px solid $control-border;
|
|
175
|
-
color: black;
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
.fwe-remove-color-button {
|
|
179
|
-
align-items: center;
|
|
180
|
-
display: flex;
|
|
181
|
-
justify-content: center;
|
|
182
|
-
height: $spacer-m;
|
|
183
|
-
width: $spacer-m;
|
|
184
|
-
border-radius: $border-radius-s;
|
|
185
|
-
border: 1px solid $control-border;
|
|
186
|
-
color: $control;
|
|
187
|
-
margin-right: $spacer-xxs;
|
|
188
|
-
margin-bottom: $spacer-xxs;
|
|
189
|
-
.fwe-no-color-pattern {
|
|
190
|
-
margin: 2px;
|
|
191
|
-
}
|
|
192
|
-
i {
|
|
193
|
-
color: transparent;
|
|
194
|
-
position: absolute;
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
.fwe-knob {
|
|
199
|
-
position: absolute;
|
|
200
|
-
z-index: 1;
|
|
201
|
-
height: 14px;
|
|
202
|
-
width: 14px;
|
|
203
|
-
border-radius: 50%;
|
|
204
|
-
border: 2px solid white;
|
|
205
|
-
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
|
|
206
|
-
}
|
|
207
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
@import "../../../../../web-essentials/scss/variables";
|
|
2
|
-
|
|
3
|
-
.fwe-border-hero {
|
|
4
|
-
border-color: $hero !important;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.fng-date-range-picker {
|
|
8
|
-
&:hover {
|
|
9
|
-
input {
|
|
10
|
-
color: $hero;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
&-inputs {
|
|
15
|
-
display: flex;
|
|
16
|
-
order: 2;
|
|
17
|
-
position: relative;
|
|
18
|
-
|
|
19
|
-
&--disabled {
|
|
20
|
-
&::after {
|
|
21
|
-
color: $text-disabled;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
&::after {
|
|
26
|
-
position: absolute;
|
|
27
|
-
content: "-";
|
|
28
|
-
left: 50%;
|
|
29
|
-
top: 50%;
|
|
30
|
-
transform: translate(-50%, -50%);
|
|
31
|
-
padding-right: 32px;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,251 +0,0 @@
|
|
|
1
|
-
@import "../../../../../web-essentials/scss/variables";
|
|
2
|
-
@import "../../../../../web-essentials/scss/mixins";
|
|
3
|
-
|
|
4
|
-
@mixin options-max-height {
|
|
5
|
-
@for $i from 3 through 10 {
|
|
6
|
-
&.fng-select-panel-options-#{$i} {
|
|
7
|
-
.fwe-select-options-container {
|
|
8
|
-
max-height: 18px + 48px * $i;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
// wait for panel until this class is added to body
|
|
15
|
-
.fng-select-panel-open {
|
|
16
|
-
// show panel when correctly positioned
|
|
17
|
-
.fng-select-panel {
|
|
18
|
-
opacity: 1 !important;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
// ======================================================================
|
|
23
|
-
// add style changes that differ from web essentials select style below
|
|
24
|
-
// ======================================================================
|
|
25
|
-
fng-select {
|
|
26
|
-
width: auto;
|
|
27
|
-
|
|
28
|
-
&.ng-invalid:not(.ng-pristine) {
|
|
29
|
-
.fwe-select:hover {
|
|
30
|
-
border-color: $red;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.fwe-select.fwe-required {
|
|
34
|
-
~ .fwe-select-invalid {
|
|
35
|
-
display: block;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
~ .fwe-select-description {
|
|
39
|
-
display: none;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
// select overlay panel styles
|
|
46
|
-
.fng-select-panel {
|
|
47
|
-
// hide all until correctly positioned in cdk-overlay-pane
|
|
48
|
-
opacity: 0 !important;
|
|
49
|
-
@include options-max-height();
|
|
50
|
-
|
|
51
|
-
// set up general panel styles (spacing, border-radius, box-shadow)
|
|
52
|
-
.fwe-select-options-container {
|
|
53
|
-
@include custom-scrollbar();
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.fng-select-panel-wrap {
|
|
58
|
-
flex-basis: 100%;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
// select options styles
|
|
62
|
-
.fwe-select-options-container {
|
|
63
|
-
position: relative;
|
|
64
|
-
top: 4px;
|
|
65
|
-
left: 0px;
|
|
66
|
-
|
|
67
|
-
max-height: 258px;
|
|
68
|
-
min-width: calc(100% + 0px) !important;
|
|
69
|
-
max-width: 280px;
|
|
70
|
-
overflow: auto;
|
|
71
|
-
|
|
72
|
-
font-size: $font-size-base;
|
|
73
|
-
background-color: $white;
|
|
74
|
-
border-radius: $control-border-radius;
|
|
75
|
-
padding: ($spacer * 0.5) ($spacer * 0.5);
|
|
76
|
-
margin: 0;
|
|
77
|
-
border: 1px solid $gray-200;
|
|
78
|
-
box-shadow: 0px 1px 4px #00000029;
|
|
79
|
-
list-style: none;
|
|
80
|
-
outline: 0;
|
|
81
|
-
|
|
82
|
-
.fwe-select-option {
|
|
83
|
-
position: relative;
|
|
84
|
-
line-height: 1.5 * $spacer;
|
|
85
|
-
padding: (0.75 * $spacer) (0.5 * $spacer);
|
|
86
|
-
min-height: 1.5 * $spacer;
|
|
87
|
-
cursor: pointer;
|
|
88
|
-
|
|
89
|
-
&:hover {
|
|
90
|
-
background-color: $gray-100;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
&:last-child {
|
|
94
|
-
border-bottom: none;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.fwe-select-option-content {
|
|
98
|
-
display: block;
|
|
99
|
-
white-space: nowrap;
|
|
100
|
-
overflow: hidden;
|
|
101
|
-
text-overflow: ellipsis;
|
|
102
|
-
width: 100%;
|
|
103
|
-
line-height: 1.5 * $spacer;
|
|
104
|
-
min-height: 1.5 * $spacer;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
// pseudo checkbox styles
|
|
110
|
-
.fng-select-pseudo-checkbox {
|
|
111
|
-
width: 16px;
|
|
112
|
-
height: 16px;
|
|
113
|
-
border-radius: 2px;
|
|
114
|
-
cursor: pointer;
|
|
115
|
-
display: inline-block;
|
|
116
|
-
vertical-align: middle;
|
|
117
|
-
box-sizing: border-box;
|
|
118
|
-
position: relative;
|
|
119
|
-
flex-shrink: 0;
|
|
120
|
-
color: $control-border;
|
|
121
|
-
border: 1px solid;
|
|
122
|
-
transition: none;
|
|
123
|
-
margin-right: 12px;
|
|
124
|
-
top: -1px;
|
|
125
|
-
|
|
126
|
-
&::after {
|
|
127
|
-
color: $white;
|
|
128
|
-
position: absolute;
|
|
129
|
-
display: block;
|
|
130
|
-
opacity: 0;
|
|
131
|
-
content: "";
|
|
132
|
-
border-bottom: 2px solid currentColor;
|
|
133
|
-
transition: opacity 90ms cubic-bezier(0, 0, 0.2, 0.1);
|
|
134
|
-
}
|
|
135
|
-
&.fng-select-pseudo-checkbox-checked {
|
|
136
|
-
background: $caerul;
|
|
137
|
-
border: 1px solid $caerul;
|
|
138
|
-
&::after {
|
|
139
|
-
top: 3px;
|
|
140
|
-
left: 2px;
|
|
141
|
-
width: 8px;
|
|
142
|
-
height: 3px;
|
|
143
|
-
border-left: 2px solid currentColor;
|
|
144
|
-
transform: rotate(-45deg);
|
|
145
|
-
opacity: 1;
|
|
146
|
-
box-sizing: content-box;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
// chip styles
|
|
152
|
-
.chip-text-truncate {
|
|
153
|
-
display: inline-block;
|
|
154
|
-
white-space: nowrap;
|
|
155
|
-
overflow: hidden;
|
|
156
|
-
text-overflow: ellipsis;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.chip-removable {
|
|
160
|
-
&::after {
|
|
161
|
-
position: absolute;
|
|
162
|
-
right: 5px;
|
|
163
|
-
top: 4px;
|
|
164
|
-
color: $text;
|
|
165
|
-
font-family: $font-family-icons-16;
|
|
166
|
-
font-size: $font-size-base;
|
|
167
|
-
content: "\ea1c";
|
|
168
|
-
line-height: 16px;
|
|
169
|
-
-webkit-font-smoothing: antialiased;
|
|
170
|
-
-moz-osx-font-smoothing: grayscale;
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
// select input field styles
|
|
175
|
-
.fwe-select-wrapper {
|
|
176
|
-
display: flex;
|
|
177
|
-
width: inherit;
|
|
178
|
-
min-width: 48px;
|
|
179
|
-
&::before {
|
|
180
|
-
bottom: unset;
|
|
181
|
-
top: 24px;
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
&.fng-hide-label {
|
|
185
|
-
margin-top: 18px;
|
|
186
|
-
&::before {
|
|
187
|
-
top: 6px;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
&.fwe-disabled {
|
|
192
|
-
&::before {
|
|
193
|
-
color: $text-disabled;
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
.fwe-select {
|
|
198
|
-
cursor: pointer;
|
|
199
|
-
height: unset;
|
|
200
|
-
min-height: 33px;
|
|
201
|
-
|
|
202
|
-
.fwe-select-content {
|
|
203
|
-
padding-right: 24px;
|
|
204
|
-
white-space: nowrap;
|
|
205
|
-
overflow: hidden;
|
|
206
|
-
text-overflow: ellipsis;
|
|
207
|
-
line-height: 1.5rem;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
&.fwe-required:not(.fwe-disabled) {
|
|
211
|
-
~ .fwe-select-label {
|
|
212
|
-
&::after {
|
|
213
|
-
position: relative;
|
|
214
|
-
left: 3px;
|
|
215
|
-
display: inline-block;
|
|
216
|
-
content: "*";
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
&.fwe-disabled {
|
|
222
|
-
cursor: default;
|
|
223
|
-
border-color: $control-disabled !important;
|
|
224
|
-
~ .fwe-select-label {
|
|
225
|
-
color: $text-disabled;
|
|
226
|
-
}
|
|
227
|
-
.fwe-select-content {
|
|
228
|
-
color: $text-disabled;
|
|
229
|
-
}
|
|
230
|
-
.fwe-chip {
|
|
231
|
-
color: $text-disabled;
|
|
232
|
-
border: 1px solid $control-disabled;
|
|
233
|
-
pointer-events: none;
|
|
234
|
-
.chip-removable {
|
|
235
|
-
&::after {
|
|
236
|
-
color: $text-disabled;
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.fwe-select-label {
|
|
244
|
-
&:empty,
|
|
245
|
-
&.fwe-sr-only {
|
|
246
|
-
~ .fwe-select-options-container {
|
|
247
|
-
top: 56px - 18px; // regular position - height of missing label
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
@import "../../../../../web-essentials/scss/variables";
|
|
2
|
-
|
|
3
|
-
label.fwe-slider {
|
|
4
|
-
display: block;
|
|
5
|
-
height: 56px;
|
|
6
|
-
position: relative;
|
|
7
|
-
|
|
8
|
-
&.fng-slider-label {
|
|
9
|
-
height: 83px;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.fng-slider-value {
|
|
13
|
-
color: $text;
|
|
14
|
-
font-size: $font-size-base;
|
|
15
|
-
margin-bottom: 0px;
|
|
16
|
-
position: absolute;
|
|
17
|
-
bottom: 0px;
|
|
18
|
-
user-select: none;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
@@ -1,145 +0,0 @@
|
|
|
1
|
-
@import "../../../../../web-essentials/scss/variables";
|
|
2
|
-
|
|
3
|
-
$defaultHeight: 16px;
|
|
4
|
-
$lgHeight: 24px;
|
|
5
|
-
|
|
6
|
-
%label-before {
|
|
7
|
-
flex-direction: row-reverse;
|
|
8
|
-
justify-content: flex-end;
|
|
9
|
-
|
|
10
|
-
.fwe-switch-label-content {
|
|
11
|
-
margin-left: 0px;
|
|
12
|
-
margin-right: 8px;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
%label-below {
|
|
17
|
-
flex-direction: column;
|
|
18
|
-
|
|
19
|
-
.fwe-switch-label-content {
|
|
20
|
-
margin: 8px 0px 0px 0px;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.fwe-switch-track {
|
|
24
|
-
margin-top: 0px;
|
|
25
|
-
margin-bottom: 0px;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.fwe-switch-container {
|
|
30
|
-
cursor: pointer;
|
|
31
|
-
display: flex;
|
|
32
|
-
align-items: center;
|
|
33
|
-
white-space: nowrap;
|
|
34
|
-
vertical-align: middle;
|
|
35
|
-
width: 100%;
|
|
36
|
-
user-select: none;
|
|
37
|
-
|
|
38
|
-
.fwe-switch-track {
|
|
39
|
-
box-sizing: border-box;
|
|
40
|
-
position: relative;
|
|
41
|
-
height: $defaultHeight;
|
|
42
|
-
width: $defaultHeight * 2;
|
|
43
|
-
border: none;
|
|
44
|
-
background-color: $control-border;
|
|
45
|
-
border-radius: $defaultHeight * 0.5;
|
|
46
|
-
margin-top: 4px;
|
|
47
|
-
margin-bottom: 4px;
|
|
48
|
-
&:after {
|
|
49
|
-
content: "";
|
|
50
|
-
position: absolute;
|
|
51
|
-
top: 3px;
|
|
52
|
-
left: 3px;
|
|
53
|
-
height: $defaultHeight - 6px;
|
|
54
|
-
width: $defaultHeight - 6px;
|
|
55
|
-
background: $white;
|
|
56
|
-
border-radius: 50%;
|
|
57
|
-
transition: left 0.2s;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
&.fwe-switch-lg {
|
|
62
|
-
.fwe-switch-track {
|
|
63
|
-
height: $lgHeight;
|
|
64
|
-
width: $lgHeight * 2;
|
|
65
|
-
border-radius: $lgHeight * 0.5;
|
|
66
|
-
margin-top: 0px;
|
|
67
|
-
margin-bottom: 0px;
|
|
68
|
-
|
|
69
|
-
&:after {
|
|
70
|
-
top: 5px;
|
|
71
|
-
left: 5px;
|
|
72
|
-
height: $lgHeight - 10px;
|
|
73
|
-
width: $lgHeight - 10px;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
&.fwe-checked .fwe-switch-track {
|
|
78
|
-
&:after {
|
|
79
|
-
left: $lgHeight + 5px;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.fwe-switch-label-content {
|
|
85
|
-
line-height: 24px;
|
|
86
|
-
margin-left: 8px;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
&.fwe-switch-label-before {
|
|
90
|
-
@extend %label-before;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
&.fwe-switch-label-below {
|
|
94
|
-
@extend %label-below;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
input[type="checkbox"] {
|
|
98
|
-
height: 0px;
|
|
99
|
-
width: 0px;
|
|
100
|
-
opacity: 0;
|
|
101
|
-
cursor: pointer;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
&:hover .fwe-switch-track {
|
|
105
|
-
background-color: $control-border-dark;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
&:active .fwe-switch-track {
|
|
109
|
-
background-color: $control-border-darker;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
&.fwe-checked .fwe-switch-track {
|
|
113
|
-
background-color: $caerul;
|
|
114
|
-
&:after {
|
|
115
|
-
left: $defaultHeight + 3px;
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
&:hover.fwe-checked .fwe-switch-track {
|
|
120
|
-
background-color: $hero-dark;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
&:active.fwe-checked .fwe-switch-track {
|
|
124
|
-
background-color: $hero-darker;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
&.fwe-disabled .fwe-switch-track {
|
|
128
|
-
background-color: $control-disabled;
|
|
129
|
-
cursor: not-allowed;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
&.fwe-disabled.fwe-checked .fwe-switch-track {
|
|
133
|
-
background-color: $control-disabled;
|
|
134
|
-
cursor: not-allowed;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
&.fwe-disabled {
|
|
138
|
-
cursor: not-allowed;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
&.fwe-disabled .fwe-switch-label-content {
|
|
142
|
-
color: $text-disabled;
|
|
143
|
-
cursor: not-allowed;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
@import "../../../../../web-essentials/scss/variables";
|
|
2
|
-
|
|
3
|
-
fng-text-area.ng-invalid label.fwe-input-text {
|
|
4
|
-
textarea {
|
|
5
|
-
border: 1px solid $red !important;
|
|
6
|
-
box-shadow: none;
|
|
7
|
-
outline: none;
|
|
8
|
-
|
|
9
|
-
&:focus {
|
|
10
|
-
border: 1px solid $red !important;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
&:disabled {
|
|
14
|
-
border: 1px solid $control-disabled !important;
|
|
15
|
-
|
|
16
|
-
& ~ .fwe-input-text-label,
|
|
17
|
-
& ~ .fwe-input-text-invalid,
|
|
18
|
-
& ~ .fwe-input-text-info {
|
|
19
|
-
color: $text-disabled;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.fwe-input-text-info {
|
|
25
|
-
display: none !important;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.fwe-input-text-invalid {
|
|
29
|
-
display: block !important;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
label.fwe-input-text {
|
|
34
|
-
.fwe-input-text-count {
|
|
35
|
-
display: block;
|
|
36
|
-
line-height: $line-height-base;
|
|
37
|
-
position: absolute;
|
|
38
|
-
right: 0px;
|
|
39
|
-
bottom: 0px;
|
|
40
|
-
color: $text-disabled;
|
|
41
|
-
font-size: $font-size-small;
|
|
42
|
-
}
|
|
43
|
-
}
|