123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /**
- * @class Ext.dd.StatusProxy
- */
- /**
- * @var {number/list}
- * StatusProxy padding
- */
- $statusproxy-padding: dynamic(5px);
- /**
- * @var {number/list}
- * StatusProxy text color
- */
- $statusproxy-color: dynamic($color);
- /**
- * @var {color/list}
- * StatusProxy border-color
- */
- $statusproxy-border-color: dynamic($neutral-color);
- /**
- * @var {number/list}
- * StatusProxy border-width
- */
- $statusproxy-border-width: dynamic(1px);
- /**
- * @var {string/list}
- * StatusProxy border-style
- */
- $statusproxy-border-style: dynamic(solid);
- /**
- * @var {color/list}
- * StatusProxy background-color
- */
- $statusproxy-background-color: dynamic(#fff);
- /**
- * @var {string/number}
- * Button font-weight
- */
- $statusproxy-font-weight: dynamic($font-weight);
- /**
- * @var {number}
- * Button font-size
- */
- $statusproxy-font-size: dynamic($font-size);
- /**
- * @var {number}
- * Button line-height
- */
- $statusproxy-line-height: dynamic($line-height);
- /**
- * @var {string}
- * Button font-family
- */
- $statusproxy-font-family: dynamic($font-family);
- /**
- * @var {number}
- * StatusProxy icon size
- */
- $statusproxy-icon-size: dynamic(16px);
- /**
- * @var {number}
- * The font size to use for StatusProxy icons when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $statusproxy-glyph-font-size: dynamic($statusproxy-icon-size);
- /**
- * @var {string/list}
- * Glyph for the "ok" StatusProxy icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $statusproxy-ok-glyph: dynamic($fa-var-check-circle $statusproxy-glyph-font-size $font-icon-font-family);
- /**
- * @var {color}
- * Color for the "ok" StatusProxy icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $statusproxy-ok-glyph-color: dynamic(red);
- /**
- * @var {string/list}
- * Glyph for the "add" StatusProxy icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $statusproxy-add-glyph: dynamic($statusproxy-ok-glyph);
- /**
- * @var {color}
- * Color for the "add" StatusProxy icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $statusproxy-add-glyph-color: dynamic($statusproxy-ok-glyph-color);
- /**
- * @var {string/list}
- * Glyph for the "nodrop" StatusProxy icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $statusproxy-nodrop-glyph: dynamic($fa-var-times-circle $statusproxy-glyph-font-size $font-icon-font-family);
- /**
- * @var {color}
- * Color for the "nodrop" StatusProxy icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $statusproxy-nodrop-glyph-color: dynamic(green);
|