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.
@@ -1,6 +1,7 @@
1
1
  // Configuration
2
2
  @import "~bootstrap/scss/functions";
3
3
  @import "~bootstrap/scss/variables";
4
+ @import "~bootstrap/scss/variables-dark";
4
5
  @import "~bootstrap/scss/maps";
5
6
  @import "~bootstrap/scss/mixins";
6
7
  @import "~bootstrap/scss/utilities";
@@ -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"] {