123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /**
- * @class Ext.grid.Grid
- */
- /**
- * @var {color}
- * background-color for the resize indicator that displays when resizing columns in the grid
- */
- $grid-resize-marker-background-color: dynamic($neutral-dark-color);
- /**
- * @var {number}
- * Width of the resize indicator that displays when resizing columns in the grid
- */
- $grid-resize-marker-width: dynamic(1px);
- /**
- * Creates a visual theme for a Grid.
- *
- * @param {string} $ui
- * @param {color} $resize-marker-background-color
- * @param {number} $resize-marker-width
- *
- * The name of the UI being created. Can not included spaces or special punctuation
- * (used in CSS class names).
- *
- */
- @mixin grid-ui(
- $ui: null,
- $resize-marker-background-color: null,
- $resize-marker-width: null
- ) {
- $ui-suffix: ui-suffix($ui);
- .#{$prefix}grid#{$ui-suffix} {
- .#{$prefix}resize-marker-el {
- background-color: $resize-marker-background-color;
- width: $resize-marker-width;
- z-index: 1;
- }
- }
- }
|