123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /**
- * @class Ext.window.MessageBox
- */
- /**
- * @var {color}
- * The background-color of the MessageBox body
- */
- $messagebox-body-background-color: dynamic($window-body-background-color);
- /**
- * @var {number}
- * The border-width of the MessageBox body
- */
- $messagebox-body-border-width: dynamic(0);
- /**
- * @var {color}
- * The border-color of the MessageBox body
- */
- $messagebox-body-border-color: dynamic($window-body-border-color);
- /**
- * @var {string}
- * The border-style of the MessageBox body
- */
- $messagebox-body-border-style: dynamic($window-body-border-style);
- /**
- * @var {list}
- * The background-position of the MessageBox icon
- */
- $messagebox-icon-background-position: dynamic(left top);
- /**
- * @var {number}
- * The size of the MessageBox icon
- */
- $messagebox-icon-size: dynamic(32px);
- /**
- * @var {number}
- * The amount of space between the MessageBox icon and the message text
- */
- $messagebox-icon-spacing: dynamic(10px);
- /**
- * @var {number}
- * The font size to use for MessageBox icons when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $messagebox-glyph-font-size: dynamic($messagebox-icon-size);
- /**
- * @var {string/list}
- * Glyph for the "info" icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $messagebox-info-glyph: dynamic($fa-var-info-circle $messagebox-glyph-font-size $font-icon-font-family);
- /**
- * @var {color}
- * The color to use for the "info" icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $messagebox-info-glyph-color: dynamic(#808080);
- /**
- * @var {string/list}
- * Glyph for the "warning" icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $messagebox-warning-glyph: dynamic($fa-var-exclamation-triangle $messagebox-glyph-font-size $font-icon-font-family);
- /**
- * @var {color}
- * The color to use for the "warning" icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $messagebox-warning-glyph-color: dynamic(#f8d400);
- /**
- * @var {string/list}
- * Glyph for the "question" icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $messagebox-question-glyph: dynamic($fa-var-question-circle $messagebox-glyph-font-size $font-icon-font-family);
- /**
- * @var {color}
- * The color to use for the "question" icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $messagebox-question-glyph-color: dynamic(#808080);
- /**
- * @var {string/list}
- * Glyph for the "error" icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $messagebox-error-glyph: dynamic($fa-var-times-circle $messagebox-glyph-font-size $font-icon-font-family);
- /**
- * @var {color}
- * The color to use for the "error" icon when {@link Global_CSS#$enable-font-icons} is `true`.
- */
- $messagebox-error-glyph-color: dynamic(#ee611f);
|