@bnsights/bbsf-controls 1.0.65 → 1.0.67

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.
Files changed (72) hide show
  1. package/README.md +21 -9
  2. package/bnsights-bbsf-controls-1.0.67.tgz +0 -0
  3. package/bnsights-bbsf-controls.metadata.json +1 -1
  4. package/bundles/bnsights-bbsf-controls.umd.js +24 -39
  5. package/bundles/bnsights-bbsf-controls.umd.js.map +1 -1
  6. package/esm2015/lib/Shared/Models/ImageUploadOptions.js +2 -2
  7. package/esm2015/lib/Shared/Models/TagsInputOptions.js +2 -2
  8. package/esm2015/lib/controls/CheckBox/CheckBox.component.js +2 -3
  9. package/esm2015/lib/controls/DropdownList/DropdownList.component.js +2 -3
  10. package/esm2015/lib/controls/ImageUpload/ImageUpload.component.js +9 -13
  11. package/esm2015/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.js +2 -3
  12. package/esm2015/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.js +2 -3
  13. package/esm2015/lib/controls/Paging/Paging.component.js +2 -3
  14. package/esm2015/lib/controls/Repeater/repeater/repeater.component.js +2 -3
  15. package/esm2015/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.js +2 -3
  16. package/esm2015/lib/controls/Repeater/repeater-table/repeater-table.component.js +2 -2
  17. package/esm2015/lib/controls/TagsInput/TagsInput.component.js +2 -3
  18. package/esm2015/lib/controls/TextArea/TextArea.component.js +2 -3
  19. package/esm2015/lib/controls/TextBox/TextBox.component.js +2 -3
  20. package/fesm2015/bnsights-bbsf-controls.js +21 -36
  21. package/fesm2015/bnsights-bbsf-controls.js.map +1 -1
  22. package/lib/controls/ImageUpload/ImageUpload.component.d.ts +3 -1
  23. package/package.json +1 -1
  24. package/src/lib/assets/.gitkeep +0 -0
  25. package/src/lib/assets/Style-rtl.scss +152 -0
  26. package/src/lib/assets/Style.scss +14 -0
  27. package/src/lib/assets/fontawesome/fontawesome.scss +7003 -0
  28. package/src/lib/assets/fontawesome/fonts/FontAwesome.otf +0 -0
  29. package/src/lib/assets/fontawesome/fonts/fontawesome-webfont.eot +0 -0
  30. package/src/lib/assets/fontawesome/fonts/fontawesome-webfont.svg +2671 -0
  31. package/src/lib/assets/fontawesome/fonts/fontawesome-webfont.ttf +0 -0
  32. package/src/lib/assets/fontawesome/fonts/fontawesome-webfont.woff +0 -0
  33. package/src/lib/assets/fontawesome/fonts/fontawesome-webfont.woff2 +0 -0
  34. package/src/lib/assets/fontawesome/scss/_animated.scss +153 -0
  35. package/src/lib/assets/fontawesome/scss/_bordered-pulled.scss +20 -0
  36. package/src/lib/assets/fontawesome/scss/_core.scss +33 -0
  37. package/src/lib/assets/fontawesome/scss/_fixed-width.scss +7 -0
  38. package/src/lib/assets/fontawesome/scss/_functions.scss +51 -0
  39. package/src/lib/assets/fontawesome/scss/_icons.scss +9 -0
  40. package/src/lib/assets/fontawesome/scss/_list.scss +18 -0
  41. package/src/lib/assets/fontawesome/scss/_mixins.scss +73 -0
  42. package/src/lib/assets/fontawesome/scss/_rotated-flipped.scss +31 -0
  43. package/src/lib/assets/fontawesome/scss/_screen-reader.scss +14 -0
  44. package/src/lib/assets/fontawesome/scss/_shims.scss +2027 -0
  45. package/src/lib/assets/fontawesome/scss/_sizing.scss +16 -0
  46. package/src/lib/assets/fontawesome/scss/_stacked.scss +32 -0
  47. package/src/lib/assets/fontawesome/scss/_variables.scss +4338 -0
  48. package/src/lib/assets/fontawesome/scss/brands.scss +30 -0
  49. package/src/lib/assets/fontawesome/scss/fontawesome.scss +21 -0
  50. package/src/lib/assets/fontawesome/scss/regular.scss +26 -0
  51. package/src/lib/assets/fontawesome/scss/solid.scss +26 -0
  52. package/src/lib/assets/fontawesome/scss/v4-shims.scss +11 -0
  53. package/src/lib/assets/fontawesome/webfonts/fa-brands-400.ttf +0 -0
  54. package/src/lib/assets/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
  55. package/src/lib/assets/fontawesome/webfonts/fa-regular-400.ttf +0 -0
  56. package/src/lib/assets/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
  57. package/src/lib/assets/fontawesome/webfonts/fa-solid-900.ttf +0 -0
  58. package/src/lib/assets/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
  59. package/src/lib/assets/fontawesome/webfonts/fa-v4compatibility.ttf +0 -0
  60. package/src/lib/assets/fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
  61. package/src/lib/assets/sass/base.scss +180 -0
  62. package/src/lib/assets/sass/checkbox.scss +39 -0
  63. package/src/lib/assets/sass/confirmation-modal.scss +53 -0
  64. package/src/lib/assets/sass/dropdown.scss +167 -0
  65. package/src/lib/assets/sass/image-upload.scss +107 -0
  66. package/src/lib/assets/sass/paging.scss +84 -0
  67. package/src/lib/assets/sass/repeater.scss +74 -0
  68. package/src/lib/assets/sass/tags-input.scss +93 -0
  69. package/src/lib/assets/sass/textarea.scss +6 -0
  70. package/src/lib/assets/sass/variables.scss +9 -0
  71. package/bnsights-bbsf-controls-1.0.65.tgz +0 -0
  72. package/src/lib/assets/Style.css +0 -1147
