Premium support for our pure JavaScript UI components


Post by jarmen »

To facilitate custom theming, when using sass compilation, can the following updates be made?

grid-sass/variables.scss

$rowreorder-box-shadow                         : 1px 1px 4px rgba(0, 0, 0, 0.2) !default;
$rowreorder-row-background                     : $grid-row-even-color !default;
- $rowreorder-indicator-width                  : 2px;
+ $rowreorder-indicator-width                  : 2px !default;
- $rowreorder-indicator-color                  : $main-color;
+ $rowreorder-indicator-color                  : $main-color !default;
+ $rowreorder-indicator-invalid-color          : $red !default;

grid-sass/grid/feature/rowreorder.scss

        &.b-drag-invalid .b-grid-row {
-            border : 2px solid $red;
+            border: $rowreorder-indicator-width solid $rowreorder-indicator-invalid-color;
        }

Post by jarmen »

Additionally, could the class off b-drag-invalid be added to the same element as b-row-drop-indicator when the drop indication is invalid?


Post by marcio »

Hello jarmen,

I created a ticket to discuss that and implement it if we decided to work on that. Please follow the ticket for updates https://github.com/bryntum/support/issues/5217

Best regards,
Márcio


Post Reply