123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- /**
- * @class Ext.grid.RowHeader
- */
- //# fashion replaces $grid-group-header-color
- /**
- * @var {color}
- * Grid RowHeader color
- */
- $rowheader-color: dynamic(null);
- /**
- * @var {color}
- * Grid RowHeader color when {@link Ext.grid.Grid#pinHeaders pinned}
- */
- $rowheader-pinned-color: dynamic(null);
- //# fashion replaces $grid-group-header-background-color
- /**
- * @var {color}
- * Grid RowHeader background-color
- */
- $rowheader-background-color: dynamic(null);
- /**
- * @var {color}
- * Grid RowHeader background-color when {@link Ext.grid.Grid#pinHeaders pinned}
- */
- $rowheader-pinned-background-color: dynamic(null);
- /**
- * @var {number/list}
- * Grid RowHeader border-width
- */
- $rowheader-border-width: dynamic(null);
- /**
- * @var {string}
- * Grid RowHeader border-style
- */
- $rowheader-border-style: dynamic(null);
- //# fashion replaces $grid-group-header-border-color
- /**
- * @var {color}
- * Grid RowHeader border-color
- */
- $rowheader-border-color: dynamic(null);
- /**
- * @var {color}
- * Grid RowHeader border-color when {@link Ext.grid.Grid#pinHeaders pinned}
- */
- $rowheader-pinned-border-color: dynamic(null);
- /**
- * @var {number}
- * Grid RowHeader outline-width when focused
- */
- $rowheader-focused-outline-width: dynamic(null);
- /**
- * @var {string}
- * Grid RowHeader outline-style when focused
- */
- $rowheader-focused-outline-style: dynamic(null);
- /**
- * @var {color}
- * Grid RowHeader outline-color when focused
- */
- $rowheader-focused-outline-color: dynamic(null);
- /**
- * @var {number}
- * Grid RowHeader outline-offset when focused
- */
- $rowheader-focused-outline-offset: dynamic(null);
- /**
- * @var {list}
- * Grid RowHeader box-shadow
- */
- $rowheader-box-shadow: dynamic(null);
- /**
- * @var {list}
- * Grid RowHeader box-shadow when {@link Ext.grid.Grid#pinHeaders pinned}
- */
- $rowheader-pinned-box-shadow: dynamic(null);
- /**
- * @var {list}
- * Grid RowHeader box-shadow when {@link Ext.grid.Grid#pinFooters pinned} to the bottom
- */
- $rowheader-pinned-bottom-box-shadow: dynamic(null);
- //# fashion replaces $grid-group-header-font-weight
- /**
- * @var {string/number}
- * Grid RowHeader font-weight
- */
- $rowheader-font-weight: dynamic(null);
- //# fashion replaces $grid-group-header-font-size
- /**
- * @var {number}
- * Grid RowHeader font-size
- */
- $rowheader-font-size: dynamic(null);
- //# fashion replaces $grid-group-header-font-size-big
- /**
- * @var {number}
- * Grid RowHeader font-size in the {@link Global_CSS#$enable-big big} sizing scheme
- */
- $rowheader-font-size-big: dynamic(null);
- //# fashion replaces $grid-group-header-line-height
- /**
- * @var {number}
- * Grid RowHeader line-height
- */
- $rowheader-line-height: dynamic(null);
- //# fashion replaces $grid-group-header-line-height-big
- /**
- * @var {number}
- * Grid RowHeader line-height in the {@link Global_CSS#$enable-big big} sizing scheme
- */
- $rowheader-line-height-big: dynamic(null);
- //# fashion replaces $grid-group-header-font-family
- /**
- * @var {string}
- * Grid RowHeader font-family
- */
- $rowheader-font-family: dynamic(null);
- //# fashion replaces $grid-group-header-padding
- /**
- * @var {number/list}
- * Grid RowHeader padding
- */
- $rowheader-padding: dynamic(null);
- //# fashion replaces $grid-group-header-padding-big
- /**
- * @var {number/list}
- * Grid RowHeader padding in the {@link Global_CSS#$enable-big big} sizing scheme
- */
- $rowheader-padding-big: dynamic(null);
- /**
- * Creates a visual theme for a Grid RowHeader.
- *
- * @param {string} $ui
- * The name of the UI being created. Can not included spaces or special punctuation
- * (used in CSS class names).
- *
- * @param {String} [$xtype=rowheader] (protected) The {@link Ext.Class#xtype} to use
- * in CSS selectors. For use by UI mixins of derived classes.
- *
- * @param {color} $color
- * Grid RowHeader color
- *
- * @param {color} $pinned-color
- * Grid RowHeader color when {@link Ext.grid.Grid#pinHeaders pinned}
- *
- * @param {color} $background-color
- * Grid RowHeader background-color
- *
- * @param {color} $pinned-background-color
- * Grid RowHeader background-color when {@link Ext.grid.Grid#pinHeaders pinned}
- *
- * @param {number/list} $border-width
- * Grid RowHeader border-width
- *
- * @param {string} $border-style
- * Grid RowHeader border-style
- *
- * @param {color} $border-color
- * Grid RowHeader border-color
- *
- * @param {color} $pinned-border-color
- * Grid RowHeader border-color when {@link Ext.grid.Grid#pinHeaders pinned}
- *
- * @param {number} $focused-outline-width
- * Grid RowHeader outline-width when focused
- *
- * @param {string} $focused-outline-style
- * Grid RowHeader outline-style when focused
- *
- * @param {color} $focused-outline-color
- * Grid RowHeader outline-color when focused
- *
- * @param {number} $focused-outline-offset
- * Grid RowHeader outline-offset when focused
- *
- * @param {list} $box-shadow
- * Grid RowHeader box-shadow
- *
- * @param {list} $pinned-box-shadow
- * Grid RowHeader box-shadow when {@link Ext.grid.Grid#pinHeaders pinned}
- *
- * @param {list} $pinned-bottom-box-shadow
- * Grid RowHeader box-shadow when {@link Ext.grid.Grid#pinFooters pinned} to the bottom
- *
- * @param {string/number} $font-weight
- * Grid RowHeader font-weight
- *
- * @param {number} $font-size
- * Grid RowHeader font-size
- *
- * @param {number} $font-size-big
- * Grid RowHeader font-size in the {@link Global_CSS#$enable-big big} sizing scheme
- *
- * @param {number} $line-height
- * Grid RowHeader line-height
- *
- * @param {number} $line-height-big
- * Grid RowHeader line-height in the {@link Global_CSS#$enable-big big} sizing scheme
- *
- * @param {string} $font-family
- * Grid RowHeader font-family
- *
- * @param {number/list} $padding
- * Grid RowHeader padding
- *
- * @param {number/list} $padding-big
- * Grid RowHeader padding in the {@link Global_CSS#$enable-big big} sizing scheme
- */
- @mixin rowheader-ui(
- $ui: null,
- $xtype: rowheader,
- $color: null,
- $pinned-color: null,
- $background-color: null,
- $pinned-background-color: null,
- $border-width: null,
- $border-style: null,
- $border-color: null,
- $pinned-border-color: null,
- $focused-outline-width: null,
- $focused-outline-style: null,
- $focused-outline-color: null,
- $focused-outline-offset: null,
- $box-shadow: null,
- $pinned-box-shadow: null,
- $pinned-bottom-box-shadow: null,
- $font-weight: null,
- $font-size: null,
- $font-size-big: null,
- $line-height: null,
- $line-height-big: null,
- $font-family: null,
- $padding: null,
- $padding-big: null
- ) {
- $arguments: intersect-arguments(rowheader-ui, itemheader-ui);
- @include itemheader-ui($arguments...);
- }
|