@@ -0,0 +1,30 @@
1
+ /*!
2
+ * Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2022 Fonticons, Inc.
5
+ */
6
+ @import 'functions';
7
+ @import 'variables';
8
+
9
+ :root, :host {
10
+ --#{ $fa-css-prefix }-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
11
+ }
12
+
13
+ @font-face {
14
+ font-family: 'Font Awesome 6 Brands';
15
+ font-style: normal;
16
+ font-weight: 400;
17
+ font-display: $fa-font-display;
18
+ src: url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'),
19
+ url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype');
20
+ }
21
+
22
+ .fab,
23
+ .fa-brands {
24
+ font-family: 'Font Awesome 6 Brands';
25
+ font-weight: 400;
26
+ }
27
+
28
+ @each $name, $icon in $fa-brand-icons {
29
+ .#{$fa-css-prefix}-#{$name}:before { content: fa-content($icon); }
30
+ }
@@ -0,0 +1,21 @@
1
+ /*!
2
+ * Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2022 Fonticons, Inc.
5
+ */
6
+ // Font Awesome core compile (Web Fonts-based)
7
+ // -------------------------
8
+
9
+ @import 'functions';
10
+ @import 'variables';
11
+ @import 'mixins';
12
+ @import 'core';
13
+ @import 'sizing';
14
+ @import 'fixed-width';
15
+ @import 'list';
16
+ @import 'bordered-pulled';
17
+ @import 'animated';
18
+ @import 'rotated-flipped';
19
+ @import 'stacked';
20
+ @import 'icons';
21
+ @import 'screen-reader';
@@ -0,0 +1,26 @@
1
+ /*!
2
+ * Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2022 Fonticons, Inc.
5
+ */
6
+ @import 'functions';
7
+ @import 'variables';
8
+
9
+ :root, :host {
10
+ --#{ $fa-css-prefix }-font-regular: normal 400 1em/1 "#{ $fa-style-family }";
11
+ }
12
+
13
+ @font-face {
14
+ font-family: 'Font Awesome 6 Free';
15
+ font-style: normal;
16
+ font-weight: 400;
17
+ font-display: $fa-font-display;
18
+ src: url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'),
19
+ url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype');
20
+ }
21
+
22
+ .far,
23
+ .fa-regular {
24
+ font-family: 'Font Awesome 6 Free';
25
+ font-weight: 400;
26
+ }
@@ -0,0 +1,26 @@
1
+ /*!
2
+ * Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2022 Fonticons, Inc.
5
+ */
6
+ @import 'functions';
7
+ @import 'variables';
8
+
9
+ :root, :host {
10
+ --#{ $fa-css-prefix }-font-solid: normal 900 1em/1 "#{ $fa-style-family }";
11
+ }
12
+
13
+ @font-face {
14
+ font-family: 'Font Awesome 6 Free';
15
+ font-style: normal;
16
+ font-weight: 900;
17
+ font-display: $fa-font-display;
18
+ src: url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'),
19
+ url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype');
20
+ }
21
+
22
+ .fas,
23
+ .fa-solid {
24
+ font-family: 'Font Awesome 6 Free';
25
+ font-weight: 900;
26
+ }
@@ -0,0 +1,11 @@
1
+ /*!
2
+ * Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2022 Fonticons, Inc.
5
+ */
6
+ // V4 shims compile (Web Fonts-based)
7
+ // -------------------------
8
+
9
+ @import 'functions';
10
+ @import 'variables';
11
+ @import 'shims';
@@ -0,0 +1,180 @@
1
+ /*form control*/
2
+ .bbsf-control.form-group {
3
+ margin-bottom: 1.75rem;
4
+
5
+ .bbsf-label {
6
+ font-size: 13px;
7
+ color: $label-color;
8
+ font-weight: 500;
9
+ margin-bottom: 0.8rem;
10
+ word-break: break-all;
11
+ }
12
+
13
+ .bbsf-input-container {
14
+ position: relative;
15
+
16
+ &.p-40px {
17
+ input, textarea {
18
+ padding-right: 40px;
19
+
20
+ &[dir = "rtl"] {
21
+ padding-left: 40px !important;
22
+ padding-right: 1rem !important;
23
+ }
24
+ }
25
+ }
26
+
27
+ .form-control {
28
+ border-color: $light-gray;
29
+ padding: 0.75rem 1rem;
30
+ font-size: 13px;
31
+ border-radius: $bbsf-rounded;
32
+ height: 45px;
33
+
34
+ &:disabled {
35
+ cursor: not-allowed;
36
+ }
37
+
38
+ &.is-invalid {
39
+ background-position:right calc(0.375em + 0.3875rem) center;
40
+
41
+ &[dir = "rtl"] {
42
+ background-position: left calc(0.375em + 0.3875rem) center;
43
+ }
44
+ }
45
+
46
+ &[dir = "rtl"] {
47
+ + .copy-clipboard {
48
+ left: 0px;
49
+ right: auto;
50
+ border-top-left-radius: $bbsf-rounded;
51
+ border-bottom-left-radius: $bbsf-rounded;
52
+ border-top-right-radius: 0px;
53
+ border-bottom-right-radius: 0px;
54
+ }
55
+ }
56
+ }
57
+
58
+ .form-control:focus {
59
+ border-color: #d5d5d5;
60
+ box-shadow: none;
61
+ }
62
+ /* input with icon*/
63
+ .bbsf-icon {
64
+ z-index: 4;
65
+ position: absolute;
66
+ transform: translate(-50%, -50%) !important;
67
+ top: 50% !important;
68
+
69
+ svg {
70
+ height: 1.5rem !important;
71
+ width: 1.5rem !important
72
+ }
73
+ }
74
+
75
+ .bbsf-left-icon {
76
+ position: absolute;
77
+ transform: translate(0, -50%) !important;
78
+ top: 50% !important;
79
+ left: 0px;
80
+ margin-left: 0.7rem !important;
81
+
82
+ + input {
83
+ padding-left: 2.7rem !important;
84
+ }
85
+ }
86
+
87
+ .bbsf-right-icon {
88
+ position: absolute;
89
+ transform: translate(0, -50%) !important;
90
+ top: 50% !important;
91
+ right: 0px;
92
+ margin-right: 0.7rem !important;
93
+
94
+ + input {
95
+ padding-right: 2.7rem !important;
96
+ }
97
+ }
98
+ //copy to clipboard
99
+ .copy-clipboard {
100
+ position: absolute;
101
+ top: 50%;
102
+ right: 0px;
103
+ transform: translate(0px, -50%);
104
+ padding: 10px;
105
+ background: #eeeeee;
106
+ border-radius: $bbsf-rounded;
107
+ border-top-left-radius: 0px;
108
+ border-bottom-left-radius: 0px;
109
+ height: 100%;
110
+ display: flex;
111
+ align-items: center;
112
+
113
+ i {
114
+ color: #8b8b8b;
115
+ }
116
+
117
+ &:hover {
118
+ background: #e5e5e5
119
+ }
120
+ }
121
+ }
122
+ /* horizontal form control*/
123
+ .bbsf-horizontal {
124
+ display: flex;
125
+ align-items: center;
126
+
127
+ .bbsf-label {
128
+ margin-right: 1rem;
129
+ white-space: nowrap;
130
+ margin-bottom: 0px;
131
+ }
132
+
133
+ .bbsf-input-container {
134
+ width: 100%;
135
+ }
136
+ }
137
+
138
+ @media only screen and (max-width: 768px) {
139
+ .bbsf-horizontal {
140
+ display: block;
141
+
142
+ .bbsf-label {
143
+ margin-right: 0;
144
+ margin-bottom: 1rem;
145
+ }
146
+ }
147
+ }
148
+
149
+ .subtext-container {
150
+ display: flex;
151
+ justify-content: space-between;
152
+ flex-wrap: wrap;
153
+ //validation
154
+ .bbsf-validation, .bbsf-character-count, .bbsf-word-count, .bbsf-control-desc {
155
+ margin-top: 0.3rem;
156
+ font-size: 12px;
157
+ font-weight: 500;
158
+ }
159
+
160
+ .bbsf-validation, .bbsf-character-count {
161
+ color: $danger;
162
+ }
163
+ //word count and description
164
+ .bbsf-word-count, .bbsf-control-desc {
165
+ color: $subtext-color;
166
+ }
167
+ }
168
+ }
169
+ //buttons
170
+
171
+ .btn-brand {
172
+ background: $primary;
173
+ color: white;
174
+ border: $primary;
175
+
176
+ &:hover {
177
+ background: #3781d2;
178
+ color: white;
179
+ }
180
+ }
@@ -0,0 +1,39 @@
1
+
2
+ .bbsf-checkbox {
3
+ .bbsf-input-container {
4
+ display: flex;
5
+ align-items: start;
6
+
7
+ .label-subtext-container {
8
+ margin-left: 0.55rem;
9
+
10
+ .bbsf-label {
11
+ margin-bottom: 0px;
12
+ }
13
+ }
14
+
15
+ .bbsf-checkbox-input {
16
+ &[type="checkbox"] {
17
+ width: 18px;
18
+ height: 18px;
19
+ appearance: none;
20
+ cursor: pointer;
21
+ border-radius: 6px;
22
+ background: $light-gray;
23
+ transition: background-color 0.15s ease-in-out;
24
+ background-repeat: no-repeat;
25
+ background-position: center;
26
+ background-size: 55%;
27
+ }
28
+ }
29
+
30
+ .bbsf-checkbox-input:checked {
31
+ background-color: $primary;
32
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 11' width='13' height='11' fill='none'%3e%3cpath d='M11.0426 1.02893C11.3258 0.695792 11.8254 0.655283 12.1585 0.938451C12.4917 1.22162 12.5322 1.72124 12.249 2.05437L5.51985 9.97104C5.23224 10.3094 4.72261 10.3451 4.3907 10.05L0.828197 6.88335C0.50141 6.59288 0.471975 6.09249 0.762452 5.7657C1.05293 5.43891 1.55332 5.40948 1.88011 5.69995L4.83765 8.32889L11.0426 1.02893Z' fill='%23FFFFFF'/%3e%3c/svg%3e");
33
+ }
34
+
35
+ .bbsf-checkbox-input:disabled {
36
+ cursor: not-allowed;
37
+ }
38
+ }
39
+ }
@@ -0,0 +1,53 @@
1
+ .swal2-container {
2
+
3
+ .swal2-popup.swal2-modal {
4
+ padding: 20px;
5
+ width: 30em;
6
+
7
+ .swal2-close {
8
+ font-size: 30px;
9
+ height: 1.5rem;
10
+ width: 1.5rem;
11
+ }
12
+
13
+ .swal2-icon {
14
+ margin: 1.5em auto 1.5em;
15
+
16
+ &.swal2-error {
17
+ border-color: rgba(241, 65, 108, 0.7) !important;
18
+
19
+ .swal2-x-mark-line-left {
20
+ background-color: rgba(241, 65, 108, 0.4) !important;
21
+ }
22
+ }
23
+ }
24
+
25
+ .swal2-title {
26
+ font-size: 1.2rem
27
+ }
28
+
29
+ .swal2-html-container {
30
+ font-size: 12px;
31
+ font-weight: 600;
32
+ color: #a0a0a0;
33
+ }
34
+
35
+ .swal2-cancel {
36
+ color: #9a9a9a;
37
+ }
38
+
39
+ .swal2-styled {
40
+ &:focus {
41
+ box-shadow: none !important
42
+ }
43
+ }
44
+ }
45
+ }
46
+
47
+ @media (max-width: 768px) {
48
+ .swal2-container {
49
+ .swal2-popup.swal2-modal {
50
+ width: 24em;
51
+ }
52
+ }
53
+ }
@@ -0,0 +1,167 @@
1
+ .bbsf-dropdown.form-group {
2
+
3
+ .bbsf-input-container {
4
+
5
+ .form-control {
6
+ padding: 0px !important;
7
+ min-height: 45px;
8
+ height: auto;
9
+
10
+ &.is-invalid {
11
+ background-position: right calc(0.375em + 2rem) center;
12
+ }
13
+
14
+ .ng-select-container {
15
+ padding: 0.75rem 1rem;
16
+ cursor: pointer;
17
+ height: 100%;
18
+ height: 100%;
19
+ min-height: 45px;
20
+
21
+ .ng-arrow-wrapper {
22
+ margin-left: 10px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: center;
26
+
27
+ .ng-arrow {
28
+ border-color: #999 #0000 #0000 #0000;
29
+ border-style: solid;
30
+ border-width: 5px 5px 2.5px;
31
+ margin-top: 5px;
32
+ }
33
+ }
34
+
35
+ .ng-clear-wrapper {
36
+ display: flex;
37
+ align-items: center;
38
+ justify-content: center;
39
+
40
+ .ng-clear {
41
+ color: #e66f6f;
42
+ font-weight: 600;
43
+ align-items: center;
44
+ justify-content: center;
45
+ font-size: 16px !important;
46
+ }
47
+ }
48
+
49
+ .ng-value-container {
50
+ align-items: center;
51
+
52
+ .ng-value-label {
53
+ color: #414350;
54
+ font-weight: 500;
55
+ }
56
+ }
57
+ }
58
+
59
+
60
+ .ng-dropdown-panel {
61
+ box-shadow: 0px 0px 11px 3px rgb(92 92 92 / 10%);
62
+ border-radius: $bbsf-rounded;
63
+ left: 0px;
64
+ background-color: white;
65
+
66
+ &.ng-select-bottom {
67
+ top: 52px;
68
+ }
69
+
70
+ &.ng-select-top {
71
+ bottom: 50px;
72
+ }
73
+
74
+ .ng-dropdown-panel-items {
75
+ .ng-option:last-child {
76
+ margin-bottom: 0px;
77
+ }
78
+
79
+ .ng-option {
80
+ padding: 0.75rem 1.25rem;
81
+ margin-bottom: 0.1rem;
82
+
83
+ .bbsf-label {
84
+ margin-bottom: 0px;
85
+ cursor: pointer;
86
+ white-space: break-spaces;
87
+ }
88
+
89
+ &.ng-option-selected, &:hover {
90
+ background-color: #f6f6f6;
91
+
92
+ .bbsf-label {
93
+ color: $primary;
94
+ }
95
+ }
96
+
97
+ &.ng-option-selected:after {
98
+ font-family: 'Font Awesome 5 Free';
99
+ content: "\f00c";
100
+ font-weight: 600;
101
+ position: absolute;
102
+ right: 4px;
103
+ top: 50%;
104
+ color: $primary;
105
+ font-size: 10px;
106
+ transform: translate(-14px, -50%);
107
+ }
108
+ }
109
+ }
110
+ }
111
+ }
112
+
113
+ .ng-select-opened {
114
+ .ng-select-container {
115
+ .ng-arrow-wrapper {
116
+ .ng-arrow {
117
+ top: -2px;
118
+ border-width: 0 5px 5px;
119
+ border-color: #0000 #0000 #999;
120
+ }
121
+ }
122
+ }
123
+ }
124
+ }
125
+
126
+ .ng-select-disabled {
127
+ background: #c5c5c5;
128
+
129
+ .ng-select-container {
130
+ cursor: not-allowed !important;
131
+ }
132
+ }
133
+
134
+ .ng-select-multiple {
135
+ .ng-select-container.ng-has-value {
136
+ padding-bottom: 0.65rem !important;
137
+ }
138
+
139
+ .ng-value {
140
+ background: $primary;
141
+ border-radius: 3px;
142
+ padding: 0px 5px;
143
+ margin-right: .4rem;
144
+ color: white;
145
+ font-size: 12px;
146
+ margin-bottom: 0.1rem;
147
+
148
+ .ng-value-label {
149
+ white-space: break-spaces;
150
+ color: white !important;
151
+ }
152
+ }
153
+
154
+ .ng-value-icon {
155
+ display: inline-block;
156
+ margin-right: .2rem;
157
+ }
158
+ }
159
+ }
160
+
161
+ .ng-has-value .ng-placeholder {
162
+ display: none;
163
+ }
164
+
165
+ .ng-option-selected {
166
+ position: relative;
167
+ }
@@ -0,0 +1,107 @@
1
+ .bbsf-image-upload {
2
+ .bbsf-input-container {
3
+ &.ngx-dz-disabled {
4
+ cursor: not-allowed;
5
+ pointer-events: auto;
6
+ }
7
+
8
+ height: 140px;
9
+ display: flex;
10
+ justify-content: center;
11
+ border: 2px dashed #e4e4e4;
12
+ border-radius: $bbsf-rounded;
13
+ align-items: center;
14
+
15
+ .svg-and-validation {
16
+ display: flex;
17
+ flex-direction: column;
18
+ align-items: center;
19
+ }
20
+
21
+ .bbsf-validation-msg {
22
+ margin-top: 0.3rem;
23
+ font-size: 12px;
24
+ font-weight: 500;
25
+ }
26
+
27
+ .dropzone-preview {
28
+ height: unset !important;
29
+ max-height: 140px;
30
+ min-height: unset !important;
31
+
32
+ img {
33
+ max-height: 100px;
34
+ }
35
+ }
36
+ }
37
+
38
+ .bbsf-cropper-modal {
39
+ &.modal {
40
+ left: 0;
41
+ top: 0;
42
+ width: 100%;
43
+ height: 100%;
44
+ overflow: auto;
45
+ background-color: #0006;
46
+
47
+ .modal-content {
48
+ border: 0px;
49
+ border-radius: 0.475rem;
50
+
51
+ .modal-header {
52
+ .modal-title {
53
+ font-size: 18px;
54
+ color: #2b2b2b;
55
+ }
56
+
57
+ .btn-close {
58
+ font-size: 10px;
59
+ font-weight: 600;
60
+ background-color: #ededed;
61
+ margin: 0px;
62
+ }
63
+ }
64
+
65
+ .modal-body {
66
+ .cropper-btns {
67
+ display: flex;
68
+ justify-content: center;
69
+ align-items: center;
70
+
71
+ .btn-group {
72
+ margin-right: 1rem;
73
+
74
+ .btn {
75
+ position: relative;
76
+ flex: 1 1 auto;
77
+ color: #535353;
78
+ background-color: #f5f8fa;
79
+ font-size: 13px;
80
+
81
+ &:hover {
82
+ background-color: #eff2f5;
83
+ }
84
+
85
+ &:focus {
86
+ box-shadow: none;
87
+ }
88
+ }
89
+ }
90
+ }
91
+ }
92
+
93
+ .modal-footer {
94
+ .btn-light {
95
+ background: #f5f8fa;
96
+ color: #7e8299;
97
+
98
+ &:hover {
99
+ background: #eff2f5;
100
+ color: #7e8299;
101
+ }
102
+ }
103
+ }
104
+ }
105
+ }
106
+ }
107
+ }