gd-bs 6.1.3 → 6.1.4
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/.github/workflows/build.yml +1 -1
- package/build/bs.js +1 -1
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.js.LICENSE.txt +255 -223
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.js.LICENSE.txt +228 -208
- package/dist/gd-bs.min.js +1 -1
- package/package.json +15 -16
- package/pnpm-lock.yaml +388 -388
- package/src/styles/_core.scss +1 -0
- package/src/styles/_custom.scss +12 -2
package/src/styles/_core.scss
CHANGED
package/src/styles/_custom.scss
CHANGED
|
@@ -185,6 +185,7 @@
|
|
|
185
185
|
/* Color match form elements */
|
|
186
186
|
.form-control {
|
|
187
187
|
border-color: #6c757d;
|
|
188
|
+
border-radius: var(--bs-border-radius);
|
|
188
189
|
}
|
|
189
190
|
/* Color match disabled form elements */
|
|
190
191
|
.form-control:disabled,
|
|
@@ -393,6 +394,15 @@
|
|
|
393
394
|
.popover-body>* {
|
|
394
395
|
position: relative !important;
|
|
395
396
|
}
|
|
397
|
+
/* Fix Rich Textbox rounded corners */
|
|
398
|
+
.rich-textbox {
|
|
399
|
+
.editor-container {
|
|
400
|
+
border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius) !important;
|
|
401
|
+
}
|
|
402
|
+
.toolbar-container {
|
|
403
|
+
border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0 !important;
|
|
404
|
+
}
|
|
405
|
+
}
|
|
396
406
|
/* Fix extra top margin in Firefox */
|
|
397
407
|
table.dataTable {
|
|
398
408
|
margin-top: 0rem !important;
|
|
@@ -423,11 +433,11 @@
|
|
|
423
433
|
}
|
|
424
434
|
/* Fix validation styling */
|
|
425
435
|
.form-control.is-invalid {
|
|
426
|
-
border-color: #dc3545;
|
|
436
|
+
border-color: #dc3545 !important;
|
|
427
437
|
background-image: url("data:image/svg+xml,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 12 12%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/></svg>");
|
|
428
438
|
}
|
|
429
439
|
.form-control.is-valid {
|
|
430
|
-
border-color: #198754;
|
|
440
|
+
border-color: #198754 !important;
|
|
431
441
|
background-image: url("data:image/svg+xml,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%23198754%27 d=%27M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/></svg>");
|
|
432
442
|
}
|
|
433
443
|
.form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
|