@bnsights/bbsf-controls 1.0.122 → 1.0.124

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 (33) hide show
  1. package/README.md +9 -1
  2. package/bnsights-bbsf-controls-1.0.124.tgz +0 -0
  3. package/esm2022/lib/Shared/Enums/FileType.mjs +2 -2
  4. package/esm2022/lib/Shared/Models/FileDTO.mjs +2 -1
  5. package/esm2022/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.mjs +11 -3
  6. package/esm2022/lib/controls/DateTimePicker/DateTimePicker.component.mjs +3 -3
  7. package/esm2022/lib/controls/FileUplaod/FileUplaod.component.mjs +24 -17
  8. package/esm2022/lib/controls/ImageUpload/ImageUpload.component.mjs +3 -1
  9. package/esm2022/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.mjs +11 -7
  10. package/esm2022/lib/controls/Paging/Paging.component.mjs +3 -6
  11. package/esm2022/lib/controls/ProfileImageUploader/ProfileImageUploader.component.mjs +7 -1
  12. package/esm2022/lib/controls/TagsInput/TagsInput.component.mjs +11 -2
  13. package/esm2022/lib/controls/TextArea/TextArea.component.mjs +6 -4
  14. package/esm2022/lib/controls/TextBox/TextBox.component.mjs +6 -4
  15. package/esm2022/lib/controls/page-header-component/page-header-component.component.mjs +1 -1
  16. package/fesm2022/bnsights-bbsf-controls.mjs +91 -52
  17. package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
  18. package/lib/Shared/Enums/FileType.d.ts +1 -1
  19. package/lib/Shared/Models/FileDTO.d.ts +1 -0
  20. package/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.d.ts +3 -1
  21. package/lib/controls/TagsInput/TagsInput.component.d.ts +3 -1
  22. package/package.json +1 -1
  23. package/src/lib/assets/Style-rtl.scss +62 -0
  24. package/src/lib/assets/sass/autocomplete-textbox.scss +56 -9
  25. package/src/lib/assets/sass/checkbox.scss +2 -2
  26. package/src/lib/assets/sass/datetime-picker.scss +61 -12
  27. package/src/lib/assets/sass/dropdown.scss +25 -5
  28. package/src/lib/assets/sass/file-upload.scss +13 -3
  29. package/src/lib/assets/sass/html-editor.scss +10 -5
  30. package/src/lib/assets/sass/image-upload.scss +107 -6
  31. package/src/lib/assets/sass/phone.scss +12 -3
  32. package/src/lib/assets/sass/radio-button.scss +3 -4
  33. package/bnsights-bbsf-controls-1.0.122.tgz +0 -0
@@ -14,7 +14,7 @@ export declare enum FileType {
14
14
  OctetSteam = "application/octet-stream",
15
15
  Txt = "text/plain",
16
16
  JSON = "application/json",
17
- PowerPoint = "application/vnd.ms-powerpoint,applicationapplication/vnd.openxmlformats-officedocument.presentationml.presentation",
17
+ PowerPoint = "application/vnd.ms-powerpoint,application/vnd.openxmlformats-officedocument.presentationml.presentation",
18
18
  SVG = "image/svg+xml",
19
19
  MP4 = "video/mp4",
20
20
  AVI = "video/x-msvideo",
@@ -16,4 +16,5 @@ export declare class FileDTO {
16
16
  bytes?: any;
17
17
  fileSizeInMB: number;
18
18
  fileURL?: string;
19
+ isNew: boolean;
19
20
  }
@@ -24,6 +24,7 @@ export declare class AutocompleteTextBoxComponent implements OnInit {
24
24
  group: FormGroup;
25
25
  name: string;
26
26
  options: AutocompleteOptions;
27
+ DropdownTemplateVariable: any;
27
28
  OnChange: EventEmitter<any>;
28
29
  keyword: string;
29
30
  autoCompleteTextBoxControl: AbstractControl;
@@ -58,6 +59,7 @@ export declare class AutocompleteTextBoxComponent implements OnInit {
58
59
  removeCustomValidation: (customValidation: any) => void;
59
60
  addCustomValidation: (customValidation: any) => void;
60
61
  isValid: () => void;
62
+ checkIsAutocomplateInFilter(): void;
61
63
  static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteTextBoxComponent, [null, null, null, null, { optional: true; }, null, null, null, null]>;
62
- static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteTextBoxComponent, "BBSF-AutocompleteTextBox", never, { "group": { "alias": "group"; "required": false; }; "name": { "alias": "name"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteTextBoxComponent, "BBSF-AutocompleteTextBox", never, { "group": { "alias": "group"; "required": false; }; "name": { "alias": "name"; "required": false; }; "options": { "alias": "options"; "required": false; }; "DropdownTemplateVariable": { "alias": "DropdownTemplateVariable"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
63
65
  }
@@ -21,6 +21,7 @@ export declare class TagsInputComponent implements OnInit, OnDestroy {
21
21
  group: FormGroup;
22
22
  name: string;
23
23
  options: TagsInputOptions;
24
+ DropdownTemplateVariable: any;
24
25
  onChange: EventEmitter<any>;
25
26
  searchKey: any;
26
27
  searchKeyValue: string;
@@ -55,6 +56,7 @@ export declare class TagsInputComponent implements OnInit, OnDestroy {
55
56
  isValid: () => void;
56
57
  onTagsInputBlur(SearchKey: any): void;
57
58
  getTagsValue(): any[];
59
+ checkIsTagInFilter(): void;
58
60
  static ɵfac: i0.ɵɵFactoryDeclaration<TagsInputComponent, [null, null, null, { optional: true; }, null, null, null, null]>;
59
- static ɵcmp: i0.ɵɵComponentDeclaration<TagsInputComponent, "BBSF-TagsInput", never, { "group": { "alias": "group"; "required": false; }; "name": { "alias": "name"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
61
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagsInputComponent, "BBSF-TagsInput", never, { "group": { "alias": "group"; "required": false; }; "name": { "alias": "name"; "required": false; }; "options": { "alias": "options"; "required": false; }; "DropdownTemplateVariable": { "alias": "DropdownTemplateVariable"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
60
62
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bnsights/bbsf-controls",
3
- "version": "1.0.122",
3
+ "version": "1.0.124",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^17.0.5",
6
6
  "@angular/cdk": "^17.0.2",
@@ -190,4 +190,66 @@ input::-webkit-inner-spin-button {
190
190
 
191
191
 
192
192
  }
193
+ }
194
+
195
+ .owl-dt-control-arrow-button .owl-dt-control-button-content {
196
+ transform: rotate(180deg)
197
+ }
198
+
199
+ //alert message in rabic
200
+ .bbsf-control.form-group .bbsf-input-container .form-control.is-invalid[dir=ltr] {
201
+ background-position: right calc(0.375em + 0.3875rem) center;
202
+ }
203
+
204
+ //datetime
205
+ .owl-dt-container-row {
206
+ direction: ltr;
207
+ }
208
+
209
+ .owl-dt-control-arrow-button svg {
210
+ transform: rotate(180deg);
211
+ }
212
+
213
+ //datetime picker
214
+ .owl-dt-control-period-button .owl-dt-control-button-content {
215
+ padding-right: 0 !important;
216
+ padding-left: 0.5rem !important;
217
+ }
218
+
219
+ //autocomplete close button
220
+ .autocomplete-container .input-container .x {
221
+ left: 10px;
222
+ right: auto !important;
223
+ }
224
+
225
+ .autocomplete-container {
226
+ .suggestions-container {
227
+ .x {
228
+ right: 0 !important;
229
+ left: auto;
230
+ }
231
+ }
232
+ }
233
+
234
+ //autocomplete space between name and cancel btn
235
+ .form-group.bbsf-control.bbsf-autocomplete-textbox .bbsf-input-container .autocomplete-container .suggestions-container.is-visible ul li.item a {
236
+ margin-left: 0;
237
+ margin-right: 0.8rem;
238
+ }
239
+
240
+ .autocomplete-container .suggestions-container .heading .text {
241
+ margin-right: 0.8rem;
242
+ margin-left: 0;
243
+ }
244
+
245
+ //dropdown invalid image
246
+
247
+ .bbsf-dropdown.form-group .bbsf-input-container .form-control.is-invalid {
248
+ background-position: left calc(0.375em + 0.8rem) center;
249
+ }
250
+
251
+ //dropdown close icon
252
+ .bbsf-dropdown.form-group .bbsf-input-container .form-control .ng-select-container .ng-clear-wrapper {
253
+ margin-right: 0;
254
+ margin-left: 0;
193
255
  }
@@ -1,4 +1,3 @@
1
-
2
1
  .form-group.bbsf-control.bbsf-autocomplete-textbox {
3
2
  .bbsf-input-container {
4
3
  .form-control {
@@ -19,13 +18,13 @@
19
18
 
20
19
  .is-hidden {
21
20
 
22
- + .is-visible {
21
+ +.is-visible {
23
22
  box-shadow: none;
24
23
  }
25
24
  }
26
25
 
27
26
  .suggestions-container.is-visible {
28
- box-shadow: 0px 0px 11px 3px rgb(92 92 92 / 10%);
27
+ box-shadow: 0;
29
28
  border-radius: $bbsf-rounded;
30
29
  left: 0px;
31
30
  background-color: white;
@@ -34,7 +33,7 @@
34
33
 
35
34
  ul {
36
35
  li.item {
37
- padding: 0.75rem 1.25rem;
36
+ padding: 1rem;
38
37
  margin-bottom: 0.1rem;
39
38
 
40
39
  a {
@@ -42,11 +41,39 @@
42
41
  font-size: 13px;
43
42
  color: #484848;
44
43
  font-weight: 500;
44
+ margin-inline-start: 0.8rem;
45
+ line-height: 2rem;
45
46
  }
46
47
 
47
48
  div {
48
49
  display: flex;
49
50
  align-items: center;
51
+
52
+ .auto-complete-card {
53
+ align-items: start;
54
+ margin: 0 8px;
55
+
56
+ a {
57
+ margin: 0;
58
+ font-weight: 700;
59
+ margin-bottom: 0.8rem;
60
+ }
61
+
62
+ .auto-complete-items {
63
+ gap: 0.4rem;
64
+ margin-bottom: 0.4rem;
65
+
66
+ &:last-child {
67
+ margin-bottom: 0;
68
+ }
69
+
70
+ .sub-text {
71
+ font-weight: 700;
72
+ }
73
+
74
+ }
75
+
76
+ }
50
77
  }
51
78
 
52
79
  &:hover {
@@ -70,18 +97,30 @@
70
97
  }
71
98
 
72
99
  img {
73
- border-radius: 10px;
74
- height: 35px;
75
- width: 35px;
76
- margin-right: 10px;
100
+ margin: 0;
101
+ width: 72px;
102
+ height: 72px;
103
+ border-radius: 50%;
77
104
  }
78
105
  }
79
106
  }
80
107
  }
81
108
 
109
+ .suggestions-container {
110
+ .x {
111
+ left: 0;
112
+ right: auto !important;
113
+ }
114
+
115
+ }
116
+
82
117
  .heading {
83
118
  color: #a0a0a0;
84
119
 
120
+ .text {
121
+ margin-inline-start: 0.8rem;
122
+ }
123
+
85
124
  .x {
86
125
  .material-icons {
87
126
  color: #e1505e;
@@ -92,6 +131,9 @@
92
131
  }
93
132
 
94
133
  .input-container {
134
+ border-radius: 0.4rem;
135
+ border: 1px solid #e2e5ec;
136
+ text-align: start;
95
137
  height: inherit;
96
138
 
97
139
  input {
@@ -99,6 +141,10 @@
99
141
  background-color: transparent;
100
142
  border-radius: $bbsf-rounded;
101
143
  height: inherit;
144
+ font-size: 0.85rem;
145
+ color: #A1A5B7;
146
+ border: none !important;
147
+ max-width: 90%;
102
148
 
103
149
  &:disabled {
104
150
  background-color: #eee !important;
@@ -110,6 +156,7 @@
110
156
  display: flex;
111
157
  align-items: center;
112
158
  justify-content: center;
159
+ padding-inline-end: 1.75rem;
113
160
 
114
161
  i {
115
162
  font-size: 12px;
@@ -119,4 +166,4 @@
119
166
  }
120
167
  }
121
168
  }
122
- }
169
+ }
@@ -1,4 +1,3 @@
1
-
2
1
  .bbsf-checkbox {
3
2
  .bbsf-input-container {
4
3
  display: flex;
@@ -7,6 +6,7 @@
7
6
  .label-subtext-container {
8
7
  margin-left: 0.55rem;
9
8
  width: 100%;
9
+ margin-top: 0;
10
10
 
11
11
  .bbsf-label {
12
12
  margin-bottom: 0px;
@@ -37,4 +37,4 @@
37
37
  cursor: not-allowed;
38
38
  }
39
39
  }
40
- }
40
+ }
@@ -1,27 +1,34 @@
1
-
2
1
  /* datetime picker*/
3
- .owl-dt-inline-container, .owl-dt-popup-container {
2
+ .owl-dt-inline-container,
3
+ .owl-dt-popup-container {
4
4
  box-shadow: 0 0 9px 6px #efefef;
5
5
  border-radius: $bbsf-rounded;
6
6
  }
7
7
 
8
- .owl-dt-container, .owl-dt-container * {
8
+ .owl-dt-container,
9
+ .owl-dt-container * {
9
10
  box-sizing: border-box;
10
11
  color: $label-color;
11
12
  font-weight: 600;
12
13
  font-size: 14px;
13
14
  }
14
15
 
15
- .owl-dt-inline-container, .owl-dt-popup-container {
16
+ .owl-dt-inline-container,
17
+ .owl-dt-popup-container {
16
18
  width: 25.5em;
17
19
  box-shadow: 0 0 50px 0 rgb(82 63 105 / 10%);
18
20
  }
19
21
 
20
- .owl-dt-inline-container .owl-dt-calendar, .owl-dt-popup-container .owl-dt-calendar {
22
+ .owl-dt-inline-container .owl-dt-calendar,
23
+ .owl-dt-popup-container .owl-dt-calendar {
21
24
  height: auto;
22
25
  padding: 15px 10px;
23
26
  }
24
27
 
28
+ .owl-dt-calendar-multi-year-view .owl-dt-calendar-table .owl-dt-calendar-header th {
29
+ text-align: center;
30
+ }
31
+
25
32
  .owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-weekdays th {
26
33
  padding-top: 1.2em;
27
34
  font-size: .9em;
@@ -31,12 +38,13 @@
31
38
  margin: 0px 6px;
32
39
  }
33
40
 
34
- .owl-dt-container, .owl-dt-container {
41
+ .owl-dt-container,
42
+ .owl-dt-container {
35
43
  fill: #d7d5d5;
36
44
  }
37
45
 
38
46
  .owl-dt-calendar-table .owl-dt-calendar-cell-today:not(.owl-dt-calendar-cell-selected) {
39
- border-color: rgba(0,0,0,.4);
47
+ border-color: rgba(0, 0, 0, .4);
40
48
  background: #f5f8fa;
41
49
  color: #7e8299;
42
50
  border-color: transparent;
@@ -51,10 +59,14 @@ button.owl-dt-control.owl-dt-control-button.owl-dt-control-period-button {
51
59
  border-radius: 6px;
52
60
  }
53
61
 
54
- .owl-dt-control-period-button:hover > .owl-dt-control-button-content {
62
+ .owl-dt-control-period-button:hover>.owl-dt-control-button-content {
55
63
  background-color: transparent !important;
56
64
  }
57
65
 
66
+ .owl-dt-control-period-button .owl-dt-control-button-content {
67
+ padding-inline-start: 0 !important;
68
+ }
69
+
58
70
  .owl-dt-calendar-table .owl-dt-calendar-cell-selected {
59
71
  background: $primary;
60
72
  color: #fff;
@@ -65,7 +77,8 @@ button.owl-dt-control.owl-dt-control-button.owl-dt-control-period-button {
65
77
  color: rgba(62, 61, 61, 0.85);
66
78
  }
67
79
 
68
- .owl-dt-calendar-table .owl-dt-calendar-cell-active:focus > .owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected), .owl-dt-calendar-table :not(.owl-dt-calendar-cell-disabled):hover > .owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected) {
80
+ .owl-dt-calendar-table .owl-dt-calendar-cell-active:focus>.owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected),
81
+ .owl-dt-calendar-table :not(.owl-dt-calendar-cell-disabled):hover>.owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected) {
69
82
  background-color: rgb(245, 248, 250);
70
83
  color: #7e8299;
71
84
  }
@@ -75,7 +88,7 @@ button.owl-dt-control.owl-dt-control-button.owl-dt-control-period-button {
75
88
  }
76
89
 
77
90
  .owl-dt-container-control-button .owl-dt-control-button-content {
78
- padding: 15px 10px;
91
+ padding: 15px 10px 15px 0;
79
92
  }
80
93
 
81
94
  .owl-dt-container-control-button:hover .owl-dt-control-button-content {
@@ -116,13 +129,49 @@ button.owl-dt-control.owl-dt-control-button.owl-dt-control-period-button {
116
129
 
117
130
  .owl-dt-control-button:first-child {
118
131
  color: $primary;
132
+ background-color: rgb(232 232 232);
133
+ border: 1px solid rgb(232 232 232);
134
+ border-radius: 0 0 0 5px;
135
+
136
+ span {
137
+ color: #7E8299;
138
+ }
119
139
  }
120
140
 
121
141
  .owl-dt-control-button {
122
142
  color: $subtext-color;
123
143
  }
124
144
 
145
+ .owl-dt-timer-divider:after,
146
+ .owl-dt-timer-divider:before {
147
+ width: 0.2em;
148
+ height: 0.2em;
149
+ }
150
+
151
+ .owl-dt-timer-divider:after {
152
+ bottom: 42%;
153
+ }
154
+
155
+ .owl-dt-timer-divider:before {
156
+ top: 42%;
157
+ }
158
+
159
+ .owl-dt-container-buttons.owl-dt-container-row .owl-dt-control-button:last-child {
160
+ border-radius: 0 0 5px 0;
161
+ }
162
+
163
+ .owl-dt-container-row {
164
+ direction: ltr;
165
+ }
166
+
125
167
  //BBSF datetime picker fix and location container
126
- .cdk-overlay-container, .pac-container.pac-logo.hdpi {
127
- z-index: 1056;
168
+ .cdk-overlay-container,
169
+ .pac-container.pac-logo.hdpi {
170
+ z-index: 1061;
128
171
  }
172
+
173
+ .cdk-overlay-pane,
174
+ .cdk-overlay-connected-position-bounding-box {
175
+ z-index: 1061;
176
+
177
+ }
@@ -36,7 +36,8 @@
36
36
  display: flex;
37
37
  align-items: center;
38
38
  justify-content: center;
39
- margin-right:30px;
39
+ margin-inline-end: 0;
40
+
40
41
  .ng-clear {
41
42
  color: #e66f6f;
42
43
  font-weight: 600;
@@ -48,7 +49,9 @@
48
49
 
49
50
  .ng-value-container {
50
51
  align-items: center;
51
- width:100%;
52
+ width: 100%;
53
+ margin: auto;
54
+
52
55
  .ng-value-label {
53
56
  color: #414350;
54
57
  font-weight: 500;
@@ -57,7 +60,7 @@
57
60
  .ng-input {
58
61
  input {
59
62
  padding: 0rem 1rem;
60
- width:80%;
63
+ width: 80%;
61
64
  }
62
65
  }
63
66
  }
@@ -69,6 +72,7 @@
69
72
  border-radius: $bbsf-rounded;
70
73
  left: 0px;
71
74
  background-color: white;
75
+ padding: 5px;
72
76
 
73
77
  &.ng-select-bottom {
74
78
  top: 52px;
@@ -93,7 +97,8 @@
93
97
  white-space: break-spaces;
94
98
  }
95
99
 
96
- &.ng-option-selected, &:hover {
100
+ &.ng-option-selected,
101
+ &:hover {
97
102
  background-color: #f6f6f6;
98
103
 
99
104
  .bbsf-label {
@@ -131,7 +136,7 @@
131
136
  }
132
137
 
133
138
  .ng-select-disabled {
134
- background: #c5c5c5;
139
+ background: #e9ecef;
135
140
 
136
141
  .ng-select-container {
137
142
  cursor: not-allowed !important;
@@ -172,3 +177,18 @@
172
177
  .ng-option-selected {
173
178
  position: relative;
174
179
  }
180
+
181
+ //background drowpdown scrolling
182
+ .bbsf-dropdown.form-group .bbsf-input-container .form-control .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected,
183
+ .bbsf-dropdown.form-group .bbsf-input-container .form-control .ng-dropdown-panel .ng-dropdown-panel-items .ng-option:hover {
184
+ width: 99%;
185
+ }
186
+
187
+ .ng-dropdown-panel .scroll-host::-webkit-scrollbar {
188
+ width: 8px;
189
+ }
190
+
191
+ .ng-dropdown-panel .scroll-host::-webkit-scrollbar-thumb {
192
+ background-color: #D9D9D9;
193
+ border-radius: 4px;
194
+ }
@@ -1,13 +1,16 @@
1
1
  .form-group.bbsf-control.bbsf-file-upload {
2
2
  .uploaded-items {
3
3
  .btn-group {
4
+ line-break: anywhere;
5
+
4
6
  .btn-download-file {
5
- background: #f7f7f7;
7
+ background: #F3F3F3;
6
8
  display: flex;
7
9
  align-items: center;
10
+ padding: 0.77rem 0.77rem 0.77rem 0 !important;
8
11
 
9
12
  &:hover {
10
- background: initial;
13
+ background: #F3F3F3;
11
14
  }
12
15
 
13
16
  svg {
@@ -20,12 +23,13 @@
20
23
  font-size: 12px;
21
24
  color: #4f4f4f;
22
25
  font-weight: 600;
23
- margin-left: 0.75rem;
26
+ margin: 0 0.75rem;
24
27
  }
25
28
  }
26
29
 
27
30
  .btn-progress-upload {
28
31
  position: relative;
32
+ padding: 0.77rem 0 0.77rem 0.77rem !important;
29
33
 
30
34
  .upload {
31
35
  position: absolute;
@@ -42,6 +46,12 @@
42
46
  }
43
47
  }
44
48
 
49
+ .btn-download-file {
50
+ &:hover {
51
+ background: #F3F3F3;
52
+ }
53
+ }
54
+
45
55
  .btn-danger {
46
56
  display: flex;
47
57
  align-items: center;
@@ -1,5 +1,5 @@
1
-
2
- .form-group.bbsf-control.bbsf-htmleditor, .form-group.bbsf-control.bbsf-multilang-htmleditor {
1
+ .form-group.bbsf-control.bbsf-htmleditor,
2
+ .form-group.bbsf-control.bbsf-multilang-htmleditor {
3
3
  .bbsf-input-container {
4
4
  .angular-editor {
5
5
  .angular-editor-toolbar {
@@ -7,7 +7,7 @@
7
7
  font-size: 12px;
8
8
  border: 1px solid #e1e1e1;
9
9
  padding: 15px 10px;
10
- border-radius: 0.5rem;
10
+ border-radius: .31rem .31rem 0 0;
11
11
 
12
12
  .angular-editor-button {
13
13
  border-radius: 0.2rem;
@@ -27,10 +27,15 @@
27
27
  .angular-editor-wrapper {
28
28
  .angular-editor-textarea {
29
29
  border: 1px solid #dedede;
30
- margin-top: 10px;
31
- border-radius: 0.5rem;
30
+ margin-top: 0;
31
+ border-radius: 0 0 .31rem .31rem;
32
+ padding: 1.23rem;
32
33
  }
33
34
  }
34
35
  }
35
36
  }
36
37
  }
38
+
39
+ .angular-editor-toolbar[_ngcontent-kfh-c324] .angular-editor-toolbar-set[_ngcontent-kfh-c324] .foreground[_ngcontent-kfh-c324] [_ngcontent-kfh-c324]:after {
40
+ display: none;
41
+ }