text
stringlengths
1
22.8M
```css /* including package ext-theme-base */ /** * Creates a background gradient. * * Example usage: * .foo { * @include background-gradient(#808080, matte, left); * } * * @param {Color} $bg-color The background color of the gradient * @param {String/List} [$type=$base-gradient] The type of gradient to be used. Can either * be a String which is a predefined gradient name, or it can can be a list of color stops. * If null is passed, this mixin will still set the `background-color` to $bg-color. * The available predefined gradient names are: * * * bevel * * glossy * * recessed * * matte * * matte-reverse * * panel-header * * tabbar * * tab * * tab-active * * tab-over * * tab-disabled * * grid-header * * grid-header-over * * grid-row-over * * grid-cell-special * * glossy-button * * glossy-button-over * * glossy-button-pressed * * Each of these gradient names corresponds to a function named linear-gradient[name]. * Themes can override these functions to customize the color stops that they return. * For example, to override the glossy-button gradient function add a function named * "linear-gradient-glossy-button" to a file named "sass/etc/mixins/background-gradient.scss" * in your theme. The function should return the result of calling the Compass linear-gradient * function with the desired direction and color-stop information for the gradient. For example: * * @function linear-gradient-glossy-button($direction, $bg-color) { * @return linear-gradient($direction, color_stops( * mix(#fff, $bg-color, 10%), * $bg-color 50%, * mix(#000, $bg-color, 5%) 51%, * $bg-color * )); * } * * @param {String} [$direction=top] The direction of the gradient. Can either be * `top` or `left`. * * @member Global_CSS */ /* * Method which inserts a full background-image property for a theme image. * It checks if the file exists and if it doesn't, it'll throw an error. * By default it will not include the background-image property if it is not found, * but this can be changed by changing the default value of $include-missing-images to * be true. */ /** * Includes a google webfont for use in your theme. * @param {string} $font-name The name of the font. If the font name contains spaces * use "+" instead of space. * @param {string} [$font-weights=400] Comma-separated list of font weights to include. * * Example usage: * * @include google-webfont( * $font-name: Exo, * $font-weights: 200 300 400 * ); * * Outputs: * * @import url(path_to_url * * @member Global_CSS */ /** * adds a css outline to an element with compatibility for IE8/outline-offset * NOTE: the element receiving the outline must be positioned (either relative or absolute) * in order for the outline to work in IE8 * * @param {number} [$width=1px] * The width of the outline * * @param {string} [$style=solid] * The style of the outline * * @param {color} [$color=#000] * The color of the outline * * @param {number} [$offset=0] * The offset of the outline * * @param {number/list} [$border-width=0] * The border-width of the element receiving the outline. * Required in order for outline-offset to work in IE8 */ /* including package ext-theme-neutral */ /* including package ext-theme-neptune */ /* including package ext-aria */ /* including package ext-theme-aria */ /* including package ext-theme-aria */ /* including package ext-aria */ /* including package ext-theme-neptune */ /** @class Global_CSS */ /** @class Ext.LoadMask */ /** @class Ext.ProgressBar */ /** @class Ext.panel.Tool */ /** @class Ext.resizer.Splitter */ /** @class Ext.toolbar.Toolbar */ /** @class Ext.panel.Panel */ /** * @var {boolean} * True to include the "light" panel UI */ /** * @var {boolean} * True to include the "light-framed" panel UI */ /** @class Ext.form.Labelable */ /** @class Ext.form.field.Base */ /** @class Ext.form.field.Display */ /** @class Ext.form.field.Checkbox */ /** @class Ext.grid.header.Container */ /** @class Ext.grid.column.Column */ /** @class Ext.layout.container.Border */ /** @class Ext.button.Button */ /** @class Ext.tab.Tab */ /** @class Ext.tab.Bar */ /** @class Ext.window.Window */ /** @class Ext.tip.Tip */ /** @class Ext.container.ButtonGroup */ /** @class Ext.form.FieldSet */ /** @class Ext.toolbar.Paging */ /** @class Ext.view.BoundList */ /** @class Ext.picker.Date */ /** @class Ext.picker.Color */ /** @class Ext.grid.column.Action */ /** @class Ext.grid.feature.Grouping */ /** @class Ext.menu.Menu */ /** @class Ext.grid.plugin.RowEditing */ /** @class Ext.layout.container.Accordion */ /** @class Ext.resizer.Resizer */ /** @class Ext.selection.CheckboxModel */ /* including package ext-theme-neutral */ /** * @class Ext.Component */ /** * @var {color} * The background color of scroll indicators when touch scrolling is enabled */ /** * @var {number} * The opacity of scroll indicators when touch scrolling is enabled */ /** * @var {number} * The border-radius of scroll indicators when touch scrolling is enabled */ /** * @var {color} * The background color of scroll indicators when touch scrolling is enabled */ /** * @var {number} * The space between scroll indicators and the edge of their container */ /** * @class Global_CSS */ /** * @var {color} $color * The default text color to be used throughout the theme. */ /** * @var {string} $font-family * The default font-family to be used throughout the theme. */ /** * @var {number} $font-size * The default font-size to be used throughout the theme. */ /** * @var {string/number} * The default font-weight to be used throughout the theme. */ /** * @var {string/number} * The default font-weight for bold font to be used throughout the theme. */ /** * @var {string/number} $line-height * The default line-height to be used throughout the theme. */ /** * @var {string} $base-gradient * The base gradient to be used throughout the theme. */ /** * @var {color} $base-color * The base color to be used throughout the theme. */ /** * @var {color} $neutral-color * The neutral color to be used throughout the theme. */ /** * @var {color} $body-background-color * Background color to apply to the body element. If set to transparent or 'none' no * background-color style will be set on the body element. */ /** * @class Ext.FocusManager */ /** * @var {color} * The border-color of the focusFrame. See {@link #method-enable}. */ /** * @var {color} * The border-style of the focusFrame. See {@link #method-enable}. */ /** * @var {color} * The border-width of the focusFrame. See {@link #method-enable}. */ /** * @class Ext.LoadMask */ /** * @var {number} * Opacity of the LoadMask */ /** * @var {color} * The background-color of the LoadMask */ /** * @var {string} * The type of cursor to dislay when the cursor is over the LoadMask */ /** * @var {string} * The border-style of the LoadMask focus border */ /** * @var {string} * The border-color of the LoadMask focus border */ /** * @var {string} * The border-width of the LoadMask focus border */ /** * @var {number/list} * The padding to apply to the LoadMask's message element */ /** * @var {string} * The border-style of the LoadMask's message element */ /** * @var {color} * The border-color of the LoadMask's message element */ /** * @var {number} * The border-width of the LoadMask's message element */ /** * @var {color} * The background-color of the LoadMask's message element */ /** * @var {string/list} * The background-gradient of the LoadMask's message element. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {number/list} * The padding of the message inner element */ /** * @var {string} * The icon to display in the message inner element */ /** * @var {list} * The background-position of the icon */ /** * @var {string} * The border-style of the message inner element */ /** * @var {color} * The border-color of the message inner element */ /** * @var {number} * The border-width of the message inner element */ /** * @var {color} * The background-color of the message inner element */ /** * @var {color} * The text color of the message inner element */ /** * @var {number} * The font-size of the message inner element */ /** * @var {string} * The font-weight of the message inner element */ /** * @var {string} * The font-family of the message inner element */ /** * @var {number/list} * The padding of the message element */ /** * @var {number} * The border-radius of the message element */ /** * @class Ext.ProgressBar */ /** * @var {number} * The height of the ProgressBar */ /** * @var {color} * The border-color of the ProgressBar */ /** * @var {number} * The border-width of the ProgressBar */ /** * @var {number} * The border-radius of the ProgressBar */ /** * @var {color} * The background-color of the ProgressBar */ /** * @var {color} * The background-color of the ProgressBar's moving element */ /** * @var {string/list} * The background-gradient of the ProgressBar's moving element. Can be either the name of * a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {color} * The color of the ProgressBar's text when in front of the ProgressBar's moving element */ /** * @var {color} * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it */ /** * @var {string} * The text-align of the ProgressBar's text */ /** * @var {number} * The font-size of the ProgressBar's text */ /** * @var {string} * The font-weight of the ProgressBar's text */ /** * @var {string} * The font-family of the ProgressBar's text */ /** * @var {boolean} * True to include the "default" ProgressBar UI */ /** * @class Ext.panel.Tool */ /** * @var {number} * The size of Tools */ /** * @var {boolean} * True to change the background-position of the Tool on hover. Allows for a separate * hover state icon in the sprite. */ /** * @var {string} * The cursor to display when the mouse cursor is over a Tool */ /** * @var {number} * The opacity of Tools */ /** * @var {number} * The opacity of hovered Tools */ /** * @var {number} * The opacity of pressed Tools */ /** * @var {string} * The sprite to use as the background-image for Tools */ /** @class Ext.panel.Header */ /** * @class Ext.resizer.Splitter */ /** * @var {number} * The size of the Splitter */ /** * @var {color} * The background-color of the active Splitter (the Splitter currently being dragged) */ /** * @var {number} * The opacity of the active Splitter (the Splitter currently being dragged) */ /** * @var {number} * The opacity of the collapse tool on the active Splitter (the Splitter currently being dragged) */ /** * @var {color} * The color of the outline around the splitter when it is focused */ /** * @var {string} * The outline-style of the splitter when it is focused */ /** * @var {number} * The outline-width of the splitter when it is focused */ /** * @var {number} * The outline-offset of the splitter when it is focused */ /** * @var {string} * The the type of cursor to display when the cursor is over the collapse tool */ /** * @var {number} * The size of the collapse tool. This becomes the width of the collapse tool for * horizontal splitters, and the height for vertical splitters. */ /** * @var {number} * The opacity of the collapse tool. */ /** * @class Ext.toolbar.Toolbar */ /** * @var {number} * The default font-size of Toolbar text */ /** * @var {color} * The background-color of the Toolbar */ /** * @var {string/list} * The background-gradient of the Toolbar. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {number} * The horizontal spacing of Toolbar items */ /** * @var {number} * The vertical spacing of Toolbar items */ /** * @var {number} * The horizontal spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items */ /** * @var {number} * The vertical spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items */ /** * @var {color} * The background-color of {@link Ext.panel.Panel#fbar footer} Toolbars */ /** * @var {number} * The border-width of {@link Ext.panel.Panel#fbar footer} Toolbars */ /** * @var {color} * The border-color of Toolbars */ /** * @var {number} * The border-width of Toolbars */ /** * @var {string} * The border-style of Toolbars */ /** * @var {number} * The width of Toolbar {@link Ext.toolbar.Spacer Spacers} */ /** * @var {color} * The main border-color of Toolbar {@link Ext.toolbar.Separator Separators} */ /** * @var {color} * The highlight border-color of Toolbar {@link Ext.toolbar.Separator Separators} */ /** * @var {number/list} * The margin of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar */ /** * @var {number} * The height of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar */ /** * @var {string} * The border-style of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar */ /** * @var {number} * The border-width of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar */ /** * @var {number/list} * The margin of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar */ /** * @var {string} * The border-style of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar */ /** * @var {number} * The border-width of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar */ /** * @var {string} * The default font-family of Toolbar text */ /** * @var {number} * The default font-size of Toolbar text */ /** * @var {number} * The default font-size of Toolbar text */ /** * @var {color} * The text-color of Toolbar text */ /** * @var {number} * The line-height of Toolbar text */ /** * @var {number/list} * The padding of Toolbar text */ /** * @var {number} * The width of Toolbar scrollers */ /** * @var {number} * The height of Toolbar scrollers */ /** * @var {number} * The width of scrollers on vertically aligned toolbars */ /** * @var {number} * The height of scrollers on vertically aligned toolbars */ /** * @var {color} * The border-color of Toolbar scroller buttons */ /** * @var {number} * The border-width of Toolbar scroller buttons */ /** * @var {color} * The border-color of scroller buttons on vertically aligned toolbars */ /** * @var {number} * The border-width of scroller buttons on vertically aligned toolbars */ /** * @var {number/list} * The margin of "top" Toolbar scroller buttons */ /** * @var {number/list} * The margin of "right" Toolbar scroller buttons */ /** * @var {number/list} * The margin of "bottom" Toolbar scroller buttons */ /** * @var {number/list} * The margin of "left" Toolbar scroller buttons */ /** * @var {string} * The cursor of Toolbar scroller buttons */ /** * @var {string} * The cursor of disabled Toolbar scroller buttons */ /** * @var {number} * The opacity of Toolbar scroller buttons. Only applicable when * {@link #$toolbar-classic-scrollers} is `false`. */ /** * @var {number} * The opacity of hovered Toolbar scroller buttons. Only applicable when * {@link #$toolbar-classic-scrollers} is `false`. */ /** * @var {number} * The opacity of pressed Toolbar scroller buttons. Only applicable when * {@link #$toolbar-classic-scrollers} is `false`. */ /** * @var {number} * The opacity of disabled Toolbar scroller buttons. */ /** * @var {boolean} * `true` to use classic-style scroller buttons. When `true` scroller buttons are given their * hover state by changing their background-position, When `false` scroller buttons are * given their hover state by applying opacity. */ /** * @var {string} * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar */ /** * @var {boolean} * True to include the "default" toolbar UI */ /** * @var {boolean} * True to include the "footer" toolbar UI */ /** * @class Ext.panel.Panel */ /** * @var {number} * The default border-width of Panels */ /** * @var {color} * The base color of Panels */ /** * @var {color} * The default border-color of Panels */ /** * @var {number} * The maximum width a Panel's border can be before resizer handles are embedded * into the borders using negative absolute positions. * * This defaults to 2, so that in the classic theme which uses 1 pixel borders, * resize handles are in the content area within the border as they always have * been. * * In the Neptune theme, the handles are embedded into the 5 pixel wide borders * of any framed panel. */ /** * @var {string} * The default border-style of Panels */ /** * @var {color} * The default body background-color of Panels */ /** * @var {color} * The default color of text inside a Panel's body */ /** * @var {color} * The default border-color of the Panel body */ /** * @var {number} * The default border-width of the Panel body */ /** * @var {number} * The default font-size of the Panel body */ /** * @var {string} * The default font-weight of the Panel body */ /** * @var {string} * The default font-family of the Panel body */ /** * @var {number} * The space between the Panel {@link Ext.panel.Tool Tools} */ /** * @var {string} * The background sprite to use for Panel {@link Ext.panel.Tool Tools} */ /** * @var {number} * The border-width of Panel Headers */ /** * @var {string} * The border-style of Panel Headers */ /** * @var {number/list} * The padding of Panel Headers */ /** * @var {number} * The font-size of Panel Headers */ /** * @var {number} * The line-height of Panel Headers */ /** * @var {string} * The font-weight of Panel Headers */ /** * @var {string} * The font-family of Panel Headers */ /** * @var {string} * The text-transform of Panel Headers */ /** * @var {number/list} * The padding of the Panel Header's text element */ /** * @var {number/list} * The margin of the Panel Header's text element */ /** * @var {string/list} * The background-gradient of the Panel Header. Can be either the name of a predefined * gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {color} * The border-color of the Panel Header */ /** * @var {color} * The inner border-color of the Panel Header */ /** * @var {number} * The inner border-width of the Panel Header */ /** * @var {color} * The text color of the Panel Header */ /** * @var {color} * The background-color of the Panel Header */ /** * @var {number} * The width of the Panel Header icon */ /** * @var {number} * The height of the Panel Header icon */ /** * @var {number} * The space between the Panel Header icon and text */ /** * @var {list} * The background-position of the Panel Header icon */ /** * @var {color} * The color of the Panel Header glyph icon */ /** * @var {number} * The opacity of the Panel Header glyph icon */ /** * @var {boolean} * True to adjust the padding of borderless panel headers so that their height is the same * as the height of bordered panels. This is helpful when borderless and bordered panels * are used side-by-side, as it maintains a consistent vertical alignment. */ /** * @var {color} * The base color of the framed Panels */ /** * @var {number} * The border-radius of framed Panels */ /** * @var {number} * The border-width of framed Panels */ /** * @var {string} * The border-style of framed Panels */ /** * @var {number} * The padding of framed Panels */ /** * @var {color} * The background-color of framed Panels */ /** * @var {color} * The border-color of framed Panels */ /** * @var {number} * The border-width of the body element of framed Panels */ /** * @var {number} * The border-width of framed Panel Headers */ /** * @var {color} * The inner border-color of framed Panel Headers */ /** * @var {number} * The inner border-width of framed Panel Headers */ /** * @var {number/list} * The padding of framed Panel Headers */ /** * @var {number} * The opacity of ghost Panels while dragging */ /** * @var {string} * The direction to strech the background-gradient of top docked Headers when slicing images * for IE using Sencha Cmd */ /** * @var {string} * The direction to strech the background-gradient of bottom docked Headers when slicing images * for IE using Sencha Cmd */ /** * @var {string} * The direction to strech the background-gradient of right docked Headers when slicing images * for IE using Sencha Cmd */ /** * @var {string} * The direction to strech the background-gradient of left docked Headers when slicing images * for IE using Sencha Cmd */ /** * @var {boolean} * True to include neptune style border management rules. */ /** * @var {color} * The color to apply to the border that wraps the body and docked items in a framed * panel. The presence of the wrap border in a framed panel is controlled by the * {@link #border} config. Only applicable when `$panel-include-border-management-rules` is * `true`. */ /** * @var {number} * The width to apply to the border that wraps the body and docked items in a framed * panel. The presence of the wrap border in a framed panel is controlled by the * {@link #border} config. Only applicable when `$panel-include-border-management-rules` is * `true`. */ /** * @var {boolean} * True to include the "default" panel UI */ /** * @var {boolean} * True to include the "default-framed" panel UI */ /** * @var {boolean} * True to ignore the frame padding. By default, the frame mixin adds extra padding when * border radius is larger than border width. This is intended to prevent the content * from colliding with the rounded corners of the frame. Set this to true to prevent * the panel frame from adding this extra padding. */ /** * @class Ext.form.field.Base */ /** * @var {number} $form-field-height * Height for form fields. */ /** * @var {number} $form-toolbar-field-height * Height for form fields in toolbar. */ /** * @var {number} $form-field-padding * Padding around form fields. */ /** * @var {number} $form-field-font-size * Font size for form fields. */ /** * @var {string} $form-field-font-family * Font family for form fields. */ /** * @var {string} $form-field-font-weight * Font weight for form fields. */ /** * @var {number} $form-toolbar-field-font-size * Font size for toolbar form fields. */ /** * @var {string} $form-toolbar-field-font-family * Font family for toolbar form fields. */ /** * @var {string} $form-toolbar-field-font-weight * Font weight for toolbar form fields. */ /** * @var {color} $form-field-color * Text color for form fields. */ /** * @var {color} $form-field-empty-color * Text color for empty form fields. */ /** * @var {color} $form-field-border-color * Border color for form fields. */ /** * @var {number} $form-field-border-width * Border width for form fields. */ /** * @var {string} $form-field-border-style * Border style for form fields. */ /** * @var {color} $form-field-focus-border-color * Border color for focused form fields. * * In the default Neptune color scheme this is the same as $base-highlight-color * but it does not change automatically when one changes the $base-color. This is because * checkboxes and radio buttons have this focus color hard coded into their background * images. If this color is changed, you should also modify checkbox and radio button * background images to match */ /** * @var {color} $form-field-invalid-border-color * Border color for invalid form fields. */ /** * @var {color} $form-field-background-color * Background color for form fields. */ /** * @var {string} $form-field-background-image * Background image for form fields. */ /** * @var {color} $form-field-invalid-background-color * Background color for invalid form fields. */ /** * @var {string} $form-field-invalid-background-image * Background image for invalid form fields. */ /** * @var {string} $form-field-invalid-background-repeat * Background repeat for invalid form fields. */ /** * @var {string/list} $form-field-invalid-background-position * Background position for invalid form fields. */ /** * @var {boolean} * True to include the "default" field UI */ /** * @var {boolean} * True to include the "toolbar" field UI */ /** * @class Ext.form.Labelable */ /** * @var {color} * The text color of form field labels */ /** * @var {string} * The font-weight of form field labels */ /** * @var {number} * The font-size of form field labels */ /** * @var {string} * The font-family of form field labels */ /** * @var {number} * The line-height of form field labels */ /** * @var {number} * Horizontal space between the label and the field body when the label is left-aligned. */ /** * @var {number} * Vertical space between the label and the field body when the label is top-aligned. */ /** * @var {string} * The background image for error icons */ /** * @var {number} * Width for form error icons. */ /** * @var {number} * Height for form error icons. */ /** * @var {number/list} * Margin for error icons that are aligned to the side of the field */ /** * @var {number} * The space between the icon and the message for errors that display under the field */ /** * @var {number/list} * The padding on errors that display under the form field */ /** * @var {color} * The text color of form error messages */ /** * @var {string} * The font-weight of form error messages */ /** * @var {number} * The font-size of form error messages */ /** * @var {string} * The font-family of form error messages */ /** * @var {number} * The line-height of form error messages */ /** * @var {number} * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout. * This value is also used as the default border-spacing in a form-layout. */ /** * @var {number} * Opacity of disabled form fields */ /** * @var {color} * The text color of toolbar form field labels */ /** * @var {string} * The font-weight of toolbar form field labels */ /** * @var {number} * The font-size of toolbar form field labels */ /** * @var {string} * The font-family of toolbar form field labels */ /** * @var {number} * The line-height of toolbar form field labels */ /** * @var {number} * Horizontal space between the toolbar field's label and the field body when the label is left-aligned. */ /** * @var {number} * Vertical space between the toolbar field's label and the field body when the label is top-aligned. */ /** * @var {string} * The background image for toolbar field error icons */ /** * @var {number} * Width for toolbar field error icons. */ /** * @var {number} * Height for toolbar field error icons. */ /** * @var {number/list} * Margin for toolbar field error icons that are aligned to the side of the field */ /** * @var {number} * The space between the icon and the message for errors that display under a toolbar field */ /** * @var {number/list} * The padding on errors that display under the toolbar form field */ /** * @var {color} * The text color of toolbar form error messages */ /** * @var {string} * The font-weight of toolbar form field error messages */ /** * @var {number} * The font-size of toolbar form field error messages */ /** * @var {string} * The font-family of toolbar form field error messages */ /** * @var {number} * The line-height of toolbar form field error messages */ /** * @var {number} * Opacity of disabled toolbar form fields */ /** * @var {boolean} * True to include the "default" label UI */ /** * @var {boolean} * True to include the "default" label UI */ /** * @class Ext.form.field.Text */ /** * @var {number} * The height of text fields */ /** * @var {number} * Font size for text fields. */ /** * @var {string} * Font family for text fields. */ /** * @var {string} * Font weight for text fields. */ /** * @var {color} * The color of the text field's input element */ /** * @var {color} * The background color of the text field's input element */ /** * @var {number/list} * The border width of text fields */ /** * @var {string/list} * The border style of text fields */ /** * @var {color/list} * The border color of text fields */ /** * @var {color/list} * The border color of the focused text field */ /** * @var {color} * Border color for invalid text fields. */ /** * @var {number/list} * Border radius for text fields */ /** * @var {string} * The background image of the text field's input element */ /** * @var {number/list} * The padding of the text field's input element */ /** * @var {color} * Text color for empty text fields. */ /** * @var {number} * The default width of the text field's body element (the element that contains the input * element and triggers) when the field is not sized explicitly using the {@link #width} * config, or sized by it's containing layout. */ /** * @var {color} * Background color of the text field's input element when the field value is invalid. */ /** * @var {string} * Background image of the text field's input element when the field value is invalid. */ /** * @var {string} * Background repeat of the text field's input element when the field value is invalid. */ /** * @var {string/list} * Background position of the text field's input element when the field value is invalid. */ /** * @var {boolean} * `true` to use classic-theme styled border for text fields. */ /** * @var {number} $form-textarea-line-height * The line-height to use for the TextArea's text */ /** * @var {number} $form-textarea-body-height * The default width of the TextArea's body element (the element that contains the textarea * html element when the field is not sized explicitly using the {@link #width}config, or * sized by it's containing layout. */ /** * @var {color} * Text color for file fields */ /** * @var {number} * The width of the text field's trigger element */ /** * @var {number/list} * The width of the text field's trigger's border */ /** * @var {color/list} * The color of the text field's trigger's border */ /** * @var {string/list} * The style of the text field's trigger's border */ /** * @var {color} * The color of the text field's trigger's border when hovered */ /** * @var {color} * The color of the text field's trigger's border when the field is focused */ /** * @var {color} * The color of the text field's trigger's border when the field is focused and the trigger is hovered */ /** * @var {string} * The default background image for text field triggers */ /** * @var {color} * The background color of the text field's trigger element */ /** * @var {number} * The height of toolbar text fields */ /** * @var {number} * Font size for toolbar text fields. */ /** * @var {string} * Font family for toolbar text fields. */ /** * @var {string} * Font weight for toolbar text fields. */ /** * @var {color} * The color of the toolbar text field's input element */ /** * @var {color} * The background color of the toolbar text field's input element */ /** * @var {number/list} * The border width of toolbar text fields */ /** * @var {string/list} * The border style of toolbar text fields */ /** * @var {color/list} * The border color of toolbar text fields */ /** * @var {color/list} * The border color of the focused toolbar text field */ /** * @var {color} $form-field-invalid-border-color * Border color for invalid toolbar text fields. */ /** * @var {number/list} * Border radius for toolbar text fields */ /** * @var {string} * The background image of the toolbar text field's input element */ /** * @var {number/list} * The padding of the toolbar text field's input element */ /** * @var {color} * Text color for empty toolbar text fields. */ /** * @var {number} * The default width of the toolbar text field's body element (the element that contains the input * element and triggers) when the field is not sized explicitly using the {@link #width} * config, or sized by it's containing layout. */ /** * @var {color} * Background color of the toolbar text field's input element when the field value is invalid. */ /** * @var {string} * Background image of the toolbar text field's input element when the field value is invalid. */ /** * @var {string} * Background repeat of the toolbar text field's input element when the field value is invalid. */ /** * @var {string/list} * Background position of the toolbar text field's input element when the field value is invalid. */ /** * @var {boolean} * `true` to use classic-theme styled border for toolbar text fields. */ /** * @var {number/string} * The line-height to use for the toolbar TextArea's text */ /** * @var {number} * The default width of the toolbar TextArea's body element (the element that contains the * textarea html element when the field is not sized explicitly using the {@link #width} * config, or sized by it's containing layout. */ /** * @var {color} * Text color for toolbar file fields */ /** * @var {number} * The width of the toolbar text field's trigger element */ /** * @var {number/list} * The width of the toolbar text field's trigger's border */ /** * @var {color/list} * The color of the toolbar text field's trigger's border */ /** * @var {string/list} * The style of the toolbar text field's trigger's border */ /** * @var {color} * The color of the toolbar text field's trigger's border when hovered */ /** * @var {color} * The color of the toolbar text field's trigger's border when the field is focused */ /** * @var {color} * The color of the toolbar text field's trigger's border when the field is focused and the trigger is hovered */ /** * @var {string} * The default background image for toolbar text field triggers */ /** * @var {color} * The background color of the toolbar text field's trigger element */ /** * @var {boolean} * True to include the "default" text field UI */ /** * @var {boolean} * True to include the "toolbar" text field UI */ /** * @class Ext.form.field.Spinner */ /** * @var {boolean} * True to use vertically oriented triggers. False to use horizontally oriented triggers. * Themes that set this property to true must also override the * {@link Ext.form.trigger.Spinner#vertical} config to match. Defaults to true. When * 'vertical' orientation is used, the background image for both triggers is * 'form/spinner'. When 'horizontal' is used, the triggers use separate background * images - 'form/spinner-up', and 'form/spinner-down'. */ /** * @var {string} * Background image for vertically oriented spinner triggers */ /** * @var {string} * Background image for the "up" trigger when trigger buttons are horizontally aligned */ /** * @var {string} * Background image for the "down" trigger when trigger buttons are horizontally aligned */ /** * @var {boolean} * `true` to use vertically oriented triggers for fields with the 'toolbar' UI. */ /** * @var {string} * Background image for vertically oriented toolbar spinner triggers */ /** * @var {string} * Background image for the "up" toolbar trigger when trigger buttons are horizontally aligned */ /** * @var {string} * Background image for the "down" toolbar trigger when trigger buttons are horizontally aligned */ /** * @var {boolean} * True to include the "default" spinner UI */ /** * @var {boolean} * True to include the "toolbar" spinner UI */ /** * @class Ext.form.field.Checkbox */ /** * @var {number} * The size of the checkbox */ /** * @var {string} * The background-image of the checkbox */ /** * @var {string} * The background-image of the radio button */ /** * @var {color} * The color of the checkbox's {@link #boxLabel} */ /** * @var {string} * The font-weight of the checkbox's {@link #boxLabel} */ /** * @var {string} * The font-size of the checkbox's {@link #boxLabel} */ /** * @var {string} * The font-family of the checkbox's {@link #boxLabel} */ /** * @var {string} * The line-height of the checkbox's {@link #boxLabel} */ /** * @var {number} * The space between the {@link #boxLabel} and the checkbox. */ /** * @var {number} * The size of the toolbar checkbox */ /** * @var {string} * The background-image of the toolbar checkbox */ /** * @var {string} * The background-image of the toolbar radio button */ /** * @var {color} * The color of the toolbar checkbox's {@link #boxLabel} */ /** * @var {string} * The font-weight of the toolbar checkbox's {@link #boxLabel} */ /** * @var {string} * The font-size of the toolbar checkbox's {@link #boxLabel} */ /** * @var {string} * The font-family of the toolbar checkbox's {@link #boxLabel} */ /** * @var {string} * The line-height of the toolbar checkbox's {@link #boxLabel} */ /** * @var {number} * The space between the {@link #boxLabel} and the toolbar checkbox. */ /** * @var {boolean} * True to include the "default" checkbox UI */ /** * @var {boolean} * True to include the "toolbar" checkbox UI */ /** * @class Ext.form.field.Display */ /** * @var {color} * The text color of display fields */ /** * @var {number} * The font-size of display fields */ /** * @var {string} * The font-family of display fields */ /** * @var {string} * The font-weight of display fields */ /** * @var {number} * The line-height of display fields */ /** * @var {color} * The text color of toolbar display fields */ /** * @var {number} * The font-size of toolbar display fields */ /** * @var {string} * The font-family of toolbar display fields */ /** * @var {string} * The font-weight of toolbar display fields */ /** * @var {number} * The line-height of toolbar display fields */ /** * @var {boolean} * True to include the "default" display field UI */ /** * @var {boolean} * True to include the "toolbar" display field UI */ /** * @class Ext.view.Table */ /** * @var {color} * The color of the text in the grid cells */ /** * @var {number} * The font size of the text in the grid cells */ /** * @var {number} * The line-height of the text inside the grid cells. */ /** * @var {string} * The font-weight of the text in the grid cells */ /** * @var {string} * The font-family of the text in the grid cells */ /** * @var {color} * The background-color of the grid cells */ /** * @var {color} * The border-color of row/column borders. Can be specified as a single color, or as a list * of colors containing the row border color followed by the column border color. */ /** * @var {string} * The border-style of the row/column borders. */ /** * @var {number} * The border-width of the row and column borders. */ /** * @var {color} * The background-color of "special" cells. Special cells are created by {@link * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. */ /** * @var {string} * The background-gradient to use for "special" cells. Special cells are created by {@link * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. */ /** * @var {number} * The border-width of "special" cells. Special cells are created by {@link * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. * Only applies to the vertical border, since the row border width is determined by * {#$grid-row-cell-border-width}. */ /** * @var {color} * The border-color of "special" cells. Special cells are created by {@link * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. * Only applies to the vertical border, since the row border color is determined by * {#$grid-row-cell-border-color}. */ /** * @var {string} * The border-style of "special" cells. Special cells are created by {@link * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. * Only applies to the vertical border, since the row border style is determined by * {#$grid-row-cell-border-style}. */ /** * @var {color} * The border-color of "special" cells when the row is selected using a {@link * Ext.selection.RowModel Row Selection Model}. Special cells are created by {@link * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. * Only applies to the vertical border, since the selected row border color is determined by * {#$grid-row-cell-selected-border-color}. */ /** * @var {color} * The background-color of "special" cells when the row is hovered. Special cells are * created by {@link Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel * Checkbox Selection Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. */ /** * @var {color} * The background-color color of odd-numbered rows when the table view is configured with * `{@link Ext.view.Table#stripeRows stripeRows}: true`. */ /** * @var {string} * The border-style of the hovered row */ /** * @var {color} * The text color of the hovered row */ /** * @var {color} * The background-color of the hovered row */ /** * @var {color} * The border-color of the hovered row */ /** * @var {string} * The border-style of the selected row */ /** * @var {color} * The text color of the selected row */ /** * @var {color} * The background-color of the selected row */ /** * @var {color} * The border-color of the selected row */ /** * @var {number} * The border-width of the focused cell */ /** * @var {color} * The border-color of the focused cell */ /** * @var {string} * The border-style of the focused cell */ /** * @var {number} * The spacing between grid cell border and inner focus border */ /** * @var {color} * The text color of the focused cell */ /** * @var {color} * The background-color of the focused cell */ /** * @var {boolean} * True to show the focus border when a row is focused even if the grid has no * {@link Ext.panel.Table#rowLines rowLines}. */ /** * @var {color} * The text color of a selected cell when using a {@link Ext.selection.CellModel * Cell Selection Model}. */ /** * @var {color} * The background-color of a selected cell when using a {@link Ext.selection.CellModel * Cell Selection Model}. */ /** * @var {number} * The amount of padding to apply to the grid cell's inner div element */ /** * @var {string} * The type of text-overflow to use on the grid cell's inner div element */ /** * @var {color} * The border-color of the grid body */ /** * @var {number} * The border-width of the grid body border */ /** * @var {string} * The border-style of the grid body border */ /** * @var {color} * The background-color of the grid body */ /** * @var {number} * The amount of padding to apply to the grid body when the grid contains no data. */ /** * @var {color} * The text color of the {@link Ext.view.Table#emptyText emptyText} in the grid body when * the grid contains no data. */ /** * @var {color} * The background color of the grid body when the grid contains no data. */ /** * @var {number} * The font-size of the {@link Ext.view.Table#emptyText emptyText} in the grid body when * the grid contains no data. */ /** * @var {number} * The font-weight of the {@link Ext.view.Table#emptyText emptyText} in the grid body when * the grid contains no data. */ /** * @var {number} * The font-family of the {@link Ext.view.Table#emptyText emptyText} in the grid body when * the grid contains no data. */ /** * @var {color} * The color of the resize markers that display when dragging a column border to resize * the column */ /** * @class Ext.tree.View */ /** * @var {number} $tree-elbow-width * The width of the tree elbow/arrow icons */ /** * @var {number} $tree-icon-width * The width of the tree folder/leaf icons */ /** * @var {number} $tree-elbow-spacing * The amount of spacing between the tree elbows or arrows, and the checkbox or icon. */ /** * @var {number} $tree-checkbox-spacing * The amount of space (in pixels) between the tree checkbox and the folder/leaf icon */ /** * @var {number} $tree-icon-spacing * The amount of space (in pixels) between the folder/leaf icons and the text */ /** * @var {string} $tree-expander-cursor * The type of cursor to display when the mouse is over a tree expander (+, - or arrow icon) */ /** * @var {number/list} * The amount of padding to apply to the tree cell's inner div element */ /** * @class Ext.grid.header.DropZone */ /** * @var {number} * The size of the column move icon */ /** * @class Ext.grid.header.Container */ /** * @var {color} * The background-color of grid headers */ /** * @var {string/list} * The background-gradient of grid headers. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {color} * The border-color of grid headers */ /** * @var {number} * The border-width of grid headers */ /** * @var {string} * The border-style of grid headers */ /** * @var {color} * The background-color of grid headers when the cursor is over the header */ /** * @var {string/list} * The background-gradient of grid headers when the cursor is over the header. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. */ /** * @var {color} * The background-color of a grid header when its menu is open */ /** * @var {number/list} * The padding to apply to grid headers */ /** * @var {number} * The height of grid header triggers */ /** * @var {number} * The width of grid header triggers */ /** * @var {number} * The width of the grid header sort icon */ /** * @var {string} * The type of cursor to display when the cursor is over a grid header trigger */ /** * @var {number} * The amount of space between the header trigger and text */ /** * @var {list} * The background-position of the header trigger */ /** * @var {color} * The background-color of the header trigger */ /** * @var {color} * The background-color of the header trigger when the menu is open */ /** * @var {number} * The space between the grid header sort icon and the grid header text */ /** * @class Ext.grid.column.Column */ /** * @var {string} * The font-family of grid column headers */ /** * @var {number} * The font-size of grid column headers */ /** * @var {string} * The font-weight of grid column headers */ /** * @var {number} * The line-height of grid column headers */ /** * @var {string} * The text-overflow of grid column headers */ /** * @var {color} * The text color of grid column headers */ /** * @var {number} * The border-width of grid column headers */ /** * @var {string} * The border-style of grid column headers */ /** * @var {color} * The text color of focused grid column headers */ /** * @var {color} * The background-color of focused grid column headers */ /** * @var {number} * The border-width of focused grid column headers */ /** * @var {string} * The border-style of focused grid column headers */ /** * @var {number} * The spacing between column header element border and inner focus border */ /** * @var {color} * The border color of focused grid column headers */ /** * @class Ext.layout.container.Border */ /** * @var {color} * The background-color of the Border layout element */ /** @class Ext.button.Button */ /** * @var {number} * The default width for a button's {@link #cfg-menu} arrow */ /** * @var {number} * The default height for a button's {@link #cfg-menu} arrow */ /** * @var {number} * The default width for a {@link Ext.button.Split Split Button}'s arrow */ /** * @var {number} * The default height for a {@link Ext.button.Split Split Button}'s arrow */ /** * @var {number} * The default space between a button's icon and text */ /** * @var {number} * The default border-radius for a small {@link #scale} button */ /** * @var {number} * The default border-width for a small {@link #scale} button */ /** * @var {number} * The default padding for a small {@link #scale} button */ /** * @var {number} * The default horizontal padding to add to the left and right of the text element for * a small {@link #scale} button */ /** * @var {number} * The default font-size for a small {@link #scale} button */ /** * @var {number} * The default font-size for a small {@link #scale} button when the cursor is over the button */ /** * @var {number} * The default font-size for a small {@link #scale} button when the button is focused */ /** * @var {number} * The default font-size for a small {@link #scale} button when the button is pressed */ /** * @var {number} * The default font-size for a small {@link #scale} button when the button is focused and * the cursor is over the button */ /** * @var {number} * The default font-size for a small {@link #scale} button when the button is focused and pressed */ /** * @var {number} * The default font-size for a small {@link #scale} button when the button is disabled */ /** * @var {string} * The default font-weight for a small {@link #scale} button */ /** * @var {string} * The default font-weight for a small {@link #scale} button when the cursor is over the button */ /** * @var {string} * The default font-weight for a small {@link #scale} button when the button is focused */ /** * @var {string} * The default font-weight for a small {@link #scale} button when the button is pressed */ /** * @var {string} * The default font-weight for a small {@link #scale} button when the button is focused * and the cursor is over the button */ /** * @var {string} * The default font-weight for a small {@link #scale} button when the button is focused * and pressed */ /** * @var {string} * The default font-weight for a small {@link #scale} button when the button is disabled */ /** * @var {string} * The default font-family for a small {@link #scale} button */ /** * @var {string} * The default font-family for a small {@link #scale} button when the cursor is over the button */ /** * @var {string} * The default font-family for a small {@link #scale} button when the button is focused */ /** * @var {string} * The default font-family for a small {@link #scale} button when the button is pressed */ /** * @var {string} * The default font-family for a small {@link #scale} button when the button is focused * and the cursor is over the button */ /** * @var {string} * The default font-family for a small {@link #scale} button when the button is focused * and pressed */ /** * @var {string} * The default font-family for a small {@link #scale} button when the button is disabled */ /** * @var {number} * The line-height for the text in a small {@link #scale} button */ /** * @var {number} * The default icon size for a small {@link #scale} button */ /** * @var {number} * The space between a small {@link #scale} button's icon and text */ /** * @var {number} * The default width of a small {@link #scale} button's {@link #cfg-menu} arrow */ /** * @var {number} * The default height of a small {@link #scale} button's {@link #cfg-menu} arrow */ /** * @var {number} * The default width of a small {@link #scale} {@link Ext.button.Split Split Button}'s arrow */ /** * @var {number} * The default height of a small {@link #scale} {@link Ext.button.Split Split Button}'s arrow */ /** * @var {number} * The default border-radius for a medium {@link #scale} button */ /** * @var {number} * The default border-width for a medium {@link #scale} button */ /** * @var {number} * The default padding for a medium {@link #scale} button */ /** * @var {number} * The default horizontal padding to add to the left and right of the text element for * a medium {@link #scale} button */ /** * @var {number} * The default font-size for a medium {@link #scale} button */ /** * @var {number} * The default font-size for a medium {@link #scale} button when the cursor is over the button */ /** * @var {number} * The default font-size for a medium {@link #scale} button when the button is focused */ /** * @var {number} * The default font-size for a medium {@link #scale} button when the button is pressed */ /** * @var {number} * The default font-size for a medium {@link #scale} button when the button is focused * and the cursor is over the button */ /** * @var {number} * The default font-size for a medium {@link #scale} button when the button is focused * and pressed */ /** * @var {number} * The default font-size for a medium {@link #scale} button when the button is disabled */ /** * @var {string} * The default font-weight for a medium {@link #scale} button */ /** * @var {string} * The default font-weight for a medium {@link #scale} button when the cursor is over the button */ /** * @var {string} * The default font-weight for a medium {@link #scale} button when the button is focused */ /** * @var {string} * The default font-weight for a medium {@link #scale} button when the button is pressed */ /** * @var {string} * The default font-weight for a medium {@link #scale} button when the button is focused * and the cursor is over the button */ /** * @var {string} * The default font-weight for a medium {@link #scale} button when the button is focused * and pressed */ /** * @var {string} * The default font-weight for a medium {@link #scale} button when the button is disabled */ /** * @var {string} * The default font-family for a medium {@link #scale} button */ /** * @var {string} * The default font-family for a medium {@link #scale} button when the cursor is over the button */ /** * @var {string} * The default font-family for a medium {@link #scale} button when the button is focused */ /** * @var {string} * The default font-family for a medium {@link #scale} button when the button is pressed */ /** * @var {string} * The default font-family for a medium {@link #scale} button when the button is focused * and the cursor is over the button */ /** * @var {string} * The default font-family for a medium {@link #scale} button when the button is focused * and pressed */ /** * @var {string} * The default font-family for a medium {@link #scale} button when the button is disabled */ /** * @var {number} * The line-height for the text in a medium {@link #scale} button */ /** * @var {number} * The default icon size for a medium {@link #scale} button */ /** * @var {number} * The space between a medium {@link #scale} button's icon and text */ /** * @var {number} * The default width of a medium {@link #scale} button's {@link #cfg-menu} arrow */ /** * @var {number} * The default height of a medium {@link #scale} button's {@link #cfg-menu} arrow */ /** * @var {number} * The default width of a medium {@link #scale} {@link Ext.button.Split Split Button}'s arrow */ /** * @var {number} * The default height of a medium {@link #scale} {@link Ext.button.Split Split Button}'s arrow */ /** * @var {number} * The default border-radius for a large {@link #scale} button */ /** * @var {number} * The default border-width for a large {@link #scale} button */ /** * @var {number} * The default padding for a large {@link #scale} button */ /** * @var {number} * The default horizontal padding to add to the left and right of the text element for * a large {@link #scale} button */ /** * @var {number} * The default font-size for a large {@link #scale} button */ /** * @var {number} * The default font-size for a large {@link #scale} button when the cursor is over the button */ /** * @var {number} * The default font-size for a large {@link #scale} button when the button is focused */ /** * @var {number} * The default font-size for a large {@link #scale} button when the button is pressed */ /** * @var {number} * The default font-size for a large {@link #scale} button when the button is focused * and the cursor is over the button */ /** * @var {number} * The default font-size for a large {@link #scale} button when the button is focused * and pressed */ /** * @var {number} * The default font-size for a large {@link #scale} button when the button is disabled */ /** * @var {string} * The default font-weight for a large {@link #scale} button */ /** * @var {string} * The default font-weight for a large {@link #scale} button when the cursor is over the button */ /** * @var {string} * The default font-weight for a large {@link #scale} button when the button is focused */ /** * @var {string} * The default font-weight for a large {@link #scale} button when the button is pressed */ /** * @var {string} * The default font-weight for a large {@link #scale} button when the button is focused * and the cursor is over the button */ /** * @var {string} * The default font-weight for a large {@link #scale} button when the button is focused * and pressed */ /** * @var {string} * The default font-weight for a large {@link #scale} button when the button is disabled */ /** * @var {string} * The default font-family for a large {@link #scale} button */ /** * @var {string} * The default font-family for a large {@link #scale} button when the cursor is over the button */ /** * @var {string} * The default font-family for a large {@link #scale} button when the button is focused */ /** * @var {string} * The default font-family for a large {@link #scale} button when the button is pressed */ /** * @var {string} * The default font-family for a large {@link #scale} button when the button is focused * and the cursor is over the button */ /** * @var {string} * The default font-family for a large {@link #scale} button when the button is focused * and pressed */ /** * @var {string} * The default font-family for a large {@link #scale} button when the button is disabled */ /** * @var {number} * The line-height for the text in a large {@link #scale} button */ /** * @var {number} * The default icon size for a large {@link #scale} button */ /** * @var {number} * The space between a large {@link #scale} button's icon and text */ /** * @var {number} * The default width of a large {@link #scale} button's {@link #cfg-menu} arrow */ /** * @var {number} * The default height of a large {@link #scale} button's {@link #cfg-menu} arrow */ /** * @var {number} * The default width of a large {@link #scale} {@link Ext.button.Split Split Button}'s arrow */ /** * @var {number} * The default height of a large {@link #scale} {@link Ext.button.Split Split Button}'s arrow */ /** * @var {color} * The base color for the `default` button UI */ /** * @var {color} * The base color for the `default` button UI when the cursor is over the button */ /** * @var {color} * The base color for the `default` button UI when the button is focused */ /** * @var {color} * The base color for the `default` button UI when the button is pressed */ /** * @var {color} * The base color for the `default` button UI when the button is focused and the cursor * is over the button */ /** * @var {color} * The base color for the `default` button UI when the button is focused and pressed */ /** * @var {color} * The base color for the `default` button UI when the button is disabled */ /** * @var {color} * The border-color for the `default` button UI */ /** * @var {color} * The border-color for the `default` button UI when the cursor is over the button */ /** * @var {color} * The border-color for the `default` button UI when the button is focused */ /** * @var {color} * The border-color for the `default` button UI when the button is pressed */ /** * @var {color} * The border-color for the `default` button UI when the button is focused and the cursor * is over the button */ /** * @var {color} * The border-color for the `default` button UI when the button is focused and pressed */ /** * @var {color} * The border-color for the `default` button UI when the button is disabled */ /** * @var {color} * The background-color for the `default` button UI */ /** * @var {color} * The background-color for the `default` button UI when the cursor is over the button */ /** * @var {color} * The background-color for the `default` button UI when the button is focused */ /** * @var {color} * The background-color for the `default` button UI when the button is pressed */ /** * @var {color} * The background-color for the `default` button UI when the button is focused and the * cursor is over the button */ /** * @var {color} * The background-color for the `default` button UI when the button is focused and pressed */ /** * @var {color} * The background-color for the `default` button UI when the button is disabled */ /** * @var {string/list} * The background-gradient for the `default` button UI. Can be either the name of a * predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `default` button UI when the cursor is over the button. * Can be either the name of a predefined gradient or a list of color stops. Used as the * `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `default` button UI when the button is focused. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `default` button UI when the button is pressed. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `default` button UI when the button is focused and the * cursor is over the button. Can be either the name of a predefined gradient or a list * of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `default` button UI when the button is focused and * pressed. Can be either the name of a predefined gradient or a list of color stops. * Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `default` button UI when the button is disabled. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. */ /** * @var {color} * The text color for the `default` button UI */ /** * @var {color} * The text color for the `default` button UI when the cursor is over the button */ /** * @var {color} * The text color for the `default` button UI when the button is focused */ /** * @var {color} * The text color for the `default` button UI when the button is pressed */ /** * @var {color} * The text color for the `default` button UI when the button is focused and the cursor * is over the button */ /** * @var {color} * The text color for the `default` button UI when the button is focused and pressed */ /** * @var {color} * The text color for the `default` button UI when the button is disabled */ /** * @var {number/list} * The inner border-width for the `default` button UI */ /** * @var {number/list} * The inner border-width for the `default` button UI when the cursor is over the button */ /** * @var {number/list} * The inner border-width for the `default` button UI when the button is focused */ /** * @var {number/list} * The inner border-width for the `default` button UI when the button is pressed */ /** * @var {number/list} * The inner border-width for the `default` button UI when the button is focused and the * cursor is over the button */ /** * @var {number/list} * The inner border-width for the `default` button UI when the button is focused and pressed */ /** * @var {number/lipressed} * The inner border-width for the `default` button UI when the button is disabled */ /** * @var {color} * The inner border-color for the `default` button UI */ /** * @var {color} * The inner border-color for the `default` button UI when the cursor is over the button */ /** * @var {color} * The inner border-color for the `default` button UI when the button is focused */ /** * @var {color} * The inner border-color for the `default` button UI when the button is pressed */ /** * @var {color} * The inner border-color for the `default` button UI when the button is focused and the * cursor is over the button */ /** * @var {color} * The inner border-color for the `default` button UI when the button is focused and pressed */ /** * @var {color} * The inner border-color for the `default` button UI when the button is disabled */ /** * @var {number} * The body outline width for the `default` button UI when the button is focused */ /** * @var {string} * The body outline-style for the `default` button UI when the button is focused */ /** * @var {color} * The body outline color for the `default` button UI when the button is focused */ /** * @var {color} * The color of the {@link #glyph} icon for the `default` button UI */ /** * @var {color} * The opacity of the {@link #glyph} icon for the `default` button UI */ /** * @var {color} * The border-color for the `default-toolbar` button UI */ /** * @var {color} * The border-color for the `default-toolbar` button UI when the cursor is over the button */ /** * @var {color} * The border-color for the `default-toolbar` button UI when the button is focused */ /** * @var {color} * The border-color for the `default-toolbar` button UI when the button is pressed */ /** * @var {color} * The border-color for the `default-toolbar` button UI when the button is focused and the * cursor is over the button */ /** * @var {color} * The border-color for the `default-toolbar` button UI when the button is focused and * pressed */ /** * @var {color} * The border-color for the `default-toolbar` button UI when the button is disabled */ /** * @var {color} * The background-color for the `default-toolbar` button UI */ /** * @var {color} * The background-color for the `default-toolbar` button UI when the cursor is over the button */ /** * @var {color} * The background-color for the `default-toolbar` button UI when the button is focused */ /** * @var {color} * The background-color for the `default-toolbar` button UI when the button is pressed */ /** * @var {color} * The background-color for the `default-toolbar` button UI when the button is focused * and the cursor is over the button */ /** * @var {color} * The background-color for the `default-toolbar` button UI when the button is focused * and pressed */ /** * @var {color} * The background-color for the `default-toolbar` button UI when the button is disabled */ /** * @var {string/list} * The background-gradient for the `default-toolbar` button UI. Can be either the name of * a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `default-toolbar` button UI when the cursor is over the * button. Can be either the name of a predefined gradient or a list of color stops. Used * as the `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `default-toolbar` button UI when the button is focused. * Can be either the name of a predefined gradient or a list of color stops. Used as the * `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `default-toolbar` button UI when the button is pressed. * Can be either the name of a predefined gradient or a list of color stops. Used as the * `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `default-toolbar` button UI when the button is focused * and the cursor is over the button. Can be either the name of a predefined gradient or a * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `default-toolbar` button UI when the button is focused * and pressed. Can be either the name of a predefined gradient or a list of color stops. * Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `default-toolbar` button UI when the button is disabled. * Can be either the name of a predefined gradient or a list of color stops. Used as the * `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {color} * The text color for the `default-toolbar` button UI */ /** * @var {color} * The text color for the `default-toolbar` button UI when the cursor is over the button */ /** * @var {color} * The text color for the `default-toolbar` button UI when the button is focused */ /** * @var {color} * The text color for the `default-toolbar` button UI when the button is pressed */ /** * @var {color} * The text color for the `default-toolbar` button UI when the button is focused and the * cursor is over the button */ /** * @var {color} * The text color for the `default-toolbar` button UI when the button is focused and pressed */ /** * @var {color} * The text color for the `default-toolbar` button UI when the button is disabled */ /** * @var {number/list} * The inner border-width for the `default-toolbar` button UI */ /** * @var {number/list} * The inner border-width for the `default-toolbar` button UI when the cursor is over the button */ /** * @var {number/list} * The inner border-width for the `default-toolbar` button UI when the button is focused */ /** * @var {number/list} * The inner border-width for the `default-toolbar` button UI when the button is pressed */ /** * @var {number/list} * The inner border-width for the `default-toolbar` button UI when the button is focused * and the cursor is over the button */ /** * @var {number/list} * The inner border-width for the `default-toolbar` button UI when the button is focused * and pressed */ /** * @var {number/list} * The inner border-width for the `default-toolbar` button UI when the button is disabled */ /** * @var {color} * The inner border-color for the `default-toolbar` button UI */ /** * @var {color} * The inner border-color for the `default-toolbar` button UI when the cursor is over the button */ /** * @var {color} * The inner border-color for the `default-toolbar` button UI when the button is focused */ /** * @var {color} * The inner border-color for the `default-toolbar` button UI when the button is pressed */ /** * @var {color} * The inner border-color for the `default-toolbar` button UI when the button is focused * and the cursor is over the button */ /** * @var {color} * The inner border-color for the `default-toolbar` button UI when the button is focused * and pressed */ /** * @var {color} * The inner border-color for the `default-toolbar` button UI when the button is disabled */ /** * @var {number} * The body outline width for the `default-toolbar` button UI when the button is focused */ /** * @var {string} * The body outline-style for the `default-toolbar` button UI when the button is focused */ /** * @var {color} * The body outline color for the `default-toolbar` button UI when the button is focused */ /** * @var {color} * The color of the {@link #glyph} icon for the `default-toolbar` button UI */ /** * @var {color} * The opacity of the {@link #glyph} icon for the `default-toolbar` button UI */ /** * @var {boolean} $button-include-ui-menu-arrows * True to use a different image url for the menu button arrows for each button UI */ /** * @var {boolean} $button-include-ui-split-arrows * True to use a different image url for the split button arrows for each button UI */ /** * @var {boolean} $button-include-split-over-arrows * True to include different split arrows for buttons' hover state. */ /** * @var {boolean} $button-include-split-noline-arrows * True to include "noline" split arrows for buttons in their default state. */ /** * @var {boolean} $button-toolbar-include-split-noline-arrows * True to include "noline" split arrows for toolbar buttons in their default state. */ /** * @var {number} $button-opacity-disabled * opacity to apply to the button's main element when the buton is disabled */ /** * @var {number} $button-inner-opacity-disabled * opacity to apply to the button's inner elements (icon and text) when the buton is disabled */ /** * @var {number} $button-toolbar-opacity-disabled * opacity to apply to the toolbar button's main element when the button is disabled */ /** * @var {number} $button-toolbar-inner-opacity-disabled * opacity to apply to the toolbar button's inner elements (icon and text) when the buton is disabled */ /** * @var {boolean} * True to include the "default" button UI */ /** * @var {boolean} * True to include the "default" button UI for "small" scale buttons */ /** * @var {boolean} * True to include the "default" button UI for "medium" scale buttons */ /** * @var {boolean} * True to include the "default" button UI for "large" scale buttons */ /** * @var {boolean} * True to include the "default" button UI for buttons rendered inside a grid cell (Slightly smaller height than default) */ /** * @var {boolean} * True to include the "default-toolbar" button UI */ /** * @var {boolean} * True to include the "default-toolbar" button UI for "small" scale buttons */ /** * @var {boolean} * True to include the "default-toolbar" button UI for "medium" scale buttons */ /** * @var {boolean} * True to include the "default-toolbar" button UI for "large" scale buttons */ /** * @var {number} * The default width for a grid cell button's {@link #cfg-menu} arrow */ /** * @var {number} * The default height for a grid cell button's {@link #cfg-menu} arrow */ /** * @var {number} * The default width a grid cell {@link Ext.button.Split Split Button}'s arrow */ /** * @var {number} * The default height a grid cell {@link Ext.button.Split Split Button}'s arrow */ /** * @var {number} * The default space between a grid cell button's icon and text */ /** * @var {number} * The default border-radius for a grid cell button */ /** * @var {number} * The default border-width for a grid cell button */ /** * @var {number} * The default padding for a grid cell button */ /** * @var {number} * The default horizontal padding to add to the left and right of the text element for * a grid cell button */ /** * @var {number} * The default font-size for a grid cell button */ /** * @var {number} * The default font-size for a grid cell button when the cursor is over the button */ /** * @var {number} * The default font-size for a grid cell button when the button is focused */ /** * @var {number} * The default font-size for a grid cell button when the button is pressed */ /** * @var {number} * The default font-size for a grid cell button when the button is focused and the cursor * is over the button */ /** * @var {number} * The default font-size for a grid cell button when the button is focused and pressed */ /** * @var {number} * The default font-size for a grid cell button when the button is disabled */ /** * @var {string} * The default font-weight for a grid cell button */ /** * @var {string} * The default font-weight for a grid cell button when the cursor is over the button */ /** * @var {string} * The default font-weight for a grid cell button when the button is focused */ /** * @var {string} * The default font-weight for a grid cell button when the button is pressed */ /** * @var {string} * The default font-weight for a grid cell button when the button is focused and the * cursor is over the button */ /** * @var {string} * The default font-weight for a grid cell button when the button is focused and pressed */ /** * @var {string} * The default font-weight for a grid cell button when the button is disabled */ /** * @var {string} * The default font-family for a grid cell button */ /** * @var {string} * The default font-family for a grid cell button when the cursor is over the button */ /** * @var {string} * The default font-family for a grid cell button when the button is focused */ /** * @var {string} * The default font-family for a grid cell button when the button is pressed */ /** * @var {string} * The default font-family for a grid cell button when the button is focused and the * cursor is over the button */ /** * @var {string} * The default font-family for a grid cell button when the button is focused and pressed */ /** * @var {string} * The default font-family for a grid cell button when the button is disabled */ /** * @var {number} * The line-height for the text in a grid cell button */ /** * @var {number} * The default icon size for a grid cell button */ /** * @var {color} * The border-color for the `cell` button UI */ /** * @var {color} * The border-color for the `cell` button UI when the cursor is over the button */ /** * @var {color} * The border-color for the `cell` button UI when the button is focused */ /** * @var {color} * The border-color for the `cell` button UI when the button is pressed */ /** * @var {color} * The border-color for the `cell` button UI when the button is focused and the cursor * is over the button */ /** * @var {color} * The border-color for the `cell` button UI when the button is focused and pressed */ /** * @var {color} * The border-color for the `cell` button UI when the button is disabled */ /** * @var {color} * The background-color for the `cell` button UI */ /** * @var {color} * The background-color for the `cell` button UI when the cursor is over the button */ /** * @var {color} * The background-color for the `cell` button UI when the button is focused */ /** * @var {color} * The background-color for the `cell` button UI when the button is pressed */ /** * @var {color} * The background-color for the `cell` button UI when the button is focused and the cursor * is over the button */ /** * @var {color} * The background-color for the `cell` button UI when the button is focused and pressed */ /** * @var {color} * The background-color for the `cell` button UI when the button is disabled */ /** * @var {string/list} * The background-gradient for the `cell` button UI. Can be either the name of a * predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `cell` button UI when the cursor is over the button. * Can be either the name of a predefined gradient or a list of color stops. Used as the * `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `cell` button UI when the button is focused. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `cell` button UI when the button is pressed. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `cell` button UI when the button is focused and the * cursor is over the button. Can be either the name of a predefined gradient or a list * of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `cell` button UI when the button is focused and pressed. * Can be either the name of a predefined gradient or a list of color stops. Used as the * `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the `cell` button UI when the button is disabled. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. */ /** * @var {color} * The text color for the `cell` button UI */ /** * @var {color} * The text color for the `cell` button UI when the cursor is over the button */ /** * @var {color} * The text color for the `cell` button UI when the button is focused */ /** * @var {color} * The text color for the `cell` button UI when the button is pressed */ /** * @var {color} * The text color for the `cell` button UI when the button is focused and the cursor is * over the button */ /** * @var {color} * The text color for the `cell` button UI when the button is focused and pressed */ /** * @var {color} * The text color for the `cell` button UI when the button is disabled */ /** * @var {number/list} * The inner border-width for the `cell` button UI */ /** * @var {number/list} * The inner border-width for the `cell` button UI when the cursor is over the button */ /** * @var {number/list} * The inner border-width for the `cell` button UI when the button is focused */ /** * @var {number/list} * The inner border-width for the `cell` button UI when the button is pressed */ /** * @var {number/list} * The inner border-width for the `cell` button UI when the button is focused and the * cursor is over the button */ /** * @var {number/list} * The inner border-width for the `cell` button UI when the button is focused and pressed */ /** * @var {number/list} * The inner border-width for the `cell` button UI when the button is disabled */ /** * @var {color} * The inner border-color for the `cell` button UI */ /** * @var {color} * The inner border-color for the `cell` button UI when the cursor is over the button */ /** * @var {color} * The inner border-color for the `cell` button UI when the button is focused */ /** * @var {color} * The inner border-color for the `cell` button UI when the button is pressed */ /** * @var {color} * The inner border-color for the `cell` button UI when the button is focused and the * cursor is over the button */ /** * @var {color} * The inner border-color for the `cell` button UI when the button is focused and pressed */ /** * @var {color} * The inner border-color for the `cell` button UI when the button is disabled */ /** * @var {number} * The body outline width for the `cell` button UI when the button is focused */ /** * @var {string} * The body outline-style for the `cell` button UI when the button is focused */ /** * @var {color} * The body outline color for the `cell` button UI when the button is focused */ /** * @var {color} * The color of the {@link #glyph} icon for the `cell` button UI */ /** * @var {color} * The opacity of the {@link #glyph} icon for the `cell` button UI */ /** * @var {number} $button-grid-cell-opacity-disabled * opacity to apply to the button's main element when the button is disabled */ /** * @var {number} $button-grid-cell-inner-opacity-disabled * opacity to apply to the button's inner elements (icon and text) when the buton is disabled */ /** * @class Ext.tab.Tab */ /** * @var {color} * The base color of Tabs */ /** * @var {color} * The base color of focused Tabs */ /** * @var {color} * The base color of hovered Tabs */ /** * @var {color} * The base color of the active Tabs */ /** * @var {color} * The base color of focused hovered Tabs */ /** * @var {color} * The base color of the active Tab when focused */ /** * @var {color} * The base color of disabled Tabs */ /** * @var {color} * The text color of Tabs */ /** * @var {color} * The text color of focused Tabs */ /** * @var {color} * The text color of hovered Tabs */ /** * @var {color} * The text color of the active Tab */ /** * @var {color} * The text color of focused hovered Tabs */ /** * @var {color} * The text color of the active Tab when focused */ /** * @var {color} * The text color of disabled Tabs */ /** * @var {number} * The font-size of Tabs */ /** * @var {number} * The font-size of focused Tabs */ /** * @var {number} * The font-size of hovered Tabs */ /** * @var {number} * The font-size of the active Tab */ /** * @var {number} * The font-size of focused hovered Tabs */ /** * @var {number} * The font-size of the active Tab when focused */ /** * @var {number} * The font-size of disabled Tabs */ /** * @var {string} * The font-family of Tabs */ /** * @var {string} * The font-family of focused Tabs */ /** * @var {string} * The font-family of hovered Tabs */ /** * @var {string} * The font-family of the active Tab */ /** * @var {string} * The font-family of focused hovered Tabs */ /** * @var {string} * The font-family of the active Tab when focused */ /** * @var {string} * The font-family of disabled Tabs */ /** * @var {string} * The font-weight of Tabs */ /** * @var {string} * The font-weight of focused Tabs */ /** * @var {string} * The font-weight of hovered Tabs */ /** * @var {string} * The font-weight of the active Tab */ /** * @var {string} * The font-weight of focused hovered Tabs */ /** * @var {string} * The font-weight of the active Tab when focused */ /** * @var {string} * The font-weight of disabled Tabs */ /** * @var {string} * The Tab cursor */ /** * @var {string} * The cursor of disabled Tabs */ /** * @var {string/list} * The background-gradient for Tabs. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for focused Tabs. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for hovered Tabs. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the active Tab. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for focused hovered Tabs. Can be either the name of a * predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for the active Tab when focused. Can be either the name of a * predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {string/list} * The background-gradient for disabled Tabs. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {list} * The border-radius of Tabs */ /** * @var {number/list} * The border-width of Tabs */ /** * @var {number/list} * The border-width of focused Tabs */ /** * @var {number/list} * The border-width of hovered Tabs */ /** * @var {number/list} * The border-width of active Tabs */ /** * @var {number/list} * The border-width of focused hovered Tabs */ /** * @var {number/list} * The border-width of active Tabs when focused */ /** * @var {number/list} * The border-width of disabled Tabs */ /** * @var {number/list} * The inner border-width of Tabs */ /** * @var {number/list} * The inner border-width of focused Tabs */ /** * @var {number/list} * The inner border-width of hovered Tabs */ /** * @var {number/list} * The inner border-width of active Tabs */ /** * @var {number/list} * The inner border-width of focused hovered Tabs */ /** * @var {number/list} * The inner border-width of active Tabs when focused */ /** * @var {number/list} * The inner border-width of disabled Tabs */ /** * @var {color} * The inner border-color of Tabs */ /** * @var {color} * The inner border-color of focused Tabs */ /** * @var {color} * The inner border-color of hovered Tabs */ /** * @var {color} * The inner border-color of active Tabs */ /** * @var {color} * The inner border-color of focused hovered Tabs */ /** * @var {color} * The inner border-color of active Tabs when focused */ /** * @var {color} * The inner border-color of disabled Tabs */ /** * @var {boolean} * `true` to suppress the inner border of the tab on the side adjacent to the tab strip */ /** * @var {boolean} * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is focused */ /** * @var {boolean} * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is hovered */ /** * @var {boolean} * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is active */ /** * @var {boolean} * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is focused and hovered */ /** * @var {boolean} * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is focused and active */ /** * @var {boolean} * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is disabled */ /** * @var {number} * The body outline width of focused Tabs */ /** * @var {string} * The body outline-style of focused Tabs */ /** * @var {color} * The body outline color of focused Tabs */ /** * @var {color} * The border-color of Tabs */ /** * @var {color} * The border-color of focused Tabs */ /** * @var {color} * The border-color of hovered Tabs */ /** * @var {color} * The border-color of the active Tab */ /** * @var {color} * The border-color of focused hovered Tabs */ /** * @var {color} * The border-color of the active Tab when focused */ /** * @var {color} * The border-color of disabled Tabs */ /** * @var {number/list} * The padding of Tabs */ /** * @var {number} * The horizontal padding to add to the left and right of the Tab's text element */ /** * @var {number/list} * The margin of Tabs. Typically used to add horizontal space between the tabs. */ /** * @var {number} * The width of the Tab close icon */ /** * @var {number} * The height of the Tab close icon */ /** * @var {number} * The distance to offset the Tab close icon from the top of the tab */ /** * @var {number} * The distance to offset the Tab close icon from the right of the tab */ /** * @var {number} * the space in between the text and the close button */ /** * @var {number} * The opacity of the Tab close icon */ /** * @var {number} * The opacity of the Tab close icon when hovered */ /** * @var {number} * The opacity of the Tab close icon when the Tab is disabled */ /** * @var {boolean} * True to change the x background-postition of the close icon background image on hover * to allow for a horizontally aligned background image sprite */ /** * @var {boolean} * True to change the x background-postition of the close icon background image on click * to allow for a horizontally aligned background image sprite */ /** * @var {number} * The width of Tab icons */ /** * @var {number} * The height of Tab icons */ /** * @var {number} * The line-height of Tabs */ /** * @var {number} * The space between the Tab icon and the Tab text */ /** * @var {number} * The background-position of Tab icons */ /** * @var {color} * The color of Tab glyph icons */ /** * @var {color} * The color of a Tab glyph icon when the Tab is focused */ /** * @var {color} * The color of a Tab glyph icon when the Tab is hovered */ /** * @var {color} * The color of a Tab glyph icon when the Tab is active */ /** * @var {color} * The color of a Tab glyph icon when the Tab is focused and hovered */ /** * @var {color} * The color of a Tab glyph icon when the Tab is focused and active */ /** * @var {color} * The color of a Tab glyph icon when the Tab is disabled */ /** * @var {number} * The opacity of a Tab glyph icon */ /** * @var {number} * The opacity of a Tab glyph icon when the Tab is disabled */ /** * @var {number} * opacity to apply to the tab's main element when the tab is disabled */ /** * @var {number} * opacity to apply to the tab's text element when the tab is disabled */ /** * @var {number} * opacity to apply to the tab's icon element when the tab is disabled */ /** * @var {boolean} * True to include the "default" tab UI */ /** * @class Ext.tab.Bar */ /** * @var {number/list} * The padding of the Tab Bar */ /** * @var {color} * The base color of the Tab Bar */ /** * @var {string/list} * The background-gradient of the Tab Bar. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {color} * The border-color of the Tab Bar */ /** * @var {number/list} * The border-width of the Tab Bar */ /** * @var {number} * The height of the Tab Bar strip */ /** * @var {color} * The border-color of the Tab Bar strip */ /** * @var {color} * The background-color of the Tab Bar strip */ /** * @var {number/list} * The border-width of the Tab Bar strip */ /** * @var {number} * The width of the Tab Bar scrollers */ /** * @var {number} * The height of the Tab Bar scrollers */ /** * @var {number/list} * The margin of "top" Tab Bar scroller buttons */ /** * @var {number/list} * The margin of "right" Tab Bar scroller buttons */ /** * @var {number/list} * The margin of "bottom" Tab Bar scroller buttons */ /** * @var {number/list} * The margin of "left" Tab Bar scroller buttons */ /** * @var {string} * The cursor of the Tab Bar scrollers */ /** * @var {string} * The cursor of disabled Tab Bar scrollers */ /** * @var {number} * The opacity of Tab Bar scrollers */ /** * @var {number} * The opacity of hovered Tab Bar scrollers */ /** * @var {number} * The opacity of pressed Tab Bar scrollers */ /** * @var {number} * The opacity of disabled Tab Bar scrollers */ /** * @var {boolean} * `true` to use classic-style scroller buttons. When `true` scroller buttons are given their * hover state by changing their background-position, When `false` scroller buttons are * given their hover state by applying opacity. */ /** * @var {boolean} * true to include separate scroller icons for "plain" tabbars */ /** * @var {boolean} * if true, the tabbar will use symmetrical scroller icons. Top and bottom tabbars * will share icons, and Left and right will share icons. */ /** * @var {boolean} * True to include the "default" tabbar UI */ /** * @class Ext.window.Window */ /** * @var {color} * The base color of Windows */ /** * @var {number} * The padding of Windows */ /** * @var {number} * The border-radius of Windows */ /** * @var {number} * The border-width of Windows */ /** * @var {color} * The border-color of Windows */ /** * @var {color} * The inner border-color of Windows */ /** * @var {number} * The inner border-width of Windows */ /** * @var {color} * The background-color of Windows */ /** * @var {number} * The body border-width of Windows */ /** * @var {string} * The body border-style of Windows */ /** * @var {color} * The body border-color of Windows */ /** * @var {color} * The body background-color of Windows */ /** * @var {color} * The body text color of Windows */ /** * @var {number/list} * The padding of Window Headers */ /** * @var {number} * The font-size of Window Headers */ /** * @var {number} * The line-height of Window Headers */ /** * @var {color} * The text color of Window Headers */ /** * @var {color} * The background-color of Window Headers */ /** * @var {string} * The font-weight of Window Headers */ /** * @var {number} * The space between the Window {@link Ext.panel.Tool Tools} */ /** * @var {string} * The background sprite to use for Window {@link Ext.panel.Tool Tools} */ /** * @var {string} * The font-family of Window Headers */ /** * @var {number/list} * The padding of the Window Header's text element */ /** * @var {string} * The text-transform of Window Headers */ /** * @var {number} * The width of the Window Header icon */ /** * @var {number} * The height of the Window Header icon */ /** * @var {number} * The space between the Window Header icon and text */ /** * @var {list} * The background-position of the Window Header icon */ /** * @var {color} * The color of the Window Header glyph icon */ /** * @var {number} * The opacity of the Window Header glyph icon */ /** * @var {number} * The border-width of Window Headers */ /** * @var {color} * The inner border-color of Window Headers */ /** * @var {number} * The inner border-width of Window Headers */ /** * @var {boolean} $ui-force-header-border * True to force the window header to have a border on the side facing the window body. * Overrides dock layout's border management border removal rules. */ /** * @var {number} * The opacity of ghost Windows while dragging */ /** * @var {boolean} * True to include neptune style border management rules. */ /** * @var {color} * The color to apply to the border that wraps the body and docked items. The presence of * the wrap border is controlled by the {@link #border} config. Only applicable when * `$window-include-border-management-rules` is `true`. */ /** * @var {number} * The width to apply to the border that wraps the body and docked items. The presence of * the wrap border is controlled by the {@link #border} config. Only applicable when * `$window-include-border-management-rules` is `true`. */ /** * @var {boolean} * True to include the "default" window UI */ /** * @var {boolean} * True to ignore the frame padding. By default, the frame mixin adds extra padding when * border radius is larger than border width. This is intended to prevent the content * from colliding with the rounded corners of the frame. Set this to true to prevent * the window frame from adding this extra padding. */ /** * @var {number} * The default font-size of the Window body */ /** * @var {string} * The default font-weight of the Window body */ /** * @var {string} * The default font-family of the Window body */ /** * @class Ext.tip.Tip */ /** * @var {color} * The background-color of the Tip */ /** * @var {string/list} * The background-gradient of the Tip. Can be either the name of a predefined gradient or a * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {color} * The text color of the Tip body */ /** * @var {number} * The font-size of the Tip body */ /** * @var {string} * The font-weight of the Tip body */ /** * @var {number/list} * The padding of the Tip body */ /** * @var {color} * The text color of any anchor tags inside the Tip body */ /** * @var {color} * The text color of the Tip header */ /** * @var {number} * The font-size of the Tip header */ /** * @var {string} * The font-weight of the Tip header */ /** * @var {number/list} * The padding of the Tip header's body element */ /** * @var {color} * The border-color of the Tip */ /** * @var {number} * The border-width of the Tip */ /** * @var {number} * The border-radius of the Tip */ /** * @var {color} * The inner border-color of the form field error Tip */ /** * @var {number} * The inner border-width of the form field error Tip */ /** * @var {color} * The border-color of the form field error Tip */ /** * @var {number} * The border-radius of the form field error Tip */ /** * @var {number} * The border-width of the form field error Tip */ /** * @var {color} * The background-color of the form field error Tip */ /** * @var {number/list} * The padding of the form field error Tip's body element */ /** * @var {color} * The text color of the form field error Tip's body element */ /** * @var {number} * The font-size of the form field error Tip's body element */ /** * @var {string} * The font-weight of the form field error Tip's body element */ /** * @var {color} * The color of anchor tags in the form field error Tip's body element */ /** * @var {number} * The space between {@link Ext.panel.Tool Tools} in the header */ /** * @var {string} * The sprite to use for the header {@link Ext.panel.Tool Tools} */ /** * @var {boolean} * True to include the "default" tip UI */ /** * @var {boolean} * True to include the "form-invalid" tip UI */ /** * @class Ext.container.ButtonGroup */ /** * @var {color} * The background-color of the ButtonGroup */ /** * @var {color} * The border-color of the ButtonGroup */ /** * @var {number} * The border-radius of the ButtonGroup */ /** * @var {number} * The border-radius of framed ButtonGroups */ /** * @var {number} * The border-width of the ButtonGroup */ /** * @var {number/list} * The body padding of the ButtonGroup */ /** * @var {number/list} * The inner border-width of the ButtonGroup */ /** * @var {color} * The inner border-color of the ButtonGroup */ /** * @var {number/list} * The margin of the header element. Used to add space around the header. */ /** * @var {number} * The font-size of the header */ /** * @var {number} * The font-weight of the header */ /** * @var {number} * The font-family of the header */ /** * @var {number} * The line-height of the header */ /** * @var {number} * The text color of the header */ /** * @var {number} * The padding of the header */ /** * @var {number} * The background-color of the header */ /** * @var {number} * The border-spacing to use on the table layout element */ /** * @var {number} * The background-color of framed ButtonGroups */ /** * @var {number} * The border-width of framed ButtonGroups */ /** * @var {string} * Sprite image to use for header {@link Ext.panel.Tool Tools} */ /** * @var {boolean} * True to include the "default" button group UI */ /** * @var {boolean} * True to include the "default-framed" button group UI */ /** * @class Ext.window.MessageBox */ /** * @var {color} * The background-color of the MessageBox body */ /** * @var {number} * The border-width of the MessageBox body */ /** * @var {color} * The border-color of the MessageBox body */ /** * @var {string} * The border-style of the MessageBox body */ /** * @var {list} * The background-position of the MessageBox icon */ /** * @var {number} * The size of the MessageBox icon */ /** * @var {number} * The amount of space between the MessageBox icon and the message text */ /** * @class Ext.form.CheckboxGroup */ /** * @var {number/list} * The padding of the CheckboxGroup body element */ /** * @var {color} * The border color of the CheckboxGroup body element when in an invalid state. */ /** * @var {string} * The border style of the CheckboxGroup body element when in an invalid state. */ /** * @var {number} * The border width of the CheckboxGroup body element when in an invalid state. */ /** * @var {string} * The background image of the CheckboxGroup body element when in an invalid state. */ /** * @var {string} * The background-repeat of the CheckboxGroup body element when in an invalid state. */ /** * @var {string} * The background-position of the CheckboxGroup body element when in an invalid state. */ /** * @var {boolean} * True to include the "default" checkboxgroup UI */ /** * @class Ext.form.FieldSet */ /** * @var {number} * The font-size of the FieldSet header */ /** * @var {string} * The font-weight of the FieldSet header */ /** * @var {string} * The font-family of the FieldSet header */ /** * @var {number/string} * The line-height of the FieldSet header */ /** * @var {color} * The text color of the FieldSet header */ /** * @var {number} * The border-width of the FieldSet */ /** * @var {string} * The border-style of the FieldSet */ /** * @var {color} * The border-color of the FieldSet */ /** * @var {number} * The border radius of FieldSet elements. */ /** * @var {number/list} * The FieldSet's padding */ /** * @var {number/list} * The FieldSet's margin */ /** * @var {number/list} * The padding to apply to the FieldSet's header */ /** * @var {number} * The size of the FieldSet's collapse tool */ /** * @var {number/list} * The margin to apply to the FieldSet's collapse tool */ /** * @var {number/list} * The padding to apply to the FieldSet's collapse tool */ /** * @var {string} $fieldset-collapse-tool-background-image * The background-image to use for the collapse tool. If 'none' the default tool * sprite will be used. Defaults to 'none'. */ /** * @var {number} * The opacity of the FieldSet's collapse tool */ /** * @var {number} * The opacity of the FieldSet's collapse tool when hovered */ /** * @var {number} * The opacity of the FieldSet's collapse tool when pressed */ /** * @var {number/list} * The margin to apply to the FieldSet's checkbox (for FieldSets that use * {@link #checkboxToggle}) */ /** * @var {boolean} * True to include the "default" fieldset UI */ /** * @class Ext.toolbar.Paging */ /** * @var {boolean} * True to include different icons when the paging toolbar buttons are disabled. */ /** * @class Ext.view.BoundList */ /** * @var {color} * The background-color of the BoundList */ /** * @var {color} * The border-color of the BoundList */ /** * @var {number} * The border-width of the BoundList */ /** * @var {string} * The border-style of the BoundList */ /** * @var {number} * The height of BoundList items */ /** * @var {string} * The font family of the BoundList items */ /** * @var {number} * The font size of the BoundList items */ /** * @var {string} * The font-weight of the BoundList items */ /** * @var {number/list} * The padding of BoundList items */ /** * @var {number} * The border-width of BoundList items */ /** * @var {string} * The border-style of BoundList items */ /** * @var {color} * The border-color of BoundList items */ /** * @var {color} * The border-color of hovered BoundList items */ /** * @var {color} * The border-color of selected BoundList items */ /** * @var {color} * The background-color of hovered BoundList items */ /** * @var {color} * The background-color of selected BoundList items */ /** * @class Ext.picker.Date */ /** * @var {number} * The border-width of the DatePicker */ /** * @var {string} * The border-style of the DatePicker */ /** * @var {color} * The background-color of the DatePicker */ /** * @var {string} * The background-image of the DatePicker next arrow */ /** * @var {list} * The background-position of the DatePicker next arrow */ /** * @var {string} * The background-image of the DatePicker previous arrow */ /** * @var {list} * The background-position of the DatePicker previous arrow */ /** * @var {number} * The width of DatePicker arrows */ /** * @var {number} * The height of DatePicker arrows */ /** * @var {string} * The type of cursor to display when the cursor is over a DatePicker arrow */ /** * @var {number} * The opacity of the DatePicker arrows */ /** * @var {number} * The opacity of the DatePicker arrows when hovered */ /** * @var {string/list} * The Date Picker header background gradient. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {number/list} * The padding of the Date Picker header */ /** * @var {color} * The color of the Date Picker month button */ /** * @var {number} * The width of the arrow on the Date Picker month button */ /** * @var {string} * The background-image of the arrow on the Date Picker month button */ /** * @var {boolean} * True to render the month button as transparent */ /** * @var {string} * The text-align of the Date Picker header */ /** * @var {number} * The height of Date Picker items */ /** * @var {number} * The width of Date Picker items */ /** * @var {number/list} * The padding of Date Picker items */ /** * @var {string} * The font-family of Date Picker items */ /** * @var {number} * The font-size of Date Picker items */ /** * @var {string} * The font-weight of Date Picker items */ /** * @var {string} * The text-align of Date Picker items */ /** * @var {color} * The text color of Date Picker items */ /** * @var {string} * The type of cursor to display when the cursor is over a Date Picker item */ /** * @var {string} * The font-family of Date Picker column headers */ /** * @var {number} * The font-size of Date Picker column headers */ /** * @var {string} * The font-weight of Date Picker column headers */ /** * @var {string/list} * The background-gradient of Date Picker column headers. Can be either the name of a * predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {string} * The border-style of Date Picker column headers */ /** * @var {number} * The border-width of Date Picker column headers */ /** * @var {string} * The text-align of Date Picker column headers */ /** * @var {number} * The height of Date Picker column headers */ /** * @var {number/list} * The padding of Date Picker column headers */ /** * @var {number} * The border-width of Date Picker items */ /** * @var {string} * The border-style of Date Picker items */ /** * @var {color} * The border-color of Date Picker items */ /** * @var {string} * The border-style of today's date on the Date Picker */ /** * @var {string} * The border-style of the selected item */ /** * @var {string} * The font-weight of the selected item */ /** * @var {color} * The text color of the items in the previous and next months */ /** * @var {string} * The type of cursor to display when the cursor is over a disabled item */ /** * @var {color} * The text color of disabled Date Picker items */ /** * @var {color} * The background-color of disabled Date Picker items */ /** * @var {color} * The background-color of the Date Picker footer */ /** * @var {string/list} * The background-gradient of the Date Picker footer. Can be either the name of a * predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {number/list} * The border-width of the Date Picker footer */ /** * @var {string} * The border-style of the Date Picker footer */ /** * @var {string} * The text-align of the Date Picker footer */ /** * @var {number/list} * The padding of the Date Picker footer */ /** * @var {number} * The space between the footer buttons */ /** * @var {color} * The border-color of the Month Picker */ /** * @var {number} * The border-width of the Month Picker */ /** * @var {string} * The border-style of the Month Picker */ /** * @var {color} * The text color of Month Picker items */ /** * @var {color} * The text color of Month Picker items */ /** * @var {color} * The border-color of Month Picker items */ /** * @var {string} * The border-style of Month Picker items */ /** * @var {string} * The font-family of Month Picker items */ /** * @var {number} * The font-size of Month Picker items */ /** * @var {string} * The font-weight of Month Picker items */ /** * @var {number/list} * The margin of Month Picker items */ /** * @var {string} * The text-align of Month Picker items */ /** * @var {number} * The height of Month Picker items */ /** * @var {string} * The type of cursor to display when the cursor is over a Month Picker item */ /** * @var {color} * The background-color of hovered Month Picker items */ /** * @var {color} * The background-color of selected Month Picker items */ /** * @var {string} * The border-style of selected Month Picker items */ /** * @var {color} * The border-color of selected Month Picker items */ /** * @var {number} * The height of the Month Picker year navigation buttons */ /** * @var {number} * The width of the Month Picker year navigation buttons */ /** * @var {string} * The type of cursor to display when the cursor is over a Month Picker year navigation button */ /** * @var {number} * The opacity of the Month Picker year navigation buttons */ /** * @var {number} * The opacity of hovered Month Picker year navigation buttons */ /** * @var {string} * The background-image of the Month Picker next year navigation button */ /** * @var {string} * The background-image of the Month Picker previous year navigation button */ /** * @var {list} * The background-poisition of the Month Picker next year navigation button */ /** * @var {list} * The background-poisition of the hovered Month Picker next year navigation button */ /** * @var {list} * The background-poisition of the Month Picker previous year navigation button */ /** * @var {list} * The background-poisition of the hovered Month Picker previous year navigation button */ /** * @var {string} * The border-style of the Month Picker separator */ /** * @var {number} * The border-width of the Month Picker separator */ /** * @var {color} * The border-color of the Month Picker separator */ /** * @var {number/list} * The margin of Month Picker items when the datepicker does not have footer buttons */ /** * @var {number} * The height of Month Picker items when the datepicker does not have footer buttons */ /** * @class Ext.picker.Color */ /** * @var {color} * The background-color of Color Pickers */ /** * @var {color} * The border-color of Color Pickers */ /** * @var {number} * The border-width of Color Pickers */ /** * @var {string} * The border-style of Color Pickers */ /** * @var {number} * The number of columns to display in the Color Picker */ /** * @var {number} * The number of rows to display in the Color Picker */ /** * @var {number} * The height of each Color Picker item */ /** * @var {number} * The width of each Color Picker item */ /** * @var {number} * The padding of each Color Picker item */ /** * @var {string} * The cursor to display when the mouse is over a Color Picker item */ /** * @var {color} * The border-color of Color Picker items */ /** * @var {number} * The border-width of Color Picker items */ /** * @var {string} * The border-style of Color Picker items */ /** * @var {color} * The border-color of hovered Color Picker items */ /** * @var {color} * The background-color of Color Picker items */ /** * @var {color} * The background-color of hovered Color Picker items */ /** * @var {color} * The border-color of the selected Color Picker item */ /** * @var {color} * The background-color of the selected Color Picker item */ /** * @var {color} * The inner border-color of Color Picker items */ /** * @var {number} * The inner border-width of Color Picker items */ /** * @var {string} * The inner border-style of Color Picker items */ /** * @class Ext.form.field.HtmlEditor */ /** * @var {number} * The border-width of the HtmlEditor */ /** * @var {color} * The border-color of the HtmlEditor */ /** * @var {color} * The background-color of the HtmlEditor */ /** * @var {number} * The size of the HtmlEditor toolbar icons */ /** * @var {number} * The font-size of the HtmlEditor's font selection control */ /** * @var {number} * The font-family of the HtmlEditor's font selection control */ /** * @class Ext.grid.column.Action */ /** * @var {number} * The height of action column icons */ /** * @var {number} * The width of action column icons */ /** * @var {string} * The type of cursor to display when the cursor is over an action column icon */ /** * @var {number} * The opacity of disabled action column icons */ /** * @var {number} * The amount of padding to add to the left and right of the action column cell */ /** * @class Ext.grid.column.Check */ /** * @var {number} * Opacity of disabled CheckColumns */ /** * @class Ext.grid.column.RowNumberer */ /** * @var {number} * The horizontal space before the number in the RowNumberer cell */ /** * @var {number} * The horizontal space after the number in the RowNumberer cell */ /** * @class Ext.form.field.Base */ /** * @var {number} $form-field-height * Height for form fields. */ /** * @var {number} $form-toolbar-field-height * Height for form fields in toolbar. */ /** * @var {number} $form-field-padding * Padding around form fields. */ /** * @var {number} $form-field-font-size * Font size for form fields. */ /** * @var {string} $form-field-font-family * Font family for form fields. */ /** * @var {string} $form-field-font-weight * Font weight for form fields. */ /** * @var {number} $form-toolbar-field-font-size * Font size for toolbar form fields. */ /** * @var {string} $form-toolbar-field-font-family * Font family for toolbar form fields. */ /** * @var {string} $form-toolbar-field-font-weight * Font weight for toolbar form fields. */ /** * @var {color} $form-field-color * Text color for form fields. */ /** * @var {color} $form-field-empty-color * Text color for empty form fields. */ /** * @var {color} $form-field-border-color * Border color for form fields. */ /** * @var {number} $form-field-border-width * Border width for form fields. */ /** * @var {string} $form-field-border-style * Border style for form fields. */ /** * @var {color} $form-field-focus-border-color * Border color for focused form fields. * * In the default Neptune color scheme this is the same as $base-highlight-color * but it does not change automatically when one changes the $base-color. This is because * checkboxes and radio buttons have this focus color hard coded into their background * images. If this color is changed, you should also modify checkbox and radio button * background images to match */ /** * @var {color} $form-field-invalid-border-color * Border color for invalid form fields. */ /** * @var {color} $form-field-background-color * Background color for form fields. */ /** * @var {string} $form-field-background-image * Background image for form fields. */ /** * @var {color} $form-field-invalid-background-color * Background color for invalid form fields. */ /** * @var {string} $form-field-invalid-background-image * Background image for invalid form fields. */ /** * @var {string} $form-field-invalid-background-repeat * Background repeat for invalid form fields. */ /** * @var {string/list} $form-field-invalid-background-position * Background position for invalid form fields. */ /** * @var {boolean} * True to include the "default" field UI */ /** * @var {boolean} * True to include the "toolbar" field UI */ /** * @class Ext.form.Labelable */ /** * @var {color} * The text color of form field labels */ /** * @var {string} * The font-weight of form field labels */ /** * @var {number} * The font-size of form field labels */ /** * @var {string} * The font-family of form field labels */ /** * @var {number} * The line-height of form field labels */ /** * @var {number} * Horizontal space between the label and the field body when the label is left-aligned. */ /** * @var {number} * Vertical space between the label and the field body when the label is top-aligned. */ /** * @var {string} * The background image for error icons */ /** * @var {number} * Width for form error icons. */ /** * @var {number} * Height for form error icons. */ /** * @var {number/list} * Margin for error icons that are aligned to the side of the field */ /** * @var {number} * The space between the icon and the message for errors that display under the field */ /** * @var {number/list} * The padding on errors that display under the form field */ /** * @var {color} * The text color of form error messages */ /** * @var {string} * The font-weight of form error messages */ /** * @var {number} * The font-size of form error messages */ /** * @var {string} * The font-family of form error messages */ /** * @var {number} * The line-height of form error messages */ /** * @var {number} * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout. * This value is also used as the default border-spacing in a form-layout. */ /** * @var {number} * Opacity of disabled form fields */ /** * @var {color} * The text color of toolbar form field labels */ /** * @var {string} * The font-weight of toolbar form field labels */ /** * @var {number} * The font-size of toolbar form field labels */ /** * @var {string} * The font-family of toolbar form field labels */ /** * @var {number} * The line-height of toolbar form field labels */ /** * @var {number} * Horizontal space between the toolbar field's label and the field body when the label is left-aligned. */ /** * @var {number} * Vertical space between the toolbar field's label and the field body when the label is top-aligned. */ /** * @var {string} * The background image for toolbar field error icons */ /** * @var {number} * Width for toolbar field error icons. */ /** * @var {number} * Height for toolbar field error icons. */ /** * @var {number/list} * Margin for toolbar field error icons that are aligned to the side of the field */ /** * @var {number} * The space between the icon and the message for errors that display under a toolbar field */ /** * @var {number/list} * The padding on errors that display under the toolbar form field */ /** * @var {color} * The text color of toolbar form error messages */ /** * @var {string} * The font-weight of toolbar form field error messages */ /** * @var {number} * The font-size of toolbar form field error messages */ /** * @var {string} * The font-family of toolbar form field error messages */ /** * @var {number} * The line-height of toolbar form field error messages */ /** * @var {number} * Opacity of disabled toolbar form fields */ /** * @var {boolean} * True to include the "default" label UI */ /** * @var {boolean} * True to include the "default" label UI */ /** * @class Ext.form.field.Text */ /** * @var {number} * The height of text fields */ /** * @var {number} * Font size for text fields. */ /** * @var {string} * Font family for text fields. */ /** * @var {string} * Font weight for text fields. */ /** * @var {color} * The color of the text field's input element */ /** * @var {color} * The background color of the text field's input element */ /** * @var {number/list} * The border width of text fields */ /** * @var {string/list} * The border style of text fields */ /** * @var {color/list} * The border color of text fields */ /** * @var {color/list} * The border color of the focused text field */ /** * @var {color} * Border color for invalid text fields. */ /** * @var {number/list} * Border radius for text fields */ /** * @var {string} * The background image of the text field's input element */ /** * @var {number/list} * The padding of the text field's input element */ /** * @var {color} * Text color for empty text fields. */ /** * @var {number} * The default width of the text field's body element (the element that contains the input * element and triggers) when the field is not sized explicitly using the {@link #width} * config, or sized by it's containing layout. */ /** * @var {color} * Background color of the text field's input element when the field value is invalid. */ /** * @var {string} * Background image of the text field's input element when the field value is invalid. */ /** * @var {string} * Background repeat of the text field's input element when the field value is invalid. */ /** * @var {string/list} * Background position of the text field's input element when the field value is invalid. */ /** * @var {boolean} * `true` to use classic-theme styled border for text fields. */ /** * @var {number} $form-textarea-line-height * The line-height to use for the TextArea's text */ /** * @var {number} $form-textarea-body-height * The default width of the TextArea's body element (the element that contains the textarea * html element when the field is not sized explicitly using the {@link #width}config, or * sized by it's containing layout. */ /** * @var {color} * Text color for file fields */ /** * @var {number} * The width of the text field's trigger element */ /** * @var {number/list} * The width of the text field's trigger's border */ /** * @var {color/list} * The color of the text field's trigger's border */ /** * @var {string/list} * The style of the text field's trigger's border */ /** * @var {color} * The color of the text field's trigger's border when hovered */ /** * @var {color} * The color of the text field's trigger's border when the field is focused */ /** * @var {color} * The color of the text field's trigger's border when the field is focused and the trigger is hovered */ /** * @var {string} * The default background image for text field triggers */ /** * @var {color} * The background color of the text field's trigger element */ /** * @var {number} * The height of toolbar text fields */ /** * @var {number} * Font size for toolbar text fields. */ /** * @var {string} * Font family for toolbar text fields. */ /** * @var {string} * Font weight for toolbar text fields. */ /** * @var {color} * The color of the toolbar text field's input element */ /** * @var {color} * The background color of the toolbar text field's input element */ /** * @var {number/list} * The border width of toolbar text fields */ /** * @var {string/list} * The border style of toolbar text fields */ /** * @var {color/list} * The border color of toolbar text fields */ /** * @var {color/list} * The border color of the focused toolbar text field */ /** * @var {color} $form-field-invalid-border-color * Border color for invalid toolbar text fields. */ /** * @var {number/list} * Border radius for toolbar text fields */ /** * @var {string} * The background image of the toolbar text field's input element */ /** * @var {number/list} * The padding of the toolbar text field's input element */ /** * @var {color} * Text color for empty toolbar text fields. */ /** * @var {number} * The default width of the toolbar text field's body element (the element that contains the input * element and triggers) when the field is not sized explicitly using the {@link #width} * config, or sized by it's containing layout. */ /** * @var {color} * Background color of the toolbar text field's input element when the field value is invalid. */ /** * @var {string} * Background image of the toolbar text field's input element when the field value is invalid. */ /** * @var {string} * Background repeat of the toolbar text field's input element when the field value is invalid. */ /** * @var {string/list} * Background position of the toolbar text field's input element when the field value is invalid. */ /** * @var {boolean} * `true` to use classic-theme styled border for toolbar text fields. */ /** * @var {number/string} * The line-height to use for the toolbar TextArea's text */ /** * @var {number} * The default width of the toolbar TextArea's body element (the element that contains the * textarea html element when the field is not sized explicitly using the {@link #width} * config, or sized by it's containing layout. */ /** * @var {color} * Text color for toolbar file fields */ /** * @var {number} * The width of the toolbar text field's trigger element */ /** * @var {number/list} * The width of the toolbar text field's trigger's border */ /** * @var {color/list} * The color of the toolbar text field's trigger's border */ /** * @var {string/list} * The style of the toolbar text field's trigger's border */ /** * @var {color} * The color of the toolbar text field's trigger's border when hovered */ /** * @var {color} * The color of the toolbar text field's trigger's border when the field is focused */ /** * @var {color} * The color of the toolbar text field's trigger's border when the field is focused and the trigger is hovered */ /** * @var {string} * The default background image for toolbar text field triggers */ /** * @var {color} * The background color of the toolbar text field's trigger element */ /** * @var {boolean} * True to include the "default" text field UI */ /** * @var {boolean} * True to include the "toolbar" text field UI */ /** * @class Ext.form.field.Spinner */ /** * @var {boolean} * True to use vertically oriented triggers. False to use horizontally oriented triggers. * Themes that set this property to true must also override the * {@link Ext.form.trigger.Spinner#vertical} config to match. Defaults to true. When * 'vertical' orientation is used, the background image for both triggers is * 'form/spinner'. When 'horizontal' is used, the triggers use separate background * images - 'form/spinner-up', and 'form/spinner-down'. */ /** * @var {string} * Background image for vertically oriented spinner triggers */ /** * @var {string} * Background image for the "up" trigger when trigger buttons are horizontally aligned */ /** * @var {string} * Background image for the "down" trigger when trigger buttons are horizontally aligned */ /** * @var {boolean} * `true` to use vertically oriented triggers for fields with the 'toolbar' UI. */ /** * @var {string} * Background image for vertically oriented toolbar spinner triggers */ /** * @var {string} * Background image for the "up" toolbar trigger when trigger buttons are horizontally aligned */ /** * @var {string} * Background image for the "down" toolbar trigger when trigger buttons are horizontally aligned */ /** * @var {boolean} * True to include the "default" spinner UI */ /** * @var {boolean} * True to include the "toolbar" spinner UI */ /** * @class Ext.form.field.Checkbox */ /** * @var {number} * The size of the checkbox */ /** * @var {string} * The background-image of the checkbox */ /** * @var {string} * The background-image of the radio button */ /** * @var {color} * The color of the checkbox's {@link #boxLabel} */ /** * @var {string} * The font-weight of the checkbox's {@link #boxLabel} */ /** * @var {string} * The font-size of the checkbox's {@link #boxLabel} */ /** * @var {string} * The font-family of the checkbox's {@link #boxLabel} */ /** * @var {string} * The line-height of the checkbox's {@link #boxLabel} */ /** * @var {number} * The space between the {@link #boxLabel} and the checkbox. */ /** * @var {number} * The size of the toolbar checkbox */ /** * @var {string} * The background-image of the toolbar checkbox */ /** * @var {string} * The background-image of the toolbar radio button */ /** * @var {color} * The color of the toolbar checkbox's {@link #boxLabel} */ /** * @var {string} * The font-weight of the toolbar checkbox's {@link #boxLabel} */ /** * @var {string} * The font-size of the toolbar checkbox's {@link #boxLabel} */ /** * @var {string} * The font-family of the toolbar checkbox's {@link #boxLabel} */ /** * @var {string} * The line-height of the toolbar checkbox's {@link #boxLabel} */ /** * @var {number} * The space between the {@link #boxLabel} and the toolbar checkbox. */ /** * @var {boolean} * True to include the "default" checkbox UI */ /** * @var {boolean} * True to include the "toolbar" checkbox UI */ /** * @class Ext.form.field.Display */ /** * @var {color} * The text color of display fields */ /** * @var {number} * The font-size of display fields */ /** * @var {string} * The font-family of display fields */ /** * @var {string} * The font-weight of display fields */ /** * @var {number} * The line-height of display fields */ /** * @var {color} * The text color of toolbar display fields */ /** * @var {number} * The font-size of toolbar display fields */ /** * @var {string} * The font-family of toolbar display fields */ /** * @var {string} * The font-weight of toolbar display fields */ /** * @var {number} * The line-height of toolbar display fields */ /** * @var {boolean} * True to include the "default" display field UI */ /** * @var {boolean} * True to include the "toolbar" display field UI */ /** * @class Ext.view.Table */ /** * @var {color} * The color of the text in the grid cells */ /** * @var {number} * The font size of the text in the grid cells */ /** * @var {number} * The line-height of the text inside the grid cells. */ /** * @var {string} * The font-weight of the text in the grid cells */ /** * @var {string} * The font-family of the text in the grid cells */ /** * @var {color} * The background-color of the grid cells */ /** * @var {color} * The border-color of row/column borders. Can be specified as a single color, or as a list * of colors containing the row border color followed by the column border color. */ /** * @var {string} * The border-style of the row/column borders. */ /** * @var {number} * The border-width of the row and column borders. */ /** * @var {color} * The background-color of "special" cells. Special cells are created by {@link * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. */ /** * @var {string} * The background-gradient to use for "special" cells. Special cells are created by {@link * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. */ /** * @var {number} * The border-width of "special" cells. Special cells are created by {@link * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. * Only applies to the vertical border, since the row border width is determined by * {#$grid-row-cell-border-width}. */ /** * @var {color} * The border-color of "special" cells. Special cells are created by {@link * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. * Only applies to the vertical border, since the row border color is determined by * {#$grid-row-cell-border-color}. */ /** * @var {string} * The border-style of "special" cells. Special cells are created by {@link * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. * Only applies to the vertical border, since the row border style is determined by * {#$grid-row-cell-border-style}. */ /** * @var {color} * The border-color of "special" cells when the row is selected using a {@link * Ext.selection.RowModel Row Selection Model}. Special cells are created by {@link * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. * Only applies to the vertical border, since the selected row border color is determined by * {#$grid-row-cell-selected-border-color}. */ /** * @var {color} * The background-color of "special" cells when the row is hovered. Special cells are * created by {@link Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel * Checkbox Selection Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. */ /** * @var {color} * The background-color color of odd-numbered rows when the table view is configured with * `{@link Ext.view.Table#stripeRows stripeRows}: true`. */ /** * @var {string} * The border-style of the hovered row */ /** * @var {color} * The text color of the hovered row */ /** * @var {color} * The background-color of the hovered row */ /** * @var {color} * The border-color of the hovered row */ /** * @var {string} * The border-style of the selected row */ /** * @var {color} * The text color of the selected row */ /** * @var {color} * The background-color of the selected row */ /** * @var {color} * The border-color of the selected row */ /** * @var {number} * The border-width of the focused cell */ /** * @var {color} * The border-color of the focused cell */ /** * @var {string} * The border-style of the focused cell */ /** * @var {number} * The spacing between grid cell border and inner focus border */ /** * @var {color} * The text color of the focused cell */ /** * @var {color} * The background-color of the focused cell */ /** * @var {boolean} * True to show the focus border when a row is focused even if the grid has no * {@link Ext.panel.Table#rowLines rowLines}. */ /** * @var {color} * The text color of a selected cell when using a {@link Ext.selection.CellModel * Cell Selection Model}. */ /** * @var {color} * The background-color of a selected cell when using a {@link Ext.selection.CellModel * Cell Selection Model}. */ /** * @var {number} * The amount of padding to apply to the grid cell's inner div element */ /** * @var {string} * The type of text-overflow to use on the grid cell's inner div element */ /** * @var {color} * The border-color of the grid body */ /** * @var {number} * The border-width of the grid body border */ /** * @var {string} * The border-style of the grid body border */ /** * @var {color} * The background-color of the grid body */ /** * @var {number} * The amount of padding to apply to the grid body when the grid contains no data. */ /** * @var {color} * The text color of the {@link Ext.view.Table#emptyText emptyText} in the grid body when * the grid contains no data. */ /** * @var {color} * The background color of the grid body when the grid contains no data. */ /** * @var {number} * The font-size of the {@link Ext.view.Table#emptyText emptyText} in the grid body when * the grid contains no data. */ /** * @var {number} * The font-weight of the {@link Ext.view.Table#emptyText emptyText} in the grid body when * the grid contains no data. */ /** * @var {number} * The font-family of the {@link Ext.view.Table#emptyText emptyText} in the grid body when * the grid contains no data. */ /** * @var {color} * The color of the resize markers that display when dragging a column border to resize * the column */ /* * Vars for fields which are rendered to fit inside grid cells. * This includes cell and row editor fields and fields in widget columns. */ /** * @class Ext.form.field.Base */ /** * @var {number} * The height of text fields rendered in the context of a grid cell. Defaults to $form-field-height. If grid row * height is smaller than $form-field-height, defaults to the grid row height. Grid row * height is calculated by adding $grid-row-cell-line-height to the top and bottom values of * $grid-cell-inner-padding. */ /** * @var {number/list} * The padding of grid fields. */ /** * @var {number} * The color of the grid field text */ /** * @var {number} * The font size of the grid field text */ /** * @var {string} * The font-weight of the grid field text */ /** * @var {string} * The font-family of the grid field text */ /** * @var {boolean} * True to include the "grid-cell" form field UIs input fields rendered in the context of a grid cell. * * This defaults to `true`. It is required if either grid editors * ({@link Ext.grid.plugin.CellEditing cell} or {@link Ext.grid.plugin.RowEditing row}) * are being used, or if a {@link Ext.grid.column.Widget WidgetColumn} is being used to * house an input field. */ /** * @class Ext.form.field.Text */ /** * @var {number} * The height of text fields rendered in the context of a grid cell */ /** * @var {number} * Font size for text fields rendered in the context of a grid cell. */ /** * @var {string} * Font family for text fields rendered in the context of a grid cell. */ /** * @var {string} * Font weight for text fields rendered in the context of a grid cell. */ /** * @var {color} * The color of a text field's input element when rendered in the context of a grid cell */ /** * @var {color} * The background color of a text field's input element when entered in the context of a grid cell */ /** * @var {number/list} * The border width of text fields entered in the context of a grid cell */ /** * @var {string/list} * The border style of text fields rendered in the context of a grid cell */ /** * @var {color/list} * The border color of text fields rendered in the context of a grid cell */ /** * @var {color/list} * The border color of the focused text fields rendered in the context of a grid cell */ /** * @var {color} * Border color for invalid text fields rendered in the context of a grid cell. */ /** * @var {number/list} * Border radius for text fields rendered in the context of a grid cell. */ /** * @var {string} * The background image of a text field's input element when rendered in the context of a grid cell */ /** * @var {number/list} * The padding of a text field's input element when rendered in the context of a grid cell */ /** * @var {color} * Text color for empty text fields rendered in the context of a grid cell. */ /** * @var {number} * @private * The default width of a text field's body element (the element that contains the input * element and triggers) when the field is rendered in the context of a grid cell and not sized explicitly using the {@link #width} * config, or sized by it's containing layout. */ /** * @var {color} * Background color of a text field's input element when rendered in the context of a grid cell and the field value is invalid. */ /** * @var {string} * Background image of a grid field text field's input element when the field value is invalid. */ /** * @var {string} * Background repeat of the grid field text field's input element when the field value is invalid. */ /** * @var {string/list} * Background position of the grid field text field's input element when rendered in the context of a grid cell and the field value is invalid. */ /** * @var {boolean} * `true` to use classic-theme styled border for text fields rendered in the context of a grid cell. */ /** * @var {number/string} * The line-height to use for the TextArea's text when rendered in the context of a grid cell */ /** * @var {number} * The default width of the grid field TextArea's body element (the element that * contains the textarea html element when the field is rendered in the context of a grid cell and not sized explicitly using the * {@link #width} config, or sized by it's containing layout. */ /** * @var {color} * Text color for file fields rendered in the context of a grid cell */ /** * @var {number} * The width of a text field's trigger element when rendered in the context of a grid cell */ /** * @var {number/list} * The width of a text field's trigger's border when rendered in the context of a grid cell */ /** * @var {color/list} * The color of a text field's trigger's border when rendered in the context of a grid cell */ /** * @var {string/list} * The style of a text field's trigger's border when rendered in the context of a grid cell */ /** * @var {color} * The color of a text field's trigger's border when rendered in the context of a grid cell and hovered */ /** * @var {color} * The color of a text field's trigger's border when rendered in the context of a grid cell and the field is focused */ /** * @var {color} * The color of a text field's trigger's border when rendered in the context of a grid cell and the field is focused and the trigger is hovered */ /** * @var {string} * The default background image for text field triggers when rendered in the context of a grid cell */ /** * @var {color} * The background color of a text field's trigger element when rendered in the context of a grid cell */ /** * @var {boolean} * True to include the "grid-cell" text field UI */ /** * @class Ext.form.field.Spinner */ /** * @var {boolean} * True to use vertically oriented spinner triggers when rendered in the context of a grid cell. */ /** * @var {string} * Background image for vertically oriented grid field spinner triggers when rendered in the context of a grid cell */ /** * @var {string} * Background image for the "up" trigger when grid field spinner trigger buttons are rendered in the context of a grid cell and horizontally aligned */ /** * @var {string} * Background image for the "down" trigger when grid field spinner trigger buttons are rendered in the context of a grid cell and horizontally aligned */ /** * @var {boolean} * True to include the "grid-cell" spinner UI */ /** * @var {number} * The size of a checkbox when rendered in the context of a grid cell */ /** * @var {string} * The background-image of a checkbox when rendered in the context of a grid cell */ /** * @var {string} * The background-image of a radio button when rendered in the context of a grid cell */ /** * @var {boolean} * True to include the "grid-cell" checkbox UI */ /** * @class Ext.form.field.Display */ /** * @var {color} * The text color of display fields rendered in the context of a grid cell */ /** * @var {number} * The font-size of display fields rendered in the context of a grid cell */ /** * @var {string} * The font-family of display fields rendered in the context of a grid cell */ /** * @var {string} * The font-weight of display fields rendered in the context of a grid cell */ /** * @var {number} * The line-height of display fields rendered in the context of a grid cell */ /** * @var {boolean} * True to include the "default" display field UI */ /** * @class Ext.grid.feature.Grouping */ /** * @var {color} * The background color of group headers */ /** * @var {number/list} * The border-width of group headers */ /** * @var {string} * The border-style of group headers */ /** * @var {color} * The border-color of group headers */ /** * @var {number/list} * The padding of group headers */ /** * @var {string} * The cursor of group headers */ /** * @var {color} * The text color of group header titles */ /** * @var {string} * The font-family of group header titles */ /** * @var {number} * The font-size of group header titles */ /** * @var {string} * The font-weight of group header titles */ /** * @var {number} * The line-height of group header titles */ /** * @var {number/list} * The amount of padding to add to the group title element. This is typically used * to reserve space for an icon by setting the amountof space to be reserved for the icon * as the left value and setting the remaining sides to 0. */ /** * @class Ext.grid.feature.RowBody */ /** * @var {number} * The font-size of the RowBody */ /** * @var {number} * The line-height of the RowBody */ /** * @var {string} * The font-family of the RowBody */ /** * @var {number} * The font-weight of the RowBody */ /** * @var {number/list} * The padding of the RowBody */ /** * @class Ext.menu.Menu */ /** * @var {color} * The background-color of the Menu */ /** * @var {color} * The border-color of the Menu */ /** * @var {string} * The border-style of the Menu */ /** * @var {number} * The border-width of the Menu */ /** * @var {number/list} * The padding to apply to the Menu body element */ /** * @var {color} * The color of Menu Item text */ /** * @var {string} * The font-family of {@link Ext.menu.Item Menu Items} */ /** * @var {number} * The font-size of {@link Ext.menu.Item Menu Items} */ /** * @var {string} * The font-weight of {@link Ext.menu.Item Menu Items} */ /** * @var {number} * The height of {@link Ext.menu.Item Menu Items} */ /** * @var {number} * The border-width of {@link Ext.menu.Item Menu Items} */ /** * @var {string} * The style of cursor to display when the cursor is over a {@link Ext.menu.Item Menu Item} */ /** * @var {string} * The style of cursor to display when the cursor is over a disabled {@link Ext.menu.Item Menu Item} */ /** * @var {color} * The background-color of the active {@link Ext.menu.Item Menu Item} */ /** * @var {color} * The border-color of the active {@link Ext.menu.Item Menu Item} */ /** * @var {string/list} * The background-gradient for {@link Ext.menu.Item Menu Items}. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. */ /** * @var {number} * The border-radius of {@link Ext.menu.Item Menu Items} */ /** * @var {number} * The size of {@link Ext.menu.Item Menu Item} icons */ /** * @var {color} $menu-glyph-color * The color to use for menu icons configured using {@link Ext.menu.Item#glyph glyph} */ /** * @var {number} $menu-glyph-opacity * The opacity to use for menu icons configured using {@link Ext.menu.Item#glyph glyph} */ /** * @var {number} * The size of {@link Ext.menu.Item Menu Item} checkboxes */ /** * @var {list} * The background-position of {@link Ext.menu.Item Menu Item} icons */ /** * @var {number} * vertical offset for menu item icons/checkboxes. By default the icons are roughly * vertically centered, but it may be necessary in some cases to make minor adjustments * to the vertical position. */ /** * @var {number} * vertical offset for menu item text. By default the text is given a line-height * equal to the menu item's content-height, however, depending on the font this may not * result in perfect vertical centering. Offset can be used to make small adjustments * to the text's vertical position. */ /** * @var {number/list} * The space to the left and right of {@link Ext.menu.Item Menu Item} text. Can be specified * as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g. * * $menu-item-text-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right */ /** * @var {number} * The space to the left and right of {@link Ext.menu.Item Menu Item} icons. Can be specified * as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g. * * $menu-item-icon-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right */ /** * @var {number} * The space to the left and right of {@link Ext.menu.Item Menu Item} arrows. Can be specified * as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g. * * $menu-item-arrow-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right */ /** * @var {number/list} * The margin of {@link Ext.menu.Separator Menu Separators} */ /** * @var {number} * The height of {@link Ext.menu.Item Menu Item} arrows */ /** * @var {number} * The width of {@link Ext.menu.Item Menu Item} arrows */ /** * @var {number} * The opacity of disabled {@link Ext.menu.Item Menu Items} */ /** * @var {number/list} * The margin non-MenuItems placed in a Menu */ /** * @var {color} * The border-color of {@link Ext.menu.Separator Menu Separators} */ /** * @var {color} * The background-color of {@link Ext.menu.Separator Menu Separators} */ /** * @var {number} * The size of {@link Ext.menu.Separator Menu Separators} */ /** * @var {number} * The width of Menu scrollers */ /** * @var {number} * The height of Menu scrollers */ /** * @var {color} * The border-color of Menu scroller buttons */ /** * @var {number} * The border-width of Menu scroller buttons */ /** * @var {number/list} * The margin of "top" Menu scroller buttons */ /** * @var {number/list} * The margin of "bottom" Menu scroller buttons */ /** * @var {string} * The cursor of Menu scroller buttons */ /** * @var {string} * The cursor of disabled Menu scroller buttons */ /** * @var {number} * The opacity of Menu scroller buttons. Only applicable when * {@link #$menu-classic-scrollers} is `false`. */ /** * @var {number} * The opacity of hovered Menu scroller buttons. Only applicable when * {@link #$menu-classic-scrollers} is `false`. */ /** * @var {number} * The opacity of pressed Menu scroller buttons. Only applicable when * {@link #$menu-classic-scrollers} is `false`. */ /** * @var {number} * The opacity of disabled Menu scroller buttons. */ /** * @var {boolean} * `true` to use classic-style scroller buttons. When `true` scroller buttons are given their * hover state by changing their background-position, When `false` scroller buttons are * given their hover state by applying opacity. */ /** * @var {boolean} * True to include the "default" menu UI */ /** * @class Ext.grid.filters.Filters */ /** * @var {string} * The font-style of the filtered column. */ /** * @var {string} * The font-weight of the filtered column. */ /** * @var {string} * The text-decoration of the filtered column. */ /** * @class Ext.grid.locking.Lockable */ /** * @var {number} * The width of the border between the locked views */ /** * @var {string} * The border-style of the border between the locked views */ /** * @var {string} * The border-color of the border between the locked views. Defaults to the * panel border color. May be overridden in a theme. */ /* * Vars for fields which are rendered to fit inside grid cells. * This includes cell and row editor fields and fields in widget columns. */ /** * @class Ext.form.field.Base */ /** * @var {number} * The height of text fields rendered in the context of a grid cell. Defaults to $form-field-height. If grid row * height is smaller than $form-field-height, defaults to the grid row height. Grid row * height is calculated by adding $grid-row-cell-line-height to the top and bottom values of * $grid-cell-inner-padding. */ /** * @var {number/list} * The padding of grid fields. */ /** * @var {number} * The color of the grid field text */ /** * @var {number} * The font size of the grid field text */ /** * @var {string} * The font-weight of the grid field text */ /** * @var {string} * The font-family of the grid field text */ /** * @var {boolean} * True to include the "grid-cell" form field UIs input fields rendered in the context of a grid cell. * * This defaults to `true`. It is required if either grid editors * ({@link Ext.grid.plugin.CellEditing cell} or {@link Ext.grid.plugin.RowEditing row}) * are being used, or if a {@link Ext.grid.column.Widget WidgetColumn} is being used to * house an input field. */ /** * @class Ext.form.field.Text */ /** * @var {number} * The height of text fields rendered in the context of a grid cell */ /** * @var {number} * Font size for text fields rendered in the context of a grid cell. */ /** * @var {string} * Font family for text fields rendered in the context of a grid cell. */ /** * @var {string} * Font weight for text fields rendered in the context of a grid cell. */ /** * @var {color} * The color of a text field's input element when rendered in the context of a grid cell */ /** * @var {color} * The background color of a text field's input element when entered in the context of a grid cell */ /** * @var {number/list} * The border width of text fields entered in the context of a grid cell */ /** * @var {string/list} * The border style of text fields rendered in the context of a grid cell */ /** * @var {color/list} * The border color of text fields rendered in the context of a grid cell */ /** * @var {color/list} * The border color of the focused text fields rendered in the context of a grid cell */ /** * @var {color} * Border color for invalid text fields rendered in the context of a grid cell. */ /** * @var {number/list} * Border radius for text fields rendered in the context of a grid cell. */ /** * @var {string} * The background image of a text field's input element when rendered in the context of a grid cell */ /** * @var {number/list} * The padding of a text field's input element when rendered in the context of a grid cell */ /** * @var {color} * Text color for empty text fields rendered in the context of a grid cell. */ /** * @var {number} * @private * The default width of a text field's body element (the element that contains the input * element and triggers) when the field is rendered in the context of a grid cell and not sized explicitly using the {@link #width} * config, or sized by it's containing layout. */ /** * @var {color} * Background color of a text field's input element when rendered in the context of a grid cell and the field value is invalid. */ /** * @var {string} * Background image of a grid field text field's input element when the field value is invalid. */ /** * @var {string} * Background repeat of the grid field text field's input element when the field value is invalid. */ /** * @var {string/list} * Background position of the grid field text field's input element when rendered in the context of a grid cell and the field value is invalid. */ /** * @var {boolean} * `true` to use classic-theme styled border for text fields rendered in the context of a grid cell. */ /** * @var {number/string} * The line-height to use for the TextArea's text when rendered in the context of a grid cell */ /** * @var {number} * The default width of the grid field TextArea's body element (the element that * contains the textarea html element when the field is rendered in the context of a grid cell and not sized explicitly using the * {@link #width} config, or sized by it's containing layout. */ /** * @var {color} * Text color for file fields rendered in the context of a grid cell */ /** * @var {number} * The width of a text field's trigger element when rendered in the context of a grid cell */ /** * @var {number/list} * The width of a text field's trigger's border when rendered in the context of a grid cell */ /** * @var {color/list} * The color of a text field's trigger's border when rendered in the context of a grid cell */ /** * @var {string/list} * The style of a text field's trigger's border when rendered in the context of a grid cell */ /** * @var {color} * The color of a text field's trigger's border when rendered in the context of a grid cell and hovered */ /** * @var {color} * The color of a text field's trigger's border when rendered in the context of a grid cell and the field is focused */ /** * @var {color} * The color of a text field's trigger's border when rendered in the context of a grid cell and the field is focused and the trigger is hovered */ /** * @var {string} * The default background image for text field triggers when rendered in the context of a grid cell */ /** * @var {color} * The background color of a text field's trigger element when rendered in the context of a grid cell */ /** * @var {boolean} * True to include the "grid-cell" text field UI */ /** * @class Ext.form.field.Spinner */ /** * @var {boolean} * True to use vertically oriented spinner triggers when rendered in the context of a grid cell. */ /** * @var {string} * Background image for vertically oriented grid field spinner triggers when rendered in the context of a grid cell */ /** * @var {string} * Background image for the "up" trigger when grid field spinner trigger buttons are rendered in the context of a grid cell and horizontally aligned */ /** * @var {string} * Background image for the "down" trigger when grid field spinner trigger buttons are rendered in the context of a grid cell and horizontally aligned */ /** * @var {boolean} * True to include the "grid-cell" spinner UI */ /** * @var {number} * The size of a checkbox when rendered in the context of a grid cell */ /** * @var {string} * The background-image of a checkbox when rendered in the context of a grid cell */ /** * @var {string} * The background-image of a radio button when rendered in the context of a grid cell */ /** * @var {boolean} * True to include the "grid-cell" checkbox UI */ /** * @class Ext.form.field.Display */ /** * @var {color} * The text color of display fields rendered in the context of a grid cell */ /** * @var {number} * The font-size of display fields rendered in the context of a grid cell */ /** * @var {string} * The font-family of display fields rendered in the context of a grid cell */ /** * @var {string} * The font-weight of display fields rendered in the context of a grid cell */ /** * @var {number} * The line-height of display fields rendered in the context of a grid cell */ /** * @var {boolean} * True to include the "default" display field UI */ /** * @class Ext.grid.plugin.RowEditing */ /** * @var {color} * The background-color of the RowEditor */ /** * @var {color} * The border-color of the RowEditor */ /** * @var {number} * The border-width of the RowEditor */ /** * @var {number/list} * The padding of the RowEditor */ /** * @var {number} * The amount of space in between the editor fields */ /** * @var {number} * The space between the RowEditor buttons */ /** * @var {number} * The border-radius of the RowEditor button container */ /** * @var {number/list} * The padding of the RowEditor button container */ /** * @var {number/list} * Padding to apply to the body element of the error tooltip */ /** * @var {string} * The list-style of the error tooltip's list items */ /** * @var {number} * Space to add before each list item on the error tooltip */ /** * @class Ext.grid.plugin.RowExpander */ /** * @var {number} * The height of the RowExpander icon */ /** * @var {number} * The width of the RowExpander icon */ /** * @var {number} * The horizontal space before the RowExpander icon */ /** * @var {number} * The horizontal space after the RowExpander icon */ /** * @var {string} * The cursor for the RowExpander icon */ /** * @class Ext.grid.property.Grid */ /** * @var {string} * The background-image of property grid cells */ /** * @var {string} * The background-position of property grid cells */ /** * @var {number/string} * The padding to add before the text of property grid cells to make room for the * background-image. Only applies if $grid-property-cell-background-image is not null */ /** * @class Ext.layout.container.Accordion */ /** * @var {color} * The text color of Accordion headers */ /** * @var {color} * The background-color of Accordion headers */ /** * @var {color} * The background-color of Accordion headers when hovered */ /** * @var {number} * The size of {@link Ext.panel.Tool Tools} in Accordion headers */ /** * @var {number/list} * The border-width of Accordion headers */ /** * @var {number/list} * The border-color of Accordion headers */ /** * @var {number/list} * The padding of Accordion headers */ /** * @var {string} * The font-weight of Accordion headers */ /** * @var {string} * The font-family of Accordion headers */ /** * @var {string} * The text-transform property of Accordion headers */ /** * @var {number} * The body border-width of Accordion layout element */ /** * @var {color} * The background-color of the Accordion layout element */ /** * @var {color} * The background-color of the Accordion layout element */ /** * @var {number/list} * The padding of the Accordion layout element */ /** * @var {string} * The sprite image to use for {@link Ext.panel.Tool Tools} in Accordion headers */ /** * @class Ext.selection.CheckboxModel */ /** * @var {number} * The horizontal space before the checkbox */ /** * @var {number} * The horizontal space after the checkbox */ /** * @class Ext.slider.Multi */ /** * @var {number} * The horizontal slider thumb width */ /** * @var {number} * The horizontal slider thumb height */ /** * @var {number} * The width of the horizontal slider start cap */ /** * @var {number} * The width of the horizontal slider end cap */ /** * @var {number} * The vertical slider thumb width */ /** * @var {number} * The vertical slider thumb height */ /** * @var {number} * The height of the vertical slider start cap */ /** * @var {number} * The height of the vertical slider end cap */ /** @class Ext.toolbar.Breadcrumb */ /** * @class Ext.toolbar.Toolbar */ /** * @var {number} * The default font-size of Toolbar text */ /** * @var {color} * The background-color of the Toolbar */ /** * @var {string/list} * The background-gradient of the Toolbar. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */ /** * @var {number} * The horizontal spacing of Toolbar items */ /** * @var {number} * The vertical spacing of Toolbar items */ /** * @var {number} * The horizontal spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items */ /** * @var {number} * The vertical spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items */ /** * @var {color} * The background-color of {@link Ext.panel.Panel#fbar footer} Toolbars */ /** * @var {number} * The border-width of {@link Ext.panel.Panel#fbar footer} Toolbars */ /** * @var {color} * The border-color of Toolbars */ /** * @var {number} * The border-width of Toolbars */ /** * @var {string} * The border-style of Toolbars */ /** * @var {number} * The width of Toolbar {@link Ext.toolbar.Spacer Spacers} */ /** * @var {color} * The main border-color of Toolbar {@link Ext.toolbar.Separator Separators} */ /** * @var {color} * The highlight border-color of Toolbar {@link Ext.toolbar.Separator Separators} */ /** * @var {number/list} * The margin of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar */ /** * @var {number} * The height of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar */ /** * @var {string} * The border-style of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar */ /** * @var {number} * The border-width of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar */ /** * @var {number/list} * The margin of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar */ /** * @var {string} * The border-style of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar */ /** * @var {number} * The border-width of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar */ /** * @var {string} * The default font-family of Toolbar text */ /** * @var {number} * The default font-size of Toolbar text */ /** * @var {number} * The default font-size of Toolbar text */ /** * @var {color} * The text-color of Toolbar text */ /** * @var {number} * The line-height of Toolbar text */ /** * @var {number/list} * The padding of Toolbar text */ /** * @var {number} * The width of Toolbar scrollers */ /** * @var {number} * The height of Toolbar scrollers */ /** * @var {number} * The width of scrollers on vertically aligned toolbars */ /** * @var {number} * The height of scrollers on vertically aligned toolbars */ /** * @var {color} * The border-color of Toolbar scroller buttons */ /** * @var {number} * The border-width of Toolbar scroller buttons */ /** * @var {color} * The border-color of scroller buttons on vertically aligned toolbars */ /** * @var {number} * The border-width of scroller buttons on vertically aligned toolbars */ /** * @var {number/list} * The margin of "top" Toolbar scroller buttons */ /** * @var {number/list} * The margin of "right" Toolbar scroller buttons */ /** * @var {number/list} * The margin of "bottom" Toolbar scroller buttons */ /** * @var {number/list} * The margin of "left" Toolbar scroller buttons */ /** * @var {string} * The cursor of Toolbar scroller buttons */ /** * @var {string} * The cursor of disabled Toolbar scroller buttons */ /** * @var {number} * The opacity of Toolbar scroller buttons. Only applicable when * {@link #$toolbar-classic-scrollers} is `false`. */ /** * @var {number} * The opacity of hovered Toolbar scroller buttons. Only applicable when * {@link #$toolbar-classic-scrollers} is `false`. */ /** * @var {number} * The opacity of pressed Toolbar scroller buttons. Only applicable when * {@link #$toolbar-classic-scrollers} is `false`. */ /** * @var {number} * The opacity of disabled Toolbar scroller buttons. */ /** * @var {boolean} * `true` to use classic-style scroller buttons. When `true` scroller buttons are given their * hover state by changing their background-position, When `false` scroller buttons are * given their hover state by applying opacity. */ /** * @var {string} * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar */ /** * @var {boolean} * True to include the "default" toolbar UI */ /** * @var {boolean} * True to include the "footer" toolbar UI */ /** * @var {string} * The UI of buttons that are used in the "default" breadcrumb UI */ /** * @var {number} * The space between the breadcrumb buttons */ /** * @var {number} * The width of breadcrumb arrows when {@link #useSplitButtons} is `false` */ /** * @var {number} * The width of breadcrumb arrows when {@link #useSplitButtons} is `true` */ /** * @var {string} * The background-image for the default "folder" icon */ /** * @var {string} * The background-image for the default "leaf" icon */ /** * @var {boolean} * `true` to include a separate background-image for menu arrows when a breadcrumb button's * menu is open */ /** * @var {boolean} * `true` to include a separate background-image for split arrows when a breadcrumb button's * arrow is hovered */ /** * @var {number} * The width of Breadcrumb scrollers */ /** * @var {number} * The height of Breadcrumb scrollers */ /** * @var {color} * The border-color of Breadcrumb scrollers */ /** * @var {number} * The border-width of Breadcrumb scrollers */ /** * @var {number/list} * The margin of "top" Breadcrumb scroller buttons */ /** * @var {number/list} * The margin of "right" Breadcrumb scroller buttons */ /** * @var {number/list} * The margin of "bottom" Breadcrumb scroller buttons */ /** * @var {number/list} * The margin of "left" Breadcrumb scroller buttons */ /** * @var {string} * The cursor of Breadcrumb scrollers */ /** * @var {string} * The cursor of disabled Breadcrumb scrollers */ /** * @var {number} * The opacity of Breadcrumb scroller buttons. Only applicable when * {@link #$breadcrumb-classic-scrollers} is `false`. */ /** * @var {number} * The opacity of hovered Breadcrumb scroller buttons. Only applicable when * {@link #$breadcrumb-classic-scrollers} is `false`. */ /** * @var {number} * The opacity of pressed Breadcrumb scroller buttons. Only applicable when * {@link #$breadcrumb-classic-scrollers} is `false`. */ /** * @var {number} * The opacity of disabled Breadcrumb scroller buttons. Only applicable when * {@link #$breadcrumb-classic-scrollers} is `false`. */ /** * @var {boolean} * `true` to use classic-style scroller buttons. When `true` scroller buttons are given their * hover state by changing their background-position, When `false` scroller buttons are * given their hover state by applying opacity. */ /** * @var {boolean} * `true` to include the "default" breadcrumb UI */ /** * @class Ext.view.MultiSelector */ /** * @var {number} * The font-size for the multiselector's remove glyph. */ /** * @var {number/list} * The padding of "Remove" cell's inner element */ /** * @var {color} * The color for the multiselector's remove glyph. */ /** * @var {color} * The color for the multiselector's remove glyph during mouse over. */ /** * @var {string} * The cursor style for the remove glyph. */ /* including package ext-theme-base */ /** * @class Global_CSS */ /** * @var {string} $prefix * The prefix to be applied to all CSS selectors. If this is changed, it must also be changed in your * JavaScript application. */ /** * @var {boolean/string} $relative-image-path-for-uis * True to use a relative image path for all new UIs. If true, the path will be "../images/". * It can also be a string of the path value. * It defaults to false, which means it will look for the images in the ExtJS SDK folder. */ /** * @var {boolean} $include-not-found-images * True to include files which are not found when compiling your SASS */ /** * @var {boolean} $include-ie * True to include Internet Explorer specific rules for IE9 and lower. IE10 and up are * considered to be "modern" browsers, and as such do not need any of the CSS hacks required * for IE9 and below. Setting this property to false will result in a significantly smaller * CSS file size, and may also result in a slight performance improvement, because the * browser will have fewer rules to process. */ /** * @var {boolean} $include-ff * True to include Firefox specific rules */ /** * @var {boolean} $include-opera * True to include Opera specific rules */ /** * @var {boolean} $include-webkit * True to include Webkit specific rules */ /** * @var {boolean} $include-safari * True to include Safari specific rules */ /** * @var {boolean} $include-chrome * True to include Chrome specific rules */ /** * @var {boolean} $include-slicer-border-radius * True to include rules for rounded corners produced by the slicer. Enables emulation * of CSS3 border-radius in browsers that do not support it. */ /** * @var {boolean} $include-slicer-gradient * True to include rules for background gradients produced by the slicer. Enables emulation * of CSS3 background-gradient in browsers that do not support it. */ /** * @var {number} $css-shadow-border-radius * The border radius for CSS shadows */ /** * @var {string} $image-extension * default file extension to use for images (defaults to 'png'). */ /** * @var {string} $slicer-image-extension * default file extension to use for slicer images (defaults to 'gif'). */ /** * Default search path for images */ /** * @var {boolean} * True to include the default UI for each component. */ /** * @var {boolean} * True to add font-smoothing styles to all components */ /** * @var {string} * The base path relative to the CSS output directory to use for theme resources. For example * if the theme's images live one directory up from the generated CSS output in a directory * named 'foo/images/', you would need to set this variable to '../foo/' in order for the image * paths in the CSS output to be generated correctly. By default this is the same as the * CSS output directory. */ /** * @private * Flag to ensure GridField rules only get set once */ /* including package ext-theme-base */ /* line 1, ../../../ext-theme-base/sass/src/scroll/TouchScroller.scss */ .x-scroll-container { overflow: hidden; position: relative; } /* line 8, ../../../ext-theme-base/sass/src/scroll/TouchScroller.scss */ .x-scroll-scroller { float: left; position: relative; min-width: 100%; min-height: 100%; } /* * Although this file only contains a variable, all vars are included by default * in application sass builds, so this needs to be in the rule file section * to allow javascript inclusion filtering to disable it. */ /** * @var {boolean} $include-rtl * True to include right-to-left style rules. This variable gets set to true automatically * for rtl builds. You should not need to ever assign a value to this variable, however * it can be used to suppress rtl-specific rules when they are not needed. For example: * @if $include-rtl { * .x-rtl.foo { * margin-left: $margin-right; * margin-right: $margin-left; * } * } * @member Global_CSS * @readonly */ /* line 1, ../../../ext-theme-base/sass/src/Component.scss */ .x-body { margin: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* line 9, ../../../ext-theme-base/sass/src/Component.scss */ .x-no-touch-scroll { touch-action: none; -ms-touch-action: none; } @-ms-viewport { width: device-width; } /* line 23, ../../../ext-theme-base/sass/src/Component.scss */ img { border: 0; } /* line 28, ../../../ext-theme-base/sass/src/Component.scss */ .x-border-box, .x-border-box * { box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; -webkit-box-sizing: border-box; } /* line 36, ../../../ext-theme-base/sass/src/Component.scss */ .x-rtl { direction: rtl; } /* line 41, ../../../ext-theme-base/sass/src/Component.scss */ .x-ltr { direction: ltr; } /* line 45, ../../../ext-theme-base/sass/src/Component.scss */ .x-clear { overflow: hidden; clear: both; font-size: 0; line-height: 0; display: table; } /* line 53, ../../../ext-theme-base/sass/src/Component.scss */ .x-layer { position: absolute !important; overflow: hidden; } /* line 60, ../../../ext-theme-base/sass/src/Component.scss */ .x-fixed-layer { position: fixed !important; overflow: hidden; } /* line 65, ../../../ext-theme-base/sass/src/Component.scss */ .x-shim { position: absolute; left: 0; top: 0; overflow: hidden; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; } /* line 73, ../../../ext-theme-base/sass/src/Component.scss */ .x-hidden-display { display: none !important; } /* line 77, ../../../ext-theme-base/sass/src/Component.scss */ .x-hidden-visibility { visibility: hidden !important; } /* line 82, ../../../ext-theme-base/sass/src/Component.scss */ .x-hidden, .x-hidden-offsets { display: block !important; visibility: hidden !important; position: absolute !important; top: -10000px !important; } /* line 93, ../../../ext-theme-base/sass/src/Component.scss */ .x-hidden-clip { position: absolute!important; clip: rect(0, 0, 0, 0); } /* line 98, ../../../ext-theme-base/sass/src/Component.scss */ .x-masked-relative { position: relative; } /* line 104, ../../../ext-theme-base/sass/src/Component.scss */ .x-ie-shadow { background-color: #777; position: absolute; overflow: hidden; } /* line 111, ../../../ext-theme-base/sass/src/Component.scss */ .x-unselectable { user-select: none; -o-user-select: none; -ms-user-select: none; -moz-user-select: -moz-none; -webkit-user-select: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-user-drag: none; cursor: default; } /* line 115, ../../../ext-theme-base/sass/src/Component.scss */ .x-selectable { cursor: auto; -moz-user-select: text; -webkit-user-select: text; -ms-user-select: text; user-select: text; -o-user-select: text; } /* line 130, ../../../ext-theme-base/sass/src/Component.scss */ .x-list-plain { list-style-type: none; margin: 0; padding: 0; } /* line 137, ../../../ext-theme-base/sass/src/Component.scss */ .x-table-plain { border-collapse: collapse; border-spacing: 0; font-size: 1em; } /* line 150, ../../../ext-theme-base/sass/src/Component.scss */ .x-frame-tl, .x-frame-tr, .x-frame-tc, .x-frame-bl, .x-frame-br, .x-frame-bc { overflow: hidden; background-repeat: no-repeat; } /* line 156, ../../../ext-theme-base/sass/src/Component.scss */ .x-frame-tc, .x-frame-bc { background-repeat: repeat-x; } /* line 167, ../../../ext-theme-base/sass/src/Component.scss */ td.x-frame-tl, td.x-frame-tr, td.x-frame-bl, td.x-frame-br { width: 1px; } /* line 171, ../../../ext-theme-base/sass/src/Component.scss */ .x-frame-mc { background-repeat: repeat-x; overflow: hidden; } /* line 176, ../../../ext-theme-base/sass/src/Component.scss */ .x-proxy-el { position: absolute; background: #b4b4b4; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); opacity: 0.8; } /* line 183, ../../../ext-theme-base/sass/src/Component.scss */ .x-css-shadow { position: absolute; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; } /* line 189, ../../../ext-theme-base/sass/src/Component.scss */ .x-item-disabled, .x-item-disabled * { cursor: default; } /* line 194, ../../../ext-theme-base/sass/src/Component.scss */ .x-component, .x-container { position: relative; } /* line 203, ../../../ext-theme-base/sass/src/Component.scss */ :focus { outline: none; } /* line 3, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ .x-box-item { position: absolute !important; left: 0; top: 0; } /* line 10, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ .x-rtl > .x-box-item { right: 0; left: auto; } /* line 1, ../../../ext-theme-base/sass/src/layout/container/Auto.scss */ .x-autocontainer-outerCt { display: table; } /* line 5, ../../../ext-theme-base/sass/src/layout/container/Auto.scss */ .x-autocontainer-innerCt { display: table-cell; height: 100%; vertical-align: top; } /* line 1, ../../../ext-theme-base/sass/src/LoadMask.scss */ .x-mask { z-index: 100; position: absolute; top: 0; left: 0; width: 100%; height: 100%; /* * IE and FF will add an outline to focused elements, * which we don't want when using our own focus treatment */ outline: none !important; } /* * IE8 will treat partially transparent divs as invalid click targets, * allowing mouse events to reach elements beneath the mask. Placing * a 1x1 transparent gif as the link el background will cure this. */ /* line 21, ../../../ext-theme-base/sass/src/LoadMask.scss */ .x-ie8 .x-mask { background-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7); } /* line 27, ../../../ext-theme-base/sass/src/LoadMask.scss */ .x-mask-fixed { position: fixed; } /* line 31, ../../../ext-theme-base/sass/src/LoadMask.scss */ .x-mask-msg { position: absolute; } /* line 1, ../../../ext-theme-base/sass/src/ProgressBar.scss */ .x-progress { position: relative; border-style: solid; overflow: hidden; } /* line 7, ../../../ext-theme-base/sass/src/ProgressBar.scss */ .x-progress-bar { overflow: hidden; position: absolute; width: 0; height: 100%; } /* line 14, ../../../ext-theme-base/sass/src/ProgressBar.scss */ .x-progress-text { overflow: hidden; position: absolute; } /* line 1, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-icon { background-repeat: no-repeat; background-position: 0 0; vertical-align: middle; text-align: center; } /* line 8, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title { display: table; table-layout: fixed; } /* line 14, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-rtl.x-title { -o-text-overflow: clip; text-overflow: clip; } /* line 20, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-text { display: table-cell; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis; vertical-align: middle; } /* line 29, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-align-left { text-align: left; } /* line 32, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-align-left.x-rtl { text-align: right; } /* line 38, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-align-center { text-align: center; } /* line 42, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-align-right { text-align: right; } /* line 45, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-align-right.x-rtl { text-align: left; } /* line 51, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-rotate-right { -webkit-transform: rotate(90deg); -webkit-transform-origin: 0 0; -moz-transform: rotate(90deg); -moz-transform-origin: 0 0; -o-transform: rotate(90deg); -o-transform-origin: 0 0; -ms-transform: rotate(90deg); -ms-transform-origin: 0 0; transform: rotate(90deg); transform-origin: 0 0; } /* line 43, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ .x-ie8 .x-title-rotate-right { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); } /* line 55, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-rotate-right.x-rtl { -webkit-transform: rotate(270deg); -webkit-transform-origin: 100% 0; -moz-transform: rotate(270deg); -moz-transform-origin: 100% 0; -o-transform: rotate(270deg); -o-transform-origin: 100% 0; -ms-transform: rotate(270deg); -ms-transform-origin: 100% 0; transform: rotate(270deg); transform-origin: 100% 0; } /* line 43, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ .x-ie8 .x-title-rotate-right.x-rtl { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); } /* line 61, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-rotate-left { -webkit-transform: rotate(270deg); -webkit-transform-origin: 100% 0; -moz-transform: rotate(270deg); -moz-transform-origin: 100% 0; -o-transform: rotate(270deg); -o-transform-origin: 100% 0; -ms-transform: rotate(270deg); -ms-transform-origin: 100% 0; transform: rotate(270deg); transform-origin: 100% 0; } /* line 43, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ .x-ie8 .x-title-rotate-left { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); } /* line 65, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-rotate-left.x-rtl { -webkit-transform: rotate(90deg); -webkit-transform-origin: 0 0; -moz-transform: rotate(90deg); -moz-transform-origin: 0 0; -o-transform: rotate(90deg); -o-transform-origin: 0 0; -ms-transform: rotate(90deg); -ms-transform-origin: 0 0; transform: rotate(90deg); transform-origin: 0 0; } /* line 43, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ .x-ie8 .x-title-rotate-left.x-rtl { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); } /* line 74, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-horizontal.x-header .x-title-rotate-right.x-title-align-left > .x-title-item { vertical-align: bottom; } /* line 78, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-horizontal.x-header .x-title-rotate-right.x-title-align-center > .x-title-item { vertical-align: middle; } /* line 82, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-horizontal.x-header .x-title-rotate-right.x-title-align-right > .x-title-item { vertical-align: top; } /* line 88, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-horizontal.x-header .x-title-rotate-left.x-title-align-left > .x-title-item { vertical-align: top; } /* line 92, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-horizontal.x-header .x-title-rotate-left.x-title-align-center > .x-title-item { vertical-align: middle; } /* line 96, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-horizontal.x-header .x-title-rotate-left.x-title-align-right > .x-title-item { vertical-align: bottom; } /* line 104, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-vertical.x-header .x-title-rotate-none.x-title-align-left > .x-title-item { vertical-align: top; } /* line 108, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-vertical.x-header .x-title-rotate-none.x-title-align-center > .x-title-item { vertical-align: middle; } /* line 112, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-vertical.x-header .x-title-rotate-none.x-title-align-right > .x-title-item { vertical-align: bottom; } /* line 119, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-icon-wrap { display: table-cell; text-align: center; vertical-align: middle; line-height: 0; } /* line 125, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-icon-wrap.x-title-icon-top, .x-title-icon-wrap.x-title-icon-bottom { display: table-row; } /* line 130, ../../../ext-theme-base/sass/src/panel/Title.scss */ .x-title-icon { display: inline-block; vertical-align: middle; background-position: center; background-repeat: no-repeat; } /* line 1, ../../../ext-theme-base/sass/src/panel/Tool.scss */ .x-tool { font-size: 0; line-height: 0; } /* line 3, ../../../ext-theme-base/sass/src/panel/Header.scss */ .x-header > .x-box-inner { overflow: visible; } /* line 1, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ .x-splitter { font-size: 1px; } /* line 5, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ .x-splitter-horizontal { cursor: e-resize; cursor: row-resize; } /* line 10, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ .x-splitter-vertical { cursor: e-resize; cursor: col-resize; } /* line 17, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ .x-splitter-collapsed, .x-splitter-horizontal-noresize, .x-splitter-vertical-noresize { cursor: default; } /* line 21, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ .x-splitter-active { z-index: 4; } /* line 25, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ .x-collapse-el { position: absolute; background-repeat: no-repeat; } /* line 30, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ .x-splitter-focus { z-index: 4; } /* line 1, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ .x-box-layout-ct { overflow: hidden; position: relative; } /* line 6, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ .x-box-target { position: absolute; width: 20000px; top: 0; left: 0; height: 1px; } /* line 25, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ .x-rtl.x-box-target { left: auto; right: 0; } /* line 31, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ .x-box-inner { overflow: hidden; position: relative; left: 0; top: 0; } /* line 38, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ .x-box-scroller { position: absolute; background-repeat: no-repeat; background-position: center; line-height: 0; font-size: 0; } /* line 46, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ .x-box-scroller-top { top: 0; } /* line 50, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ .x-box-scroller-right { right: 0; } /* line 54, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ .x-box-scroller-bottom { bottom: 0; } /* line 58, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ .x-box-scroller-left { left: 0; } /* line 62, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ .x-box-menu-body-horizontal { float: left; } /* line 66, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ .x-box-menu-after { position: relative; float: left; } /* line 1, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ .x-toolbar-text { white-space: nowrap; } /* line 5, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ .x-toolbar-separator { display: block; font-size: 1px; overflow: hidden; cursor: default; border: 0; width: 0; height: 0; line-height: 0px; } /* line 16, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ .x-toolbar-scroller { padding-left: 0; } /* line 23, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ .x-toolbar-plain { border: 0; } /* line 4, ../../../ext-theme-base/sass/src/dd/DD.scss */ .x-dd-drag-proxy, .x-dd-drag-current { z-index: 1000000!important; pointer-events: none; } /* line 2, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ .x-dd-drag-repair .x-dd-drag-ghost { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); opacity: 0.6; } /* line 6, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ .x-dd-drag-repair .x-dd-drop-icon { display: none; } /* line 11, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ .x-dd-drag-ghost { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85); opacity: 0.85; padding: 5px; padding-left: 20px; white-space: nowrap; color: #000; font: normal 14px helvetica, arial, verdana, sans-serif; border: 1px solid; border-color: #ddd #bbb #bbb #ddd; background-color: #fff; } /* line 28, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ .x-dd-drop-icon { position: absolute; top: 3px; left: 3px; display: block; width: 16px; height: 16px; background-color: transparent; background-position: center; background-repeat: no-repeat; z-index: 1; } /* line 51, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ .x-rtl .x-dd-drag-ghost { padding-left: 5px; padding-right: 20px; } /* line 55, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ .x-rtl .x-dd-drop-icon { left: auto; right: 3px; } /* line 66, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ .x-dd-drop-ok .x-dd-drop-icon { background-image: url(images/dd/drop-yes.png); } /* line 70, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ .x-dd-drop-ok-add .x-dd-drop-icon { background-image: url(images/dd/drop-add.png); } /* line 75, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ .x-dd-drop-nodrop div.x-dd-drop-icon { background-image: url(images/dd/drop-no.png); } /* line 1, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-docked { position: absolute !important; z-index: 1; } /* line 7, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-docked-vertical { position: static; } /* line 11, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-docked-top { border-bottom-width: 0 !important; } /* line 15, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-docked-bottom { border-top-width: 0 !important; } /* line 19, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-docked-left { border-right-width: 0 !important; } /* line 23, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-docked-right { border-left-width: 0 !important; } /* line 27, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-docked-noborder-top { border-top-width: 0 !important; } /* line 31, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-docked-noborder-right { border-right-width: 0 !important; } /* line 35, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-docked-noborder-bottom { border-bottom-width: 0 !important; } /* line 39, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-docked-noborder-left { border-left-width: 0 !important; } /* line 45, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-l { border-left-width: 0 !important; } /* line 48, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-b { border-bottom-width: 0 !important; } /* line 51, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-bl { border-bottom-width: 0 !important; border-left-width: 0 !important; } /* line 55, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-r { border-right-width: 0 !important; } /* line 58, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-rl { border-right-width: 0 !important; border-left-width: 0 !important; } /* line 62, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-rb { border-right-width: 0 !important; border-bottom-width: 0 !important; } /* line 66, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-rbl { border-right-width: 0 !important; border-bottom-width: 0 !important; border-left-width: 0 !important; } /* line 71, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-t { border-top-width: 0 !important; } /* line 74, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-tl { border-top-width: 0 !important; border-left-width: 0 !important; } /* line 78, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-tb { border-top-width: 0 !important; border-bottom-width: 0 !important; } /* line 82, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-tbl { border-top-width: 0 !important; border-bottom-width: 0 !important; border-left-width: 0 !important; } /* line 87, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-tr { border-top-width: 0 !important; border-right-width: 0 !important; } /* line 91, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-trl { border-top-width: 0 !important; border-right-width: 0 !important; border-left-width: 0 !important; } /* line 96, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-trb { border-top-width: 0 !important; border-right-width: 0 !important; border-bottom-width: 0 !important; } /* line 101, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ .x-noborder-trbl { border-width: 0 !important; } /* line 2, ../../../ext-theme-base/sass/src/panel/Panel.scss */ .x-panel, .x-plain { overflow: hidden; position: relative; } /* line 7, ../../../ext-theme-base/sass/src/panel/Panel.scss */ .x-panel { outline: none; } /* line 13, ../../../ext-theme-base/sass/src/panel/Panel.scss */ td.x-frame-mc { vertical-align: top; } /* line 18, ../../../ext-theme-base/sass/src/panel/Panel.scss */ .x-panel-body { overflow: hidden; position: relative; } /* line 24, ../../../ext-theme-base/sass/src/panel/Panel.scss */ .x-panel-header-plain, .x-panel-body-plain { border: 0; padding: 0; } /* line 33, ../../../ext-theme-base/sass/src/panel/Panel.scss */ .x-panel-collapsed-mini { visibility: hidden; } /* line 1, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-item { display: table; table-layout: fixed; border-spacing: 0; border-collapse: separate; } /* line 10, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-item-label { overflow: hidden; } /* line 14, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-item.x-form-item-no-label > .x-form-item-label { display: none; } /* line 19, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-item-label, .x-form-item-body { display: table-cell; } /* line 23, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-item-body { vertical-align: middle; height: 100%; } /* line 28, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-item-label-inner { display: inline-block; } /* line 32, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-item-label-top { display: table-row; height: 1px; } /* line 35, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-item-label-top > .x-form-item-label-inner { display: table-cell; } /* line 39, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-item-label-top-side-error:after { display: table-cell; content: ''; } /* line 44, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-item-label-right { text-align: right; } /* line 47, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-item-label-right.x-rtl { text-align: left; } /* line 53, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-error-wrap-side { display: table-cell; vertical-align: middle; } /* line 58, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-error-wrap-under { display: table-row; height: 1px; } /* line 61, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-error-wrap-under > .x-form-error-msg { display: table-cell; } /* line 66, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-error-wrap-under-side-label:before { display: table-cell; content: ''; pointer-events: none; } /* line 72, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-invalid-icon { overflow: hidden; } /* line 74, ../../../ext-theme-base/sass/src/form/Labelable.scss */ .x-form-invalid-icon ul { display: none; } /* line 1, ../../../ext-theme-base/sass/src/form/field/Display.scss */ .x-form-display-field-body { vertical-align: top; } /* line 1, ../../../ext-theme-base/sass/src/layout/container/Fit.scss */ .x-fit-item { position: relative; } /* line 1, ../../../ext-theme-base/sass/src/panel/Table.scss */ .x-grid-view { overflow: hidden; position: relative; } /* A grid *item* is a dataview item. It is encapsulated by a <table class="x-grid-item">. * One item always corresponds to one store record * But an item may contain more than one <tr>. * ONE child row, <tr class="x-grid-row"> will be the grid-row and will contain record data */ /* line 11, ../../../ext-theme-base/sass/src/panel/Table.scss */ .x-grid-row-table { width: 0; table-layout: fixed; border: 0 none; border-collapse: separate; border-spacing: 0; } /* line 25, ../../../ext-theme-base/sass/src/panel/Table.scss */ .x-grid-item { table-layout: fixed; outline: none; } /* line 30, ../../../ext-theme-base/sass/src/panel/Table.scss */ .x-grid-row { outline: none; } /* line 34, ../../../ext-theme-base/sass/src/panel/Table.scss */ .x-grid-td { overflow: hidden; border-width: 0; vertical-align: top; } /* line 40, ../../../ext-theme-base/sass/src/panel/Table.scss */ .x-grid-cell-inner { overflow: hidden; white-space: nowrap; } /* line 46, ../../../ext-theme-base/sass/src/panel/Table.scss */ .x-wrap-cell .x-grid-cell-inner { white-space: normal; } /* line 51, ../../../ext-theme-base/sass/src/panel/Table.scss */ .x-grid-resize-marker { position: absolute; z-index: 5; top: 0; } /* line 1, ../../../ext-theme-base/sass/src/view/View.scss */ .x-view-item-focused { outline: 1px dashed #3f4757 !important; outline-offset: -1px; } /* line 1, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ .x-form-cb-wrap { vertical-align: top; } /* line 5, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ .x-form-cb-wrap-inner { position: relative; } /* line 9, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ .x-form-cb { position: absolute; left: 0; right: auto; vertical-align: top; overflow: hidden; padding: 0; border: 0; } /* line 17, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ .x-form-cb::-moz-focus-inner { padding: 0; border: 0; } /* line 24, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ .x-rtl.x-form-cb { right: 0; left: auto; } /* allow for the component to be positioned after the label */ /* line 31, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ .x-form-cb-after { left: auto; right: 0; } /* line 37, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ .x-rtl.x-form-cb-after { left: 0; right: auto; } /* some browsers like IE 10 need a block element to be able to measure the height of a multi-line element */ /* line 45, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ .x-form-cb-label { display: inline-block; } /* line 54, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ .x-form-cb-wrap-inner-no-box-label > .x-form-cb { position: static; } /* line 58, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ .x-form-cb-wrap-inner-no-box-label > .x-form-cb-label { display: none; } /* line 2, ../../../ext-theme-base/sass/src/grid/header/DropZone.scss */ .x-col-move-top, .x-col-move-bottom { position: absolute; top: 0; line-height: 0; font-size: 0; overflow: hidden; z-index: 20000; background: no-repeat center top transparent; } /* line 1, ../../../ext-theme-base/sass/src/grid/header/Container.scss */ .x-grid-header-ct { cursor: default; } /* line 1, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-column-header { position: absolute; overflow: hidden; background-repeat: repeat-x; } /* * TODO: * When IE8 retires, revisit path_to_url for better way to center header text */ /* line 11, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-column-header-inner { white-space: nowrap; position: relative; overflow: hidden; } /* line 17, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-leaf-column-header { height: 100%; } /* line 19, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-leaf-column-header .x-column-header-text-container { height: 100%; } /* line 26, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-column-header-text-container { width: 100%; display: table; table-layout: fixed; } /* line 31, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-column-header-text-container.x-column-header-text-container-auto { table-layout: auto; } /* line 36, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-column-header-text-wrapper { display: table-cell; vertical-align: middle; } /* line 41, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-column-header-text { background-repeat: no-repeat; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } /* line 50, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-rtl.x-column-header-text { display: inline-block; } /* line 58, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-column-header-trigger { display: none; height: 100%; background-repeat: no-repeat; position: absolute; right: 0; top: 0; z-index: 2; } /* line 69, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-rtl.x-column-header-trigger { left: 0; right: auto; } /* line 76, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-column-header-over .x-column-header-trigger, .x-column-header-open .x-column-header-trigger { display: block; } /* line 81, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-column-header-align-right { text-align: right; } /* line 86, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-rtl.x-column-header-align-right { text-align: left; } /* line 91, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-column-header-align-left { text-align: left; } /* line 96, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-rtl.x-column-header-align-left { text-align: right; } /* line 101, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ .x-column-header-align-center { text-align: center; } /* line 3, ../../../ext-theme-base/sass/src/tree/Panel.scss */ .x-autowidth-table .x-grid-item { table-layout: auto; width: auto !important; } /* line 8, ../../../ext-theme-base/sass/src/tree/Panel.scss */ .x-tree-view { overflow: hidden; } /* line 13, ../../../ext-theme-base/sass/src/tree/Panel.scss */ .x-tree-elbow-img, .x-tree-icon { background-repeat: no-repeat; background-position: 0 center; vertical-align: top; } /* line 19, ../../../ext-theme-base/sass/src/tree/Panel.scss */ .x-tree-checkbox { border: 0; padding: 0; vertical-align: top; position: relative; background-color: transparent; } /* line 27, ../../../ext-theme-base/sass/src/tree/Panel.scss */ .x-tree-animator-wrap { overflow: hidden; } /* line 1, ../../../ext-theme-base/sass/src/form/field/Text.scss */ .x-form-trigger-wrap { display: table; width: 100%; height: 100%; } /* line 14, ../../../ext-theme-base/sass/src/form/field/Text.scss */ .x-gecko .x-form-trigger-wrap { display: -moz-inline-box; display: inline-flex; vertical-align: top; } /* line 22, ../../../ext-theme-base/sass/src/form/field/Text.scss */ .x-form-text-wrap { display: table-cell; overflow: hidden; height: 100%; } /* line 29, ../../../ext-theme-base/sass/src/form/field/Text.scss */ .x-gecko .x-form-text-wrap { display: block; -moz-box-flex: 1; flex: 1; } /* line 39, ../../../ext-theme-base/sass/src/form/field/Text.scss */ .x-form-item-body.x-form-text-grow { min-width: inherit; max-width: inherit; } /* line 44, ../../../ext-theme-base/sass/src/form/field/Text.scss */ .x-form-text { border: 0; margin: 0; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; display: block; background: repeat-x 0 0; width: 100%; height: 100%; } /* line 53, ../../../ext-theme-base/sass/src/form/field/Text.scss */ .x-webkit .x-form-text { height: calc(100% + 3px); } /* line 61, ../../../ext-theme-base/sass/src/form/field/Text.scss */ .x-form-trigger { display: table-cell; vertical-align: top; cursor: pointer; overflow: hidden; background-repeat: no-repeat; line-height: 0; white-space: nowrap; } /* line 72, ../../../ext-theme-base/sass/src/form/field/Text.scss */ .x-item-disabled .x-form-trigger { cursor: default; } /* line 75, ../../../ext-theme-base/sass/src/form/field/Text.scss */ .x-form-trigger.x-form-trigger-cmp { background: none; border: 0; } /* line 84, ../../../ext-theme-base/sass/src/form/field/Text.scss */ .x-form-trigger.x-form-trigger-cmp.x-rtl { background: none; border: 0; } /* line 92, ../../../ext-theme-base/sass/src/form/field/Text.scss */ .x-gecko .x-form-trigger { display: block; } /* line 1, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ .x-border-layout-ct { overflow: hidden; } /* line 5, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ .x-border-layout-ct { position: relative; } /* line 9, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ .x-border-region-slide-in { z-index: 5; } /* line 13, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ .x-region-collapsed-placeholder { z-index: 4; } /** * generates base style rules for both tabs and buttons * * @param {string} [$base-cls='button'] * * @param {boolean} [$include-arrows=true] * * @member Ext.button.Button * @private */ /* line 16, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn { display: inline-block; outline: 0; cursor: pointer; white-space: nowrap; text-decoration: none; vertical-align: top; overflow: hidden; position: relative; } /* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn > .x-frame { height: 100%; width: 100%; } /* line 34, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-wrap { display: table; height: 100%; width: 100%; } /* line 40, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-button { vertical-align: middle; display: table-cell; white-space: nowrap; line-height: 0; } /* line 47, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-inner { display: inline-block; vertical-align: middle; overflow: hidden; text-overflow: ellipsis; } /* line 53, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-icon.x-btn-no-text > .x-btn-inner { display: none; } /* line 58, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-icon-el { display: none; vertical-align: middle; background-position: center center; background-repeat: no-repeat; } /* line 64, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-icon > .x-btn-icon-el { display: inline-block; } /* line 69, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-icon-top > .x-btn-icon-el, .x-btn-icon-bottom > .x-btn-icon-el { display: block; } /* line 74, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-button-center { text-align: center; } /* line 78, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-button-left { text-align: left; } /* line 83, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-rtl.x-btn-button-left { text-align: right; } /* line 88, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-button-right { text-align: right; } /* line 93, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-rtl.x-btn-button-right { text-align: left; } /* line 102, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-opera12m-btn-arrow-right { display: table; } /* line 106, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-opera12m-btn-arrow-right > .x-btn-arrow-right, .x-opera12m-btn-arrow-right > .x-btn-split-right { display: table-row; } /* line 114, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-arrow:after, .x-btn-split:after { background-repeat: no-repeat; content: ''; box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; -webkit-box-sizing: border-box; } /* line 126, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-arrow-right:after, .x-btn-split-right:after { display: table-cell; background-position: right center; } /* line 134, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-rtl.x-btn-arrow-right:after, .x-rtl.x-btn-split-right:after { background-position: left center; } /* line 141, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-arrow-bottom:after, .x-btn-split-bottom:after { display: table-row; background-position: center bottom; content: '\00a0'; line-height: 0; } /* line 154, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-btn-mc { overflow: visible; } /* line 16, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-tab { display: block; outline: 0; cursor: pointer; white-space: nowrap; text-decoration: none; vertical-align: top; overflow: hidden; position: relative; } /* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-tab > .x-frame { height: 100%; width: 100%; } /* line 34, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-tab-wrap { display: table; height: 100%; width: 100%; } /* line 40, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-tab-button { vertical-align: middle; display: table-cell; white-space: nowrap; line-height: 0; } /* line 47, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-tab-inner { display: inline-block; vertical-align: middle; overflow: hidden; text-overflow: ellipsis; } /* line 53, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-tab-icon.x-tab-no-text > .x-tab-inner { display: none; } /* line 58, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-tab-icon-el { display: none; vertical-align: middle; background-position: center center; background-repeat: no-repeat; } /* line 64, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-tab-icon > .x-tab-icon-el { display: inline-block; } /* line 69, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-tab-icon-top > .x-tab-icon-el, .x-tab-icon-bottom > .x-tab-icon-el { display: block; } /* line 74, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-tab-button-center { text-align: center; } /* line 78, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-tab-button-left { text-align: left; } /* line 83, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-rtl.x-tab-button-left { text-align: right; } /* line 88, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-tab-button-right { text-align: right; } /* line 93, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-rtl.x-tab-button-right { text-align: left; } /* line 154, ../../../ext-theme-base/sass/src/button/Button.scss */ .x-tab-mc { overflow: visible; } /* line 7, ../../../ext-theme-base/sass/src/tab/Tab.scss */ .x-tab { z-index: 1; } /* line 11, ../../../ext-theme-base/sass/src/tab/Tab.scss */ .x-tab-active { z-index: 3; } /* line 15, ../../../ext-theme-base/sass/src/tab/Tab.scss */ .x-tab-button { position: relative; } /* line 21, ../../../ext-theme-base/sass/src/tab/Tab.scss */ .x-tab-close-btn { display: block; position: absolute; font-size: 0; line-height: 0; } /* line 28, ../../../ext-theme-base/sass/src/tab/Tab.scss */ .x-tab-rotate-left { -webkit-transform: rotate(270deg); -webkit-transform-origin: 100% 0; -moz-transform: rotate(270deg); -moz-transform-origin: 100% 0; -o-transform: rotate(270deg); -o-transform-origin: 100% 0; -ms-transform: rotate(270deg); -ms-transform-origin: 100% 0; transform: rotate(270deg); transform-origin: 100% 0; } /* line 43, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ .x-ie8 .x-tab-rotate-left { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); } /* line 32, ../../../ext-theme-base/sass/src/tab/Tab.scss */ .x-tab-rotate-left.x-rtl { -webkit-transform: rotate(90deg); -webkit-transform-origin: 0 0; -moz-transform: rotate(90deg); -moz-transform-origin: 0 0; -o-transform: rotate(90deg); -o-transform-origin: 0 0; -ms-transform: rotate(90deg); -ms-transform-origin: 0 0; transform: rotate(90deg); transform-origin: 0 0; } /* line 43, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ .x-ie8 .x-tab-rotate-left.x-rtl { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); } /* line 38, ../../../ext-theme-base/sass/src/tab/Tab.scss */ .x-tab-rotate-right { -webkit-transform: rotate(90deg); -webkit-transform-origin: 0 0; -moz-transform: rotate(90deg); -moz-transform-origin: 0 0; -o-transform: rotate(90deg); -o-transform-origin: 0 0; -ms-transform: rotate(90deg); -ms-transform-origin: 0 0; transform: rotate(90deg); transform-origin: 0 0; } /* line 43, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ .x-ie8 .x-tab-rotate-right { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); } /* line 42, ../../../ext-theme-base/sass/src/tab/Tab.scss */ .x-tab-rotate-right.x-rtl { -webkit-transform: rotate(270deg); -webkit-transform-origin: 100% 0; -moz-transform: rotate(270deg); -moz-transform-origin: 100% 0; -o-transform: rotate(270deg); -o-transform-origin: 100% 0; -ms-transform: rotate(270deg); -ms-transform-origin: 100% 0; transform: rotate(270deg); transform-origin: 100% 0; } /* line 43, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ .x-ie8 .x-tab-rotate-right.x-rtl { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); } /* line 55, ../../../ext-theme-base/sass/src/tab/Tab.scss */ .x-tab-tr, .x-tab-br, .x-tab-mr, .x-tab-tl, .x-tab-bl, .x-tab-ml { width: 1px; } /* line 1, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-tab-bar { z-index: 0; position: relative; } /* line 6, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-tab-bar-body { position: relative; } /* line 10, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-tab-bar-strip { position: absolute; line-height: 0; font-size: 0; z-index: 2; } /* line 16, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-tab-bar-top > .x-tab-bar-strip { bottom: 0; } /* line 20, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-tab-bar-bottom > .x-tab-bar-strip { top: 0; } /* line 24, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-tab-bar-left > .x-tab-bar-strip { right: 0; } /* line 28, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-tab-bar-left > .x-tab-bar-strip.x-rtl { right: auto; left: 0; } /* line 35, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-tab-bar-right > .x-tab-bar-strip { left: 0; } /* line 39, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-tab-bar-right > .x-tab-bar-strip.x-rtl { left: auto; right: 0; } /* line 47, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-tab-bar-horizontal .x-tab-bar-strip { width: 100%; left: 0; } /* line 52, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-tab-bar-vertical { display: table-cell; } /* line 58, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-tab-bar-vertical .x-tab-bar-strip { height: 100%; top: 0; } /* line 64, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-tab-bar-plain { background: transparent !important; } /* line 68, ../../../ext-theme-base/sass/src/tab/Bar.scss */ .x-box-scroller-plain { background-color: transparent !important; } /* line 1, ../../../ext-theme-base/sass/src/window/Window.scss */ .x-window { outline: none; overflow: hidden; } /* line 5, ../../../ext-theme-base/sass/src/window/Window.scss */ .x-window .x-window-wrap { position: relative; } /* line 10, ../../../ext-theme-base/sass/src/window/Window.scss */ .x-window-body { position: relative; overflow: hidden; } /* line 1, ../../../ext-theme-base/sass/src/tip/Tip.scss */ .x-tip { position: absolute; overflow: visible; /*pointer needs to be able to stick out*/ } /* line 6, ../../../ext-theme-base/sass/src/tip/Tip.scss */ .x-tip-body { overflow: hidden; position: relative; } /* line 11, ../../../ext-theme-base/sass/src/tip/Tip.scss */ .x-tip-anchor { position: absolute; overflow: hidden; border-style: solid; } /* line 1, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button { display: table; table-layout: fixed; } /* line 6, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item { display: table-cell; vertical-align: top; } /* line 10, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item > .x-frame { width: 100%; height: 100%; } /* line 17, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item .x-btn-mc { width: 100%; } /* line 23, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item-horizontal { display: table-cell; height: 100%; } /* line 30, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item-horizontal.x-segmented-button-first { border-top-right-radius: 0; border-bottom-right-radius: 0; } /* line 37, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item-horizontal.x-segmented-button-first .x-btn-tr, .x-segmented-button-item-horizontal.x-segmented-button-first .x-btn-mr, .x-segmented-button-item-horizontal.x-segmented-button-first .x-btn-br { display: none; } /* line 43, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item-horizontal.x-segmented-button-middle { border-radius: 0; border-left: 0; } /* line 53, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item-horizontal.x-segmented-button-middle .x-btn-tl, .x-segmented-button-item-horizontal.x-segmented-button-middle .x-btn-tr, .x-segmented-button-item-horizontal.x-segmented-button-middle .x-btn-ml, .x-segmented-button-item-horizontal.x-segmented-button-middle .x-btn-mr, .x-segmented-button-item-horizontal.x-segmented-button-middle .x-btn-bl, .x-segmented-button-item-horizontal.x-segmented-button-middle .x-btn-br { display: none; } /* line 59, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item-horizontal.x-segmented-button-last { border-left: 0; border-top-left-radius: 0; border-bottom-left-radius: 0; } /* line 67, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item-horizontal.x-segmented-button-last .x-btn-tl, .x-segmented-button-item-horizontal.x-segmented-button-last .x-btn-ml, .x-segmented-button-item-horizontal.x-segmented-button-last .x-btn-bl { display: none; } /* line 74, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-row { display: table-row; } /* line 79, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item-vertical.x-segmented-button-first { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } /* line 86, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item-vertical.x-segmented-button-first .x-btn-bl, .x-segmented-button-item-vertical.x-segmented-button-first .x-btn-bc, .x-segmented-button-item-vertical.x-segmented-button-first .x-btn-br { display: none; } /* line 92, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item-vertical.x-segmented-button-middle { border-radius: 0; border-top: 0; } /* line 102, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item-vertical.x-segmented-button-middle .x-btn-tl, .x-segmented-button-item-vertical.x-segmented-button-middle .x-btn-tc, .x-segmented-button-item-vertical.x-segmented-button-middle .x-btn-tr, .x-segmented-button-item-vertical.x-segmented-button-middle .x-btn-bl, .x-segmented-button-item-vertical.x-segmented-button-middle .x-btn-bc, .x-segmented-button-item-vertical.x-segmented-button-middle .x-btn-br { display: none; } /* line 108, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item-vertical.x-segmented-button-last { border-top: 0; border-top-right-radius: 0; border-top-left-radius: 0; } /* line 116, ../../../ext-theme-base/sass/src/button/Segmented.scss */ .x-segmented-button-item-vertical.x-segmented-button-last .x-btn-tl, .x-segmented-button-item-vertical.x-segmented-button-last .x-btn-tc, .x-segmented-button-item-vertical.x-segmented-button-last .x-btn-tr { display: none; } /* line 1, ../../../ext-theme-base/sass/src/layout/container/Table.scss */ .x-table-layout { font-size: 1em; } /* line 1, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ .x-btn-group { position: relative; overflow: hidden; } /* line 6, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ .x-btn-group-body { position: relative; } /* line 8, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ .x-btn-group-body .x-table-layout-cell { vertical-align: top; } /* line 2, ../../../ext-theme-base/sass/src/plugin/Viewport.scss */ .x-viewport, .x-viewport > .x-body { margin: 0; padding: 0; border: 0 none; overflow: hidden; position: static; touch-action: none; -ms-touch-action: none; } /* line 21, ../../../ext-theme-base/sass/src/plugin/Viewport.scss */ .x-viewport { height: 100%; } /* line 27, ../../../ext-theme-base/sass/src/plugin/Viewport.scss */ .x-viewport > .x-body { min-height: 100%; } /* line 1, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ .x-column { float: left; } /* line 6, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ .x-rtl > .x-column { float: right; } /* line 1, ../../../ext-theme-base/sass/src/resizer/SplitterTracker.scss */ .x-resizable-overlay { position: absolute; left: 0; top: 0; width: 100%; height: 100%; display: none; z-index: 200000; background-color: #fff; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; } /* line 1, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ .x-form-textarea { overflow: auto; resize: none; } /* line 6, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ div.x-form-text-grow .x-form-textarea { min-height: inherit; } /* line 2, ../../../ext-theme-base/sass/src/window/MessageBox.scss */ .x-message-box .x-form-display-field { height: auto; } /* line 1, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ .x-fieldset { display: block; /* preserve margins in IE */ position: relative; overflow: hidden; } /* line 7, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ .x-fieldset-header { overflow: hidden; } /* line 11, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ .x-fieldset-header .x-form-item, .x-fieldset-header .x-tool { float: left; } /* line 15, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ .x-fieldset-header .x-fieldset-header-text { float: left; } /* line 19, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ .x-fieldset-header .x-form-cb-wrap { font-size: 0; line-height: 0; height: auto; } /* line 25, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ .x-fieldset-header .x-form-cb { margin: 0; position: static; } /* line 31, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ .x-fieldset-body { overflow: hidden; } /* line 35, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ .x-fieldset-collapsed { padding-bottom: 0 !important; } /* line 38, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ .x-fieldset-collapsed > .x-fieldset-body { display: none; } /* line 43, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ .x-fieldset-header-text-collapsible { cursor: pointer; } /* line 50, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ .x-rtl.x-fieldset-header .x-form-item, .x-rtl.x-fieldset-header .x-tool { float: right; } /* line 54, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ .x-rtl.x-fieldset-header .x-fieldset-header-text { float: right; } /* line 8, ../../../ext-theme-base/sass/src/view/BoundList.scss */ .x-ie9 .x-boundlist-list-ct { min-height: 0\%; } /* line 1, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-datepicker { position: relative; } /* line 4, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-datepicker .x-monthpicker { left: 0; top: 0; display: block; } /* line 11, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-datepicker .x-monthpicker-months, .x-datepicker .x-monthpicker-years { height: 100%; } /* line 16, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-datepicker-inner { table-layout: fixed; width: 100%; border-collapse: separate; } /* line 22, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-datepicker-cell { padding: 0; } /* line 26, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-datepicker-header { position: relative; } /* line 30, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-datepicker-arrow { position: absolute; outline: none; font-size: 0; } /* line 36, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-datepicker-column-header { padding: 0; } /* line 40, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-datepicker-date { display: block; text-decoration: none; } /* line 45, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-monthpicker { display: table; } /* line 48, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-monthpicker-body { height: 100%; position: relative; } /* line 54, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-monthpicker-months, .x-monthpicker-years { float: left; } /* line 58, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-monthpicker-item { float: left; } /* line 62, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-monthpicker-item-inner { display: block; text-decoration: none; } /* line 67, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-monthpicker-yearnav-button-ct { float: left; text-align: center; } /* line 72, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-monthpicker-yearnav-button { display: inline-block; outline: none; font-size: 0; } /* line 78, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-monthpicker-buttons { width: 100%; } /* line 82, ../../../ext-theme-base/sass/src/picker/Date.scss */ .x-datepicker .x-monthpicker-buttons { position: absolute; bottom: 0; } /* line 1, ../../../ext-theme-base/sass/src/form/field/File.scss */ .x-form-file-btn { overflow: hidden; position: relative; } /* line 6, ../../../ext-theme-base/sass/src/form/field/File.scss */ .x-form-file-input { border: 0; position: absolute; cursor: pointer; top: -2px; right: -2px; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; /* Yes, there's actually a good reason for this... * If the configured buttonText is set to something longer than the default, * then it will quickly exceed the width of the hidden file input's "Browse..." * button, so part of the custom button's clickable area will be covered by * the hidden file input's text box instead. This results in a text-selection * mouse cursor over that part of the button, at least in Firefox, which is * confusing to a user. Giving the hidden file input a huge font-size makes * the native button part very large so it will cover the whole clickable area. */ font-size: 1000px; } /* line 30, ../../../ext-theme-base/sass/src/form/field/File.scss */ .x-rtl.x-form-file-input { right: auto; left: -2px; } /* line 1, ../../../ext-theme-base/sass/src/form/field/Hidden.scss */ .x-form-item-hidden { margin: 0; } /* line 1, ../../../ext-theme-base/sass/src/picker/Color.scss */ .x-color-picker-item { float: left; text-decoration: none; } /* line 6, ../../../ext-theme-base/sass/src/picker/Color.scss */ .x-color-picker-item-inner { display: block; font-size: 1px; } /* line 1, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-toolbar { position: static !important; } /* line 6, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ .x-htmleditor-iframe, .x-htmleditor-textarea { display: block; overflow: auto; width: 100%; height: 100%; border: 0; } /* line 1, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-tagfield-body { vertical-align: top; } /* line 5, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-tagfield { height: auto!important; /* The wrap has to accommodate the list, so override the .x-form-text height rule */ padding: 0!important; /* Override .x-form-text padding rule */ cursor: text; min-height: 24px; overflow-y: auto; } /* line 13, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-tagfield .x-tagfield-list { padding: 1px 3px; margin: 0; } /* line 18, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-tagfield-list.x-tagfield-singleselect { white-space: nowrap; overflow: hidden; } /* line 23, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-tagfield-input, .x-tagfield-item { vertical-align: top; display: inline-block; position: relative; } /* line 29, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-tagfield-input input, .x-tagfield-input div { border: 0 none; margin: 0; background: none; width: 100%; } /* line 36, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-tagfield-input-field { line-height: 20px; } /* line 40, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-tagfield-emptyinput { display: none; } /* line 44, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-tagfield-stacked .x-tagfield-item { display: block; } /* line 48, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-tagfield-item { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; background-color: #e2e2e2; border: 1px solid #e2e2e2; padding: 0px 1px 0px 5px !important; margin: 1px 4px 1px 0; cursor: default; } /* line 57, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-field:not(.x-item-disabled) .x-tagfield-item:hover { background: #c9c9c9; border: 1px solid #c9c9c9; } /* line 62, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-field:not(.x-item-disabled) .x-tagfield-item.x-tagfield-item-selected { border: 1px solid #5b6270 !important; background: #5b6270 !important; color: white !important; } /* line 68, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-tagfield-item-text { line-height: 18px; padding-right: 20px; } /* line 73, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-tagfield-item-close { cursor: pointer; position: absolute; background-image: url(images/form/tag-field-item-close.png); width: 12px; height: 12px; top: 2px; right: 2px; } /* line 83, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-field:not(.x-item-disabled) .x-tagfield-item.x-tagfield-item-selected .x-tagfield-item-close { background-position: 0px 12px; } /* line 87, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-field:not(.x-item-disabled) .x-tagfield-item-close:hover { background-position: 24px 0px; } /* line 91, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-field:not(.x-item-disabled) .x-tagfield-item.x-tagfield-item-selected .x-tagfield-item-close:hover { background-position: 24px 12px; } /* line 95, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-field:not(.x-item-disabled) .x-tagfield-item-close:active { background-position: 12px 0px; } /* line 99, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-field:not(.x-item-disabled) .x-tagfield-item.x-tagfield-item-selected .x-tagfield-item-close:active { background-position: 12px 12px; } /* line 105, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-rtl.x-tagfield-item-text { padding-right: auto; padding-left: 20px; } /* line 109, ../../../ext-theme-base/sass/src/form/field/Tag.scss */ .x-rtl.x-tagfield-item-close { right: auto; left: 2px; } /* line 1, ../../../ext-theme-base/sass/src/grid/column/Action.scss */ .x-grid-cell-inner-action-col { line-height: 0; font-size: 0; } /* line 1, ../../../ext-theme-base/sass/src/grid/column/Check.scss */ .x-grid-cell-inner-checkcolumn { line-height: 0; font-size: 0; } /* line 1, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ .x-group-hd-container { overflow: hidden; } /* line 5, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ .x-grid-group-hd { white-space: nowrap; outline: none; } /* line 10, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ .x-grid-row-body-hidden, .x-grid-group-collapsed { display: none; } /* line 1, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ .x-grid-row-body-hidden { display: none; } /* line 1, ../../../ext-theme-base/sass/src/menu/Menu.scss */ .x-menu { outline: none; } /* line 5, ../../../ext-theme-base/sass/src/menu/Menu.scss */ .x-menu-item { white-space: nowrap; overflow: hidden; border-color: transparent; border-style: solid; } /* line 13, ../../../ext-theme-base/sass/src/menu/Menu.scss */ .x-menu-item-cmp { margin: 2px; } /* line 16, ../../../ext-theme-base/sass/src/menu/Menu.scss */ .x-menu-item-cmp .x-field-label-cell { vertical-align: middle; } /* line 24, ../../../ext-theme-base/sass/src/menu/Menu.scss */ .x-menu-icon-separator { position: absolute; top: 0px; z-index: 0; height: 100%; overflow: hidden; } /* line 30, ../../../ext-theme-base/sass/src/menu/Menu.scss */ .x-menu-plain .x-menu-icon-separator { display: none; } /* line 35, ../../../ext-theme-base/sass/src/menu/Menu.scss */ .x-menu-item-link { -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; text-decoration: none; outline: 0; display: block; } /* line 50, ../../../ext-theme-base/sass/src/menu/Menu.scss */ .x-menu-item-link-href { -webkit-touch-callout: default; } /* line 54, ../../../ext-theme-base/sass/src/menu/Menu.scss */ .x-menu-item-text { display: inline-block; } /* line 60, ../../../ext-theme-base/sass/src/menu/Menu.scss */ .x-menu-item-icon, .x-menu-item-icon-right, .x-menu-item-arrow { font-size: 0; position: absolute; text-align: center; background-repeat: no-repeat; } /* * Rules for fields which are rendered to fit inside grid cells. * This includes cell and row editor fields and fields in widget columns. */ /* line 7, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ .x-grid-editor .x-form-cb-wrap { text-align: center; } /* line 12, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ .x-grid-editor .x-form-cb { position: static; } /* line 19, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ .x-grid-editor .x-form-display-field { margin: 0; white-space: nowrap; overflow: hidden; } /* line 27, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ .x-grid-editor div.x-form-action-col-field { line-height: 0; } /* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ .x-grid-row-editor-wrap { position: absolute; overflow: visible; z-index: 2; } /* line 8, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ .x-grid-row-editor { position: absolute; } /* line 12, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ .x-grid-row-editor-buttons { position: absolute; white-space: nowrap; } /* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */ .x-grid-row-expander { font-size: 0; line-height: 0; } /* line 1, ../../../ext-theme-base/sass/src/grid/selection/SpreadsheetModel.scss */ .x-ssm-row-numberer-hd { cursor: se-resize!important; } /* line 6, ../../../ext-theme-base/sass/src/grid/selection/SpreadsheetModel.scss */ .x-ssm-row-numberer-cell { cursor: e-resize; } /* line 11, ../../../ext-theme-base/sass/src/grid/selection/SpreadsheetModel.scss */ .x-ssm-column-select .x-column-header { cursor: s-resize; } /* line 1, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ .x-abs-layout-ct { position: relative; } /* line 5, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ .x-abs-layout-item { position: absolute !important; } /* line 1, ../../../ext-theme-base/sass/src/layout/container/Center.scss */ .x-center-layout-item { position: absolute; } /* line 5, ../../../ext-theme-base/sass/src/layout/container/Center.scss */ .x-center-target { position: relative; } /* line 1, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ .x-form-layout-wrap { display: table; width: 100%; border-collapse: separate; } /* line 7, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ .x-form-layout-colgroup { display: table-column-group; } /* line 11, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ .x-form-layout-column { display: table-column; } /* line 16, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ .x-form-layout-auto-label > * > .x-form-item-label { width: auto !important; } /* line 20, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ .x-form-layout-auto-label > * > .x-form-item-label > .x-form-item-label-inner { width: auto !important; white-space: nowrap; } /* line 26, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ .x-form-layout-auto-label > * > .x-form-layout-label-column { width: 1px; } /* line 33, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ .x-form-layout-sized-label > * > .x-form-item-label { width: auto !important; } /* line 40, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ .x-form-form-item { display: table-row; } /* line 43, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ .x-form-form-item > .x-form-item-label { padding-left: 0 !important; padding-right: 0 !important; padding-bottom: 0 !important; } /* line 51, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ .x-form-form-item > .x-form-item-body { max-width: none; } /* line 60, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ .x-form-form-item.x-form-item-no-label:before { content: ' '; display: table-cell; pointer-events: none; } /* line 2, ../../../ext-theme-base/sass/src/resizer/Resizer.scss */ .x-resizable-wrapped { box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; -webkit-box-sizing: border-box; } /* line 1, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ .x-column-header-checkbox .x-column-header-text { display: block; background-repeat: no-repeat; font-size: 0; } /* line 7, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ .x-grid-cell-row-checker { vertical-align: middle; background-repeat: no-repeat; font-size: 0; } /* line 1, ../../../ext-theme-base/sass/src/slider/Multi.scss */ .x-slider { outline: none; position: relative; } /* line 6, ../../../ext-theme-base/sass/src/slider/Multi.scss */ .x-slider-inner { position: relative; left: 0; top: 0; overflow: visible; } /* line 11, ../../../ext-theme-base/sass/src/slider/Multi.scss */ .x-slider-vert .x-slider-inner { background: repeat-y 0 0; } /* line 16, ../../../ext-theme-base/sass/src/slider/Multi.scss */ .x-slider-thumb { position: absolute; background: no-repeat 0 0; } /* line 19, ../../../ext-theme-base/sass/src/slider/Multi.scss */ .x-slider-horz .x-slider-thumb { left: 0; } /* line 22, ../../../ext-theme-base/sass/src/slider/Multi.scss */ .x-slider-vert .x-slider-thumb { bottom: 0; } /* line 1, ../../../ext-theme-base/sass/src/toolbar/Breadcrumb.scss */ .x-breadcrumb-btn .x-box-target:first-child { margin: 0; } /* including package ext-theme-neutral */ /* line 1, ../../../ext-theme-neutral/sass/src/scroll/Indicator.scss */ .x-scroll-indicator { position: absolute; background-color: black; opacity: 0.5; border-radius: 3px; margin: 2px; } /* line 10, ../../../ext-theme-neutral/sass/src/scroll/Indicator.scss */ .x-scroll-indicator-x { bottom: 0; left: 0; height: 6px; } /* line 16, ../../../ext-theme-neutral/sass/src/scroll/Indicator.scss */ .x-scroll-indicator-y { right: 0; top: 0; width: 6px; } /* line 23, ../../../ext-theme-neutral/sass/src/scroll/Indicator.scss */ .x-rtl.x-scroll-indicator-x { left: auto; right: 0; } /* line 28, ../../../ext-theme-neutral/sass/src/scroll/Indicator.scss */ .x-rtl.x-scroll-indicator-y { right: auto; left: 0; } /* line 1, ../../../ext-theme-neutral/sass/src/Component.scss */ .x-body { color: white; font-size: 15px; line-height: 17px; font-family: helvetica, arial, verdana, sans-serif; background: black; } /* line 19, ../../../ext-theme-neutral/sass/src/Component.scss */ .x-animating-size, .x-collapsed { overflow: hidden!important; } /* line 2, ../../../ext-theme-neutral/sass/src/Editor.scss */ .x-editor .x-form-item-body { padding-bottom: 0; } /* line 1, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ .x-focus-element { position: absolute; top: -10px; left: -10px; width: 0px; height: 0px; } /* line 9, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ .x-focus-frame { position: absolute; left: 0px; top: 0px; z-index: 100000000; width: 0px; height: 0px; } /* line 21, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ .x-focus-frame-top, .x-focus-frame-bottom, .x-focus-frame-left, .x-focus-frame-right { position: absolute; top: 0px; left: 0px; } /* line 28, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ .x-focus-frame-top, .x-focus-frame-bottom { border-top: solid 2px #15428b; height: 2px; } /* line 34, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ .x-focus-frame-left, .x-focus-frame-right { border-left: solid 2px #15428b; width: 2px; } /* line 1, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ .x-mask { background-image: none; background-color: rgba(255, 255, 255, 0.7); cursor: default; border-style: solid; border-width: 1px; border-color: transparent; } /* line 16, ../../../ext-theme-base/sass/etc/mixins/background-opacity.scss */ .x-ie8 .x-mask { filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#B3FFFFFF, endColorstr=#B3FFFFFF); zoom: 1; } /* line 15, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ .x-mask.x-focus { border-style: solid; border-width: 1px; border-color: #3f4757; } /* line 22, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ .x-mask-msg { padding: 8px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; background: #3f4757; } /* line 40, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ .x-mask-msg-inner { padding: 5px 10px; background-color: #232d38; color: white; font: normal 15px helvetica, arial, verdana, sans-serif; } /* line 52, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ .x-mask-msg-text { padding: 21px 0 0; } /* line 63, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ .x-rtl.x-mask-msg-text { padding: 21px 0 0 0; } /** * Creates a visual theme for an Ext.ProgressBar * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {color} [$ui-border-color=$progress-border-color] * The border-color of the ProgressBar * * @param {color} [$ui-background-color=$progress-background-color] * The background-color of the ProgressBar * * @param {color} [$ui-bar-background-color=$progress-bar-background-color] * The background-color of the ProgressBar's moving element * * @param {string/list} [$ui-bar-background-gradient=$progress-bar-background-gradient] * The background-gradient of the ProgressBar's moving element. Can be either the name of * a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {color} [$ui-color-front=$progress-text-color-front] * The color of the ProgressBar's text when in front of the ProgressBar's moving element * * @param {color} [$ui-color-back=$progress-text-color-back] * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it * * @param {number} [$ui-height=$progress-height] * The height of the ProgressBar * * @param {number} [$ui-border-width=$progress-border-width] * The border-width of the ProgressBar * * @param {number} [$ui-border-radius=$progress-border-radius] * The border-radius of the ProgressBar * * @param {string} [$ui-text-text-align=$progress-text-text-align] * The text-align of the ProgressBar's text * * @param {number} [$ui-text-font-size=$progress-text-font-size] * The font-size of the ProgressBar's text * * @param {string} [$ui-text-font-weight=$progress-text-font-weight] * The font-weight of the ProgressBar's text * * @member Ext.ProgressBar */ /* line 80, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ .x-progress-default { background-color: #232d38; border-width: 0; height: 20px; border-color: #18181a; } /* line 92, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ .x-progress-default .x-progress-bar-default { background-image: none; background-color: #ed9200; } /* line 107, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ .x-progress-default .x-progress-text { color: black; font-weight: bold; font-size: 15px; font-family: helvetica, arial, verdana, sans-serif; text-align: center; line-height: 20px; } /* line 116, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ .x-progress-default .x-progress-text-back { color: white; line-height: 20px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-progress-bar-default:before { display: none; content: "x-slicer:stretch:bottom" !important; } /*</if slicer>*/ /* */ /* line 127, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ .x-progressbar-default-cell > .x-grid-cell-inner, .x-progressbarwidget-default-cell > .x-grid-cell-inner { padding-top: 3px; padding-bottom: 3px; } /* line 130, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ .x-progressbar-default-cell > .x-grid-cell-inner .x-progress-default, .x-progressbarwidget-default-cell > .x-grid-cell-inner .x-progress-default { height: 20px; } /* line 1, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool { cursor: pointer; } /* line 5, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-img { overflow: hidden; width: 16px; height: 16px; background-image: url(images/tools/tool-sprites.png); margin: 0; } /* line 20, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-pressed .x-tool-img { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } /* line 28, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-placeholder { visibility: hidden; } /* line 32, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-close { background-position: 0 0; } /* line 36, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-minimize { background-position: 0 -16px; } /* line 40, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-maximize { background-position: 0 -32px; } /* line 44, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-restore { background-position: 0 -48px; } /* line 48, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-toggle { background-position: 0 -64px; } /* line 51, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-panel-collapsed .x-tool-toggle { background-position: 0 -80px; } /* line 56, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-gear { background-position: 0 -96px; } /* line 60, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-prev { background-position: 0 -112px; } /* line 64, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-next { background-position: 0 -128px; } /* line 68, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-pin { background-position: 0 -144px; } /* line 72, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-unpin { background-position: 0 -160px; } /* line 76, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-right { background-position: 0 -176px; } /* line 80, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-left { background-position: 0 -192px; } /* line 84, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-down { background-position: 0 -208px; } /* line 88, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-up { background-position: 0 -224px; } /* line 92, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-refresh { background-position: 0 -240px; } /* line 96, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-plus { background-position: 0 -256px; } /* line 100, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-minus { background-position: 0 -272px; } /* line 104, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-search { background-position: 0 -288px; } /* line 108, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-save { background-position: 0 -304px; } /* line 112, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-help { background-position: 0 -320px; } /* line 116, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-print { background-position: 0 -336px; } /* line 120, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-expand { background-position: 0 -352px; } /* line 124, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-collapse { background-position: 0 -368px; } /* line 128, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-resize { background-position: 0 -384px; } /* line 132, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-move { background-position: 0 -400px; } /* line 137, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-expand-bottom, .x-tool-collapse-bottom { background-position: 0 -208px; } /* line 142, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-expand-top, .x-tool-collapse-top { background-position: 0 -224px; } /* line 147, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-expand-left, .x-tool-collapse-left { background-position: 0 -192px; } /* line 152, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-expand-right, .x-tool-collapse-right { background-position: 0 -176px; } /* line 159, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-rtl.x-tool-expand-left, .x-rtl.x-tool-collapse-left { background-position: 0 -176px; } /* line 164, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-rtl.x-tool-expand-right, .x-rtl.x-tool-collapse-right { background-position: 0 -192px; } /* line 172, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-close { background-position: -16px 0; } /* line 176, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-minimize { background-position: -16px -16px; } /* line 180, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-maximize { background-position: -16px -32px; } /* line 184, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-restore { background-position: -16px -48px; } /* line 188, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-toggle { background-position: -16px -64px; } /* line 193, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-panel-collapsed .x-tool-over .x-tool-toggle { background-position: -16px -80px; } /* line 198, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-gear { background-position: -16px -96px; } /* line 202, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-prev { background-position: -16px -112px; } /* line 206, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-next { background-position: -16px -128px; } /* line 210, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-pin { background-position: -16px -144px; } /* line 214, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-unpin { background-position: -16px -160px; } /* line 218, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-right { background-position: -16px -176px; } /* line 222, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-left { background-position: -16px -192px; } /* line 226, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-down { background-position: -16px -208px; } /* line 230, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-up { background-position: -16px -224px; } /* line 234, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-refresh { background-position: -16px -240px; } /* line 238, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-plus { background-position: -16px -256px; } /* line 242, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-minus { background-position: -16px -272px; } /* line 246, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-search { background-position: -16px -288px; } /* line 250, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-save { background-position: -16px -304px; } /* line 254, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-help { background-position: -16px -320px; } /* line 258, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-print { background-position: -16px -336px; } /* line 262, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-expand { background-position: -16px -352px; } /* line 266, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-collapse { background-position: -16px -368px; } /* line 270, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-resize { background-position: -16px -384px; } /* line 274, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-move { background-position: -16px -400px; } /* line 279, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-expand-bottom, .x-tool-over .x-tool-collapse-bottom { background-position: -16px -208px; } /* line 284, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-expand-top, .x-tool-over .x-tool-collapse-top { background-position: -16px -224px; } /* line 289, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-expand-left, .x-tool-over .x-tool-collapse-left { background-position: -16px -192px; } /* line 294, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-tool-expand-right, .x-tool-over .x-tool-collapse-right { background-position: -16px -176px; } /* line 301, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-rtl.x-tool-expand-left, .x-tool-over .x-rtl.x-tool-collapse-left { background-position: -16px -176px; } /* line 306, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ .x-tool-over .x-rtl.x-tool-expand-right, .x-tool-over .x-rtl.x-tool-collapse-right { background-position: -16px -192px; } /* line 2, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ .x-header-draggable, .x-header-ghost { cursor: move; } /* line 6, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ .x-header-text { white-space: nowrap; } /* line 1, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-collapse-el { cursor: pointer; } /* line 9, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-layout-split-left, .x-layout-split-right { top: 50%; margin-top: -24px; width: 8px; height: 48px; } /* line 17, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-layout-split-top, .x-layout-split-bottom { left: 50%; width: 48px; height: 8px; margin-left: -24px; } /* line 24, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-layout-split-left { background-image: url(images/util/splitter/mini-left.png); } /* line 28, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-layout-split-right { background-image: url(images/util/splitter/mini-right.png); } /* line 34, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-rtl.x-layout-split-left { background-image: url(images/util/splitter/mini-right.png); } /* line 38, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-rtl.x-layout-split-right { background-image: url(images/util/splitter/mini-left.png); } /* line 44, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-layout-split-top { background-image: url(images/util/splitter/mini-top.png); } /* line 48, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-layout-split-bottom { background-image: url(images/util/splitter/mini-bottom.png); } /* line 53, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-splitter-collapsed .x-layout-split-left { background-image: url(images/util/splitter/mini-right.png); } /* line 57, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-splitter-collapsed .x-layout-split-right { background-image: url(images/util/splitter/mini-left.png); } /* line 63, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-splitter-collapsed .x-rtl.x-layout-split-left { background-image: url(images/util/splitter/mini-left.png); } /* line 67, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-splitter-collapsed .x-rtl.x-layout-split-right { background-image: url(images/util/splitter/mini-right.png); } /* line 73, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-splitter-collapsed .x-layout-split-top { background-image: url(images/util/splitter/mini-bottom.png); } /* line 77, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-splitter-collapsed .x-layout-split-bottom { background-image: url(images/util/splitter/mini-top.png); } /* line 82, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-splitter-active { background-color: #b4b4b4; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); opacity: 0.8; } /* line 86, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-splitter-active .x-collapse-el { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); opacity: 0.3; } /* line 91, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ .x-splitter-focus { outline: 1px solid white; outline-offset: -2px; } /* line 33, ../../../ext-theme-base/sass/etc/mixins/css-outline.scss */ .x-ie8 .x-splitter-focus { outline: none; } /* line 35, ../../../ext-theme-base/sass/etc/mixins/css-outline.scss */ .x-ie8 .x-splitter-focus:after { position: absolute; content: ' '; top: 1px; right: 1px; bottom: 1px; left: 1px; border: 1px solid white; } /** * Creates a visual theme for a {@link Ext.layout.container.boxOverflow.Scroller Box Scroller} * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {string} $type * The type of component that this box scroller will be used with. For example 'toolbar' * or 'tab-bar' * * @param {number} [$horizontal-width=16px] * The width of horizontal scroller buttons * * @param {Number} [$horizontal-height=16px] * The height of horizontal scroller buttons * * @param {number} [$vertical-width=16px] * The width of vertical scroller buttons * * @param {Number} [$vertical-height=16px] * The height of vertical scroller buttons * * @param {number/list} [$top-margin=0] * The margin of the "top" scroller button * * @param {number/list} [$right-margin=0] * The margin of the "right" scroller button * * @param {number/list} [$bottom-margin=0] * The margin of the "bottom" scroller button * * @param {number/list} [$left-margin=0] * The margin of the "left" scroller button * * @param {number/list} $top-background-image * The background-image of the "top" scroller button * * @param {number/list} $right-background-image * The background-image of the "right" scroller button * * @param {number/list} $bottom-background-image * The background-image of the "bottom" scroller button * * @param {number/list} $left-background-image * The background-image of the "left" scroller button * * @param {color} [$border-color=$base-color] * The border-color of the scroller buttons * * @param {number} [$horizontal-border-width=0] * The border-width of the scroller buttons * * @param {number} [$vertical-border-width=0] * The border-width of the scroller buttons * * @param {number/list} [$container-padding=0] * The padding of the container that these scroller buttons will be used in. Used for * setting margin offsets of the inner layout element to reserve space for the scrollers. * * @param {string} [$cursor=pointer] * The type of cursor to display when the mouse is over a scroller button * * @param {string} [$cursor-disabled=default] * The type of cursor to display when the mouse is over a disabled scroller button * * @param {string} [$align=middle] * Vertical alignment of the scroller buttons, or horizontal align of vertically oriented * scroller buttons. Can be one of the following values: * * - `begin` * - `middle` * - `end` * - `stretch` * * @param {number} [$opacity=0.6] * The opacity of the scroller buttons. Only applicable when `$classic` is `false`. * * @param {number} [$opacity-over=0.8] * The opacity of hovered scroller buttons. Only applicable when `$classic` is `false`. * * @param {number} [$opacity-pressed=1] * The opacity of pressed scroller buttons. Only applicable when `$classic` is `false`. * * @param {number} [$opacity-disabled=0.25] * The opacity of disabled scroller buttons. Only applicable when `$classic` is `false`. * * @param {boolean} [$classic=false] * `true` to use classic-style scroller buttons. When `true` scroller buttons are given * their hover state by changing their background-position, When `false` scroller buttons * are given their hover state by applying opacity. * * @member Ext.layout.container.Box * @private */ /** * Creates a visual theme for a Toolbar. * @param {String} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {color} [$background-color=$toolbar-background-color] * The background color of the toolbar * * @param {string/list} [$background-gradient=$toolbar-background-gradient] * The background gradient of the toolbar * * @param {string/list} [$vertical-spacing=$toolbar-vertical-spacing] * The vertical spacing of the toolbar's items * * @param {string/list} [$horizontal-spacing=$toolbar-horizontal-spacing] * The horizontal spacing of the toolbar's items * * @param {color} [$border-color=$toolbar-border-color] * The border color of the toolbar * * @param {number} [$border-width=$toolbar-border-width] * The border-width of the toolbar * * @param {number} [$border-style=$toolbar-border-style] * The border-style of the toolbar * * @param {number} [$spacer-width=$toolbar-spacer-width] * The width of the toolbar's {@link Ext.toolbar.Spacer Spacers} * * @param {color} [$separator-color=$toolbar-separator-color] * The main border-color of the toolbar's {@link Ext.toolbar.Separator Separators} * * @param {color} [$separator-highlight-color=$toolbar-separator-highlight-color] * The highlight border-color of the toolbar's {@link Ext.toolbar.Separator Separators} * * @param {number/list} [$separator-horizontal-margin=$toolbar-separator-horizontal-margin] * The margin of {@link Ext.toolbar.Separator Separators} when the toolbar is horizontally aligned * * @param {number} [$separator-horizontal-height=$toolbar-separator-horizontal-height] * The height of {@link Ext.toolbar.Separator Separators} when the toolbar is vertically aligned * * @param {string} [$separator-horizontal-border-style=$toolbar-separator-horizontal-border-style] * The border-style of {@link Ext.toolbar.Separator Separators} when the toolbar is horizontally aligned * * @param {number} [$separator-horizontal-border-width=$toolbar-separator-horizontal-border-width] * The border-width of {@link Ext.toolbar.Separator Separators} when the toolbar is horizontally aligned * * @param {number/list} [$separator-vertical-margin=$toolbar-separator-vertical-margin] * The margin of {@link Ext.toolbar.Separator Separators} when the toolbar is vertically aligned * * @param {string} [$separator-vertical-border-style=$toolbar-separator-vertical-border-style] * The border-style of {@link Ext.toolbar.Separator Separators} when the toolbar is vertically aligned * * @param {number} [$separator-vertical-border-width=$toolbar-separator-vertical-border-width] * The border-width of {@link Ext.toolbar.Separator Separators} when the toolbar is vertically aligned * * @param {string} [$text-font-family=$toolbar-text-font-family] * The default font-family of the toolbar's text items * * @param {number} [$text-font-size=$toolbar-text-font-size] * The default font-size of the toolbar's text items * * @param {number} [$text-font-weight=$toolbar-text-font-weight] * The default font-weight of the toolbar's text items * * @param {color} [$text-color=$toolbar-text-color] * The color of the toolbar's text items * * @param {number} [$text-line-height=$toolbar-text-line-height] * The line-height of the toolbar's text items * * @param {number/list} [$text-padding=$toolbar-text-padding] * The padding of the toolbar's text items * * @param {number} [$scroller-width=$toolbar-scroller-width] * The width of the scroller buttons * * @param {number} [$scroller-height=$toolbar-scroller-height] * The height of the scroller buttons * * @param {number} [$scroller-vertical-width=$toolbar-scroller-vertical-width] * The width of scrollers on vertically aligned toolbars * * @param {number} [$scroller-vertical-height=$toolbar-scroller-vertical-height] * The height of scrollers on vertically aligned toolbars * * @param {color} [$scroller-border-color=$toolbar-scroller-border-color] * The border-color of the scroller buttons * * @param {color} [$scroller-border-width=$toolbar-scroller-border-width] * The border-width of the scroller buttons * * @param {color} [$scroller-vertical-border-color=$toolbar-scroller-vertical-border-color] * The border-color of scroller buttons on vertically aligned toolbars * * @param {color} [$scroller-vertical-border-width=$toolbar-scroller-vertical-border-width] * The border-width of scroller buttons on vertically aligned toolbars * * @param {number/list} [$scroller-top-margin=$toolbar-scroller-top-margin] * The margin of "top" scroller buttons * * @param {number/list} [$scroller-right-margin=$toolbar-scroller-right-margin] * The margin of "right" scroller buttons * * @param {number/list} [$scroller-bottom-margin=$toolbar-scroller-bottom-margin] * The margin of "bottom" scroller buttons * * @param {number/list} [$scroller-left-margin=$toolbar-scroller-left-margin] * The margin of "left" scroller buttons * * @param {string} [$scroller-cursor=$toolbar-scroller-cursor] * The cursor of Toolbar scrollers * * @param {string} [$scroller-cursor-disabled=$toolbar-scroller-cursor-disabled] * The cursor of disabled Toolbar scrollers * * @param {number} [$scroller-opacity=$toolbar-scroller-opacity] * The opacity of Toolbar scroller buttons. Only applicable when * `$classic-scrollers` is `false`. * * @param {number} [$scroller-opacity-over=$toolbar-scroller-opacity-over] * The opacity of hovered Toolbar scroller buttons. Only applicable when * `$classic-scrollers` is `false`. * * @param {number} [$scroller-opacity-pressed=$toolbar-scroller-opacity-pressed] * The opacity of pressed Toolbar scroller buttons. Only applicable when * `$classic-scrollers` is `false`. * * @param {number} [$scroller-opacity-disabled=$toolbar-scroller-opacity-disabled] * The opacity of disabled Toolbar scroller buttons. * * @param {string} [$tool-background-image=$toolbar-tool-background-image] * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar * * @param {boolean} [$classic-scrollers=$toolbar-classic-scrollers] * `true` to use classic-style scroller buttons. When `true` scroller buttons are given * their hover state by changing their background-position, When `false` scroller buttons * are given their hover state by applying opacity. * * @member Ext.toolbar.Toolbar */ /* line 198, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-default { padding: 6px 0 6px 8px; border-style: solid; border-color: #18181a; border-width: 1px; background-image: none; background-color: #3a3e4f; } /* line 202, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-default.x-rtl { padding: 6px 8px 6px 0; } /* line 214, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-default .x-tool-img { background-image: url(images/tools/tool-sprites.png); background-color: #3a3e4f; } /* line 227, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-default .x-toolbar-item { margin: 0 8px 0 0; } /* line 231, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-default .x-toolbar-item.x-rtl { margin: 0 0 0 8px; } /* line 237, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-default .x-toolbar-separator-horizontal { margin: 0 8px 0 0; height: 14px; border-style: solid; border-width: 0 0 0 1px; border-left-color: #1b1b29; border-right-color: #5d5d6e; } /* line 246, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-default .x-box-menu-after { margin: 0 8px; } /* line 251, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-default-vertical { padding: 6px 8px 0; } /* line 255, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-default-vertical.x-rtl { padding: 6px 8px 0; } /* line 260, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-default-vertical .x-toolbar-item { margin: 0 0 6px 0; } /* line 263, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-default-vertical .x-toolbar-item.x-rtl { margin: 0 0 6px 0; } /* line 269, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-default-vertical .x-toolbar-separator-vertical { margin: 0 5px 6px; border-style: solid none; border-width: 1px 0 0; border-top-color: #1b1b29; border-bottom-color: #5d5d6e; } /* line 277, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-default-vertical .x-box-menu-after { margin: 6px 0; } /* line 292, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-text-default { padding: 0 4px; color: white; font: normal 15px/16px helvetica, arial, verdana, sans-serif; } /* line 298, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-spacer-default { width: 2px; } /* line 145, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-toolbar-default-scroller .x-box-scroller-body-horizontal { margin-left: 16px; } /* line 151, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-toolbar-default-vertical-scroller .x-box-scroller-body-vertical { margin-top: 18px; } /* line 156, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-default { cursor: pointer; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); opacity: 0.6; } /* line 165, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-default.x-box-scroller-hover { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); opacity: 0.8; } /* line 171, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-default.x-box-scroller-pressed { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); opacity: 1; } /* line 177, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-default.x-box-scroller-disabled { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25); opacity: 0.25; cursor: default; } /* line 188, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-default.x-box-scroller-left, .x-box-scroller-toolbar-default.x-box-scroller-right { width: 16px; height: 16px; top: 50%; margin-top: -8px; } /* line 214, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-default.x-box-scroller-left { margin-left: 4px; margin-right: 4px; margin-bottom: 0; background-image: url(images/toolbar/default-scroll-left.png); } /* line 237, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-default.x-box-scroller-right { margin-left: 4px; margin-right: 4px; margin-bottom: 0; background-image: url(images/toolbar/default-scroll-right.png); } /* line 263, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-default.x-box-scroller-top, .x-box-scroller-toolbar-default.x-box-scroller-bottom { height: 16px; width: 16px; left: 50%; margin-left: -8px; } /* line 289, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-default.x-box-scroller-top { margin-top: 4px; margin-right: 0; margin-bottom: 4px; background-image: url(images/toolbar/default-scroll-top.png); } /* line 312, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-default.x-box-scroller-bottom { margin-top: 4px; margin-right: 0; margin-bottom: 4px; background-image: url(images/toolbar/default-scroll-bottom.png); } /* line 335, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-ie8 .x-box-scroller-toolbar-default { background-color: #3a3e4f; } /* line 341, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-more-icon { background-image: url(images/toolbar/default-more.png); } /* line 345, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-more-icon.x-rtl { background-image: url(images/toolbar/default-more-left.png); } /* line 198, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-footer { padding: 6px 0 6px 6px; border-style: solid; border-color: #18181a; border-width: 0; background-image: none; background-color: #3a3e4f; } /* line 202, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-footer.x-rtl { padding: 6px 6px 6px 0; } /* line 214, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-footer .x-tool-img { background-image: url(images/tools/tool-sprites.png); background-color: #3a3e4f; } /* line 227, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-footer .x-toolbar-item { margin: 0 6px 0 0; } /* line 231, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-footer .x-toolbar-item.x-rtl { margin: 0 0 0 6px; } /* line 237, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-footer .x-toolbar-separator-horizontal { margin: 0 8px 0 0; height: 14px; border-style: solid; border-width: 0 0 0 1px; border-left-color: #1b1b29; border-right-color: #5d5d6e; } /* line 246, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-footer .x-box-menu-after { margin: 0 6px; } /* line 251, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-footer-vertical { padding: 6px 6px 0; } /* line 255, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-footer-vertical.x-rtl { padding: 6px 6px 0; } /* line 260, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-footer-vertical .x-toolbar-item { margin: 0 0 6px 0; } /* line 263, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-footer-vertical .x-toolbar-item.x-rtl { margin: 0 0 6px 0; } /* line 269, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-footer-vertical .x-toolbar-separator-vertical { margin: 0 5px 6px; border-style: solid none; border-width: 1px 0 0; border-top-color: #1b1b29; border-bottom-color: #5d5d6e; } /* line 277, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-footer-vertical .x-box-menu-after { margin: 6px 0; } /* line 292, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-text-footer { padding: 0 4px; color: white; font: normal 15px/16px helvetica, arial, verdana, sans-serif; } /* line 298, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-spacer-footer { width: 2px; } /* line 145, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-toolbar-footer-scroller .x-box-scroller-body-horizontal { margin-left: 18px; } /* line 151, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-toolbar-footer-vertical-scroller .x-box-scroller-body-vertical { margin-top: 18px; } /* line 156, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-footer { cursor: pointer; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); opacity: 0.6; } /* line 165, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-footer.x-box-scroller-hover { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); opacity: 0.8; } /* line 171, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-footer.x-box-scroller-pressed { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); opacity: 1; } /* line 177, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-footer.x-box-scroller-disabled { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25); opacity: 0.25; cursor: default; } /* line 188, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-footer.x-box-scroller-left, .x-box-scroller-toolbar-footer.x-box-scroller-right { width: 16px; height: 16px; top: 50%; margin-top: -8px; } /* line 214, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-footer.x-box-scroller-left { margin-left: 4px; margin-right: 4px; margin-bottom: 0; background-image: url(images/toolbar/footer-scroll-left.png); } /* line 237, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-toolbar-footer.x-box-scroller-right { margin-left: 4px; margin-right: 4px; margin-bottom: 0; background-image: url(images/toolbar/footer-scroll-right.png); } /* line 335, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-ie8 .x-box-scroller-toolbar-footer { background-color: #3a3e4f; } /* line 341, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-more-icon { background-image: url(images/toolbar/footer-more.png); } /* line 345, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ .x-toolbar-more-icon.x-rtl { background-image: url(images/toolbar/footer-more-left.png); } /** * Creates a visual theme for a Panel. * * **Note:** When using `frame: true`, this mixin call creates a UI property with the name and a "-framed" suffix. * * For example, Panel's UI will be set to "highlight-framed" if `frame:true`. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {color} [$ui-border-color=$panel-border-color] * The border-color of the Panel * * @param {number} [$ui-border-radius=$panel-border-radius] * The border-radius of the Panel * * @param {number} [$ui-border-width=$panel-border-width] * The border-width of the Panel * * @param {number} [$ui-padding=$panel-padding] * The padding of the Panel * * @param {color} [$ui-header-color=$panel-header-color] * The text color of the Header * * @param {string} [$ui-header-font-family=$panel-header-font-family] * The font-family of the Header * * @param {number} [$ui-header-font-size=$panel-header-font-size] * The font-size of the Header * * @param {string} [$ui-header-font-weight=$panel-header-font-weight] * The font-weight of the Header * * @param {number} [$ui-header-line-height=$panel-header-line-height] * The line-height of the Header * * @param {color} [$ui-header-border-color=$panel-header-border-color] * The border-color of the Header * * @param {number} [$ui-header-border-width=$panel-header-border-width] * The border-width of the Header * * @param {string} [$ui-header-border-style=$panel-header-border-style] * The border-style of the Header * * @param {color} [$ui-header-background-color=$panel-header-background-color] * The background-color of the Header * * @param {string/list} [$ui-header-background-gradient=$panel-header-background-gradient] * The background-gradient of the Header. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {color} [$ui-header-inner-border-color=$panel-header-inner-border-color] * The inner border-color of the Header * * @param {number} [$ui-header-inner-border-width=$panel-header-inner-border-width] * The inner border-width of the Header * * @param {number/list} [$ui-header-text-padding=$panel-header-text-padding] * The padding of the Header's text element * * @param {number/list} [$ui-header-text-margin=$panel-header-text-margin] * The margin of the Header's text element * * @param {string} [$ui-header-text-transform=$panel-header-text-transform] * The text-transform of the Header * * @param {number/list} [$ui-header-padding=$panel-header-padding] * The padding of the Header * * @param {number} [$ui-header-icon-width=$panel-header-icon-width] * The width of the Header icon * * @param {number} [$ui-header-icon-height=$panel-header-icon-height] * The height of the Header icon * * @param {number} [$ui-header-icon-spacing=$panel-header-icon-spacing] * The space between the Header icon and text * * @param {list} [$ui-header-icon-background-position=$panel-header-icon-background-position] * The background-position of the Header icon * * @param {color} [$ui-header-glyph-color=$panel-header-glyph-color] * The color of the Header glyph icon * * @param {number} [$ui-header-glyph-opacity=$panel-header-glyph-opacity] * The opacity of the Header glyph icon * * @param {number} [$ui-header-noborder-adjust=$panel-header-noborder-adjust] * True to adjust the padding of borderless panel headers so that their height is the same * as the height of bordered panels. This is helpful when borderless and bordered panels * are used side-by-side, as it maintains a consistent vertical alignment. * * @param {number} [$ui-tool-spacing=$panel-tool-spacing] * The space between the Panel {@link Ext.panel.Tool Tools} * * @param {string} [$ui-tool-background-image=$panel-tool-background-image] * The background sprite to use for Panel {@link Ext.panel.Tool Tools} * * @param {color} [$ui-body-color=$panel-body-color] * The color of text inside the Panel body * * @param {color} [$ui-body-border-color=$panel-body-border-color] * The border-color of the Panel body * * @param {number} [$ui-body-border-width=$panel-body-border-width] * The border-width of the Panel body * * @param {string} [$ui-body-border-style=$panel-body-border-style] * The border-style of the Panel body * * @param {color} [$ui-body-background-color=$panel-body-background-color] * The background-color of the Panel body * * @param {number} [$ui-body-font-size=$panel-body-font-size] * The font-size of the Panel body * * @param {string} [$ui-body-font-weight=$panel-body-font-weight] * The font-weight of the Panel body * * @param {string} [$ui-background-stretch-top=$panel-background-stretch-top] * The direction to strech the background-gradient of top docked Headers when slicing images * for IE using Sencha Cmd * * @param {string} [$ui-background-stretch-bottom=$panel-background-stretch-bottom] * The direction to strech the background-gradient of bottom docked Headers when slicing images * for IE using Sencha Cmd * * @param {string} [$ui-background-stretch-right=$panel-background-stretch-right] * The direction to strech the background-gradient of right docked Headers when slicing images * for IE using Sencha Cmd * * @param {string} [$ui-background-stretch-left=$panel-background-stretch-left] * The direction to strech the background-gradient of left docked Headers when slicing images * for IE using Sencha Cmd * * @param {boolean} [$ui-include-border-management-rules=$panel-include-border-management-rules] * True to include neptune style border management rules. * * @param {color} [$ui-wrap-border-color=$panel-wrap-border-color] * The color to apply to the border that wraps the body and docked items in a framed * panel. The presence of the wrap border in a framed panel is controlled by the * {@link #border} config. Only applicable when `$ui-include-border-management-rules` is * `true`. * * @param {color} [$ui-wrap-border-width=$panel-wrap-border-width] * The width to apply to the border that wraps the body and docked items in a framed * panel. The presence of the wrap border in a framed panel is controlled by the * {@link #border} config. Only applicable when `$ui-include-border-management-rules` is * `true`. * * @param {boolean} [$ui-ignore-frame-padding=$panel-ignore-frame-padding] * True to ignore the frame padding. By default, the frame mixin adds extra padding when * border radius is larger than border width. This is intended to prevent the content * from colliding with the rounded corners of the frame. Set this to true to prevent * the panel frame from adding this extra padding. * * @member Ext.panel.Panel */ /* line 864, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-ghost { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } /* line 256, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-default { border-color: #3a4155; padding: 0; } /* line 262, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default { font-size: 15px; border: 1px solid #3a4155; } /* line 269, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default .x-tool-img { background-color: #3a4155; } /* line 282, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-horizontal { padding: 9px 9px 10px 9px; } /* line 286, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-horizontal .x-panel-header-default-tab-bar { margin-top: -9px; margin-bottom: -10px; } /* line 294, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-horizontal.x-header-noborder { padding: 10px 10px 10px 10px; } /* line 298, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-horizontal.x-header-noborder .x-panel-header-default-tab-bar { margin-top: -10px; margin-bottom: -10px; } /* line 306, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-vertical { padding: 9px 9px 9px 10px; } /* line 310, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-vertical .x-panel-header-default-tab-bar { margin-right: -9px; margin-left: -10px; } /* line 318, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-vertical.x-header-noborder { padding: 10px 10px 10px 10px; } /* line 322, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-vertical.x-header-noborder .x-panel-header-default-tab-bar { margin-right: -10px; margin-left: -10px; } /* line 331, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-default-vertical { padding: 9px 10px 9px 9px; } /* line 335, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-default-vertical .x-panel-header-default-tab-bar { margin-left: -9px; margin-right: -10px; } /* line 343, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-default-vertical.x-header-noborder { padding: 10px 10px 10px 10px; } /* line 347, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-default-vertical.x-header-noborder .x-panel-header-default-tab-bar { margin-left: -10px; margin-right: -10px; } /* line 356, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default { color: white; font-size: 15px; font-weight: bold; font-family: helvetica, arial, verdana, sans-serif; line-height: 16px; } /* line 369, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default > .x-title-text-default { text-transform: none; padding: 0; } /* line 412, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-top { height: 22px; padding-bottom: 6px; } /* line 417, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-right { width: 22px; padding-left: 6px; } /* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-right.x-rtl { padding-left: 0; padding-right: 6px; } /* line 429, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-bottom { height: 22px; padding-top: 6px; } /* line 434, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-left { width: 22px; padding-right: 6px; } /* line 439, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-left.x-rtl { padding-right: 0; padding-left: 6px; } /* line 446, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default > .x-title-icon-wrap-default > .x-title-icon-default { width: 16px; height: 16px; background-position: center center; } /* line 452, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default > .x-title-icon-wrap-default > .x-title-glyph { color: white; font-size: 16px; line-height: 16px; opacity: 0.5; } /* line 469, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-ie8 .x-panel-header-title-default > .x-title-icon-wrap-default > .x-title-glyph { color: #9ca0aa; } /* line 479, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-body-default { background: #232d38; border-color: #c1c1c1; color: white; font-size: 15px; font-weight: normal; font-family: helvetica, arial, verdana, sans-serif; border-width: 1px; border-style: solid; } /* line 643, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default { background-image: none; background-color: #3a4155; } /* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-vertical { background-image: none; background-color: #3a4155; } /* line 652, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-default-vertical { background-image: none; background-color: #3a4155; } /* line 705, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-default-collapsed-border-top { border-bottom-width: 1px !important; } /* line 709, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-default-collapsed-border-right { border-left-width: 1px !important; } /* line 713, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-default-collapsed-border-bottom { border-top-width: 1px !important; } /* line 717, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-default-collapsed-border-left { border-right-width: 1px !important; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-panel-header-default-top:before { display: none; content: "x-slicer:stretch:bottom" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-panel-header-default-bottom:before { display: none; content: "x-slicer:stretch:top" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-panel-header-default-left:before { display: none; content: "x-slicer:stretch:right" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-panel-header-default-right:before { display: none; content: "x-slicer:stretch:left" !important; } /*</if slicer>*/ /* */ /* line 753, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-horizontal .x-tool-after-title { margin: 0 0 0 6px; } /* line 758, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-horizontal .x-rtl.x-tool-after-title { margin: 0 6px 0 0; } /* line 763, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-horizontal .x-tool-before-title { margin: 0 6px 0 0; } /* line 768, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-horizontal .x-rtl.x-tool-before-title { margin: 0 0 0 6px; } /* line 775, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-vertical .x-tool-after-title { margin: 6px 0 0 0; } /* line 780, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-vertical .x-rtl.x-tool-after-title { margin: 6px 0 0 0; } /* line 785, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-vertical .x-tool-before-title { margin: 0 0 6px 0; } /* line 790, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-vertical .x-rtl.x-tool-before-title { margin: 0 0 6px 0; } /* line 798, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-default-collapsed-border-right { border-right-width: 1px !important; } /* line 801, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-default-collapsed-border-left { border-left-width: 1px !important; } /* line 815, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-default-resizable .x-panel-handle { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; } /* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-l { border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-b { border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; } /* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-bl { border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-r { border-right-color: #3a4155 !important; border-right-width: 1px !important; } /* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-rl { border-right-color: #3a4155 !important; border-right-width: 1px !important; border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-rb { border-right-color: #3a4155 !important; border-right-width: 1px !important; border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; } /* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-rbl { border-right-color: #3a4155 !important; border-right-width: 1px !important; border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-t { border-top-color: #3a4155 !important; border-top-width: 1px !important; } /* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-tl { border-top-color: #3a4155 !important; border-top-width: 1px !important; border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-tb { border-top-color: #3a4155 !important; border-top-width: 1px !important; border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; } /* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-tbl { border-top-color: #3a4155 !important; border-top-width: 1px !important; border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-tr { border-top-color: #3a4155 !important; border-top-width: 1px !important; border-right-color: #3a4155 !important; border-right-width: 1px !important; } /* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-trl { border-top-color: #3a4155 !important; border-top-width: 1px !important; border-right-color: #3a4155 !important; border-right-width: 1px !important; border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-trb { border-top-color: #3a4155 !important; border-top-width: 1px !important; border-right-color: #3a4155 !important; border-right-width: 1px !important; border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; } /* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-outer-border-trbl { border-color: #3a4155 !important; border-width: 1px !important; } /* line 256, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-default-framed { border-color: #3a4155; padding: 0; } /* line 262, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed { font-size: 15px; border: 5px solid #3a4155; } /* line 269, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed .x-tool-img { background-color: #3a4155; } /* line 282, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-horizontal { padding: 5px 5px 5px 5px; } /* line 286, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-horizontal .x-panel-header-default-framed-tab-bar { margin-top: -5px; margin-bottom: -5px; } /* line 294, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-horizontal.x-header-noborder { padding: 10px 10px 5px 10px; } /* line 298, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-horizontal.x-header-noborder .x-panel-header-default-framed-tab-bar { margin-top: -10px; margin-bottom: -5px; } /* line 306, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-vertical { padding: 5px 5px 5px 5px; } /* line 310, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-vertical .x-panel-header-default-framed-tab-bar { margin-right: -5px; margin-left: -5px; } /* line 318, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-vertical.x-header-noborder { padding: 10px 10px 10px 5px; } /* line 322, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-vertical.x-header-noborder .x-panel-header-default-framed-tab-bar { margin-right: -10px; margin-left: -5px; } /* line 331, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-default-framed-vertical { padding: 5px 5px 5px 5px; } /* line 335, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-default-framed-vertical .x-panel-header-default-framed-tab-bar { margin-left: -5px; margin-right: -5px; } /* line 343, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-default-framed-vertical.x-header-noborder { padding: 10px 5px 10px 10px; } /* line 347, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-default-framed-vertical.x-header-noborder .x-panel-header-default-framed-tab-bar { margin-left: -10px; margin-right: -5px; } /* line 356, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default-framed { color: white; font-size: 15px; font-weight: bold; font-family: helvetica, arial, verdana, sans-serif; line-height: 16px; } /* line 369, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default-framed > .x-title-text-default-framed { text-transform: none; padding: 0; } /* line 412, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-top { height: 22px; padding-bottom: 6px; } /* line 417, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-right { width: 22px; padding-left: 6px; } /* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-right.x-rtl { padding-left: 0; padding-right: 6px; } /* line 429, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-bottom { height: 22px; padding-top: 6px; } /* line 434, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-left { width: 22px; padding-right: 6px; } /* line 439, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-left.x-rtl { padding-right: 0; padding-left: 6px; } /* line 446, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed > .x-title-icon-default-framed { width: 16px; height: 16px; background-position: center center; } /* line 452, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed > .x-title-glyph { color: white; font-size: 16px; line-height: 16px; opacity: 0.5; } /* line 469, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-ie8 .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed > .x-title-glyph { color: #9ca0aa; } /* line 479, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-body-default-framed { background: #3f4757; border-color: #c1c1c1; color: white; font-size: 15px; font-weight: normal; font-family: helvetica, arial, verdana, sans-serif; border-width: 1px; border-style: solid; } /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; padding: 0px 0px 0px 0px; border-width: 5px; border-style: solid; background-color: #3f4757; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-mc { background-color: #3f4757; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-panel-default-framed { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-0-0-0-0; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-tr, .x-panel-default-framed-br, .x-panel-default-framed-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-tl, .x-panel-default-framed-bl, .x-panel-default-framed-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-tl, .x-panel-default-framed-bl, .x-panel-default-framed-tr, .x-panel-default-framed-br, .x-panel-default-framed-tc, .x-panel-default-framed-bc, .x-panel-default-framed-ml, .x-panel-default-framed-mr { background-image: url(images/panel/panel-default-framed-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-ml, .x-panel-default-framed-mr { background-image: url(images/panel/panel-default-framed-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-default-framed-mc { padding: 0px 0px 0px 0px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-panel-default-framed:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0; padding: 5px 5px 5px 5px; border-width: 5px 5px 0 5px; border-style: solid; background-color: #3a4155; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-mc { background-color: #3a4155; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-panel-header-default-framed-top { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-frameInfo { font-family: dh-5-5-0-5-5-5-0-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-tr, .x-panel-header-default-framed-top-br, .x-panel-header-default-framed-top-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-tl, .x-panel-header-default-framed-top-bl, .x-panel-header-default-framed-top-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-bc { height: 0; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-tl, .x-panel-header-default-framed-top-bl, .x-panel-header-default-framed-top-tr, .x-panel-header-default-framed-top-br, .x-panel-header-default-framed-top-tc, .x-panel-header-default-framed-top-bc, .x-panel-header-default-framed-top-ml, .x-panel-header-default-framed-top-mr { background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-ml, .x-panel-header-default-framed-top-mr { background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-top-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-panel-header-default-framed-top:before { display: none; content: "x-slicer:frame:5px 5px 0 5px, corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right { -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; border-top-left-radius: 0; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0; padding: 5px 5px 5px 5px; border-width: 5px 5px 5px 0; border-style: solid; background-color: #3a4155; } /* line 226, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-default-framed-right { background-image: none; background-color: #3a4155; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-mc { background-color: #3a4155; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-panel-header-default-framed-right { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-frameInfo { font-family: dh-5-5-5-0-5-5-5-0-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-ml { background-position: right 0; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-mr { background-position: right 0; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-tr, .x-panel-header-default-framed-right-br, .x-panel-header-default-framed-right-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-tl, .x-panel-header-default-framed-right-bl, .x-panel-header-default-framed-right-ml { padding-left: 0; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-tl, .x-panel-header-default-framed-right-bl, .x-panel-header-default-framed-right-tr, .x-panel-header-default-framed-right-br, .x-panel-header-default-framed-right-tc, .x-panel-header-default-framed-right-bc, .x-panel-header-default-framed-right-ml, .x-panel-header-default-framed-right-mr { background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif); } /* line 428, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-default-framed-right-tl, .x-rtl.x-panel-header-default-framed-right-ml, .x-rtl.x-panel-header-default-framed-right-bl, .x-rtl.x-panel-header-default-framed-right-tr, .x-rtl.x-panel-header-default-framed-right-mr, .x-rtl.x-panel-header-default-framed-right-br { background-image: url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-ml, .x-panel-header-default-framed-right-mr { background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-right-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-panel-header-default-framed-right:before { display: none; content: "x-slicer:frame:5px 5px 5px 0, corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom { -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; border-top-left-radius: 0; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; padding: 5px 5px 5px 5px; border-width: 0 5px 5px 5px; border-style: solid; background-color: #3a4155; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-mc { background-color: #3a4155; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-panel-header-default-framed-bottom { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-frameInfo { font-family: dh-0-5-5-5-0-5-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-ml { background-position: 0 bottom; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-mr { background-position: right bottom; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-tr, .x-panel-header-default-framed-bottom-br, .x-panel-header-default-framed-bottom-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-tl, .x-panel-header-default-framed-bottom-bl, .x-panel-header-default-framed-bottom-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-tc { height: 0; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-tl, .x-panel-header-default-framed-bottom-bl, .x-panel-header-default-framed-bottom-tr, .x-panel-header-default-framed-bottom-br, .x-panel-header-default-framed-bottom-tc, .x-panel-header-default-framed-bottom-bc, .x-panel-header-default-framed-bottom-ml, .x-panel-header-default-framed-bottom-mr { background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-ml, .x-panel-header-default-framed-bottom-mr { background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-bottom-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-panel-header-default-framed-bottom:before { display: none; content: "x-slicer:frame:0 5px 5px 5px, corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; padding: 5px 5px 5px 5px; border-width: 5px 0 5px 5px; border-style: solid; background-color: #3a4155; } /* line 226, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-default-framed-left { background-image: none; background-color: #3a4155; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-mc { background-color: #3a4155; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-panel-header-default-framed-left { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-frameInfo { font-family: dh-5-0-5-5-5-0-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-ml { background-position: left 0; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-mr { background-position: left 0; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-tr, .x-panel-header-default-framed-left-br, .x-panel-header-default-framed-left-mr { padding-right: 0; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-tl, .x-panel-header-default-framed-left-bl, .x-panel-header-default-framed-left-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-tl, .x-panel-header-default-framed-left-bl, .x-panel-header-default-framed-left-tr, .x-panel-header-default-framed-left-br, .x-panel-header-default-framed-left-tc, .x-panel-header-default-framed-left-bc, .x-panel-header-default-framed-left-ml, .x-panel-header-default-framed-left-mr { background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif); } /* line 428, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-default-framed-left-tl, .x-rtl.x-panel-header-default-framed-left-ml, .x-rtl.x-panel-header-default-framed-left-bl, .x-rtl.x-panel-header-default-framed-left-tr, .x-rtl.x-panel-header-default-framed-left-mr, .x-rtl.x-panel-header-default-framed-left-br { background-image: url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-ml, .x-panel-header-default-framed-left-mr { background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-left-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-panel-header-default-framed-left:before { display: none; content: "x-slicer:frame:5px 0 5px 5px, corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; padding: 5px 5px 5px 5px; border-width: 5px; border-style: solid; background-color: #3a4155; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-mc { background-color: #3a4155; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-panel-header-default-framed-collapsed-top { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-tr, .x-panel-header-default-framed-collapsed-top-br, .x-panel-header-default-framed-collapsed-top-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-tl, .x-panel-header-default-framed-collapsed-top-bl, .x-panel-header-default-framed-collapsed-top-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-tl, .x-panel-header-default-framed-collapsed-top-bl, .x-panel-header-default-framed-collapsed-top-tr, .x-panel-header-default-framed-collapsed-top-br, .x-panel-header-default-framed-collapsed-top-tc, .x-panel-header-default-framed-collapsed-top-bc, .x-panel-header-default-framed-collapsed-top-ml, .x-panel-header-default-framed-collapsed-top-mr { background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-ml, .x-panel-header-default-framed-collapsed-top-mr { background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-top-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-panel-header-default-framed-collapsed-top:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; padding: 5px 5px 5px 5px; border-width: 5px; border-style: solid; background-color: #3a4155; } /* line 226, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-default-framed-collapsed-right { background-image: none; background-color: #3a4155; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-mc { background-color: #3a4155; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-panel-header-default-framed-collapsed-right { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-ml { background-position: right 0; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-mr { background-position: right 0; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-tr, .x-panel-header-default-framed-collapsed-right-br, .x-panel-header-default-framed-collapsed-right-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-tl, .x-panel-header-default-framed-collapsed-right-bl, .x-panel-header-default-framed-collapsed-right-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-tl, .x-panel-header-default-framed-collapsed-right-bl, .x-panel-header-default-framed-collapsed-right-tr, .x-panel-header-default-framed-collapsed-right-br, .x-panel-header-default-framed-collapsed-right-tc, .x-panel-header-default-framed-collapsed-right-bc, .x-panel-header-default-framed-collapsed-right-ml, .x-panel-header-default-framed-collapsed-right-mr { background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif); } /* line 428, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-default-framed-collapsed-right-tl, .x-rtl.x-panel-header-default-framed-collapsed-right-ml, .x-rtl.x-panel-header-default-framed-collapsed-right-bl, .x-rtl.x-panel-header-default-framed-collapsed-right-tr, .x-rtl.x-panel-header-default-framed-collapsed-right-mr, .x-rtl.x-panel-header-default-framed-collapsed-right-br { background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-ml, .x-panel-header-default-framed-collapsed-right-mr { background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-right-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-panel-header-default-framed-collapsed-right:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; padding: 5px 5px 5px 5px; border-width: 5px; border-style: solid; background-color: #3a4155; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-mc { background-color: #3a4155; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-panel-header-default-framed-collapsed-bottom { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-ml { background-position: 0 bottom; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-mr { background-position: right bottom; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-tr, .x-panel-header-default-framed-collapsed-bottom-br, .x-panel-header-default-framed-collapsed-bottom-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-tl, .x-panel-header-default-framed-collapsed-bottom-bl, .x-panel-header-default-framed-collapsed-bottom-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-tl, .x-panel-header-default-framed-collapsed-bottom-bl, .x-panel-header-default-framed-collapsed-bottom-tr, .x-panel-header-default-framed-collapsed-bottom-br, .x-panel-header-default-framed-collapsed-bottom-tc, .x-panel-header-default-framed-collapsed-bottom-bc, .x-panel-header-default-framed-collapsed-bottom-ml, .x-panel-header-default-framed-collapsed-bottom-mr { background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-ml, .x-panel-header-default-framed-collapsed-bottom-mr { background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-bottom-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-panel-header-default-framed-collapsed-bottom:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; padding: 5px 5px 5px 5px; border-width: 5px; border-style: solid; background-color: #3a4155; } /* line 226, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-default-framed-collapsed-left { background-image: none; background-color: #3a4155; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-mc { background-color: #3a4155; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-panel-header-default-framed-collapsed-left { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-ml { background-position: left 0; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-mr { background-position: left 0; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-tr, .x-panel-header-default-framed-collapsed-left-br, .x-panel-header-default-framed-collapsed-left-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-tl, .x-panel-header-default-framed-collapsed-left-bl, .x-panel-header-default-framed-collapsed-left-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-tl, .x-panel-header-default-framed-collapsed-left-bl, .x-panel-header-default-framed-collapsed-left-tr, .x-panel-header-default-framed-collapsed-left-br, .x-panel-header-default-framed-collapsed-left-tc, .x-panel-header-default-framed-collapsed-left-bc, .x-panel-header-default-framed-collapsed-left-ml, .x-panel-header-default-framed-collapsed-left-mr { background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif); } /* line 428, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-default-framed-collapsed-left-tl, .x-rtl.x-panel-header-default-framed-collapsed-left-ml, .x-rtl.x-panel-header-default-framed-collapsed-left-bl, .x-rtl.x-panel-header-default-framed-collapsed-left-tr, .x-rtl.x-panel-header-default-framed-collapsed-left-mr, .x-rtl.x-panel-header-default-framed-collapsed-left-br { background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-ml, .x-panel-header-default-framed-collapsed-left-mr { background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-default-framed-collapsed-left-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-panel-header-default-framed-collapsed-left:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 605, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-default-framed-top { border-bottom-width: 5px !important; } /* line 609, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-default-framed-right { border-left-width: 5px !important; } /* line 613, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-default-framed-bottom { border-top-width: 5px !important; } /* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-default-framed-left { border-right-width: 5px !important; } /* line 623, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-nbr .x-panel-header-default-framed-collapsed-top { border-bottom-width: 0 !important; } /* line 627, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-nbr .x-panel-header-default-framed-collapsed-right { border-left-width: 0 !important; } /* line 631, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-nbr .x-panel-header-default-framed-collapsed-bottom { border-top-width: 0 !important; } /* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-nbr .x-panel-header-default-framed-collapsed-left { border-right-width: 0 !important; } /* line 753, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-horizontal .x-tool-after-title { margin: 0 0 0 6px; } /* line 758, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-horizontal .x-rtl.x-tool-after-title { margin: 0 6px 0 0; } /* line 763, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-horizontal .x-tool-before-title { margin: 0 6px 0 0; } /* line 768, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-horizontal .x-rtl.x-tool-before-title { margin: 0 0 0 6px; } /* line 775, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-vertical .x-tool-after-title { margin: 6px 0 0 0; } /* line 780, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-vertical .x-rtl.x-tool-after-title { margin: 6px 0 0 0; } /* line 785, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-vertical .x-tool-before-title { margin: 0 0 6px 0; } /* line 790, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-default-framed-vertical .x-rtl.x-tool-before-title { margin: 0 0 6px 0; } /* line 798, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-default-framed-collapsed-border-right { border-right-width: 5px !important; } /* line 801, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-default-framed-collapsed-border-left { border-left-width: 5px !important; } /* line 812, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-default-framed-resizable { overflow: visible; } /* line 815, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-default-framed-resizable .x-panel-handle { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; } /* line 824, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-default-framed-resizable .x-panel-handle-north-br { top: -5px; } /* line 827, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-default-framed-resizable .x-panel-handle-south-br { bottom: -5px; } /* line 830, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-default-framed-resizable .x-panel-handle-east-br { right: -5px; } /* line 833, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-default-framed-resizable .x-panel-handle-west-br { left: -5px; } /* line 836, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-default-framed-resizable .x-panel-handle-northwest-br { left: -5px; top: -5px; } /* line 840, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-default-framed-resizable .x-panel-handle-northeast-br { right: -5px; top: -5px; } /* line 844, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-default-framed-resizable .x-panel-handle-southeast-br { right: -5px; bottom: -5px; } /* line 848, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-default-framed-resizable .x-panel-handle-southwest-br { left: -5px; bottom: -5px; } /* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-l { border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-b { border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; } /* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-bl { border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-r { border-right-color: #3a4155 !important; border-right-width: 1px !important; } /* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-rl { border-right-color: #3a4155 !important; border-right-width: 1px !important; border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-rb { border-right-color: #3a4155 !important; border-right-width: 1px !important; border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; } /* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-rbl { border-right-color: #3a4155 !important; border-right-width: 1px !important; border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-t { border-top-color: #3a4155 !important; border-top-width: 1px !important; } /* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-tl { border-top-color: #3a4155 !important; border-top-width: 1px !important; border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-tb { border-top-color: #3a4155 !important; border-top-width: 1px !important; border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; } /* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-tbl { border-top-color: #3a4155 !important; border-top-width: 1px !important; border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-tr { border-top-color: #3a4155 !important; border-top-width: 1px !important; border-right-color: #3a4155 !important; border-right-width: 1px !important; } /* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-trl { border-top-color: #3a4155 !important; border-top-width: 1px !important; border-right-color: #3a4155 !important; border-right-width: 1px !important; border-left-color: #3a4155 !important; border-left-width: 1px !important; } /* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-trb { border-top-color: #3a4155 !important; border-top-width: 1px !important; border-right-color: #3a4155 !important; border-right-width: 1px !important; border-bottom-color: #3a4155 !important; border-bottom-width: 1px !important; } /* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-default-framed-outer-border-trbl { border-color: #3a4155 !important; border-width: 1px !important; } /** * Creates a visual theme for "labelable" form items. Provides visual styling for the * Label and error message that can be shared between many types of form fields. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {color} [$ui-font-color=$form-label-font-color] * The text color the label * * @param {string} [$ui-font-weight=$form-label-font-weight] * The font-weight of the label * * @param {number} [$ui-font-size=$form-label-font-size] * The font-size of the label * * @param {string} [$ui-font-family=$form-label-font-family] * The font-family the label * * @param {number} [$ui-height=$form-field-height] * The height of the label. This should be the same height as the height of fields that * this label ui will be used with. This does not actually set the height of the label * but is used to ensure that the label is centered within the given height. * * @param {number} [$ui-line-height=$form-label-line-height] * The line-height of the label * * @param {number} [$ui-horizontal-spacing=$form-label-horizontal-spacing] * Horizontal space between the label and the field body when the label is left-aligned. * * @param {number} [$ui-vertical-spacing=$form-label-vertical-spacing] * Vertical space between the label and the field body when the label is top-aligned. * * @param {number} [$ui-error-icon-background-image=$form-error-icon-background-image] * The background-image of the error icon * * @param {number} [$ui-error-icon-width=$form-error-icon-width] * The width of the error icon * * @param {number} [$ui-error-icon-height=$form-error-icon-height] * The height of the error icon * * @param {number/list} [$ui-error-icon-side-margin=$form-error-icon-side-margin] * Margin for error icons when aligned to the side of the field * * @param {number} [$ui-error-under-icon-spacing=$form-error-under-icon-spacing] * The space between the icon and the message for errors that display under the field * * @param {number/list} [$ui-error-under-padding=$form-error-under-padding] * The padding on errors that display under the form field * * @param {color} [$ui-error-msg-color=$form-error-msg-color] * The text color of form error messages * * @param {string} [$ui-error-msg-font-weight=$form-error-msg-font-weight] * The font-weight of form error messages * * @param {number} [$ui-error-msg-font-size=$form-error-msg-font-size] * The font-size of form error messages * * @param {string} [$ui-error-msg-font-family=$form-error-msg-font-family] * The font-family of form error messages * * @param {number} [$ui-error-msg-line-height=$form-error-msg-line-height] * The line-height of form error messages * * @param {number} [$ui-disabled-opacity=$form-field-disabled-opacity] * Opacity of disabled form fields * * @member Ext.form.Labelable */ /* line 97, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ .x-form-item-label-default { color: white; font: normal 15px/17px helvetica, arial, verdana, sans-serif; min-height: 24px; padding-top: 4px; padding-right: 5px; } /* line 107, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ .x-ie8 .x-form-item-label-default { min-height: 20px; } /* line 113, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ .x-form-item-label-default.x-form-item-label-top { height: 1px; } /* line 115, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ .x-form-item-label-default.x-form-item-label-top > .x-form-item-label-inner { padding-top: 4px; padding-bottom: 5px; } /* line 121, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ .x-form-item-label-default.x-form-item-label-top-side-error:after { width: 26px; } /* line 126, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ .x-form-item-body-default { min-height: 24px; } /* line 130, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ .x-form-invalid-icon-default { width: 16px; height: 16px; margin: 0 5px 0 5px; background: url(images/form/exclamation.png) no-repeat; } /* line 137, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ .x-form-invalid-under-default { padding: 2px 2px 2px 20px; color: #cc3300; font: normal 15px/16px helvetica, arial, verdana, sans-serif; background: no-repeat 0 2px; background-image: url(images/form/exclamation.png); } /* line 145, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ .x-form-error-wrap-default.x-form-error-wrap-side { width: 26px; } /* line 150, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ .x-form-item-default.x-item-disabled { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); opacity: 0.3; } /* line 191, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ .x-autocontainer-form-item, .x-anchor-form-item, .x-vbox-form-item, .x-table-form-item { margin-bottom: 5px; } /** * Creates a visual theme for display fields. Note this mixin only provides styling * for the form field body, The label and error are styled by {@link #extjs-label-ui}. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number} [$ui-field-height=$form-field-height] * The height of the field body that the display text must fit within. This does not set * the height of the field, only allows the text to be centered inside the field body. * (The height of the field body is determined by {@link #extjs-label-ui}). * * @param {color} [$ui-color=$form-display-field-color] * The text color of display fields * * @param {number} [$ui-font-size=$form-display-field-font-size] * The font-size of the display field * * @param {string} [$ui-font-family=$form-display-field-font-family] * The font-family of the display field * * @param {string} [$ui-font-weight=$form-display-field-font-weight] * The font-weight of the display field * * @param {number} [$ui-line-height=$form-display-field-line-height] * The line-height of the display field * * @member Ext.form.field.Display */ /* line 40, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ .x-form-display-field-default { min-height: 24px; font: normal 15px/17px helvetica, arial, verdana, sans-serif; color: white; margin-top: 4px; } /* line 5, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-view { z-index: 1; } /* line 9, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-body { background: #232d38; border-width: 1px; border-style: solid; border-color: #c1c1c1; } /* line 18, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-item-container { min-height: 1px; position: relative; } /* line 23, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-empty { padding: 10px; color: gray; background-color: #232d38; font: normal 14px helvetica, arial, verdana, sans-serif; } /* line 31, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-item { color: white; font: normal 14px/17px helvetica, arial, verdana, sans-serif; background-color: #1f2933; } /* line 37, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-item-alt { background-color: #1a232b; } /* line 41, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-item-over { color: white; background-color: #7e552f; } /* line 48, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-item-focused { outline: 0; color: white; background-color: #7e552f; } /* line 52, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-item-focused .x-grid-cell-inner { z-index: 1; } /* line 60, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-item-focused .x-grid-cell-inner:before { content: ""; position: absolute; z-index: -1; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 0 solid #5e6571; } /* line 82, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-item-selected { color: black; background-color: #ed9200; } /* line 88, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-with-row-lines .x-grid-item { border-style: solid; border-width: 1px 0 0; border-color: #ededed; } /* line 94, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-with-row-lines .x-grid-item:first-child { border-top-color: #1f2933; } /* line 100, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-with-row-lines .x-grid-item.x-grid-item-over { border-style: solid; border-color: #101010; } /* line 105, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-with-row-lines .x-grid-item-over + .x-grid-item { border-top-style: solid; border-top-color: #101010; } /* line 110, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-with-row-lines .x-grid-item.x-grid-item-selected { border-style: solid; border-color: #101010; } /* line 115, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-with-row-lines .x-grid-item-selected + .x-grid-item { border-top-style: solid; border-top-color: #101010; } /* line 120, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-with-row-lines .x-grid-item:last-child { border-bottom-width: 1px; } /* line 130, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-ie8 .x-grid-with-row-lines .x-grid-item { border-width: 1px 0; margin-top: -1px; } /* line 135, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-ie8 .x-grid-with-row-lines .x-grid-item:first-child { margin-top: 0; } /* line 141, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-cell-inner { position: relative; text-overflow: ellipsis; padding: 5px 10px 4px 10px; } /* line 157, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-cell-special { border-color: #ededed; border-style: solid; border-right-width: 1px; } /* line 200, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-rtl.x-grid-cell-special { border-right-width: 0; border-left-width: 1px; } /* line 207, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-dirty-cell { background: url(images/grid/dirty.png) no-repeat 0 0; } /* line 212, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-rtl.x-grid-dirty-cell { background-image: url(images/grid/dirty-rtl.png); background-position: right 0; } /* line 220, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-row .x-grid-cell-selected { color: black; background-color: #ed9200; } /* line 226, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-with-col-lines .x-grid-cell { border-right: 1px solid #ededed; } /* line 232, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-rtl.x-grid-with-col-lines .x-grid-cell { border-right: 0; border-left: 1px solid #ededed; } /* line 238, ../../../ext-theme-neutral/sass/src/view/Table.scss */ .x-grid-resize-marker { width: 1px; background-color: #0f0f0f; } /** * Creates a visual theme for checkboxes and radio buttons. Note this mixin only provides * styling for the checkbox/radio button and its {@link #boxLabel}, The {@link #fieldLabel} * and error icon/message are styled by {@link #extjs-label-ui}. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number} [$ui-field-height=$form-field-height] * The height of the field body that the checkbox must fit within. This does not set the * height of the field, only allows the checkbox to be centered inside the field body. * (The height of the field body is determined by {@link #extjs-label-ui}). * * @param {number} [$ui-checkbox-size=$form-checkbox-size] * The size of the checkbox * * @param {string} [$ui-checkbox-background-image=$form-checkbox-background-image] * The background-image of the checkbox * * @param {string} [$ui-radio-background-image=$form-radio-background-image] * The background-image of the radio button * * @param {color} [$ui-label-color=$form-checkbox-label-color] * The color of the checkbox's {@link #boxLabel} * * @param {string} [$ui-label-font-weight=$form-checkbox-label-font-weight] * The font-weight of the checkbox's {@link #boxLabel} * * @param {string} [$ui-label-font-size=$form-checkbox-label-font-size] * The font-size of the checkbox's {@link #boxLabel} * * @param {string} [$ui-label-font-family=$form-checkbox-label-font-family] * The font-family of the checkbox's {@link #boxLabel} * * @param {string} [$ui-label-line-height=$form-checkbox-label-line-height] * The line-height of the checkbox's {@link #boxLabel} * * @param {number} [$ui-label-spacing=$form-checkbox-label-spacing] * The space between the boxLabel and the checkbox. * * @member Ext.form.field.Checkbox */ /* line 57, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-form-cb-wrap-default { height: 24px; } /* line 61, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-form-cb-default { margin-top: 3px; } /* line 67, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-form-checkbox-default, .x-form-radio-default { width: 19px; height: 19px; } /* line 72, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-form-radio-default { background: url(images/form/radio.png) no-repeat; } /* line 75, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-form-cb-checked .x-form-radio-default { background-position: 0 -19px; } /* line 80, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-form-checkbox-default { background: url(images/form/checkbox.png) no-repeat; } /* line 83, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-form-cb-checked .x-form-checkbox-default { background-position: 0 -19px; } /* line 88, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-field-default-form-checkbox-focus { background-position: -19px 0; } /* line 92, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-form-cb-checked .x-field-default-form-checkbox-focus { background-position: -19px -19px; } /* line 97, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-form-cb-label-default { margin-top: 4px; font: normal helvetica, arial, verdana, sans-serif/17px helvetica, arial, verdana, sans-serif; } /* line 101, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-form-cb-label-default.x-form-cb-label-before { padding-right: 23px; } /* line 105, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-form-cb-label-default.x-form-cb-label-before.x-rtl { padding-right: 0; padding-left: 23px; } /* line 112, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-form-cb-label-default.x-form-cb-label-after { padding-left: 23px; } /* line 117, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-form-cb-label-default.x-rtl { padding-left: 0; padding-right: 23px; } /* line 126, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ .x-checkbox-default-cell > .x-grid-cell-inner { padding-top: 1px; padding-bottom: 1px; } /* line 1, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-expander { cursor: pointer; } /* line 7, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-arrows .x-tree-expander { background-image: url(images/tree/arrows.png); } /* line 11, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-arrows .x-tree-expander-over .x-tree-expander { background-position: -36px center; } /* line 15, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander { background-position: -18px center; } /* line 19, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander { background-position: -54px center; } /* line 24, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-arrows .x-rtl.x-tree-expander { background: url(images/tree/arrows-rtl.png) no-repeat -54px center; } /* line 28, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-arrows .x-tree-expander-over .x-rtl.x-tree-expander { background-position: -18px center; } /* line 32, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-arrows .x-grid-tree-node-expanded .x-rtl.x-tree-expander { background-position: -36px center; } /* line 36, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-rtl.x-tree-expander { background-position: 0 center; } /* line 44, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-tree-elbow { background-image: url(images/tree/elbow.png); } /* line 48, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-tree-elbow-end { background-image: url(images/tree/elbow-end.png); } /* line 52, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-tree-elbow-plus { background-image: url(images/tree/elbow-plus.png); } /* line 56, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-tree-elbow-end-plus { background-image: url(images/tree/elbow-end-plus.png); } /* line 60, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus { background-image: url(images/tree/elbow-minus.png); } /* line 64, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus { background-image: url(images/tree/elbow-end-minus.png); } /* line 68, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-tree-elbow-line { background-image: url(images/tree/elbow-line.png); } /* line 73, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-rtl.x-tree-elbow { background-image: url(images/tree/elbow-rtl.png); } /* line 77, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-rtl.x-tree-elbow-end { background-image: url(images/tree/elbow-end-rtl.png); } /* line 81, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-rtl.x-tree-elbow-plus { background-image: url(images/tree/elbow-plus-rtl.png); } /* line 85, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-rtl.x-tree-elbow-end-plus { background-image: url(images/tree/elbow-end-plus-rtl.png); } /* line 89, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-plus { background-image: url(images/tree/elbow-minus-rtl.png); } /* line 93, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-end-plus { background-image: url(images/tree/elbow-end-minus-rtl.png); } /* line 97, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-lines .x-rtl.x-tree-elbow-line { background-image: url(images/tree/elbow-line-rtl.png); } /* line 104, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-no-lines .x-tree-expander { background-image: url(images/tree/elbow-plus-nl.png); } /* line 108, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-expander { background-image: url(images/tree/elbow-minus-nl.png); } /* line 113, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-no-lines .x-rtl.x-tree-expander { background-image: url(images/tree/elbow-plus-nl-rtl.png); } /* line 117, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-no-lines .x-grid-tree-node-expanded .x-rtl.x-tree-expander { background-image: url(images/tree/elbow-minus-nl-rtl.png); } /* line 123, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-icon { width: 16px; height: 26px; } /* line 128, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-elbow-img { width: 18px; height: 26px; margin-right: 2px; } /* line 135, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-rtl.x-tree-elbow-img { margin-right: 0; margin-left: 2px; } /* line 143, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-icon, .x-tree-elbow-img, .x-tree-checkbox { margin-top: -5px; margin-bottom: -4px; } /* line 151, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-icon-leaf { background-image: url(images/tree/leaf.png); } /* line 156, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-rtl.x-tree-icon-leaf { background-image: url(images/tree/leaf-rtl.png); } /* line 161, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-icon-parent { background-image: url(images/tree/folder.png); } /* line 166, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-rtl.x-tree-icon-parent { background-image: url(images/tree/folder-rtl.png); } /* line 171, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-grid-tree-node-expanded .x-tree-icon-parent { background-image: url(images/tree/folder-open.png); } /* line 176, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-grid-tree-node-expanded .x-rtl.x-tree-icon-parent { background-image: url(images/tree/folder-open-rtl.png); } /* line 181, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-checkbox { margin-right: 4px; top: 4px; width: 19px; height: 19px; background-image: url(images/form/checkbox.png); } /* line 190, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-rtl.x-tree-checkbox { margin-right: 0; margin-left: 4px; } /* line 196, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-checkbox-checked { background-position: 0 -19px; } /* line 200, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-grid-tree-loading .x-tree-icon { background-image: url(images/tree/loading.gif); } /* line 205, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-grid-tree-loading .x-rtl.x-tree-icon { background-image: url(images/tree/loading.gif); } /* line 210, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-tree-node-text { padding-left: 4px; } /* line 215, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-rtl.x-tree-node-text { padding-left: 0; padding-right: 4px; } /* line 222, ../../../ext-theme-neutral/sass/src/tree/View.scss */ .x-grid-cell-inner-treecolumn { padding: 5px 10px 4px 6px; } /* line 2, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ .x-col-move-top, .x-col-move-bottom { width: 9px; height: 9px; } /* line 7, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ .x-col-move-top { background-image: url(images/grid/col-move-top.png); } /* line 11, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ .x-col-move-bottom { background-image: url(images/grid/col-move-bottom.png); } /* line 1, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ .x-grid-header-ct { border: 1px solid #c1c1c1; border-bottom-color: #373c4b; background-color: #373c4b; } /* line 14, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ .x-accordion-item .x-grid-header-ct { border-width: 0 0 1px !important; } /* line 21, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ .x-grid-header-ct-hidden { border-top: 0 !important; border-bottom: 0 !important; } /* line 31, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ .x-grid-body { border-top-color: #c1c1c1; } /* line 35, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ .x-hmenu-sort-asc { background-image: url(images/grid/hmenu-asc.png); } /* line 39, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ .x-hmenu-sort-desc { background-image: url(images/grid/hmenu-desc.png); } /* line 43, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ .x-cols-icon { background-image: url(images/grid/columns.png); } /* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header { border-right: 1px solid #c1c1c1; color: white; font: bold 15px/16px helvetica, arial, verdana, sans-serif; outline: 0; background-color: #373c4b; } /* line 21, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-rtl.x-column-header { border-right: 0 none; border-left: 1px solid #c1c1c1; } /* line 27, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-group-sub-header { background: transparent; border-top: 1px solid #c1c1c1; } /* line 32, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-group-sub-header .x-column-header-inner { padding: 6px 10px 7px 10px; } /* line 37, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header-inner { padding: 7px 10px 7px 10px; } /* line 41, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header-inner-empty { text-overflow: clip; } /* line 49, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header.x-column-header-focus { color: black; background-image: none; background-color: #ed9200; } /* line 50, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header.x-column-header-focus .x-column-header-inner:before { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; border: 0px solid #3d4454; pointer-events: none; } /* line 63, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header.x-column-header-focus.x-group-sub-header .x-column-header-inner:before { bottom: 0px; } /* line 78, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header-over, .x-column-header-sort-ASC, .x-column-header-sort-DESC { background-image: none; background-color: #496085; } /* line 105, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header-open { background-color: #496085; } /* line 108, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header-open .x-column-header-trigger { background-color: #e3e4e6; } /* line 113, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header-trigger { width: 18px; cursor: pointer; background-color: transparent; background-position: center center; } /* line 121, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-rtl.x-column-header-trigger { background-position: center center; } /* line 131, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header-align-right .x-column-header-text { margin-right: 12px; } /* line 136, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header-align-right .x-rtl.x-column-header-text { margin-right: 0; margin-left: 12px; } /* line 145, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header-sort-ASC .x-column-header-text, .x-column-header-sort-DESC .x-column-header-text { padding-right: 23px; background-position: right center; } /* line 154, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header-sort-ASC .x-rtl.x-column-header-text, .x-column-header-sort-DESC .x-rtl.x-column-header-text { padding-right: 0; padding-left: 23px; background-position: 0 center; } /* line 162, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header-sort-ASC .x-column-header-text { background-image: url(images/grid/sort_asc.png); } /* line 165, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ .x-column-header-sort-DESC .x-column-header-text { background-image: url(images/grid/sort_desc.png); } /** * Creates a visual theme for text fields. Note this mixin only provides styling * for the form field body, The label and error are styled by {@link #extjs-label-ui}. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number} [$ui-height=$form-text-field-height] * The height of the text field * * @param {number} [$ui-font-size=$form-text-field-font-size] * The font-size of the text field * * @param {string} [$ui-font-family=$form-text-field-font-family] * The font-family of the text field * * @param {string} [$ui-font-weight=$form-text-field-font-weight] * The font-weight of the text field * * @param {color} [$ui-color=$form-text-field-color] * The color of the text field's input element * * @param {color} [$ui-background-color=$form-text-field-background-color] * The background color of the text field's input element * * @param {number/list} [$ui-border-width=$form-text-field-border-width] * The border width of the text field * * @param {string/list} [$ui-border-style=$form-text-field-border-style] * The border style of the text field * * @param {color/list} [$ui-border-color=$form-text-field-border-color] * The border color of text fields * * @param {color/list} [$ui-focus-border-color=$form-text-field-focus-border-color] * The border color of the text field when focused * * @param {color} [$ui-invalid-border-color=$form-text-field-invalid-border-color] * The border color of the text field when the field value is invalid. * * @param {number/list} [$ui-border-radius=$form-text-field-border-radius] * The border radius of the text field * * @param {string} [$ui-background-image=$form-text-field-background-image] * The background image of the text field's input element * * @param {number/list} [$ui-padding=$form-text-field-padding] * The padding of the text field's input element * * @param {color} [$ui-empty-color=$form-text-field-empty-color] * Text color for of the text field when empty * * @param {number} [$ui-body-width=$form-text-field-body-width] * The default width of the text field's body element (the element that contains the input * element and triggers) when the field is not sized explicitly using the {@link #width} * config, or sized by it's containing layout. * * @param {color} [$ui-invalid-background-color=$form-field-invalid-background-color] * Background color of the input element when the field value is invalid. * * @param {string} [$ui-invalid-background-image=$form-field-invalid-background-image] * Background image of the input element when the field value is invalid. * * @param {string} [$ui-invalid-background-repeat=$form-field-invalid-background-repeat] * Background repeat of the input element when the field value is invalid. * * @param {string/list} [$ui-invalid-background-position=$form-field-invalid-background-position] * Background position of the input element when the field value is invalid. * * @param {number} [$ui-trigger-width=$form-trigger-width] * The width of the trigger element * * @param {number/list} [$ui-trigger-border-width=$form-trigger-border-width] * The width of the trigger's border * * @param {color/list} [$ui-trigger-border-color=$form-trigger-border-color] * The color of the trigger's border * * @param {string/list} [$ui-trigger-border-style=$form-trigger-border-style] * The style of the trigger's border * * @param {color} [$ui-trigger-border-color-over=$form-trigger-border-color-over] * The color of the trigger's border when hovered * * @param {color} [$ui-trigger-border-color-focus=$form-trigger-border-color-focus] * The color of the trigger's border when the field is focused * * @param {color} [$ui-trigger-border-color-pressed=$form-trigger-border-color-pressed] * The color of the trigger's border when the field is focused and the trigger is hovered * * @param {string} [$ui-trigger-background-image=$form-trigger-background-image] * The default background image for the trigger * * @param {color} [$ui-trigger-background-color=$form-trigger-background-color] * The background color of the trigger element * * @param {number} [$ui-textarea-line-height=$form-textarea-line-height] * The line-height of the textarea element when this mixin is used to style a * {@link Ext.form.field.TextArea TextArea} * * @param {number} [$ui-textarea-body-height=$form-textarea-body-height] * The default width of the TextArea's body element (the element that contains the textarea * html element when the field is not sized explicitly using the {@link #width}config, or * sized by it's containing layout. * * @param {color} [$ui-file-field-color=$form-file-field-color] The text color of the * input element when this mixin is used to style a {@link Ext.form.field.File File Field} * * @param {boolean} [$ui-classic-border=$form-text-field-classic-border] * `true` to use classic-theme styled border. * * @member Ext.form.field.Text */ /* line 193, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-text-field-body-default { min-width: 170px; max-width: 170px; } /* line 213, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-trigger-wrap-default { border-width: 2px; border-style: solid; border-color: #737b8c; } /* line 221, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-trigger-wrap-default.x-form-trigger-wrap-focus { border-color: #ff9c33; } /* line 225, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-trigger-wrap-default.x-form-trigger-wrap-invalid { border-color: #cc3300; } /* line 250, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-text-default { color: white; padding: 4px 6px 3px 6px; background-color: #34383f; font: normal 15px/13px helvetica, arial, verdana, sans-serif; min-height: 20px; } /* line 264, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-ie8 .x-form-text-default { min-height: 13px; } /* line 270, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-text-default.x-form-textarea { line-height: 17px; min-height: 68px; } /* line 275, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-ie8 .x-form-text-default.x-form-textarea { min-height: 61px; } /* line 282, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-text-default.x-form-text-file { color: gray; } /* line 287, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-empty-field-default { color: gray; } /* line 291, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-invalid-field-default { background-color: #15171a; } /* line 302, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-trigger-default { background: #34383f url(images/form/trigger.png) no-repeat; background-position: 0 center; width: 22px; } /* line 314, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-trigger-default.x-rtl { background-image: url(images/form/trigger-rtl.png); } /* line 319, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-trigger-default.x-form-trigger-over { background-position: -22px center; } /* line 325, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-trigger-default.x-form-trigger-over.x-form-trigger-focus { background-position: -88px center; } /* line 330, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-trigger-default.x-form-trigger-focus { background-position: -66px center; } /* line 339, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-trigger.x-form-trigger-default.x-form-trigger-click { background-position: -44px center; } /* line 348, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-textfield-default-cell > .x-grid-cell-inner { padding-top: 1px; padding-bottom: 1px; } /* line 406, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-clear-trigger { background-image: url(images/form/clear-trigger.png); } /* line 409, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-clear-trigger.x-rtl { background-image: url(images/form/clear-trigger-rtl.png); } /* line 415, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-search-trigger { background-image: url(images/form/search-trigger.png); } /* line 418, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ .x-form-search-trigger.x-rtl { background-image: url(images/form/search-trigger-rtl.png); } /* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Border.scss */ body.x-border-layout-ct, div.x-border-layout-ct { background-color: #3f4757; } /** * Creates a visual theme for a Button. This mixin is not {@link #scale} aware, and therefore * does not provide defaults for most parameters, so it is advisable to use one of the * following mixins instead when creating a custom buttonUI: * * #extjs-button-small-ui - creates a button UI for a small button * #extjs-button-medium-ui - creates a button UI for a medium button * #extjs-button-large-ui - creates a button UI for a large button * #extjs-button-toolbar-small-ui - creates a button UI for a small toolbar button * #extjs-button-toolbar-medium-ui - creates a button UI for a medium toolbar button * #extjs-button-toolbar-large-ui - creates a button UI for a large toolbar button * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number} [$border-radius=0px] * The border-radius of the button * * @param {number} [$border-width=0px] * The border-width of the button * * @param {color} $border-color * The border-color of the button * * @param {color} $border-color-over * The border-color of the button when the cursor is over the button * * @param {color} $border-color-focus * The border-color of the button when focused * * @param {color} $border-color-pressed * The border-color of the button when pressed * * @param {color} $border-color-focus-over * The border-color of the button when the button is focused and the cursor is over the * button * * @param {color} $border-color-focus-pressed * The border-color of the button when focused and pressed * * @param {color} $border-color-disabled * The border-color of the button when disabled * * @param {number} $padding * The amount of padding inside the border of the button on all sides * * @param {number} $text-padding * The amount of horizontal space to add to the left and right of the button text * * @param {color} $background-color * The background-color of the button * * @param {color} $background-color-over * The background-color of the button when the cursor is over the button * * @param {color} $background-color-focus * The background-color of the button when focused * * @param {color} $background-color-pressed * The background-color of the button when pressed * * @param {color} $background-color-focus-over * The background-color of the button when the button is focused and the cursor is over * the button * * @param {color} $background-color-focus-pressed * The background-color of the button when focused and pressed * * @param {color} $background-color-disabled * The background-color of the button when disabled * * @param {string/list} $background-gradient * The background-gradient for the button. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string} $background-gradient-over * The background-gradient to use when the cursor is over the button. Can be either the * name of a predefined gradient or a list of color stops. Used as the `$type` parameter * for {@link Global_CSS#background-gradient}. * * @param {string} $background-gradient-focus * The background-gradient to use when the the button is focused. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string} $background-gradient-pressed * The background-gradient to use when the the button is pressed. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string} $background-gradient-focus-over * The background-gradient to use when the the button is focused and the cursor is over * the button. Can be either the name of a predefined gradient or a list of color stops. * Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string} $background-gradient-focus-pressed * The background-gradient to use when the the button is focused and pressed. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. * * @param {string} $background-gradient-disabled * The background-gradient to use when the the button is disabled. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {color} $color * The text color of the button * * @param {color} $color-over * The text color of the button when the cursor is over the button * * @param {color} $color-focus * The text color of the button when the button is focused * * @param {color} $color-pressed * The text color of the button when the button is pressed * * @param {color} $color-focus-over * The text color of the button when the button is focused and the cursor is over the button * * @param {color} $color-focus-pressed * The text color of the button when the button is focused and pressed * * @param {color} $color-disabled * The text color of the button when the button is disabled * * @param {number/list} $inner-border-width * The inner border-width of the button * * @param {number/list} $inner-border-width-over * The inner border-width of the button when the cursor is over the button * * @param {number/list} $inner-border-width-focus * The inner border-width of the button when focused * * @param {number/list} $inner-border-width-pressed * The inner border-width of the button when pressed * * @param {number/list} $inner-border-width-focus-over * The inner border-width of the button when the button is focused and the cursor is over * the button * * @param {number/list} $inner-border-width-focus-pressed * The inner border-width of the button when focused and pressed * * @param {number/list} $inner-border-width-disabled * The inner border-width of the button when disabled * * @param {color} $inner-border-color * The inner border-color of the button * * @param {color} $inner-border-color-over * The inner border-color of the button when the cursor is over the button * * @param {color} $inner-border-color-focus * The inner border-color of the button when focused * * @param {color} $inner-border-color-pressed * The inner border-color of the button when pressed * * @param {color} $inner-border-color-focus-over * The inner border-color of the button when the button is focused and the cursor is over * the button * * @param {color} $inner-border-color-focus-pressed * The inner border-color of the button when focused and pressed * * @param {color} $inner-border-color-disabled * The inner border-color of the button when disabled * * @param {number} $body-outline-width-focus * The body outline width of the button when focused * * @param {string} $body-outline-style-focus * The body outline-style of the button when focused * * @param {color} $body-outline-color-focus * The body outline color of the button when focused * * @param {number} $font-size * The font-size of the button * * @param {number} $font-size-over * The font-size of the button when the cursor is over the button * * @param {number} $font-size-focus * The font-size of the button when the button is focused * * @param {number} $font-size-pressed * The font-size of the button when the button is pressed * * @param {number} $font-size-focus-over * The font-size of the button when the button is focused and the cursor is over the * button * * @param {number} $font-size-focus-pressed * The font-size of the button when the button is focused and pressed * * @param {number} $font-size-disabled * The font-size of the button when the button is disabled * * @param {string} $font-weight * The font-weight of the button * * @param {string} $font-weight-over * The font-weight of the button when the cursor is over the button * * @param {string} $font-weight-focus * The font-weight of the button when the button is focused * * @param {string} $font-weight-pressed * The font-weight of the button when the button is pressed * * @param {string} $font-weight-focus-over * The font-weight of the button when the button is focused and the cursor is over the * button * * @param {string} $font-weight-focus-pressed * The font-weight of the button when the button is focused and pressed * * @param {string} $font-weight-disabled * The font-weight of the button when the button is disabled * * @param {string} $font-family * The font-family of the button * * @param {string} $font-family-over * The font-family of the button when the cursor is over the button * * @param {string} $font-family-focus * The font-family of the button when the button is focused * * @param {string} $font-family-pressed * The font-family of the button when the button is pressed * * @param {string} $font-family-focus-over * The font-family of the button when the button is focused and the cursor is over the * button * * @param {string} $font-family-focus-pressed * The font-family of the button when the button is focused and pressed * * @param {string} $font-family-disabled * The font-family of the button when the button is disabled * * @param {number} $line-height * The line-height of the button text * * @param {number} $icon-size * The size of the button icon * * @param {number} $icon-spacing * The space between the button's icon and text * * @param {color} $glyph-color * The color of the button's {@link #glyph} icon * * @param {number} [$glyph-opacity=1] * The opacity of the button's {@link #glyph} icon * * @param {number} $arrow-width * The width of the button's {@link #cfg-menu} arrow * * @param {number} $arrow-height * The height of the button's {@link #cfg-menu} arrow * * @param {number} $split-width * The width of a {@link Ext.button.Split Split Button}'s arrow * * @param {number} $split-height * The height of a {@link Ext.button.Split Split Button}'s arrow * * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows] * True to include the UI name in the file name of the {@link #cfg-menu} * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows] * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-split-noline-arrows=$button-include-split-noline-arrows] * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Used for hiding the split line when toolbar buttons are in their default * state. * * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows] * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor * is over the button. The over icon file name will have a "-o" suffix * * @param {number} [$opacity-disabled=1] * The opacity of the button when it is disabled * * @param {number} [$inner-opacity-disabled=1] * The opacity of the button's text and icon elements when when the button is disabled * * @member Ext.button.Button */ /** * Creates a visual theme for a {@link #scale small} Button. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number} [$border-radius=$button-small-border-radius] * The border-radius of the button * * @param {number} [$border-width=$button-small-border-width] * The border-width of the button * * @param {color} [$border-color=$button-default-border-color] * The border-color of the button * * @param {color} [$border-color-over=$button-default-border-color-over] * The border-color of the button when the cursor is over the button * * @param {color} [$border-color-focus=$button-default-border-color-focus] * The border-color of the button when focused * * @param {color} [$border-color-pressed=$button-default-border-color-pressed] * The border-color of the button when pressed * * @param {color} [$border-color-focus-over=$button-default-border-color-focus-over] * The border-color of the button when the button is focused and the cursor is over the * button * * @param {color} [$border-color-focus-pressed=$button-default-border-color-focus-pressed] * The border-color of the button when focused and pressed * * @param {color} [$border-color-disabled=$button-default-border-color-disabled] * The border-color of the button when disabled * * @param {number} [$padding=$button-small-padding] * The amount of padding inside the border of the button on all sides * * @param {number} [$text-padding=$button-small-text-padding] * The amount of horizontal space to add to the left and right of the button text * * @param {color} [$background-color=$button-default-background-color] * The background-color of the button * * @param {color} [$background-color-over=$button-default-background-color-over] * The background-color of the button when the cursor is over the button * * @param {color} [$background-color-focus=$button-default-background-color-focus] * The background-color of the button when focused * * @param {color} [$background-color-pressed=$button-default-background-color-pressed] * The background-color of the button when pressed * * @param {color} [$background-color-focus-over=$button-default-background-color-focus-over] * The background-color of the button when the button is focused and the cursor is over * the button * * @param {color} [$background-color-focus-pressed=$button-default-background-color-focus-pressed] * The background-color of the button when focused and pressed * * @param {color} [$background-color-disabled=$button-default-background-color-disabled] * The background-color of the button when disabled * * @param {string/list} [$background-gradient=$button-default-background-gradient] * The background-gradient for the button. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-over=$button-default-background-gradient-over] * The background-gradient to use when the cursor is over the button. Can be either the * name of a predefined gradient or a list of color stops. Used as the `$type` parameter * for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-focus=$button-default-background-gradient-focus] * The background-gradient to use when the the button is focused. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-pressed=$button-default-background-gradient-pressed] * The background-gradient to use when the the button is pressed. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string} [$background-gradient-focus-over=$button-default-background-gradient-focus-over] * The background-gradient to use when the the button is focused and the cursor is over * the button. Can be either the name of a predefined gradient or a list of color stops. * Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string} [$background-gradient-focus-pressed=$button-default-background-gradient-focus-pressed] * The background-gradient to use when the the button is focused and pressed. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-disabled=$button-default-background-gradient-disabled] * The background-gradient to use when the the button is disabled. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {color} [$color=$button-default-color] * The text color of the button * * @param {color} [$color-over=$button-default-color-over] * The text color of the button when the cursor is over the button * * @param {color} [$color-focus=$button-default-color-focus] * The text color of the button when the button is focused * * @param {color} [$color-pressed=$button-default-color-pressed] * The text color of the button when the button is pressed * * @param {color} [$color-focus-over=$button-default-color-focus-over] * The text color of the button when the button is focused and the cursor is over the button * * @param {color} [$color-focus-pressed=$button-default-color-focus-pressed] * The text color of the button when the button is focused and pressed * * @param {color} [$color-disabled=$button-default-color-disabled] * The text color of the button when the button is disabled * * @param {number/list} [$inner-border-width=$button-default-inner-border-width] * The inner border-width of the button * * @param {number/list} [$inner-border-width-over=$button-default-inner-border-width-over] * The inner border-width of the button when the cursor is over the button * * @param {number/list} [$inner-border-width-focus=$button-default-inner-border-width-focus] * The inner border-width of the button when focused * * @param {number/list} [$inner-border-width-pressed=$button-default-inner-border-width-pressed] * The inner border-width of the button when pressed * * @param {number/list} [$inner-border-width-focus-over=$button-default-inner-border-width-focus-over] * The inner border-width of the button when the button is focused and the cursor is over * the button * * @param {number/list} [$inner-border-width-focus-pressed=$button-default-inner-border-width-focus-pressed] * The inner border-width of the button when focused and pressed * * @param {number/list} [$inner-border-width-disabled=$button-default-inner-border-width-disabled] * The inner border-width of the button when disabled * * @param {color} [$inner-border-color=$button-default-inner-border-color] * The inner border-color of the button * * @param {color} [$inner-border-color-over=$button-default-inner-border-color-over] * The inner border-color of the button when the cursor is over the button * * @param {color} [$inner-border-color-focus=$button-default-inner-border-color-focus] * The inner border-color of the button when focused * * @param {color} [$inner-border-color-pressed=$button-default-inner-border-color-pressed] * The inner border-color of the button when pressed * * @param {color} [$inner-border-color-focus-over=$button-default-inner-border-color-focus-over] * The inner border-color of the button when the button is focused and the cursor is over * the button * * @param {color} [$inner-border-color-focus-pressed=$button-default-inner-border-color-focus-pressed] * The inner border-color of the button when focused and pressed * * @param {color} [$inner-border-color-disabled=$button-default-inner-border-color-disabled] * The inner border-color of the button when disabled * * @param {number} [$body-outline-width-focus=$button-default-body-outline-width-focus] * The body outline width of the button when focused * * @param {number} [$body-outline-style-focus=$button-default-body-outline-style-focus] * The body outline-style of the button when focused * * @param {number} [$body-outline-color-focus=$button-default-body-outline-color-focus] * The body outline color of the button when focused * * @param {number} [$font-size=$button-small-font-size] * The font-size of the button * * @param {number} [$font-size-over=$button-small-font-size-over] * The font-size of the button when the cursor is over the button * * @param {number} [$font-size-focus=$button-small-font-size-focus] * The font-size of the button when the button is focused * * @param {number} [$font-size-pressed=$button-small-font-size-pressed] * The font-size of the button when the button is pressed * * @param {number} [$font-size-focus-over=$button-small-font-size-focus-over] * The font-size of the button when the button is focused and the cursor is over the * button * * @param {number} [$font-size-focus-pressed=$button-small-font-size-focus-pressed] * The font-size of the button when the button is focused and pressed * * @param {number} [$font-size-disabled=$button-small-font-size-disabled] * The font-size of the button when the button is disabled * * @param {string} [$font-weight=$button-small-font-weight] * The font-weight of the button * * @param {string} [$font-weight-over=$button-small-font-weight-over] * The font-weight of the button when the cursor is over the button * * @param {string} [$font-weight-focus=$button-small-font-weight-focus] * The font-weight of the button when the button is focused * * @param {string} [$font-weight-pressed=$button-small-font-weight-pressed] * The font-weight of the button when the button is pressed * * @param {string} [$font-weight-focus-over=$button-small-font-weight-focus-over] * The font-weight of the button when the button is focused and the cursor is over the * button * * @param {string} [$font-weight-focus-pressed=$button-small-font-weight-focus-pressed] * The font-weight of the button when the button is focused and pressed * * @param {string} [$font-weight-disabled=$button-small-font-weight-disabled] * The font-weight of the button when the button is disabled * * @param {string} [$font-family=$button-small-font-family] * The font-family of the button * * @param {string} [$font-family-over=$button-small-font-family-over] * The font-family of the button when the cursor is over the button * * @param {string} [$font-family-focus=$button-small-font-family-focus] * The font-family of the button when the button is focused * * @param {string} [$font-family-pressed=$button-small-font-family-pressed] * The font-family of the button when the button is pressed * * @param {string} [$font-family-focus-over=$button-small-font-family-focus-over] * The font-family of the button when the button is focused and the cursor is over the * button * * @param {string} [$font-family-focus-pressed=$button-small-font-family-focus-pressed] * The font-family of the button when the button is focused and pressed * * @param {string} [$font-family-disabled=$button-small-font-family-disabled] * The font-family of the button when the button is disabled * * @param {number} [$line-height=$button-small-line-height] * The line-height of the button text * * @param {number} [$icon-size=$button-small-icon-size] * The size of the button icon * * @param {number} [$icon-spacing=$button-small-icon-spacing] * The space between the button's icon and text * * @param {color} [$glyph-color=$button-default-glyph-color] * The color of the button's {@link #glyph} icon * * @param {number} [$glyph-opacity=$button-default-glyph-opacity] * The opacity of the button's {@link #glyph} icon * * @param {number} [$arrow-width=$button-small-arrow-width] * The width of the button's {@link #cfg-menu} arrow * * @param {number} [$arrow-height=$button-small-arrow-height] * The height of the button's {@link #cfg-menu} arrow * * @param {number} [$split-width=$button-small-split-width] * The width of a {@link Ext.button.Split Split Button}'s arrow * * @param {number} [$split-height=$button-small-split-height] * The height of a {@link Ext.button.Split Split Button}'s arrow * * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows] * True to include the UI name in the file name of the {@link #cfg-menu} * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows] * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-split-noline-arrows=$button-include-split-noline-arrows] * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Used for hiding the split line when toolbar buttons are in their default * state. * * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows] * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor * is over the button. The over icon file name will have a "-o" suffix * * @param {number} [$opacity-disabled=$button-opacity-disabled] * The opacity of the button when it is disabled * * @param {number} [$inner-opacity-disabled=$button-inner-opacity-disabled] * The opacity of the button's text and icon elements when when the button is disabled * * @member Ext.button.Button */ /** * Creates a visual theme for a {@link #scale small} toolbar Button. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number} [$border-radius=$button-small-border-radius] * The border-radius of the button * * @param {number} [$border-width=$button-small-border-width] * The border-width of the button * * @param {color} [$border-color=$button-toolbar-border-color] * The border-color of the button * * @param {color} [$border-color-over=$button-toolbar-border-color-over] * The border-color of the button when the cursor is over the button * * @param {color} [$border-color-focus=$button-toolbar-border-color-focus] * The border-color of the button when focused * * @param {color} [$border-color-pressed=$button-toolbar-border-color-pressed] * The border-color of the button when pressed * * @param {color} [$border-color-focus-over=$button-toolbar-border-color-focus-over] * The border-color of the button when the button is focused and the cursor is over the * button * * @param {color} [$border-color-focus-pressed=$button-toolbar-border-color-focus-pressed] * The border-color of the button when focused and pressed * * @param {color} [$border-color-disabled=$button-toolbar-border-color-disabled] * The border-color of the button when disabled * * @param {number} [$padding=$button-small-padding] * The amount of padding inside the border of the button on all sides * * @param {number} [$text-padding=$button-small-text-padding] * The amount of horizontal space to add to the left and right of the button text * * @param {color} [$background-color=$button-toolbar-background-color] * The background-color of the button * * @param {color} [$background-color-over=$button-toolbar-background-color-over] * The background-color of the button when the cursor is over the button * * @param {color} [$background-color-focus=$button-toolbar-background-color-focus] * The background-color of the button when focused * * @param {color} [$background-color-pressed=$button-toolbar-background-color-pressed] * The background-color of the button when pressed * * @param {color} [$background-color-focus-over=$button-toolbar-background-color-focus-over] * The background-color of the button when the button is focused and the cursor is over * the button * * @param {color} [$background-color-focus-pressed=$button-toolbar-background-color-focus-pressed] * The background-color of the button when focused and pressed * * @param {color} [$background-color-disabled=$button-toolbar-background-color-disabled] * The background-color of the button when disabled * * @param {string/list} [$background-gradient=$button-toolbar-background-gradient] * The background-gradient for the button. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-over=$button-toolbar-background-gradient-over] * The background-gradient to use when the cursor is over the button. Can be either the * name of a predefined gradient or a list of color stops. Used as the `$type` parameter * for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-focus=$button-toolbar-background-gradient-focus] * The background-gradient to use when the the button is focused. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-pressed=$button-toolbar-background-gradient-pressed] * The background-gradient to use when the the button is pressed. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string} [$background-gradient-focus-over=$button-toolbar-background-gradient-focus-over] * The background-gradient to use when the the button is focused and the cursor is over * the button. Can be either the name of a predefined gradient or a list of color stops. * Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string} [$background-gradient-focus-pressed=$button-toolbar-background-gradient-focus-pressed] * The background-gradient to use when the the button is focused and pressed. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-disabled=$button-toolbar-background-gradient-disabled] * The background-gradient to use when the the button is disabled. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {color} [$color=$button-toolbar-color] * The text color of the button * * @param {color} [$color-over=$button-toolbar-color-over] * The text color of the button when the cursor is over the button * * @param {color} [$color-focus=$button-toolbar-color-focus] * The text color of the button when the button is focused * * @param {color} [$color-pressed=$button-toolbar-color-pressed] * The text color of the button when the button is pressed * * @param {color} [$color-focus-over=$button-toolbar-color-focus-over] * The text color of the button when the button is focused and the cursor is over the button * * @param {color} [$color-focus-pressed=$button-toolbar-color-focus-pressed] * The text color of the button when the button is focused and pressed * * @param {color} [$color-disabled=$button-toolbar-color-disabled] * The text color of the button when the button is disabled * * @param {number/list} [$inner-border-width=$button-toolbar-inner-border-width] * The inner border-width of the button * * @param {number/list} [$inner-border-width-over=$button-toolbar-inner-border-width-over] * The inner border-width of the button when the cursor is over the button * * @param {number/list} [$inner-border-width-focus=$button-toolbar-inner-border-width-focus] * The inner border-width of the button when focused * * @param {number/list} [$inner-border-width-pressed=$button-toolbar-inner-border-width-pressed] * The inner border-width of the button when pressed * * @param {number/list} [$inner-border-width-focus-over=$button-toolbar-inner-border-width-focus-over] * The inner border-width of the button when the button is focused and the cursor is over * the button * * @param {number/list} [$inner-border-width-focus-pressed=$button-toolbar-inner-border-width-focus-pressed] * The inner border-width of the button when focused and pressed * * @param {number/list} [$inner-border-width-disabled=$button-toolbar-inner-border-width-disabled] * The inner border-width of the button when disabled * * @param {color} [$inner-border-color=$button-toolbar-inner-border-color] * The inner border-color of the button * * @param {color} [$inner-border-color-over=$button-toolbar-inner-border-color-over] * The inner border-color of the button when the cursor is over the button * * @param {color} [$inner-border-color-focus=$button-toolbar-inner-border-color-focus] * The inner border-color of the button when focused * * @param {color} [$inner-border-color-pressed=$button-toolbar-inner-border-color-pressed] * The inner border-color of the button when pressed * * @param {color} [$inner-border-color-focus-over=$button-toolbar-inner-border-color-focus-over] * The inner border-color of the button when the button is focused and the cursor is over * the button * * @param {color} [$inner-border-color-focus-pressed=$button-toolbar-inner-border-color-focus-pressed] * The inner border-color of the button when focused and pressed * * @param {color} [$inner-border-color-disabled=$button-toolbar-inner-border-color-disabled] * The inner border-color of the button when disabled * * @param {number} [$body-outline-width-focus=$button-toolbar-body-outline-width-focus] * The body outline width of the button when focused * * @param {number} [$body-outline-style-focus=$button-toolbar-body-outline-style-focus] * The body outline-style of the button when focused * * @param {number} [$body-outline-color-focus=$button-toolbar-body-outline-color-focus] * The body outline color of the button when focused * * @param {number} [$font-size=$button-small-font-size] * The font-size of the button * * @param {number} [$font-size-over=$button-small-font-size-over] * The font-size of the button when the cursor is over the button * * @param {number} [$font-size-focus=$button-small-font-size-focus] * The font-size of the button when the button is focused * * @param {number} [$font-size-pressed=$button-small-font-size-pressed] * The font-size of the button when the button is pressed * * @param {number} [$font-size-focus-over=$button-small-font-size-focus-over] * The font-size of the button when the button is focused and the cursor is over the * button * * @param {number} [$font-size-focus-pressed=$button-small-font-size-focus-pressed] * The font-size of the button when the button is focused and pressed * * @param {number} [$font-size-disabled=$button-small-font-size-disabled] * The font-size of the button when the button is disabled * * @param {string} [$font-weight=$button-small-font-weight] * The font-weight of the button * * @param {string} [$font-weight-over=$button-small-font-weight-over] * The font-weight of the button when the cursor is over the button * * @param {string} [$font-weight-focus=$button-small-font-weight-focus] * The font-weight of the button when the button is focused * * @param {string} [$font-weight-pressed=$button-small-font-weight-pressed] * The font-weight of the button when the button is pressed * * @param {string} [$font-weight-focus-over=$button-small-font-weight-focus-over] * The font-weight of the button when the button is focused and the cursor is over the * button * * @param {string} [$font-weight-focus-pressed=$button-small-font-weight-focus-pressed] * The font-weight of the button when the button is focused and pressed * * @param {string} [$font-weight-disabled=$button-small-font-weight-disabled] * The font-weight of the button when the button is disabled * * @param {string} [$font-family=$button-small-font-family] * The font-family of the button * * @param {string} [$font-family-over=$button-small-font-family-over] * The font-family of the button when the cursor is over the button * * @param {string} [$font-family-focus=$button-small-font-family-focus] * The font-family of the button when the button is focused * * @param {string} [$font-family-pressed=$button-small-font-family-pressed] * The font-family of the button when the button is pressed * * @param {string} [$font-family-focus-over=$button-small-font-family-focus-over] * The font-family of the button when the button is focused and the cursor is over the * button * * @param {string} [$font-family-focus-pressed=$button-small-font-family-focus-pressed] * The font-family of the button when the button is focused and pressed * * @param {string} [$font-family-disabled=$button-small-font-family-disabled] * The font-family of the button when the button is disabled * * @param {number} [$line-height=$button-small-line-height] * The line-height of the button text * * @param {number} [$icon-size=$button-small-icon-size] * The size of the button icon * * @param {number} [$icon-spacing=$button-small-icon-spacing] * The space between the button's icon and text * * @param {color} [$glyph-color=$button-toolbar-glyph-color] * The color of the button's {@link #glyph} icon * * @param {number} [$glyph-opacity=$button-toolbar-glyph-opacity] * The opacity of the button's {@link #glyph} icon * * @param {number} [$arrow-width=$button-small-arrow-width] * The width of the button's {@link #cfg-menu} arrow * * @param {number} [$arrow-height=$button-small-arrow-height] * The height of the button's {@link #cfg-menu} arrow * * @param {number} [$split-width=$button-small-split-width] * The width of a {@link Ext.button.Split Split Button}'s arrow * * @param {number} [$split-height=$button-small-split-height] * The height of a {@link Ext.button.Split Split Button}'s arrow * * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows] * True to include the UI name in the file name of the {@link #cfg-menu} * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows] * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-split-noline-arrows=$button-toolbar-include-split-noline-arrows] * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Used for hiding the split line when toolbar buttons are in their default * state. * * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows] * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor * is over the button. The over icon file name will have a "-o" suffix * * @param {number} [$opacity-disabled=$button-toolbar-opacity-disabled] * The opacity of the button when it is disabled * * @param {number} [$inner-opacity-disabled=$button-toolbar-inner-opacity-disabled] * The opacity of the button's text and icon elements when when the button is disabled * * @member Ext.button.Button */ /** * Creates a visual theme for a {@link #scale medium} Button. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number} [$border-radius=$button-medium-border-radius] * The border-radius of the button * * @param {number} [$border-width=$button-medium-border-width] * The border-width of the button * * @param {color} [$border-color=$button-default-border-color] * The border-color of the button * * @param {color} [$border-color-over=$button-default-border-color-over] * The border-color of the button when the cursor is over the button * * @param {color} [$border-color-focus=$button-default-border-color-focus] * The border-color of the button when focused * * @param {color} [$border-color-pressed=$button-default-border-color-pressed] * The border-color of the button when pressed * * @param {color} [$border-color-focus-over=$button-default-border-color-focus-over] * The border-color of the button when the button is focused and the cursor is over the * button * * @param {color} [$border-color-focus-pressed=$button-default-border-color-focus-pressed] * The border-color of the button when focused and pressed * * @param {color} [$border-color-disabled=$button-default-border-color-disabled] * The border-color of the button when disabled * * @param {number} [$padding=$button-medium-padding] * The amount of padding inside the border of the button on all sides * * @param {number} [$text-padding=$button-medium-text-padding] * The amount of horizontal space to add to the left and right of the button text * * @param {color} [$background-color=$button-default-background-color] * The background-color of the button * * @param {color} [$background-color-over=$button-default-background-color-over] * The background-color of the button when the cursor is over the button * * @param {color} [$background-color-focus=$button-default-background-color-focus] * The background-color of the button when focused * * @param {color} [$background-color-pressed=$button-default-background-color-pressed] * The background-color of the button when pressed * * @param {color} [$background-color-focus-over=$button-default-background-color-focus-over] * The background-color of the button when the button is focused and the cursor is over * the button * * @param {color} [$background-color-focus-pressed=$button-default-background-color-focus-pressed] * The background-color of the button when focused and pressed * * @param {color} [$background-color-disabled=$button-default-background-color-disabled] * The background-color of the button when disabled * * @param {string/list} [$background-gradient=$button-default-background-gradient] * The background-gradient for the button. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-over=$button-default-background-gradient-over] * The background-gradient to use when the cursor is over the button. Can be either the * name of a predefined gradient or a list of color stops. Used as the `$type` parameter * for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-focus=$button-default-background-gradient-focus] * The background-gradient to use when the the button is focused. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-pressed=$button-default-background-gradient-pressed] * The background-gradient to use when the the button is pressed. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string} [$background-gradient-focus-over=$button-default-background-gradient-focus-over] * The background-gradient to use when the the button is focused and the cursor is over * the button. Can be either the name of a predefined gradient or a list of color stops. * Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string} [$background-gradient-focus-pressed=$button-default-background-gradient-focus-pressed] * The background-gradient to use when the the button is focused and pressed. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-disabled=$button-default-background-gradient-disabled] * The background-gradient to use when the the button is disabled. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {color} [$color=$button-default-color] * The text color of the button * * @param {color} [$color-over=$button-default-color-over] * The text color of the button when the cursor is over the button * * @param {color} [$color-focus=$button-default-color-focus] * The text color of the button when the button is focused * * @param {color} [$color-pressed=$button-default-color-pressed] * The text color of the button when the button is pressed * * @param {color} [$color-focus-over=$button-default-color-focus-over] * The text color of the button when the button is focused and the cursor is over the button * * @param {color} [$color-focus-pressed=$button-default-color-focus-pressed] * The text color of the button when the button is focused and pressed * * @param {color} [$color-disabled=$button-default-color-disabled] * The text color of the button when the button is disabled * * @param {number/list} [$inner-border-width=$button-default-inner-border-width] * The inner border-width of the button * * @param {number/list} [$inner-border-width-over=$button-default-inner-border-width-over] * The inner border-width of the button when the cursor is over the button * * @param {number/list} [$inner-border-width-focus=$button-default-inner-border-width-focus] * The inner border-width of the button when focused * * @param {number/list} [$inner-border-width-pressed=$button-default-inner-border-width-pressed] * The inner border-width of the button when pressed * * @param {number/list} [$inner-border-width-focus-over=$button-default-inner-border-width-focus-over] * The inner border-width of the button when the button is focused and the cursor is over * the button * * @param {number/list} [$inner-border-width-focus-pressed=$button-default-inner-border-width-focus-pressed] * The inner border-width of the button when focused and pressed * * @param {number/list} [$inner-border-width-disabled=$button-default-inner-border-width-disabled] * The inner border-width of the button when disabled * * @param {color} [$inner-border-color=$button-default-inner-border-color] * The inner border-color of the button * * @param {color} [$inner-border-color-over=$button-default-inner-border-color-over] * The inner border-color of the button when the cursor is over the button * * @param {color} [$inner-border-color-focus=$button-default-inner-border-color-focus] * The inner border-color of the button when focused * * @param {color} [$inner-border-color-pressed=$button-default-inner-border-color-pressed] * The inner border-color of the button when pressed * * @param {color} [$inner-border-color-focus-over=$button-default-inner-border-color-focus-over] * The inner border-color of the button when the button is focused and the cursor is over * the button * * @param {color} [$inner-border-color-focus-pressed=$button-default-inner-border-color-focus-pressed] * The inner border-color of the button when focused and pressed * * @param {color} [$inner-border-color-disabled=$button-default-inner-border-color-disabled] * The inner border-color of the button when disabled * * @param {number} [$body-outline-width-focus=$button-default-body-outline-width-focus] * The body outline width of the button when focused * * @param {number} [$body-outline-style-focus=$button-default-body-outline-style-focus] * The body outline-style of the button when focused * * @param {number} [$body-outline-color-focus=$button-default-body-outline-color-focus] * The body outline color of the button when focused * * @param {number} [$font-size=$button-medium-font-size] * The font-size of the button * * @param {number} [$font-size-over=$button-medium-font-size-over] * The font-size of the button when the cursor is over the button * * @param {number} [$font-size-focus=$button-medium-font-size-focus] * The font-size of the button when the button is focused * * @param {number} [$font-size-pressed=$button-medium-font-size-pressed] * The font-size of the button when the button is pressed * * @param {number} [$font-size-focus-over=$button-medium-font-size-focus-over] * The font-size of the button when the button is focused and the cursor is over the * button * * @param {number} [$font-size-focus-pressed=$button-medium-font-size-focus-pressed] * The font-size of the button when the button is focused and pressed * * @param {number} [$font-size-disabled=$button-medium-font-size-disabled] * The font-size of the button when the button is disabled * * @param {string} [$font-weight=$button-medium-font-weight] * The font-weight of the button * * @param {string} [$font-weight-over=$button-medium-font-weight-over] * The font-weight of the button when the cursor is over the button * * @param {string} [$font-weight-focus=$button-medium-font-weight-focus] * The font-weight of the button when the button is focused * * @param {string} [$font-weight-pressed=$button-medium-font-weight-pressed] * The font-weight of the button when the button is pressed * * @param {string} [$font-weight-focus-over=$button-medium-font-weight-focus-over] * The font-weight of the button when the button is focused and the cursor is over the * button * * @param {string} [$font-weight-focus-pressed=$button-medium-font-weight-focus-pressed] * The font-weight of the button when the button is focused and pressed * * @param {string} [$font-weight-disabled=$button-medium-font-weight-disabled] * The font-weight of the button when the button is disabled * * @param {string} [$font-family=$button-medium-font-family] * The font-family of the button * * @param {string} [$font-family-over=$button-medium-font-family-over] * The font-family of the button when the cursor is over the button * * @param {string} [$font-family-focus=$button-medium-font-family-focus] * The font-family of the button when the button is focused * * @param {string} [$font-family-pressed=$button-medium-font-family-pressed] * The font-family of the button when the button is pressed * * @param {string} [$font-family-focus-over=$button-medium-font-family-focus-over] * The font-family of the button when the button is focused and the cursor is over the * button * * @param {string} [$font-family-focus-pressed=$button-medium-font-family-focus-pressed] * The font-family of the button when the button is focused and pressed * * @param {string} [$font-family-disabled=$button-medium-font-family-disabled] * The font-family of the button when the button is disabled * * @param {number} [$line-height=$button-medium-line-height] * The line-height of the button text * * @param {number} [$icon-size=$button-medium-icon-size] * The size of the button icon * * @param {number} [$icon-spacing=$button-medium-icon-spacing] * The space between the button's icon and text * * @param {color} [$glyph-color=$button-default-glyph-color] * The color of the button's {@link #glyph} icon * * @param {number} [$glyph-opacity=$button-default-glyph-opacity] * The opacity of the button's {@link #glyph} icon * * @param {number} [$arrow-width=$button-medium-arrow-width] * The width of the button's {@link #cfg-menu} arrow * * @param {number} [$arrow-height=$button-medium-arrow-height] * The height of the button's {@link #cfg-menu} arrow * * @param {number} [$split-width=$button-medium-split-width] * The width of a {@link Ext.button.Split Split Button}'s arrow * * @param {number} [$split-height=$button-medium-split-height] * The height of a {@link Ext.button.Split Split Button}'s arrow * * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows] * True to include the UI name in the file name of the {@link #cfg-menu} * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows] * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-split-noline-arrows=$button-include-split-noline-arrows] * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Used for hiding the split line when toolbar buttons are in their default * state. * * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows] * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor * is over the button. The over icon file name will have a "-o" suffix * * @param {number} [$opacity-disabled=$button-opacity-disabled] * The opacity of the button when it is disabled * * @param {number} [$inner-opacity-disabled=$button-inner-opacity-disabled] * The opacity of the button's text and icon elements when when the button is disabled * * @member Ext.button.Button */ /** * Creates a visual theme for a {@link #scale medium} toolbar Button. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number} [$border-radius=$button-medium-border-radius] * The border-radius of the button * * @param {number} [$border-width=$button-medium-border-width] * The border-width of the button * * @param {color} [$border-color=$button-toolbar-border-color] * The border-color of the button * * @param {color} [$border-color-over=$button-toolbar-border-color-over] * The border-color of the button when the cursor is over the button * * @param {color} [$border-color-focus=$button-toolbar-border-color-focus] * The border-color of the button when focused * * @param {color} [$border-color-pressed=$button-toolbar-border-color-pressed] * The border-color of the button when pressed * * @param {color} [$border-color-focus-over=$button-toolbar-border-color-focus-over] * The border-color of the button when the button is focused and the cursor is over the * button * * @param {color} [$border-color-focus-pressed=$button-toolbar-border-color-focus-pressed] * The border-color of the button when focused and pressed * * @param {color} [$border-color-disabled=$button-toolbar-border-color-disabled] * The border-color of the button when disabled * * @param {number} [$padding=$button-medium-padding] * The amount of padding inside the border of the button on all sides * * @param {number} [$text-padding=$button-medium-text-padding] * The amount of horizontal space to add to the left and right of the button text * * @param {color} [$background-color=$button-toolbar-background-color] * The background-color of the button * * @param {color} [$background-color-over=$button-toolbar-background-color-over] * The background-color of the button when the cursor is over the button * * @param {color} [$background-color-focus=$button-toolbar-background-color-focus] * The background-color of the button when focused * * @param {color} [$background-color-pressed=$button-toolbar-background-color-pressed] * The background-color of the button when pressed * * @param {color} [$background-color-focus-over=$button-toolbar-background-color-focus-over] * The background-color of the button when the button is focused and the cursor is over * the button * * @param {color} [$background-color-focus-pressed=$button-toolbar-background-color-focus-pressed] * The background-color of the button when focused and pressed * * @param {color} [$background-color-disabled=$button-toolbar-background-color-disabled] * The background-color of the button when disabled * * @param {string/list} [$background-gradient=$button-toolbar-background-gradient] * The background-gradient for the button. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-over=$button-toolbar-background-gradient-over] * The background-gradient to use when the cursor is over the button. Can be either the * name of a predefined gradient or a list of color stops. Used as the `$type` parameter * for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-focus=$button-toolbar-background-gradient-focus] * The background-gradient to use when the the button is focused. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-pressed=$button-toolbar-background-gradient-pressed] * The background-gradient to use when the the button is pressed. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string} [$background-gradient-focus-over=$button-toolbar-background-gradient-focus-over] * The background-gradient to use when the the button is focused and the cursor is over * the button. Can be either the name of a predefined gradient or a list of color stops. * Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string} [$background-gradient-focus-pressed=$button-toolbar-background-gradient-focus-pressed] * The background-gradient to use when the the button is focused and pressed. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-disabled=$button-toolbar-background-gradient-disabled] * The background-gradient to use when the the button is disabled. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {color} [$color=$button-toolbar-color] * The text color of the button * * @param {color} [$color-over=$button-toolbar-color-over] * The text color of the button when the cursor is over the button * * @param {color} [$color-focus=$button-toolbar-color-focus] * The text color of the button when the button is focused * * @param {color} [$color-pressed=$button-toolbar-color-pressed] * The text color of the button when the button is pressed * * @param {color} [$color-focus-over=$button-toolbar-color-focus-over] * The text color of the button when the button is focused and the cursor is over the button * * @param {color} [$color-focus-pressed=$button-toolbar-color-focus-pressed] * The text color of the button when the button is focused and pressed * * @param {color} [$color-disabled=$button-toolbar-color-disabled] * The text color of the button when the button is disabled * * @param {number/list} [$inner-border-width=$button-toolbar-inner-border-width] * The inner border-width of the button * * @param {number/list} [$inner-border-width-over=$button-toolbar-inner-border-width-over] * The inner border-width of the button when the cursor is over the button * * @param {number/list} [$inner-border-width-focus=$button-toolbar-inner-border-width-focus] * The inner border-width of the button when focused * * @param {number/list} [$inner-border-width-pressed=$button-toolbar-inner-border-width-pressed] * The inner border-width of the button when pressed * * @param {number/list} [$inner-border-width-focus-over=$button-toolbar-inner-border-width-focus-over] * The inner border-width of the button when the button is focused and the cursor is over * the button * * @param {number/list} [$inner-border-width-focus-pressed=$button-toolbar-inner-border-width-focus-pressed] * The inner border-width of the button when focused and pressed * * @param {number/list} [$inner-border-width-disabled=$button-toolbar-inner-border-width-disabled] * The inner border-width of the button when disabled * * @param {color} [$inner-border-color=$button-toolbar-inner-border-color] * The inner border-color of the button * * @param {color} [$inner-border-color-over=$button-toolbar-inner-border-color-over] * The inner border-color of the button when the cursor is over the button * * @param {color} [$inner-border-color-focus=$button-toolbar-inner-border-color-focus] * The inner border-color of the button when focused * * @param {color} [$inner-border-color-pressed=$button-toolbar-inner-border-color-pressed] * The inner border-color of the button when pressed * * @param {color} [$inner-border-color-focus-over=$button-toolbar-inner-border-color-focus-over] * The inner border-color of the button when the button is focused and the cursor is over * the button * * @param {color} [$inner-border-color-focus-pressed=$button-toolbar-inner-border-color-focus-pressed] * The inner border-color of the button when focused and pressed * * @param {color} [$inner-border-color-disabled=$button-toolbar-inner-border-color-disabled] * The inner border-color of the button when disabled * * @param {number} [$body-outline-width-focus=$button-toolbar-body-outline-width-focus] * The body outline width of the button when focused * * @param {number} [$body-outline-style-focus=$button-toolbar-body-outline-style-focus] * The body outline-style of the button when focused * * @param {number} [$body-outline-color-focus=$button-toolbar-body-outline-color-focus] * The body outline color of the button when focused * * @param {number} [$font-size=$button-medium-font-size] * The font-size of the button * * @param {number} [$font-size-over=$button-medium-font-size-over] * The font-size of the button when the cursor is over the button * * @param {number} [$font-size-focus=$button-medium-font-size-focus] * The font-size of the button when the button is focused * * @param {number} [$font-size-pressed=$button-medium-font-size-pressed] * The font-size of the button when the button is pressed * * @param {number} [$font-size-focus-over=$button-medium-font-size-focus-over] * The font-size of the button when the button is focused and the cursor is over the * button * * @param {number} [$font-size-focus-pressed=$button-medium-font-size-focus-pressed] * The font-size of the button when the button is focused and pressed * * @param {number} [$font-size-disabled=$button-medium-font-size-disabled] * The font-size of the button when the button is disabled * * @param {string} [$font-weight=$button-medium-font-weight] * The font-weight of the button * * @param {string} [$font-weight-over=$button-medium-font-weight-over] * The font-weight of the button when the cursor is over the button * * @param {string} [$font-weight-focus=$button-medium-font-weight-focus] * The font-weight of the button when the button is focused * * @param {string} [$font-weight-pressed=$button-medium-font-weight-pressed] * The font-weight of the button when the button is pressed * * @param {string} [$font-weight-focus-over=$button-medium-font-weight-focus-over] * The font-weight of the button when the button is focused and the cursor is over the * button * * @param {string} [$font-weight-focus-pressed=$button-medium-font-weight-focus-pressed] * The font-weight of the button when the button is focused and pressed * * @param {string} [$font-weight-disabled=$button-medium-font-weight-disabled] * The font-weight of the button when the button is disabled * * @param {string} [$font-family=$button-medium-font-family] * The font-family of the button * * @param {string} [$font-family-over=$button-medium-font-family-over] * The font-family of the button when the cursor is over the button * * @param {string} [$font-family-focus=$button-medium-font-family-focus] * The font-family of the button when the button is focused * * @param {string} [$font-family-pressed=$button-medium-font-family-pressed] * The font-family of the button when the button is pressed * * @param {string} [$font-family-focus-over=$button-medium-font-family-focus-over] * The font-family of the button when the button is focused and the cursor is over the * button * * @param {string} [$font-family-focus-pressed=$button-medium-font-family-focus-pressed] * The font-family of the button when the button is focused and pressed * * @param {string} [$font-family-disabled=$button-medium-font-family-disabled] * The font-family of the button when the button is disabled * * @param {number} [$line-height=$button-medium-line-height] * The line-height of the button text * * @param {number} [$icon-size=$button-medium-icon-size] * The size of the button icon * * @param {number} [$icon-spacing=$button-medium-icon-spacing] * The space between the button's icon and text * * @param {color} [$glyph-color=$button-toolbar-glyph-color] * The color of the button's {@link #glyph} icon * * @param {number} [$glyph-opacity=$button-toolbar-glyph-opacity] * The opacity of the button's {@link #glyph} icon * * @param {number} [$arrow-width=$button-medium-arrow-width] * The width of the button's {@link #cfg-menu} arrow * * @param {number} [$arrow-height=$button-medium-arrow-height] * The height of the button's {@link #cfg-menu} arrow * * @param {number} [$split-width=$button-medium-split-width] * The width of a {@link Ext.button.Split Split Button}'s arrow * * @param {number} [$split-height=$button-medium-split-height] * The height of a {@link Ext.button.Split Split Button}'s arrow * * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows] * True to include the UI name in the file name of the {@link #cfg-menu} * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows] * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-split-noline-arrows=$button-toolbar-include-split-noline-arrows] * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Used for hiding the split line when toolbar buttons are in their default * state. * * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows] * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor * is over the button. The over icon file name will have a "-o" suffix * * @param {number} [$opacity-disabled=$button-toolbar-opacity-disabled] * The opacity of the button when it is disabled * * @param {number} [$inner-opacity-disabled=$button-toolbar-inner-opacity-disabled] * The opacity of the button's text and icon elements when when the button is disabled * * @member Ext.button.Button */ /** * Creates a visual theme for a {@link #scale large} Button. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number} [$border-radius=$button-large-border-radius] * The border-radius of the button * * @param {number} [$border-width=$button-large-border-width] * The border-width of the button * * @param {color} [$border-color=$button-default-border-color] * The border-color of the button * * @param {color} [$border-color-over=$button-default-border-color-over] * The border-color of the button when the cursor is over the button * * @param {color} [$border-color-focus=$button-default-border-color-focus] * The border-color of the button when focused * * @param {color} [$border-color-pressed=$button-default-border-color-pressed] * The border-color of the button when pressed * * @param {color} [$border-color-focus-over=$button-default-border-color-focus-over] * The border-color of the button when the button is focused and the cursor is over the * button * * @param {color} [$border-color-focus-pressed=$button-default-border-color-focus-pressed] * The border-color of the button when focused and pressed * * @param {color} [$border-color-disabled=$button-default-border-color-disabled] * The border-color of the button when disabled * * @param {number} [$padding=$button-large-padding] * The amount of padding inside the border of the button on all sides * * @param {number} [$text-padding=$button-large-text-padding] * The amount of horizontal space to add to the left and right of the button text * * @param {color} [$background-color=$button-default-background-color] * The background-color of the button * * @param {color} [$background-color-over=$button-default-background-color-over] * The background-color of the button when the cursor is over the button * * @param {color} [$background-color-focus=$button-default-background-color-focus] * The background-color of the button when focused * * @param {color} [$background-color-pressed=$button-default-background-color-pressed] * The background-color of the button when pressed * * @param {color} [$background-color-focus-over=$button-default-background-color-focus-over] * The background-color of the button when the button is focused and the cursor is over * the button * * @param {color} [$background-color-focus-pressed=$button-default-background-color-focus-pressed] * The background-color of the button when focused and pressed * * @param {color} [$background-color-disabled=$button-default-background-color-disabled] * The background-color of the button when disabled * * @param {string/list} [$background-gradient=$button-default-background-gradient] * The background-gradient for the button. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-over=$button-default-background-gradient-over] * The background-gradient to use when the cursor is over the button. Can be either the * name of a predefined gradient or a list of color stops. Used as the `$type` parameter * for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-focus=$button-default-background-gradient-focus] * The background-gradient to use when the the button is focused. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-pressed=$button-default-background-gradient-pressed] * The background-gradient to use when the the button is pressed. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string} [$background-gradient-focus-over=$button-default-background-gradient-focus-over] * The background-gradient to use when the the button is focused and the cursor is over * the button. Can be either the name of a predefined gradient or a list of color stops. * Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string} [$background-gradient-focus-pressed=$button-default-background-gradient-focus-pressed] * The background-gradient to use when the the button is focused and pressed. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-disabled=$button-default-background-gradient-disabled] * The background-gradient to use when the the button is disabled. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {color} [$color=$button-default-color] * The text color of the button * * @param {color} [$color-over=$button-default-color-over] * The text color of the button when the cursor is over the button * * @param {color} [$color-focus=$button-default-color-focus] * The text color of the button when the button is focused * * @param {color} [$color-pressed=$button-default-color-pressed] * The text color of the button when the button is pressed * * @param {color} [$color-focus-over=$button-default-color-focus-over] * The text color of the button when the button is focused and the cursor is over the button * * @param {color} [$color-focus-pressed=$button-default-color-focus-pressed] * The text color of the button when the button is focused and pressed * * @param {color} [$color-disabled=$button-default-color-disabled] * The text color of the button when the button is disabled * * @param {number/list} [$inner-border-width=$button-default-inner-border-width] * The inner border-width of the button * * @param {number/list} [$inner-border-width-over=$button-default-inner-border-width-over] * The inner border-width of the button when the cursor is over the button * * @param {number/list} [$inner-border-width-focus=$button-default-inner-border-width-focus] * The inner border-width of the button when focused * * @param {number/list} [$inner-border-width-pressed=$button-default-inner-border-width-pressed] * The inner border-width of the button when pressed * * @param {number/list} [$inner-border-width-focus-over=$button-default-inner-border-width-focus-over] * The inner border-width of the button when the button is focused and the cursor is over * the button * * @param {number/list} [$inner-border-width-focus-pressed=$button-default-inner-border-width-focus-pressed] * The inner border-width of the button when focused and pressed * * @param {number/list} [$inner-border-width-disabled=$button-default-inner-border-width-disabled] * The inner border-width of the button when disabled * * @param {color} [$inner-border-color=$button-default-inner-border-color] * The inner border-color of the button * * @param {color} [$inner-border-color-over=$button-default-inner-border-color-over] * The inner border-color of the button when the cursor is over the button * * @param {color} [$inner-border-color-focus=$button-default-inner-border-color-focus] * The inner border-color of the button when focused * * @param {color} [$inner-border-color-pressed=$button-default-inner-border-color-pressed] * The inner border-color of the button when pressed * * @param {color} [$inner-border-color-focus-over=$button-default-inner-border-color-focus-over] * The inner border-color of the button when the button is focused and the cursor is over * the button * * @param {color} [$inner-border-color-focus-pressed=$button-default-inner-border-color-focus-pressed] * The inner border-color of the button when focused and pressed * * @param {color} [$inner-border-color-disabled=$button-default-inner-border-color-disabled] * The inner border-color of the button when disabled * * @param {number} [$body-outline-width-focus=$button-default-body-outline-width-focus] * The body outline width of the button when focused * * @param {number} [$body-outline-style-focus=$button-default-body-outline-style-focus] * The body outline-style of the button when focused * * @param {number} [$body-outline-color-focus=$button-default-body-outline-color-focus] * The body outline color of the button when focused * * @param {number} [$font-size=$button-large-font-size] * The font-size of the button * * @param {number} [$font-size-over=$button-large-font-size-over] * The font-size of the button when the cursor is over the button * * @param {number} [$font-size-focus=$button-large-font-size-focus] * The font-size of the button when the button is focused * * @param {number} [$font-size-pressed=$button-large-font-size-pressed] * The font-size of the button when the button is pressed * * @param {number} [$font-size-focus-over=$button-large-font-size-focus-over] * The font-size of the button when the button is focused and the cursor is over the * button * * @param {number} [$font-size-focus-pressed=$button-large-font-size-focus-pressed] * The font-size of the button when the button is focused and pressed * * @param {number} [$font-size-disabled=$button-large-font-size-disabled] * The font-size of the button when the button is disabled * * @param {string} [$font-weight=$button-large-font-weight] * The font-weight of the button * * @param {string} [$font-weight-over=$button-large-font-weight-over] * The font-weight of the button when the cursor is over the button * * @param {string} [$font-weight-focus=$button-large-font-weight-focus] * The font-weight of the button when the button is focused * * @param {string} [$font-weight-pressed=$button-large-font-weight-pressed] * The font-weight of the button when the button is pressed * * @param {string} [$font-weight-focus-over=$button-large-font-weight-focus-over] * The font-weight of the button when the button is focused and the cursor is over the * button * * @param {string} [$font-weight-focus-pressed=$button-large-font-weight-focus-pressed] * The font-weight of the button when the button is focused and pressed * * @param {string} [$font-weight-disabled=$button-large-font-weight-disabled] * The font-weight of the button when the button is disabled * * @param {string} [$font-family=$button-large-font-family] * The font-family of the button * * @param {string} [$font-family-over=$button-large-font-family-over] * The font-family of the button when the cursor is over the button * * @param {string} [$font-family-focus=$button-large-font-family-focus] * The font-family of the button when the button is focused * * @param {string} [$font-family-pressed=$button-large-font-family-pressed] * The font-family of the button when the button is pressed * * @param {string} [$font-family-focus-over=$button-large-font-family-focus-over] * The font-family of the button when the button is focused and the cursor is over the * button * * @param {string} [$font-family-focus-pressed=$button-large-font-family-focus-pressed] * The font-family of the button when the button is focused and pressed * * @param {string} [$font-family-disabled=$button-large-font-family-disabled] * The font-family of the button when the button is disabled * * @param {number} [$line-height=$button-large-line-height] * The line-height of the button text * * @param {number} [$icon-size=$button-large-icon-size] * The size of the button icon * * @param {number} [$icon-spacing=$button-large-icon-spacing] * The space between the button's icon and text * * @param {color} [$glyph-color=$button-default-glyph-color] * The color of the button's {@link #glyph} icon * * @param {number} [$glyph-opacity=$button-default-glyph-opacity] * The opacity of the button's {@link #glyph} icon * * @param {number} [$arrow-width=$button-large-arrow-width] * The width of the button's {@link #cfg-menu} arrow * * @param {number} [$arrow-height=$button-large-arrow-height] * The height of the button's {@link #cfg-menu} arrow * * @param {number} [$split-width=$button-large-split-width] * The width of a {@link Ext.button.Split Split Button}'s arrow * * @param {number} [$split-height=$button-large-split-height] * The height of a {@link Ext.button.Split Split Button}'s arrow * * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows] * True to include the UI name in the file name of the {@link #cfg-menu} * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows] * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-split-noline-arrows=$button-include-split-noline-arrows] * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Used for hiding the split line when toolbar buttons are in their default * state. * * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows] * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor * is over the button. The over icon file name will have a "-o" suffix * * @param {number} [$opacity-disabled=$button-opacity-disabled] * The opacity of the button when it is disabled * * @param {number} [$inner-opacity-disabled=$button-inner-opacity-disabled] * The opacity of the button's text and icon elements when when the button is disabled * * @member Ext.button.Button */ /** * Creates a visual theme for a {@link #scale large} toolbar Button. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number} [$border-radius=$button-large-border-radius] * The border-radius of the button * * @param {number} [$border-width=$button-large-border-width] * The border-width of the button * * @param {color} [$border-color=$button-toolbar-border-color] * The border-color of the button * * @param {color} [$border-color-over=$button-toolbar-border-color-over] * The border-color of the button when the cursor is over the button * * @param {color} [$border-color-focus=$button-toolbar-border-color-focus] * The border-color of the button when focused * * @param {color} [$border-color-pressed=$button-toolbar-border-color-pressed] * The border-color of the button when pressed * * @param {color} [$border-color-focus-over=$button-toolbar-border-color-focus-over] * The border-color of the button when the button is focused and the cursor is over the * button * * @param {color} [$border-color-focus-pressed=$button-toolbar-border-color-focus-pressed] * The border-color of the button when focused and pressed * * @param {color} [$border-color-disabled=$button-toolbar-border-color-disabled] * The border-color of the button when disabled * * @param {number} [$padding=$button-large-padding] * The amount of padding inside the border of the button on all sides * * @param {number} [$text-padding=$button-large-text-padding] * The amount of horizontal space to add to the left and right of the button text * * @param {color} [$background-color=$button-toolbar-background-color] * The background-color of the button * * @param {color} [$background-color-over=$button-toolbar-background-color-over] * The background-color of the button when the cursor is over the button * * @param {color} [$background-color-focus=$button-toolbar-background-color-focus] * The background-color of the button when focused * * @param {color} [$background-color-pressed=$button-toolbar-background-color-pressed] * The background-color of the button when pressed * * @param {color} [$background-color-focus-over=$button-toolbar-background-color-focus-over] * The background-color of the button when the button is focused and the cursor is over * the button * * @param {color} [$background-color-focus-pressed=$button-toolbar-background-color-focus-pressed] * The background-color of the button when focused and pressed * * @param {color} [$background-color-disabled=$button-toolbar-background-color-disabled] * The background-color of the button when disabled * * @param {string/list} [$background-gradient=$button-toolbar-background-gradient] * The background-gradient for the button. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-over=$button-toolbar-background-gradient-over] * The background-gradient to use when the cursor is over the button. Can be either the * name of a predefined gradient or a list of color stops. Used as the `$type` parameter * for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-focus=$button-toolbar-background-gradient-focus] * The background-gradient to use when the the button is focused. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-pressed=$button-toolbar-background-gradient-pressed] * The background-gradient to use when the the button is pressed. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string} [$background-gradient-focus-over=$button-toolbar-background-gradient-focus-over] * The background-gradient to use when the the button is focused and the cursor is over * the button. Can be either the name of a predefined gradient or a list of color stops. * Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {string} [$background-gradient-focus-pressed=$button-toolbar-background-gradient-focus-pressed] * The background-gradient to use when the the button is focused and pressed. Can be * either the name of a predefined gradient or a list of color stops. Used as the `$type` * parameter for {@link Global_CSS#background-gradient}. * * @param {string/list} [$background-gradient-disabled=$button-toolbar-background-gradient-disabled] * The background-gradient to use when the the button is disabled. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {color} [$color=$button-toolbar-color] * The text color of the button * * @param {color} [$color-over=$button-toolbar-color-over] * The text color of the button when the cursor is over the button * * @param {color} [$color-focus=$button-toolbar-color-focus] * The text color of the button when the button is focused * * @param {color} [$color-pressed=$button-toolbar-color-pressed] * The text color of the button when the button is pressed * * @param {color} [$color-focus-over=$button-toolbar-color-focus-over] * The text color of the button when the button is focused and the cursor is over the button * * @param {color} [$color-focus-pressed=$button-toolbar-color-focus-pressed] * The text color of the button when the button is focused and pressed * * @param {color} [$color-disabled=$button-toolbar-color-disabled] * The text color of the button when the button is disabled * * @param {number/list} [$inner-border-width=$button-toolbar-inner-border-width] * The inner border-width of the button * * @param {number/list} [$inner-border-width-over=$button-toolbar-inner-border-width-over] * The inner border-width of the button when the cursor is over the button * * @param {number/list} [$inner-border-width-focus=$button-toolbar-inner-border-width-focus] * The inner border-width of the button when focused * * @param {number/list} [$inner-border-width-pressed=$button-toolbar-inner-border-width-pressed] * The inner border-width of the button when pressed * * @param {number/list} [$inner-border-width-focus-over=$button-toolbar-inner-border-width-focus-over] * The inner border-width of the button when the button is focused and the cursor is over * the button * * @param {number/list} [$inner-border-width-focus-pressed=$button-toolbar-inner-border-width-focus-pressed] * The inner border-width of the button when focused and pressed * * @param {number/list} [$inner-border-width-disabled=$button-toolbar-inner-border-width-disabled] * The inner border-width of the button when disabled * * @param {color} [$inner-border-color=$button-toolbar-inner-border-color] * The inner border-color of the button * * @param {color} [$inner-border-color-over=$button-toolbar-inner-border-color-over] * The inner border-color of the button when the cursor is over the button * * @param {color} [$inner-border-color-focus=$button-toolbar-inner-border-color-focus] * The inner border-color of the button when focused * * @param {color} [$inner-border-color-pressed=$button-toolbar-inner-border-color-pressed] * The inner border-color of the button when pressed * * @param {color} [$inner-border-color-focus-over=$button-toolbar-inner-border-color-focus-over] * The inner border-color of the button when the button is focused and the cursor is over * the button * * @param {color} [$inner-border-color-focus-pressed=$button-toolbar-inner-border-color-focus-pressed] * The inner border-color of the button when focused and pressed * * @param {color} [$inner-border-color-disabled=$button-toolbar-inner-border-color-disabled] * The inner border-color of the button when disabled * * @param {number} [$body-outline-width-focus=$button-toolbar-body-outline-width-focus] * The body outline width of the button when focused * * @param {number} [$body-outline-style-focus=$button-toolbar-body-outline-style-focus] * The body outline-style of the button when focused * * @param {number} [$body-outline-color-focus=$button-toolbar-body-outline-color-focus] * The body outline color of the button when focused * * @param {number} [$font-size=$button-large-font-size] * The font-size of the button * * @param {number} [$font-size-over=$button-large-font-size-over] * The font-size of the button when the cursor is over the button * * @param {number} [$font-size-focus=$button-large-font-size-focus] * The font-size of the button when the button is focused * * @param {number} [$font-size-pressed=$button-large-font-size-pressed] * The font-size of the button when the button is pressed * * @param {number} [$font-size-focus-over=$button-large-font-size-focus-over] * The font-size of the button when the button is focused and the cursor is over the * button * * @param {number} [$font-size-focus-pressed=$button-large-font-size-focus-pressed] * The font-size of the button when the button is focused and pressed * * @param {number} [$font-size-disabled=$button-large-font-size-disabled] * The font-size of the button when the button is disabled * * @param {string} [$font-weight=$button-large-font-weight] * The font-weight of the button * * @param {string} [$font-weight-over=$button-large-font-weight-over] * The font-weight of the button when the cursor is over the button * * @param {string} [$font-weight-focus=$button-large-font-weight-focus] * The font-weight of the button when the button is focused * * @param {string} [$font-weight-pressed=$button-large-font-weight-pressed] * The font-weight of the button when the button is pressed * * @param {string} [$font-weight-focus-over=$button-large-font-weight-focus-over] * The font-weight of the button when the button is focused and the cursor is over the * button * * @param {string} [$font-weight-focus-pressed=$button-large-font-weight-focus-pressed] * The font-weight of the button when the button is focused and pressed * * @param {string} [$font-weight-disabled=$button-large-font-weight-disabled] * The font-weight of the button when the button is disabled * * @param {string} [$font-family=$button-large-font-family] * The font-family of the button * * @param {string} [$font-family-over=$button-large-font-family-over] * The font-family of the button when the cursor is over the button * * @param {string} [$font-family-focus=$button-large-font-family-focus] * The font-family of the button when the button is focused * * @param {string} [$font-family-pressed=$button-large-font-family-pressed] * The font-family of the button when the button is pressed * * @param {string} [$font-family-focus-over=$button-large-font-family-focus-over] * The font-family of the button when the button is focused and the cursor is over the * button * * @param {string} [$font-family-focus-pressed=$button-large-font-family-focus-pressed] * The font-family of the button when the button is focused and pressed * * @param {string} [$font-family-disabled=$button-large-font-family-disabled] * The font-family of the button when the button is disabled * * @param {number} [$line-height=$button-large-line-height] * The line-height of the button text * * @param {number} [$icon-size=$button-large-icon-size] * The size of the button icon * * @param {number} [$icon-spacing=$button-large-icon-spacing] * The space between the button's icon and text * * @param {color} [$glyph-color=$button-toolbar-glyph-color] * The color of the button's {@link #glyph} icon * * @param {number} [$glyph-opacity=$button-toolbar-glyph-opacity] * The opacity of the button's {@link #glyph} icon * * @param {number} [$arrow-width=$button-large-arrow-width] * The width of the button's {@link #cfg-menu} arrow * * @param {number} [$arrow-height=$button-large-arrow-height] * The height of the button's {@link #cfg-menu} arrow * * @param {number} [$split-width=$button-large-split-width] * The width of a {@link Ext.button.Split Split Button}'s arrow * * @param {number} [$split-height=$button-large-split-height] * The height of a {@link Ext.button.Split Split Button}'s arrow * * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows] * True to include the UI name in the file name of the {@link #cfg-menu} * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows] * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Set this to false to share the same arrow bewteen multiple UIs. * * @param {boolean} [$include-split-noline-arrows=$button-toolbar-include-split-noline-arrows] * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s * arrow icon. Used for hiding the split line when toolbar buttons are in their default * state. * * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows] * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor * is over the button. The over icon file name will have a "-o" suffix * * @param {number} [$opacity-disabled=$button-toolbar-opacity-disabled] * The opacity of the button when it is disabled * * @param {number} [$inner-opacity-disabled=$button-toolbar-inner-opacity-disabled] * The opacity of the button's text and icon elements when when the button is disabled * * @member Ext.button.Button */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 3px 3px 3px 3px; border-width: 1px; border-style: solid; background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-mc { background-image: url(images/btn/btn-default-small-fbg.gif); background-position: 0 top; background-color: #2a3142; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-btn-default-small { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; background-image: none; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-frameInfo { font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-tr, .x-btn-default-small-br, .x-btn-default-small-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-tl, .x-btn-default-small-bl, .x-btn-default-small-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-tl, .x-btn-default-small-bl, .x-btn-default-small-tr, .x-btn-default-small-br, .x-btn-default-small-tc, .x-btn-default-small-bc, .x-btn-default-small-ml, .x-btn-default-small-mr { background-image: url(images/btn/btn-default-small-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-ml, .x-btn-default-small-mr { background-image: url(images/btn/btn-default-small-sides.gif); } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-small-mc { padding: 1px 1px 1px 1px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-default-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, frame-bg:url(images/btn/btn-default-small-fbg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-default-small { border-color: #222836; } /* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-button-default-small { height: 16px; } /* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-inner-default-small { font: bold 12px/16px helvetica, arial, verdana, sans-serif; color: white; padding: 0 5px; max-width: 100%; } /* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-right > .x-btn-inner-default-small, .x-btn-icon-left > .x-btn-inner-default-small { max-width: calc(100% - 16px); } /* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-default-small { height: 16px; } /* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-left > .x-btn-icon-el-default-small, .x-btn-icon-right > .x-btn-icon-el-default-small { width: 16px; } /* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-top > .x-btn-icon-el-default-small, .x-btn-icon-bottom > .x-btn-icon-el-default-small { min-width: 16px; } /* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-default-small.x-btn-glyph { font-size: 16px; line-height: 16px; color: white; opacity: 0.5; } /* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-ie8 .x-btn-icon-el-default-small.x-btn-glyph { color: #9498a0; } /* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-small { margin-right: 0px; } /* line 497, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-small.x-rtl { margin-right: 0; margin-left: 0px; } /* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-small { margin-left: 0px; } /* line 508, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-small.x-rtl { margin-left: 0; margin-right: 0px; } /* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-small { margin-bottom: 5px; } /* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-small { margin-top: 5px; } /* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-small { padding-right: 5px; } /* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-small { margin-right: 5px; } /* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-bottom > .x-btn-button-default-small, .x-btn-split-bottom > .x-btn-button-default-small { padding-bottom: 3px; } /* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-small.x-btn-arrow-right:after { width: 16px; padding-right: 16px; background-image: url(images/button/default-small-arrow.png); } /* line 554, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-small.x-rtl.x-btn-arrow-right:after { background-image: url(images/button/default-small-arrow-rtl.png); } /* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-small.x-btn-arrow-bottom:after { height: 13px; background-image: url(images/button/default-small-arrow.png); } /* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-small.x-btn-split-right:after { width: 20px; padding-right: 20px; background-image: url(images/button/default-small-s-arrow.png); } /* line 592, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-small.x-rtl.x-btn-split-right:after { background-image: url(images/button/default-small-s-arrow-rtl.png); } /* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-small.x-btn-split-bottom:after { height: 15px; background-image: url(images/button/default-small-s-arrow-b.png); } /* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-small { padding-right: 5px; } /* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-small { margin-right: 5px; } /* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-default-small { border-color: #ed9200; background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); -webkit-box-shadow: #d4d5d9 0 1px 0px 0 inset, #d4d5d9 0 -1px 0px 0 inset, #d4d5d9 -1px 0 0px 0 inset, #d4d5d9 1px 0 0px 0 inset; -moz-box-shadow: #d4d5d9 0 1px 0px 0 inset, #d4d5d9 0 -1px 0px 0 inset, #d4d5d9 -1px 0 0px 0 inset, #d4d5d9 1px 0 0px 0 inset; box-shadow: #d4d5d9 0 1px 0px 0 inset, #d4d5d9 0 -1px 0px 0 inset, #d4d5d9 -1px 0 0px 0 inset, #d4d5d9 1px 0 0px 0 inset; } /* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over.x-btn-default-small { border-color: #a16300; background-image: none; background-color: #ed9200; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ee9c19), color-stop(50%, #ed9200), color-stop(51%, #e18a00), color-stop(100%, #ed9200)); background-image: -webkit-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -moz-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -o-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -ms-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); } /* line 694, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over.x-btn-default-small { -webkit-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; -moz-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; } /* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active.x-btn-default-small, .x-btn.x-btn-pressed.x-btn-default-small { border-color: #955411; background-image: none; background-color: #da7b19; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(50%, #cf7417), color-stop(51%, #da7b19), color-stop(100%, #dd882f)); background-image: -webkit-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -moz-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -o-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -ms-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); } /* line 751, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active.x-btn-default-small, .x-btn-focus.x-btn-pressed.x-btn-default-small { -webkit-box-shadow: #f7e4d1 0 1px 0px 0 inset, #f7e4d1 0 -1px 0px 0 inset, #f7e4d1 -1px 0 0px 0 inset, #f7e4d1 1px 0 0px 0 inset; -moz-box-shadow: #f7e4d1 0 1px 0px 0 inset, #f7e4d1 0 -1px 0px 0 inset, #f7e4d1 -1px 0 0px 0 inset, #f7e4d1 1px 0 0px 0 inset; box-shadow: #f7e4d1 0 1px 0px 0 inset, #f7e4d1 0 -1px 0px 0 inset, #f7e4d1 -1px 0 0px 0 inset, #f7e4d1 1px 0 0px 0 inset; } /* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled.x-btn-default-small { background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-small-tl, .x-btn-focus .x-btn-default-small-bl, .x-btn-focus .x-btn-default-small-tr, .x-btn-focus .x-btn-default-small-br, .x-btn-focus .x-btn-default-small-tc, .x-btn-focus .x-btn-default-small-bc { background-image: url(images/btn/btn-default-small-focus-corners.gif); } /* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-small-ml, .x-btn-focus .x-btn-default-small-mr { background-image: url(images/btn/btn-default-small-focus-sides.gif); } /* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-small-mc { background-color: #2a3142; background-image: url(images/btn/btn-default-small-focus-fbg.gif); } /* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-small-tl, .x-btn-over .x-btn-default-small-bl, .x-btn-over .x-btn-default-small-tr, .x-btn-over .x-btn-default-small-br, .x-btn-over .x-btn-default-small-tc, .x-btn-over .x-btn-default-small-bc { background-image: url(images/btn/btn-default-small-over-corners.gif); } /* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-small-ml, .x-btn-over .x-btn-default-small-mr { background-image: url(images/btn/btn-default-small-over-sides.gif); } /* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-small-mc { background-color: #ed9200; background-image: url(images/btn/btn-default-small-over-fbg.gif); } /* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-small-tl, .x-btn-focus.x-btn-over .x-btn-default-small-bl, .x-btn-focus.x-btn-over .x-btn-default-small-tr, .x-btn-focus.x-btn-over .x-btn-default-small-br, .x-btn-focus.x-btn-over .x-btn-default-small-tc, .x-btn-focus.x-btn-over .x-btn-default-small-bc { background-image: url(images/btn/btn-default-small-focus-over-corners.gif); } /* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-small-ml, .x-btn-focus.x-btn-over .x-btn-default-small-mr { background-image: url(images/btn/btn-default-small-focus-over-sides.gif); } /* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-small-mc { background-color: #ed9200; background-image: url(images/btn/btn-default-small-focus-over-fbg.gif); } /* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-small-tl, .x-btn.x-btn-menu-active .x-btn-default-small-bl, .x-btn.x-btn-menu-active .x-btn-default-small-tr, .x-btn.x-btn-menu-active .x-btn-default-small-br, .x-btn.x-btn-menu-active .x-btn-default-small-tc, .x-btn.x-btn-menu-active .x-btn-default-small-bc, .x-btn.x-btn-pressed .x-btn-default-small-tl, .x-btn.x-btn-pressed .x-btn-default-small-bl, .x-btn.x-btn-pressed .x-btn-default-small-tr, .x-btn.x-btn-pressed .x-btn-default-small-br, .x-btn.x-btn-pressed .x-btn-default-small-tc, .x-btn.x-btn-pressed .x-btn-default-small-bc { background-image: url(images/btn/btn-default-small-pressed-corners.gif); } /* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-small-ml, .x-btn.x-btn-menu-active .x-btn-default-small-mr, .x-btn.x-btn-pressed .x-btn-default-small-ml, .x-btn.x-btn-pressed .x-btn-default-small-mr { background-image: url(images/btn/btn-default-small-pressed-sides.gif); } /* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-small-mc, .x-btn.x-btn-pressed .x-btn-default-small-mc { background-color: #da7b19; background-image: url(images/btn/btn-default-small-pressed-fbg.gif); } /* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-small-tl, .x-btn-focus.x-btn-menu-active .x-btn-default-small-bl, .x-btn-focus.x-btn-menu-active .x-btn-default-small-tr, .x-btn-focus.x-btn-menu-active .x-btn-default-small-br, .x-btn-focus.x-btn-menu-active .x-btn-default-small-tc, .x-btn-focus.x-btn-menu-active .x-btn-default-small-bc, .x-btn-focus.x-btn-pressed .x-btn-default-small-tl, .x-btn-focus.x-btn-pressed .x-btn-default-small-bl, .x-btn-focus.x-btn-pressed .x-btn-default-small-tr, .x-btn-focus.x-btn-pressed .x-btn-default-small-br, .x-btn-focus.x-btn-pressed .x-btn-default-small-tc, .x-btn-focus.x-btn-pressed .x-btn-default-small-bc { background-image: url(images/btn/btn-default-small-focus-pressed-corners.gif); } /* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-small-ml, .x-btn-focus.x-btn-menu-active .x-btn-default-small-mr, .x-btn-focus.x-btn-pressed .x-btn-default-small-ml, .x-btn-focus.x-btn-pressed .x-btn-default-small-mr { background-image: url(images/btn/btn-default-small-focus-pressed-sides.gif); } /* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-small-mc, .x-btn-focus.x-btn-pressed .x-btn-default-small-mc { background-color: #da7b19; background-image: url(images/btn/btn-default-small-focus-pressed-fbg.gif); } /* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-small-tl, .x-btn.x-btn-disabled .x-btn-default-small-bl, .x-btn.x-btn-disabled .x-btn-default-small-tr, .x-btn.x-btn-disabled .x-btn-default-small-br, .x-btn.x-btn-disabled .x-btn-default-small-tc, .x-btn.x-btn-disabled .x-btn-default-small-bc { background-image: url(images/btn/btn-default-small-disabled-corners.gif); } /* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-small-ml, .x-btn.x-btn-disabled .x-btn-default-small-mr { background-image: url(images/btn/btn-default-small-disabled-sides.gif); } /* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-small-mc { background-color: #2a3142; background-image: url(images/btn/btn-default-small-disabled-fbg.gif); } /* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-btn-default-small { background-image: none; } /* line 963, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-disabled.x-btn-default-small { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } /* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-first { border-right-width: 1px !important; } /* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-first .x-btn-default-small-mc { padding-right: 3px !important; } /* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-middle { border-right-width: 1px !important; } /* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-middle .x-btn-default-small-mc { padding-right: 3px !important; padding-left: 3px !important; } /* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-last .x-btn-default-small-mc { padding-left: 3px !important; } /* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-first { border-bottom-width: 1px !important; } /* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-first .x-btn-default-small-mc { padding-bottom: 3px !important; } /* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-middle { border-bottom-width: 1px !important; } /* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-middle .x-btn-default-small-mc { padding-top: 3px !important; padding-bottom: 3px !important; } /* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-last .x-btn-default-small-mc { padding-top: 3px !important; } /* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-default-small:after { content: ' '; border-style: solid; border-width: 0; position: absolute; } /* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small:after { top: 1px; right: 0; bottom: 1px; left: 0; } /* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-first:after { left: 1px; } /* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-last:after { right: 1px; } /* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-small:after { top: 0; right: 1px; bottom: 0; left: 1px; } /* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-first:after { top: 1px; } /* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-last:after { bottom: 1px; } /* line 1072, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-default-small:after { border-width: 1px; border-color: #d4d5d9; } /* line 1086, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-over.x-btn-default-small:after { border-width: 1px; border-color: #fbe9cc; } /* line 1102, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-menu-active.x-btn-default-small:after, .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-pressed.x-btn-default-small:after { border-width: 1px; border-color: #f7e4d1; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-default-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-over.x-btn-default-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-over.x-btn-default-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-small-focus-over-corners.gif), sides:url(images/btn/btn-default-small-focus-over-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-pressed.x-btn-default-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-pressed.x-btn-default-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-small-focus-pressed-corners.gif), sides:url(images/btn/btn-default-small-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-disabled.x-btn-default-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif)" !important; } /*</if slicer>*/ /* */ /* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-default-small-cell > .x-grid-cell-inner { padding-top: 1px; padding-bottom: 1px; } /* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-default-small-cell > .x-grid-cell-inner > .x-btn-default-small { vertical-align: top; } /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 3px 3px 3px 3px; border-width: 1px; border-style: solid; background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-mc { background-image: url(images/btn/btn-default-medium-fbg.gif); background-position: 0 top; background-color: #2a3142; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-btn-default-medium { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; background-image: none; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-frameInfo { font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-tr, .x-btn-default-medium-br, .x-btn-default-medium-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-tl, .x-btn-default-medium-bl, .x-btn-default-medium-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-tl, .x-btn-default-medium-bl, .x-btn-default-medium-tr, .x-btn-default-medium-br, .x-btn-default-medium-tc, .x-btn-default-medium-bc, .x-btn-default-medium-ml, .x-btn-default-medium-mr { background-image: url(images/btn/btn-default-medium-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-ml, .x-btn-default-medium-mr { background-image: url(images/btn/btn-default-medium-sides.gif); } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-medium-mc { padding: 1px 1px 1px 1px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-default-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, frame-bg:url(images/btn/btn-default-medium-fbg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-default-medium { border-color: #222836; } /* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-button-default-medium { height: 24px; } /* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-inner-default-medium { font: bold 14px/18px helvetica, arial, verdana, sans-serif; color: white; padding: 0 8px; max-width: 100%; } /* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-right > .x-btn-inner-default-medium, .x-btn-icon-left > .x-btn-inner-default-medium { max-width: calc(100% - 24px); } /* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-default-medium { height: 24px; } /* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-left > .x-btn-icon-el-default-medium, .x-btn-icon-right > .x-btn-icon-el-default-medium { width: 24px; } /* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-top > .x-btn-icon-el-default-medium, .x-btn-icon-bottom > .x-btn-icon-el-default-medium { min-width: 24px; } /* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-default-medium.x-btn-glyph { font-size: 24px; line-height: 24px; color: white; opacity: 0.5; } /* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-ie8 .x-btn-icon-el-default-medium.x-btn-glyph { color: #9498a0; } /* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-medium { margin-right: 0; } /* line 497, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-medium.x-rtl { margin-right: 0; margin-left: 0; } /* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-medium { margin-left: 0; } /* line 508, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-medium.x-rtl { margin-left: 0; margin-right: 0; } /* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-medium { margin-bottom: 5px; } /* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-medium { margin-top: 5px; } /* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-medium { padding-right: 8px; } /* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-medium { margin-right: 8px; } /* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-bottom > .x-btn-button-default-medium, .x-btn-split-bottom > .x-btn-button-default-medium { padding-bottom: 3px; } /* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-medium.x-btn-arrow-right:after { width: 24px; padding-right: 24px; background-image: url(images/button/default-medium-arrow.png); } /* line 554, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-medium.x-rtl.x-btn-arrow-right:after { background-image: url(images/button/default-medium-arrow-rtl.png); } /* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-medium.x-btn-arrow-bottom:after { height: 18px; background-image: url(images/button/default-medium-arrow.png); } /* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-medium.x-btn-split-right:after { width: 28px; padding-right: 28px; background-image: url(images/button/default-medium-s-arrow.png); } /* line 592, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-medium.x-rtl.x-btn-split-right:after { background-image: url(images/button/default-medium-s-arrow-rtl.png); } /* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-medium.x-btn-split-bottom:after { height: 24px; background-image: url(images/button/default-medium-s-arrow-b.png); } /* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-medium { padding-right: 8px; } /* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-medium { margin-right: 8px; } /* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-default-medium { border-color: #ed9200; background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); -webkit-box-shadow: #d4d5d9 0 1px 0px 0 inset, #d4d5d9 0 -1px 0px 0 inset, #d4d5d9 -1px 0 0px 0 inset, #d4d5d9 1px 0 0px 0 inset; -moz-box-shadow: #d4d5d9 0 1px 0px 0 inset, #d4d5d9 0 -1px 0px 0 inset, #d4d5d9 -1px 0 0px 0 inset, #d4d5d9 1px 0 0px 0 inset; box-shadow: #d4d5d9 0 1px 0px 0 inset, #d4d5d9 0 -1px 0px 0 inset, #d4d5d9 -1px 0 0px 0 inset, #d4d5d9 1px 0 0px 0 inset; } /* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over.x-btn-default-medium { border-color: #a16300; background-image: none; background-color: #ed9200; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ee9c19), color-stop(50%, #ed9200), color-stop(51%, #e18a00), color-stop(100%, #ed9200)); background-image: -webkit-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -moz-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -o-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -ms-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); } /* line 694, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over.x-btn-default-medium { -webkit-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; -moz-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; } /* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active.x-btn-default-medium, .x-btn.x-btn-pressed.x-btn-default-medium { border-color: #955411; background-image: none; background-color: #da7b19; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(50%, #cf7417), color-stop(51%, #da7b19), color-stop(100%, #dd882f)); background-image: -webkit-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -moz-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -o-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -ms-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); } /* line 751, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active.x-btn-default-medium, .x-btn-focus.x-btn-pressed.x-btn-default-medium { -webkit-box-shadow: #f7e4d1 0 1px 0px 0 inset, #f7e4d1 0 -1px 0px 0 inset, #f7e4d1 -1px 0 0px 0 inset, #f7e4d1 1px 0 0px 0 inset; -moz-box-shadow: #f7e4d1 0 1px 0px 0 inset, #f7e4d1 0 -1px 0px 0 inset, #f7e4d1 -1px 0 0px 0 inset, #f7e4d1 1px 0 0px 0 inset; box-shadow: #f7e4d1 0 1px 0px 0 inset, #f7e4d1 0 -1px 0px 0 inset, #f7e4d1 -1px 0 0px 0 inset, #f7e4d1 1px 0 0px 0 inset; } /* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled.x-btn-default-medium { background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-medium-tl, .x-btn-focus .x-btn-default-medium-bl, .x-btn-focus .x-btn-default-medium-tr, .x-btn-focus .x-btn-default-medium-br, .x-btn-focus .x-btn-default-medium-tc, .x-btn-focus .x-btn-default-medium-bc { background-image: url(images/btn/btn-default-medium-focus-corners.gif); } /* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-medium-ml, .x-btn-focus .x-btn-default-medium-mr { background-image: url(images/btn/btn-default-medium-focus-sides.gif); } /* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-medium-mc { background-color: #2a3142; background-image: url(images/btn/btn-default-medium-focus-fbg.gif); } /* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-medium-tl, .x-btn-over .x-btn-default-medium-bl, .x-btn-over .x-btn-default-medium-tr, .x-btn-over .x-btn-default-medium-br, .x-btn-over .x-btn-default-medium-tc, .x-btn-over .x-btn-default-medium-bc { background-image: url(images/btn/btn-default-medium-over-corners.gif); } /* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-medium-ml, .x-btn-over .x-btn-default-medium-mr { background-image: url(images/btn/btn-default-medium-over-sides.gif); } /* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-medium-mc { background-color: #ed9200; background-image: url(images/btn/btn-default-medium-over-fbg.gif); } /* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-medium-tl, .x-btn-focus.x-btn-over .x-btn-default-medium-bl, .x-btn-focus.x-btn-over .x-btn-default-medium-tr, .x-btn-focus.x-btn-over .x-btn-default-medium-br, .x-btn-focus.x-btn-over .x-btn-default-medium-tc, .x-btn-focus.x-btn-over .x-btn-default-medium-bc { background-image: url(images/btn/btn-default-medium-focus-over-corners.gif); } /* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-medium-ml, .x-btn-focus.x-btn-over .x-btn-default-medium-mr { background-image: url(images/btn/btn-default-medium-focus-over-sides.gif); } /* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-medium-mc { background-color: #ed9200; background-image: url(images/btn/btn-default-medium-focus-over-fbg.gif); } /* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-medium-tl, .x-btn.x-btn-menu-active .x-btn-default-medium-bl, .x-btn.x-btn-menu-active .x-btn-default-medium-tr, .x-btn.x-btn-menu-active .x-btn-default-medium-br, .x-btn.x-btn-menu-active .x-btn-default-medium-tc, .x-btn.x-btn-menu-active .x-btn-default-medium-bc, .x-btn.x-btn-pressed .x-btn-default-medium-tl, .x-btn.x-btn-pressed .x-btn-default-medium-bl, .x-btn.x-btn-pressed .x-btn-default-medium-tr, .x-btn.x-btn-pressed .x-btn-default-medium-br, .x-btn.x-btn-pressed .x-btn-default-medium-tc, .x-btn.x-btn-pressed .x-btn-default-medium-bc { background-image: url(images/btn/btn-default-medium-pressed-corners.gif); } /* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-medium-ml, .x-btn.x-btn-menu-active .x-btn-default-medium-mr, .x-btn.x-btn-pressed .x-btn-default-medium-ml, .x-btn.x-btn-pressed .x-btn-default-medium-mr { background-image: url(images/btn/btn-default-medium-pressed-sides.gif); } /* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-medium-mc, .x-btn.x-btn-pressed .x-btn-default-medium-mc { background-color: #da7b19; background-image: url(images/btn/btn-default-medium-pressed-fbg.gif); } /* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-medium-tl, .x-btn-focus.x-btn-menu-active .x-btn-default-medium-bl, .x-btn-focus.x-btn-menu-active .x-btn-default-medium-tr, .x-btn-focus.x-btn-menu-active .x-btn-default-medium-br, .x-btn-focus.x-btn-menu-active .x-btn-default-medium-tc, .x-btn-focus.x-btn-menu-active .x-btn-default-medium-bc, .x-btn-focus.x-btn-pressed .x-btn-default-medium-tl, .x-btn-focus.x-btn-pressed .x-btn-default-medium-bl, .x-btn-focus.x-btn-pressed .x-btn-default-medium-tr, .x-btn-focus.x-btn-pressed .x-btn-default-medium-br, .x-btn-focus.x-btn-pressed .x-btn-default-medium-tc, .x-btn-focus.x-btn-pressed .x-btn-default-medium-bc { background-image: url(images/btn/btn-default-medium-focus-pressed-corners.gif); } /* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-medium-ml, .x-btn-focus.x-btn-menu-active .x-btn-default-medium-mr, .x-btn-focus.x-btn-pressed .x-btn-default-medium-ml, .x-btn-focus.x-btn-pressed .x-btn-default-medium-mr { background-image: url(images/btn/btn-default-medium-focus-pressed-sides.gif); } /* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-medium-mc, .x-btn-focus.x-btn-pressed .x-btn-default-medium-mc { background-color: #da7b19; background-image: url(images/btn/btn-default-medium-focus-pressed-fbg.gif); } /* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-medium-tl, .x-btn.x-btn-disabled .x-btn-default-medium-bl, .x-btn.x-btn-disabled .x-btn-default-medium-tr, .x-btn.x-btn-disabled .x-btn-default-medium-br, .x-btn.x-btn-disabled .x-btn-default-medium-tc, .x-btn.x-btn-disabled .x-btn-default-medium-bc { background-image: url(images/btn/btn-default-medium-disabled-corners.gif); } /* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-medium-ml, .x-btn.x-btn-disabled .x-btn-default-medium-mr { background-image: url(images/btn/btn-default-medium-disabled-sides.gif); } /* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-medium-mc { background-color: #2a3142; background-image: url(images/btn/btn-default-medium-disabled-fbg.gif); } /* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-btn-default-medium { background-image: none; } /* line 963, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-disabled.x-btn-default-medium { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } /* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-first { border-right-width: 1px !important; } /* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-first .x-btn-default-medium-mc { padding-right: 3px !important; } /* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-middle { border-right-width: 1px !important; } /* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-middle .x-btn-default-medium-mc { padding-right: 3px !important; padding-left: 3px !important; } /* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-last .x-btn-default-medium-mc { padding-left: 3px !important; } /* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-first { border-bottom-width: 1px !important; } /* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-first .x-btn-default-medium-mc { padding-bottom: 3px !important; } /* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-middle { border-bottom-width: 1px !important; } /* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-middle .x-btn-default-medium-mc { padding-top: 3px !important; padding-bottom: 3px !important; } /* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-last .x-btn-default-medium-mc { padding-top: 3px !important; } /* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-default-medium:after { content: ' '; border-style: solid; border-width: 0; position: absolute; } /* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium:after { top: 1px; right: 0; bottom: 1px; left: 0; } /* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-first:after { left: 1px; } /* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-last:after { right: 1px; } /* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium:after { top: 0; right: 1px; bottom: 0; left: 1px; } /* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-first:after { top: 1px; } /* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-last:after { bottom: 1px; } /* line 1072, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-default-medium:after { border-width: 1px; border-color: #d4d5d9; } /* line 1086, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-over.x-btn-default-medium:after { border-width: 1px; border-color: #fbe9cc; } /* line 1102, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-menu-active.x-btn-default-medium:after, .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-pressed.x-btn-default-medium:after { border-width: 1px; border-color: #f7e4d1; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-default-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-over.x-btn-default-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-over.x-btn-default-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-medium-focus-over-corners.gif), sides:url(images/btn/btn-default-medium-focus-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-pressed.x-btn-default-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-pressed.x-btn-default-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-medium-focus-pressed-corners.gif), sides:url(images/btn/btn-default-medium-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-disabled.x-btn-default-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif)" !important; } /*</if slicer>*/ /* */ /* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-default-medium-cell > .x-grid-cell-inner { padding-top: 0; padding-bottom: 0; } /* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-default-medium-cell > .x-grid-cell-inner > .x-btn-default-medium { vertical-align: top; } /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 3px 3px 3px 3px; border-width: 1px; border-style: solid; background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-mc { background-image: url(images/btn/btn-default-large-fbg.gif); background-position: 0 top; background-color: #2a3142; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-btn-default-large { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; background-image: none; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-frameInfo { font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-tr, .x-btn-default-large-br, .x-btn-default-large-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-tl, .x-btn-default-large-bl, .x-btn-default-large-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-tl, .x-btn-default-large-bl, .x-btn-default-large-tr, .x-btn-default-large-br, .x-btn-default-large-tc, .x-btn-default-large-bc, .x-btn-default-large-ml, .x-btn-default-large-mr { background-image: url(images/btn/btn-default-large-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-ml, .x-btn-default-large-mr { background-image: url(images/btn/btn-default-large-sides.gif); } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-large-mc { padding: 1px 1px 1px 1px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-default-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, frame-bg:url(images/btn/btn-default-large-fbg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-default-large { border-color: #222836; } /* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-button-default-large { height: 32px; } /* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-inner-default-large { font: bold 16px/20px helvetica, arial, verdana, sans-serif; color: white; padding: 0 10px; max-width: 100%; } /* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-right > .x-btn-inner-default-large, .x-btn-icon-left > .x-btn-inner-default-large { max-width: calc(100% - 32px); } /* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-default-large { height: 32px; } /* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-left > .x-btn-icon-el-default-large, .x-btn-icon-right > .x-btn-icon-el-default-large { width: 32px; } /* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-top > .x-btn-icon-el-default-large, .x-btn-icon-bottom > .x-btn-icon-el-default-large { min-width: 32px; } /* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-default-large.x-btn-glyph { font-size: 32px; line-height: 32px; color: white; opacity: 0.5; } /* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-ie8 .x-btn-icon-el-default-large.x-btn-glyph { color: #9498a0; } /* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-large { margin-right: 0; } /* line 497, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-large.x-rtl { margin-right: 0; margin-left: 0; } /* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-large { margin-left: 0; } /* line 508, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-large.x-rtl { margin-left: 0; margin-right: 0; } /* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-large { margin-bottom: 5px; } /* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-large { margin-top: 5px; } /* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-large { padding-right: 10px; } /* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-large { margin-right: 10px; } /* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-bottom > .x-btn-button-default-large, .x-btn-split-bottom > .x-btn-button-default-large { padding-bottom: 3px; } /* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-large.x-btn-arrow-right:after { width: 28px; padding-right: 28px; background-image: url(images/button/default-large-arrow.png); } /* line 554, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-large.x-rtl.x-btn-arrow-right:after { background-image: url(images/button/default-large-arrow-rtl.png); } /* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-large.x-btn-arrow-bottom:after { height: 20px; background-image: url(images/button/default-large-arrow.png); } /* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-large.x-btn-split-right:after { width: 35px; padding-right: 35px; background-image: url(images/button/default-large-s-arrow.png); } /* line 592, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-large.x-rtl.x-btn-split-right:after { background-image: url(images/button/default-large-s-arrow-rtl.png); } /* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-large.x-btn-split-bottom:after { height: 29px; background-image: url(images/button/default-large-s-arrow-b.png); } /* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-large { padding-right: 10px; } /* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-large { margin-right: 10px; } /* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-default-large { border-color: #ed9200; background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); -webkit-box-shadow: #d4d5d9 0 1px 0px 0 inset, #d4d5d9 0 -1px 0px 0 inset, #d4d5d9 -1px 0 0px 0 inset, #d4d5d9 1px 0 0px 0 inset; -moz-box-shadow: #d4d5d9 0 1px 0px 0 inset, #d4d5d9 0 -1px 0px 0 inset, #d4d5d9 -1px 0 0px 0 inset, #d4d5d9 1px 0 0px 0 inset; box-shadow: #d4d5d9 0 1px 0px 0 inset, #d4d5d9 0 -1px 0px 0 inset, #d4d5d9 -1px 0 0px 0 inset, #d4d5d9 1px 0 0px 0 inset; } /* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over.x-btn-default-large { border-color: #a16300; background-image: none; background-color: #ed9200; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ee9c19), color-stop(50%, #ed9200), color-stop(51%, #e18a00), color-stop(100%, #ed9200)); background-image: -webkit-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -moz-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -o-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -ms-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); } /* line 694, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over.x-btn-default-large { -webkit-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; -moz-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; } /* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active.x-btn-default-large, .x-btn.x-btn-pressed.x-btn-default-large { border-color: #955411; background-image: none; background-color: #da7b19; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(50%, #cf7417), color-stop(51%, #da7b19), color-stop(100%, #dd882f)); background-image: -webkit-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -moz-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -o-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -ms-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); } /* line 751, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active.x-btn-default-large, .x-btn-focus.x-btn-pressed.x-btn-default-large { -webkit-box-shadow: #f7e4d1 0 1px 0px 0 inset, #f7e4d1 0 -1px 0px 0 inset, #f7e4d1 -1px 0 0px 0 inset, #f7e4d1 1px 0 0px 0 inset; -moz-box-shadow: #f7e4d1 0 1px 0px 0 inset, #f7e4d1 0 -1px 0px 0 inset, #f7e4d1 -1px 0 0px 0 inset, #f7e4d1 1px 0 0px 0 inset; box-shadow: #f7e4d1 0 1px 0px 0 inset, #f7e4d1 0 -1px 0px 0 inset, #f7e4d1 -1px 0 0px 0 inset, #f7e4d1 1px 0 0px 0 inset; } /* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled.x-btn-default-large { background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-large-tl, .x-btn-focus .x-btn-default-large-bl, .x-btn-focus .x-btn-default-large-tr, .x-btn-focus .x-btn-default-large-br, .x-btn-focus .x-btn-default-large-tc, .x-btn-focus .x-btn-default-large-bc { background-image: url(images/btn/btn-default-large-focus-corners.gif); } /* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-large-ml, .x-btn-focus .x-btn-default-large-mr { background-image: url(images/btn/btn-default-large-focus-sides.gif); } /* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-large-mc { background-color: #2a3142; background-image: url(images/btn/btn-default-large-focus-fbg.gif); } /* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-large-tl, .x-btn-over .x-btn-default-large-bl, .x-btn-over .x-btn-default-large-tr, .x-btn-over .x-btn-default-large-br, .x-btn-over .x-btn-default-large-tc, .x-btn-over .x-btn-default-large-bc { background-image: url(images/btn/btn-default-large-over-corners.gif); } /* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-large-ml, .x-btn-over .x-btn-default-large-mr { background-image: url(images/btn/btn-default-large-over-sides.gif); } /* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-large-mc { background-color: #ed9200; background-image: url(images/btn/btn-default-large-over-fbg.gif); } /* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-large-tl, .x-btn-focus.x-btn-over .x-btn-default-large-bl, .x-btn-focus.x-btn-over .x-btn-default-large-tr, .x-btn-focus.x-btn-over .x-btn-default-large-br, .x-btn-focus.x-btn-over .x-btn-default-large-tc, .x-btn-focus.x-btn-over .x-btn-default-large-bc { background-image: url(images/btn/btn-default-large-focus-over-corners.gif); } /* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-large-ml, .x-btn-focus.x-btn-over .x-btn-default-large-mr { background-image: url(images/btn/btn-default-large-focus-over-sides.gif); } /* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-large-mc { background-color: #ed9200; background-image: url(images/btn/btn-default-large-focus-over-fbg.gif); } /* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-large-tl, .x-btn.x-btn-menu-active .x-btn-default-large-bl, .x-btn.x-btn-menu-active .x-btn-default-large-tr, .x-btn.x-btn-menu-active .x-btn-default-large-br, .x-btn.x-btn-menu-active .x-btn-default-large-tc, .x-btn.x-btn-menu-active .x-btn-default-large-bc, .x-btn.x-btn-pressed .x-btn-default-large-tl, .x-btn.x-btn-pressed .x-btn-default-large-bl, .x-btn.x-btn-pressed .x-btn-default-large-tr, .x-btn.x-btn-pressed .x-btn-default-large-br, .x-btn.x-btn-pressed .x-btn-default-large-tc, .x-btn.x-btn-pressed .x-btn-default-large-bc { background-image: url(images/btn/btn-default-large-pressed-corners.gif); } /* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-large-ml, .x-btn.x-btn-menu-active .x-btn-default-large-mr, .x-btn.x-btn-pressed .x-btn-default-large-ml, .x-btn.x-btn-pressed .x-btn-default-large-mr { background-image: url(images/btn/btn-default-large-pressed-sides.gif); } /* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-large-mc, .x-btn.x-btn-pressed .x-btn-default-large-mc { background-color: #da7b19; background-image: url(images/btn/btn-default-large-pressed-fbg.gif); } /* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-large-tl, .x-btn-focus.x-btn-menu-active .x-btn-default-large-bl, .x-btn-focus.x-btn-menu-active .x-btn-default-large-tr, .x-btn-focus.x-btn-menu-active .x-btn-default-large-br, .x-btn-focus.x-btn-menu-active .x-btn-default-large-tc, .x-btn-focus.x-btn-menu-active .x-btn-default-large-bc, .x-btn-focus.x-btn-pressed .x-btn-default-large-tl, .x-btn-focus.x-btn-pressed .x-btn-default-large-bl, .x-btn-focus.x-btn-pressed .x-btn-default-large-tr, .x-btn-focus.x-btn-pressed .x-btn-default-large-br, .x-btn-focus.x-btn-pressed .x-btn-default-large-tc, .x-btn-focus.x-btn-pressed .x-btn-default-large-bc { background-image: url(images/btn/btn-default-large-focus-pressed-corners.gif); } /* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-large-ml, .x-btn-focus.x-btn-menu-active .x-btn-default-large-mr, .x-btn-focus.x-btn-pressed .x-btn-default-large-ml, .x-btn-focus.x-btn-pressed .x-btn-default-large-mr { background-image: url(images/btn/btn-default-large-focus-pressed-sides.gif); } /* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-large-mc, .x-btn-focus.x-btn-pressed .x-btn-default-large-mc { background-color: #da7b19; background-image: url(images/btn/btn-default-large-focus-pressed-fbg.gif); } /* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-large-tl, .x-btn.x-btn-disabled .x-btn-default-large-bl, .x-btn.x-btn-disabled .x-btn-default-large-tr, .x-btn.x-btn-disabled .x-btn-default-large-br, .x-btn.x-btn-disabled .x-btn-default-large-tc, .x-btn.x-btn-disabled .x-btn-default-large-bc { background-image: url(images/btn/btn-default-large-disabled-corners.gif); } /* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-large-ml, .x-btn.x-btn-disabled .x-btn-default-large-mr { background-image: url(images/btn/btn-default-large-disabled-sides.gif); } /* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-large-mc { background-color: #2a3142; background-image: url(images/btn/btn-default-large-disabled-fbg.gif); } /* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-btn-default-large { background-image: none; } /* line 963, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-disabled.x-btn-default-large { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } /* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-first { border-right-width: 1px !important; } /* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-first .x-btn-default-large-mc { padding-right: 3px !important; } /* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-middle { border-right-width: 1px !important; } /* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-middle .x-btn-default-large-mc { padding-right: 3px !important; padding-left: 3px !important; } /* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-last .x-btn-default-large-mc { padding-left: 3px !important; } /* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-first { border-bottom-width: 1px !important; } /* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-first .x-btn-default-large-mc { padding-bottom: 3px !important; } /* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-middle { border-bottom-width: 1px !important; } /* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-middle .x-btn-default-large-mc { padding-top: 3px !important; padding-bottom: 3px !important; } /* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-last .x-btn-default-large-mc { padding-top: 3px !important; } /* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-default-large:after { content: ' '; border-style: solid; border-width: 0; position: absolute; } /* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large:after { top: 1px; right: 0; bottom: 1px; left: 0; } /* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-first:after { left: 1px; } /* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-last:after { right: 1px; } /* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-large:after { top: 0; right: 1px; bottom: 0; left: 1px; } /* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-first:after { top: 1px; } /* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-last:after { bottom: 1px; } /* line 1072, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-default-large:after { border-width: 1px; border-color: #d4d5d9; } /* line 1086, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-over.x-btn-default-large:after { border-width: 1px; border-color: #fbe9cc; } /* line 1102, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-menu-active.x-btn-default-large:after, .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-pressed.x-btn-default-large:after { border-width: 1px; border-color: #f7e4d1; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-default-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-over.x-btn-default-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-over.x-btn-default-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-large-focus-over-corners.gif), sides:url(images/btn/btn-default-large-focus-over-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-pressed.x-btn-default-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-pressed.x-btn-default-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-large-focus-pressed-corners.gif), sides:url(images/btn/btn-default-large-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-disabled.x-btn-default-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif)" !important; } /*</if slicer>*/ /* */ /* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-default-large-cell > .x-grid-cell-inner { padding-top: 0; padding-bottom: 0; } /* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-default-large-cell > .x-grid-cell-inner > .x-btn-default-large { vertical-align: top; } /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 3px 3px 3px 3px; border-width: 1px; border-style: solid; background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-mc { background-image: url(images/btn/btn-default-toolbar-small-fbg.gif); background-position: 0 top; background-color: #2a3142; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-btn-default-toolbar-small { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; background-image: none; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-frameInfo { font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-tr, .x-btn-default-toolbar-small-br, .x-btn-default-toolbar-small-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-tl, .x-btn-default-toolbar-small-bl, .x-btn-default-toolbar-small-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-tl, .x-btn-default-toolbar-small-bl, .x-btn-default-toolbar-small-tr, .x-btn-default-toolbar-small-br, .x-btn-default-toolbar-small-tc, .x-btn-default-toolbar-small-bc, .x-btn-default-toolbar-small-ml, .x-btn-default-toolbar-small-mr { background-image: url(images/btn/btn-default-toolbar-small-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-ml, .x-btn-default-toolbar-small-mr { background-image: url(images/btn/btn-default-toolbar-small-sides.gif); } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-small-mc { padding: 1px 1px 1px 1px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-default-toolbar-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, frame-bg:url(images/btn/btn-default-toolbar-small-fbg.gif), corners:url(images/btn/btn-default-toolbar-small-corners.gif), sides:url(images/btn/btn-default-toolbar-small-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-default-toolbar-small { border-color: #222836; } /* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-button-default-toolbar-small { height: 16px; } /* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-inner-default-toolbar-small { font: bold 12px/16px helvetica, arial, verdana, sans-serif; color: white; padding: 0 5px; max-width: 100%; } /* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-right > .x-btn-inner-default-toolbar-small, .x-btn-icon-left > .x-btn-inner-default-toolbar-small { max-width: calc(100% - 16px); } /* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-default-toolbar-small { height: 16px; } /* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-left > .x-btn-icon-el-default-toolbar-small, .x-btn-icon-right > .x-btn-icon-el-default-toolbar-small { width: 16px; } /* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-top > .x-btn-icon-el-default-toolbar-small, .x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-small { min-width: 16px; } /* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-default-toolbar-small.x-btn-glyph { font-size: 16px; line-height: 16px; color: white; opacity: 0.5; } /* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-ie8 .x-btn-icon-el-default-toolbar-small.x-btn-glyph { color: #9498a0; } /* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-small { margin-right: 0px; } /* line 497, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-small.x-rtl { margin-right: 0; margin-left: 0px; } /* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-small { margin-left: 0px; } /* line 508, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-small.x-rtl { margin-left: 0; margin-right: 0px; } /* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-toolbar-small { margin-bottom: 5px; } /* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-small { margin-top: 5px; } /* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-small { padding-right: 5px; } /* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-small { margin-right: 5px; } /* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-bottom > .x-btn-button-default-toolbar-small, .x-btn-split-bottom > .x-btn-button-default-toolbar-small { padding-bottom: 3px; } /* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-small.x-btn-arrow-right:after { width: 16px; padding-right: 16px; background-image: url(images/button/default-toolbar-small-arrow.png); } /* line 554, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-small.x-rtl.x-btn-arrow-right:after { background-image: url(images/button/default-toolbar-small-arrow-rtl.png); } /* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-small.x-btn-arrow-bottom:after { height: 13px; background-image: url(images/button/default-toolbar-small-arrow.png); } /* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-small.x-btn-split-right:after { width: 20px; padding-right: 20px; background-image: url(images/button/default-toolbar-small-s-arrow.png); } /* line 592, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-small.x-rtl.x-btn-split-right:after { background-image: url(images/button/default-toolbar-small-s-arrow-rtl.png); } /* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-small.x-btn-split-bottom:after { height: 15px; background-image: url(images/button/default-toolbar-small-s-arrow-b.png); } /* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-small { padding-right: 5px; } /* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-small { margin-right: 5px; } /* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-default-toolbar-small { border-color: #ed9200; background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); -webkit-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; -moz-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; } /* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over.x-btn-default-toolbar-small { border-color: #a16300; background-image: none; background-color: #ed9200; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ee9c19), color-stop(50%, #ed9200), color-stop(51%, #e18a00), color-stop(100%, #ed9200)); background-image: -webkit-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -moz-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -o-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -ms-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); } /* line 694, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over.x-btn-default-toolbar-small { -webkit-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; -moz-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; } /* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active.x-btn-default-toolbar-small, .x-btn.x-btn-pressed.x-btn-default-toolbar-small { border-color: #955411; background-image: none; background-color: #da7b19; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(50%, #cf7417), color-stop(51%, #da7b19), color-stop(100%, #dd882f)); background-image: -webkit-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -moz-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -o-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -ms-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); } /* line 751, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active.x-btn-default-toolbar-small, .x-btn-focus.x-btn-pressed.x-btn-default-toolbar-small { -webkit-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; -moz-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; } /* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled.x-btn-default-toolbar-small { background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-toolbar-small-tl, .x-btn-focus .x-btn-default-toolbar-small-bl, .x-btn-focus .x-btn-default-toolbar-small-tr, .x-btn-focus .x-btn-default-toolbar-small-br, .x-btn-focus .x-btn-default-toolbar-small-tc, .x-btn-focus .x-btn-default-toolbar-small-bc { background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif); } /* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-toolbar-small-ml, .x-btn-focus .x-btn-default-toolbar-small-mr { background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif); } /* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-toolbar-small-mc { background-color: #2a3142; background-image: url(images/btn/btn-default-toolbar-small-focus-fbg.gif); } /* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-toolbar-small-tl, .x-btn-over .x-btn-default-toolbar-small-bl, .x-btn-over .x-btn-default-toolbar-small-tr, .x-btn-over .x-btn-default-toolbar-small-br, .x-btn-over .x-btn-default-toolbar-small-tc, .x-btn-over .x-btn-default-toolbar-small-bc { background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif); } /* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-toolbar-small-ml, .x-btn-over .x-btn-default-toolbar-small-mr { background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif); } /* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-toolbar-small-mc { background-color: #ed9200; background-image: url(images/btn/btn-default-toolbar-small-over-fbg.gif); } /* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-tl, .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-bl, .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-tr, .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-br, .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-tc, .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-bc { background-image: url(images/btn/btn-default-toolbar-small-focus-over-corners.gif); } /* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-ml, .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-mr { background-image: url(images/btn/btn-default-toolbar-small-focus-over-sides.gif); } /* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-mc { background-color: #ed9200; background-image: url(images/btn/btn-default-toolbar-small-focus-over-fbg.gif); } /* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-tl, .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-bl, .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-tr, .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-br, .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-tc, .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-bc, .x-btn.x-btn-pressed .x-btn-default-toolbar-small-tl, .x-btn.x-btn-pressed .x-btn-default-toolbar-small-bl, .x-btn.x-btn-pressed .x-btn-default-toolbar-small-tr, .x-btn.x-btn-pressed .x-btn-default-toolbar-small-br, .x-btn.x-btn-pressed .x-btn-default-toolbar-small-tc, .x-btn.x-btn-pressed .x-btn-default-toolbar-small-bc { background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif); } /* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-ml, .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-mr, .x-btn.x-btn-pressed .x-btn-default-toolbar-small-ml, .x-btn.x-btn-pressed .x-btn-default-toolbar-small-mr { background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif); } /* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-mc, .x-btn.x-btn-pressed .x-btn-default-toolbar-small-mc { background-color: #da7b19; background-image: url(images/btn/btn-default-toolbar-small-pressed-fbg.gif); } /* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-tl, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-bl, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-tr, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-br, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-tc, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-bc, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-tl, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-bl, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-tr, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-br, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-tc, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-bc { background-image: url(images/btn/btn-default-toolbar-small-focus-pressed-corners.gif); } /* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-ml, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-mr, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-ml, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-mr { background-image: url(images/btn/btn-default-toolbar-small-focus-pressed-sides.gif); } /* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-mc, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-mc { background-color: #da7b19; background-image: url(images/btn/btn-default-toolbar-small-focus-pressed-fbg.gif); } /* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-toolbar-small-tl, .x-btn.x-btn-disabled .x-btn-default-toolbar-small-bl, .x-btn.x-btn-disabled .x-btn-default-toolbar-small-tr, .x-btn.x-btn-disabled .x-btn-default-toolbar-small-br, .x-btn.x-btn-disabled .x-btn-default-toolbar-small-tc, .x-btn.x-btn-disabled .x-btn-default-toolbar-small-bc { background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif); } /* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-toolbar-small-ml, .x-btn.x-btn-disabled .x-btn-default-toolbar-small-mr { background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif); } /* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-toolbar-small-mc { background-color: #2a3142; background-image: url(images/btn/btn-default-toolbar-small-disabled-fbg.gif); } /* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-btn-default-toolbar-small { background-image: none; } /* line 963, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-disabled.x-btn-default-toolbar-small { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } /* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-first { border-right-width: 1px !important; } /* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-first .x-btn-default-toolbar-small-mc { padding-right: 3px !important; } /* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-middle { border-right-width: 1px !important; } /* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-middle .x-btn-default-toolbar-small-mc { padding-right: 3px !important; padding-left: 3px !important; } /* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-last .x-btn-default-toolbar-small-mc { padding-left: 3px !important; } /* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-first { border-bottom-width: 1px !important; } /* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-first .x-btn-default-toolbar-small-mc { padding-bottom: 3px !important; } /* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-middle { border-bottom-width: 1px !important; } /* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-middle .x-btn-default-toolbar-small-mc { padding-top: 3px !important; padding-bottom: 3px !important; } /* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-last .x-btn-default-toolbar-small-mc { padding-top: 3px !important; } /* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-default-toolbar-small:after { content: ' '; border-style: solid; border-width: 0; position: absolute; } /* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small:after { top: 1px; right: 0; bottom: 1px; left: 0; } /* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-first:after { left: 1px; } /* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-last:after { right: 1px; } /* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small:after { top: 0; right: 1px; bottom: 0; left: 1px; } /* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-first:after { top: 1px; } /* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-last:after { bottom: 1px; } /* line 1072, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-default-toolbar-small:after { border-width: 1px; border-color: #3a4252; } /* line 1086, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-over.x-btn-default-toolbar-small:after { border-width: 1px; border-color: #3a4252; } /* line 1102, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-menu-active.x-btn-default-toolbar-small:after, .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-pressed.x-btn-default-toolbar-small:after { border-width: 1px; border-color: #3a4252; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-default-toolbar-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-over.x-btn-default-toolbar-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-over.x-btn-default-toolbar-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-small-focus-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-pressed.x-btn-default-toolbar-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-pressed.x-btn-default-toolbar-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-small-focus-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-disabled.x-btn-default-toolbar-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-disabled-fbg.gif)" !important; } /*</if slicer>*/ /* */ /* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-default-toolbar-small-cell > .x-grid-cell-inner { padding-top: 1px; padding-bottom: 1px; } /* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-default-toolbar-small-cell > .x-grid-cell-inner > .x-btn-default-toolbar-small { vertical-align: top; } /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 3px 3px 3px 3px; border-width: 1px; border-style: solid; background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-mc { background-image: url(images/btn/btn-default-toolbar-medium-fbg.gif); background-position: 0 top; background-color: #2a3142; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-btn-default-toolbar-medium { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; background-image: none; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-frameInfo { font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-tr, .x-btn-default-toolbar-medium-br, .x-btn-default-toolbar-medium-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-tl, .x-btn-default-toolbar-medium-bl, .x-btn-default-toolbar-medium-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-tl, .x-btn-default-toolbar-medium-bl, .x-btn-default-toolbar-medium-tr, .x-btn-default-toolbar-medium-br, .x-btn-default-toolbar-medium-tc, .x-btn-default-toolbar-medium-bc, .x-btn-default-toolbar-medium-ml, .x-btn-default-toolbar-medium-mr { background-image: url(images/btn/btn-default-toolbar-medium-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-ml, .x-btn-default-toolbar-medium-mr { background-image: url(images/btn/btn-default-toolbar-medium-sides.gif); } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-medium-mc { padding: 1px 1px 1px 1px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-default-toolbar-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, frame-bg:url(images/btn/btn-default-toolbar-medium-fbg.gif), corners:url(images/btn/btn-default-toolbar-medium-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-default-toolbar-medium { border-color: #222836; } /* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-button-default-toolbar-medium { height: 24px; } /* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-inner-default-toolbar-medium { font: bold 14px/18px helvetica, arial, verdana, sans-serif; color: white; padding: 0 8px; max-width: 100%; } /* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-right > .x-btn-inner-default-toolbar-medium, .x-btn-icon-left > .x-btn-inner-default-toolbar-medium { max-width: calc(100% - 24px); } /* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-default-toolbar-medium { height: 24px; } /* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-left > .x-btn-icon-el-default-toolbar-medium, .x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium { width: 24px; } /* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-top > .x-btn-icon-el-default-toolbar-medium, .x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-medium { min-width: 24px; } /* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-default-toolbar-medium.x-btn-glyph { font-size: 24px; line-height: 24px; color: white; opacity: 0.5; } /* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-ie8 .x-btn-icon-el-default-toolbar-medium.x-btn-glyph { color: #9498a0; } /* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-medium { margin-right: 0; } /* line 497, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-medium.x-rtl { margin-right: 0; margin-left: 0; } /* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium { margin-left: 0; } /* line 508, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium.x-rtl { margin-left: 0; margin-right: 0; } /* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-toolbar-medium { margin-bottom: 5px; } /* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-medium { margin-top: 5px; } /* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-medium { padding-right: 8px; } /* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium { margin-right: 8px; } /* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-bottom > .x-btn-button-default-toolbar-medium, .x-btn-split-bottom > .x-btn-button-default-toolbar-medium { padding-bottom: 3px; } /* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-medium.x-btn-arrow-right:after { width: 24px; padding-right: 24px; background-image: url(images/button/default-toolbar-medium-arrow.png); } /* line 554, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-medium.x-rtl.x-btn-arrow-right:after { background-image: url(images/button/default-toolbar-medium-arrow-rtl.png); } /* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-medium.x-btn-arrow-bottom:after { height: 18px; background-image: url(images/button/default-toolbar-medium-arrow.png); } /* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-medium.x-btn-split-right:after { width: 28px; padding-right: 28px; background-image: url(images/button/default-toolbar-medium-s-arrow.png); } /* line 592, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-medium.x-rtl.x-btn-split-right:after { background-image: url(images/button/default-toolbar-medium-s-arrow-rtl.png); } /* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-medium.x-btn-split-bottom:after { height: 24px; background-image: url(images/button/default-toolbar-medium-s-arrow-b.png); } /* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-medium { padding-right: 8px; } /* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium { margin-right: 8px; } /* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-default-toolbar-medium { border-color: #ed9200; background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); -webkit-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; -moz-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; } /* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over.x-btn-default-toolbar-medium { border-color: #a16300; background-image: none; background-color: #ed9200; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ee9c19), color-stop(50%, #ed9200), color-stop(51%, #e18a00), color-stop(100%, #ed9200)); background-image: -webkit-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -moz-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -o-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -ms-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); } /* line 694, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over.x-btn-default-toolbar-medium { -webkit-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; -moz-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; } /* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active.x-btn-default-toolbar-medium, .x-btn.x-btn-pressed.x-btn-default-toolbar-medium { border-color: #955411; background-image: none; background-color: #da7b19; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(50%, #cf7417), color-stop(51%, #da7b19), color-stop(100%, #dd882f)); background-image: -webkit-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -moz-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -o-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -ms-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); } /* line 751, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active.x-btn-default-toolbar-medium, .x-btn-focus.x-btn-pressed.x-btn-default-toolbar-medium { -webkit-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; -moz-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; } /* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled.x-btn-default-toolbar-medium { background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-toolbar-medium-tl, .x-btn-focus .x-btn-default-toolbar-medium-bl, .x-btn-focus .x-btn-default-toolbar-medium-tr, .x-btn-focus .x-btn-default-toolbar-medium-br, .x-btn-focus .x-btn-default-toolbar-medium-tc, .x-btn-focus .x-btn-default-toolbar-medium-bc { background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif); } /* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-toolbar-medium-ml, .x-btn-focus .x-btn-default-toolbar-medium-mr { background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif); } /* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-toolbar-medium-mc { background-color: #2a3142; background-image: url(images/btn/btn-default-toolbar-medium-focus-fbg.gif); } /* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-toolbar-medium-tl, .x-btn-over .x-btn-default-toolbar-medium-bl, .x-btn-over .x-btn-default-toolbar-medium-tr, .x-btn-over .x-btn-default-toolbar-medium-br, .x-btn-over .x-btn-default-toolbar-medium-tc, .x-btn-over .x-btn-default-toolbar-medium-bc { background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif); } /* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-toolbar-medium-ml, .x-btn-over .x-btn-default-toolbar-medium-mr { background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif); } /* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-toolbar-medium-mc { background-color: #ed9200; background-image: url(images/btn/btn-default-toolbar-medium-over-fbg.gif); } /* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-tl, .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-bl, .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-tr, .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-br, .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-tc, .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-bc { background-image: url(images/btn/btn-default-toolbar-medium-focus-over-corners.gif); } /* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-ml, .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-mr { background-image: url(images/btn/btn-default-toolbar-medium-focus-over-sides.gif); } /* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-mc { background-color: #ed9200; background-image: url(images/btn/btn-default-toolbar-medium-focus-over-fbg.gif); } /* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-tl, .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-bl, .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-tr, .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-br, .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-tc, .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-bc, .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-tl, .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-bl, .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-tr, .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-br, .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-tc, .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-bc { background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif); } /* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-ml, .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-mr, .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-ml, .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-mr { background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif); } /* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-mc, .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-mc { background-color: #da7b19; background-image: url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif); } /* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-tl, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-bl, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-tr, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-br, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-tc, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-bc, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-tl, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-bl, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-tr, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-br, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-tc, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-bc { background-image: url(images/btn/btn-default-toolbar-medium-focus-pressed-corners.gif); } /* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-ml, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-mr, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-ml, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-mr { background-image: url(images/btn/btn-default-toolbar-medium-focus-pressed-sides.gif); } /* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-mc, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-mc { background-color: #da7b19; background-image: url(images/btn/btn-default-toolbar-medium-focus-pressed-fbg.gif); } /* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-tl, .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-bl, .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-tr, .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-br, .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-tc, .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-bc { background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif); } /* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-ml, .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-mr { background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif); } /* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-mc { background-color: #2a3142; background-image: url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif); } /* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-btn-default-toolbar-medium { background-image: none; } /* line 963, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-disabled.x-btn-default-toolbar-medium { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } /* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-first { border-right-width: 1px !important; } /* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-first .x-btn-default-toolbar-medium-mc { padding-right: 3px !important; } /* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-middle { border-right-width: 1px !important; } /* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-middle .x-btn-default-toolbar-medium-mc { padding-right: 3px !important; padding-left: 3px !important; } /* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-last .x-btn-default-toolbar-medium-mc { padding-left: 3px !important; } /* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-first { border-bottom-width: 1px !important; } /* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-first .x-btn-default-toolbar-medium-mc { padding-bottom: 3px !important; } /* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-middle { border-bottom-width: 1px !important; } /* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-middle .x-btn-default-toolbar-medium-mc { padding-top: 3px !important; padding-bottom: 3px !important; } /* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-last .x-btn-default-toolbar-medium-mc { padding-top: 3px !important; } /* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-default-toolbar-medium:after { content: ' '; border-style: solid; border-width: 0; position: absolute; } /* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium:after { top: 1px; right: 0; bottom: 1px; left: 0; } /* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-first:after { left: 1px; } /* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-last:after { right: 1px; } /* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium:after { top: 0; right: 1px; bottom: 0; left: 1px; } /* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-first:after { top: 1px; } /* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-last:after { bottom: 1px; } /* line 1072, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-default-toolbar-medium:after { border-width: 1px; border-color: #3a4252; } /* line 1086, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-over.x-btn-default-toolbar-medium:after { border-width: 1px; border-color: #3a4252; } /* line 1102, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-menu-active.x-btn-default-toolbar-medium:after, .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-pressed.x-btn-default-toolbar-medium:after { border-width: 1px; border-color: #3a4252; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-default-toolbar-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-over.x-btn-default-toolbar-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-over.x-btn-default-toolbar-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-medium-focus-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-pressed.x-btn-default-toolbar-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-pressed.x-btn-default-toolbar-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-medium-focus-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-disabled.x-btn-default-toolbar-medium:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif)" !important; } /*</if slicer>*/ /* */ /* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-default-toolbar-medium-cell > .x-grid-cell-inner { padding-top: 0; padding-bottom: 0; } /* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-default-toolbar-medium-cell > .x-grid-cell-inner > .x-btn-default-toolbar-medium { vertical-align: top; } /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 3px 3px 3px 3px; border-width: 1px; border-style: solid; background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-mc { background-image: url(images/btn/btn-default-toolbar-large-fbg.gif); background-position: 0 top; background-color: #2a3142; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-btn-default-toolbar-large { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; background-image: none; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-frameInfo { font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-tr, .x-btn-default-toolbar-large-br, .x-btn-default-toolbar-large-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-tl, .x-btn-default-toolbar-large-bl, .x-btn-default-toolbar-large-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-tl, .x-btn-default-toolbar-large-bl, .x-btn-default-toolbar-large-tr, .x-btn-default-toolbar-large-br, .x-btn-default-toolbar-large-tc, .x-btn-default-toolbar-large-bc, .x-btn-default-toolbar-large-ml, .x-btn-default-toolbar-large-mr { background-image: url(images/btn/btn-default-toolbar-large-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-ml, .x-btn-default-toolbar-large-mr { background-image: url(images/btn/btn-default-toolbar-large-sides.gif); } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-default-toolbar-large-mc { padding: 1px 1px 1px 1px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-default-toolbar-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, frame-bg:url(images/btn/btn-default-toolbar-large-fbg.gif), corners:url(images/btn/btn-default-toolbar-large-corners.gif), sides:url(images/btn/btn-default-toolbar-large-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-default-toolbar-large { border-color: #222836; } /* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-button-default-toolbar-large { height: 32px; } /* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-inner-default-toolbar-large { font: bold 16px/20px helvetica, arial, verdana, sans-serif; color: white; padding: 0 10px; max-width: 100%; } /* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-right > .x-btn-inner-default-toolbar-large, .x-btn-icon-left > .x-btn-inner-default-toolbar-large { max-width: calc(100% - 32px); } /* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-default-toolbar-large { height: 32px; } /* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-left > .x-btn-icon-el-default-toolbar-large, .x-btn-icon-right > .x-btn-icon-el-default-toolbar-large { width: 32px; } /* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-top > .x-btn-icon-el-default-toolbar-large, .x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-large { min-width: 32px; } /* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-default-toolbar-large.x-btn-glyph { font-size: 32px; line-height: 32px; color: white; opacity: 0.5; } /* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-ie8 .x-btn-icon-el-default-toolbar-large.x-btn-glyph { color: #9498a0; } /* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-large { margin-right: 0; } /* line 497, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-large.x-rtl { margin-right: 0; margin-left: 0; } /* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-large { margin-left: 0; } /* line 508, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-large.x-rtl { margin-left: 0; margin-right: 0; } /* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-toolbar-large { margin-bottom: 5px; } /* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-large { margin-top: 5px; } /* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-large { padding-right: 10px; } /* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-large { margin-right: 10px; } /* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-bottom > .x-btn-button-default-toolbar-large, .x-btn-split-bottom > .x-btn-button-default-toolbar-large { padding-bottom: 3px; } /* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-large.x-btn-arrow-right:after { width: 28px; padding-right: 28px; background-image: url(images/button/default-toolbar-large-arrow.png); } /* line 554, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-large.x-rtl.x-btn-arrow-right:after { background-image: url(images/button/default-toolbar-large-arrow-rtl.png); } /* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-large.x-btn-arrow-bottom:after { height: 20px; background-image: url(images/button/default-toolbar-large-arrow.png); } /* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-large.x-btn-split-right:after { width: 35px; padding-right: 35px; background-image: url(images/button/default-toolbar-large-s-arrow.png); } /* line 592, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-large.x-rtl.x-btn-split-right:after { background-image: url(images/button/default-toolbar-large-s-arrow-rtl.png); } /* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-default-toolbar-large.x-btn-split-bottom:after { height: 29px; background-image: url(images/button/default-toolbar-large-s-arrow-b.png); } /* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-large { padding-right: 10px; } /* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-large { margin-right: 10px; } /* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-default-toolbar-large { border-color: #ed9200; background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); -webkit-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; -moz-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; } /* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over.x-btn-default-toolbar-large { border-color: #a16300; background-image: none; background-color: #ed9200; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ee9c19), color-stop(50%, #ed9200), color-stop(51%, #e18a00), color-stop(100%, #ed9200)); background-image: -webkit-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -moz-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -o-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: -ms-linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); background-image: linear-gradient(top, #ee9c19, #ed9200 50%, #e18a00 51%, #ed9200); } /* line 694, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over.x-btn-default-toolbar-large { -webkit-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; -moz-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; } /* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active.x-btn-default-toolbar-large, .x-btn.x-btn-pressed.x-btn-default-toolbar-large { border-color: #955411; background-image: none; background-color: #da7b19; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(50%, #cf7417), color-stop(51%, #da7b19), color-stop(100%, #dd882f)); background-image: -webkit-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -moz-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -o-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: -ms-linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); background-image: linear-gradient(top, #da7b19, #cf7417 50%, #da7b19 51%, #dd882f); } /* line 751, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active.x-btn-default-toolbar-large, .x-btn-focus.x-btn-pressed.x-btn-default-toolbar-large { -webkit-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; -moz-box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; box-shadow: #3a4252 0 1px 0px 0 inset, #3a4252 0 -1px 0px 0 inset, #3a4252 -1px 0 0px 0 inset, #3a4252 1px 0 0px 0 inset; } /* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled.x-btn-default-toolbar-large { background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-toolbar-large-tl, .x-btn-focus .x-btn-default-toolbar-large-bl, .x-btn-focus .x-btn-default-toolbar-large-tr, .x-btn-focus .x-btn-default-toolbar-large-br, .x-btn-focus .x-btn-default-toolbar-large-tc, .x-btn-focus .x-btn-default-toolbar-large-bc { background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif); } /* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-toolbar-large-ml, .x-btn-focus .x-btn-default-toolbar-large-mr { background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif); } /* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-default-toolbar-large-mc { background-color: #2a3142; background-image: url(images/btn/btn-default-toolbar-large-focus-fbg.gif); } /* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-toolbar-large-tl, .x-btn-over .x-btn-default-toolbar-large-bl, .x-btn-over .x-btn-default-toolbar-large-tr, .x-btn-over .x-btn-default-toolbar-large-br, .x-btn-over .x-btn-default-toolbar-large-tc, .x-btn-over .x-btn-default-toolbar-large-bc { background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif); } /* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-toolbar-large-ml, .x-btn-over .x-btn-default-toolbar-large-mr { background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif); } /* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-default-toolbar-large-mc { background-color: #ed9200; background-image: url(images/btn/btn-default-toolbar-large-over-fbg.gif); } /* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-tl, .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-bl, .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-tr, .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-br, .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-tc, .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-bc { background-image: url(images/btn/btn-default-toolbar-large-focus-over-corners.gif); } /* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-ml, .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-mr { background-image: url(images/btn/btn-default-toolbar-large-focus-over-sides.gif); } /* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-mc { background-color: #ed9200; background-image: url(images/btn/btn-default-toolbar-large-focus-over-fbg.gif); } /* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-tl, .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-bl, .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-tr, .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-br, .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-tc, .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-bc, .x-btn.x-btn-pressed .x-btn-default-toolbar-large-tl, .x-btn.x-btn-pressed .x-btn-default-toolbar-large-bl, .x-btn.x-btn-pressed .x-btn-default-toolbar-large-tr, .x-btn.x-btn-pressed .x-btn-default-toolbar-large-br, .x-btn.x-btn-pressed .x-btn-default-toolbar-large-tc, .x-btn.x-btn-pressed .x-btn-default-toolbar-large-bc { background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif); } /* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-ml, .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-mr, .x-btn.x-btn-pressed .x-btn-default-toolbar-large-ml, .x-btn.x-btn-pressed .x-btn-default-toolbar-large-mr { background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif); } /* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-mc, .x-btn.x-btn-pressed .x-btn-default-toolbar-large-mc { background-color: #da7b19; background-image: url(images/btn/btn-default-toolbar-large-pressed-fbg.gif); } /* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-tl, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-bl, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-tr, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-br, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-tc, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-bc, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-tl, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-bl, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-tr, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-br, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-tc, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-bc { background-image: url(images/btn/btn-default-toolbar-large-focus-pressed-corners.gif); } /* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-ml, .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-mr, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-ml, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-mr { background-image: url(images/btn/btn-default-toolbar-large-focus-pressed-sides.gif); } /* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-mc, .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-mc { background-color: #da7b19; background-image: url(images/btn/btn-default-toolbar-large-focus-pressed-fbg.gif); } /* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-toolbar-large-tl, .x-btn.x-btn-disabled .x-btn-default-toolbar-large-bl, .x-btn.x-btn-disabled .x-btn-default-toolbar-large-tr, .x-btn.x-btn-disabled .x-btn-default-toolbar-large-br, .x-btn.x-btn-disabled .x-btn-default-toolbar-large-tc, .x-btn.x-btn-disabled .x-btn-default-toolbar-large-bc { background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif); } /* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-toolbar-large-ml, .x-btn.x-btn-disabled .x-btn-default-toolbar-large-mr { background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif); } /* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-default-toolbar-large-mc { background-color: #2a3142; background-image: url(images/btn/btn-default-toolbar-large-disabled-fbg.gif); } /* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-btn-default-toolbar-large { background-image: none; } /* line 963, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-disabled.x-btn-default-toolbar-large { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } /* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-first { border-right-width: 1px !important; } /* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-first .x-btn-default-toolbar-large-mc { padding-right: 3px !important; } /* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-middle { border-right-width: 1px !important; } /* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-middle .x-btn-default-toolbar-large-mc { padding-right: 3px !important; padding-left: 3px !important; } /* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-last .x-btn-default-toolbar-large-mc { padding-left: 3px !important; } /* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-first { border-bottom-width: 1px !important; } /* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-first .x-btn-default-toolbar-large-mc { padding-bottom: 3px !important; } /* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-middle { border-bottom-width: 1px !important; } /* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-middle .x-btn-default-toolbar-large-mc { padding-top: 3px !important; padding-bottom: 3px !important; } /* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-last .x-btn-default-toolbar-large-mc { padding-top: 3px !important; } /* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-default-toolbar-large:after { content: ' '; border-style: solid; border-width: 0; position: absolute; } /* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large:after { top: 1px; right: 0; bottom: 1px; left: 0; } /* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-first:after { left: 1px; } /* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-last:after { right: 1px; } /* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large:after { top: 0; right: 1px; bottom: 0; left: 1px; } /* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-first:after { top: 1px; } /* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-last:after { bottom: 1px; } /* line 1072, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-default-toolbar-large:after { border-width: 1px; border-color: #3a4252; } /* line 1086, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-over.x-btn-default-toolbar-large:after { border-width: 1px; border-color: #3a4252; } /* line 1102, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-menu-active.x-btn-default-toolbar-large:after, .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-pressed.x-btn-default-toolbar-large:after { border-width: 1px; border-color: #3a4252; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-default-toolbar-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-over.x-btn-default-toolbar-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-over.x-btn-default-toolbar-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-large-focus-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-pressed.x-btn-default-toolbar-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-pressed.x-btn-default-toolbar-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-large-focus-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-disabled.x-btn-default-toolbar-large:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-disabled-fbg.gif)" !important; } /*</if slicer>*/ /* */ /* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-default-toolbar-large-cell > .x-grid-cell-inner { padding-top: 0; padding-bottom: 0; } /* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-default-toolbar-large-cell > .x-grid-cell-inner > .x-btn-default-toolbar-large { vertical-align: top; } /** * Creates a visual theme for a Tab * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {color} [$ui-background-color=$tab-base-color] * The background-color of Tabs * * @param {color} [$ui-background-color-focus=$tab-base-color-focus] * The background-color of focused Tabs * * @param {color} [$ui-background-color-over=$tab-base-color-over] * The background-color of hovered Tabs * * @param {color} [$ui-background-color-active=$tab-base-color-active] * The background-color of the active Tab * * @param {color} [$ui-background-color-focus-over=$tab-base-color-focus-over] * The background-color of focused hovered Tabs * * @param {color} [$ui-background-color-focus-active=$tab-base-color-focus-active] * The background-color of the active Tab when focused * * @param {color} [$ui-background-color-disabled=$tab-base-color-disabled] * The background-color of disabled Tabs * * @param {list} [$ui-border-radius=$tab-border-radius] * The border-radius of Tabs * * @param {number/list} [$ui-border-width=$tab-border-width] * The border-width of Tabs * * @param {number/list} [$ui-border-width-focus=$tab-border-width-focus] * The border-width of focused Tabs * * @param {number/list} [$ui-border-width-over=$tab-border-width-over] * The border-width of hovered Tabs * * @param {number/list} [$ui-border-width-active=$tab-border-width-active] * The border-width of active Tabs * * @param {number/list} [$ui-border-width-focus-over=$tab-border-width-focus-over] * The border-width of focused hovered Tabs * * @param {number/list} [$ui-border-width-focus-active=$tab-border-width-focus-active] * The border-width of active Tabs when focused * * @param {number/list} [$ui-border-width-disabled=$tab-border-width-disabled] * The border-width of disabled Tabs * * @param {number/list} [$ui-margin=$tab-margin] * The border-width of Tabs * * @param {number/list} [$ui-padding=$tab-padding] * The padding of Tabs * * @param {number/list} [$ui-text-padding=$tab-text-padding] * The padding of the Tab's text element * * @param {color} [$ui-border-color=$tab-border-color] * The border-color of Tabs * * @param {color} [$ui-border-color-focus=$tab-border-color-focus] * The border-color of focused Tabs * * @param {color} [$ui-border-color-over=$tab-border-color-over] * The border-color of hovered Tabs * * @param {color} [$ui-border-color-active=$tab-border-color-active] * The border-color of the active Tab * * @param {color} [$ui-border-color-focus-over=$tab-border-color-focus-over] * The border-color of focused hovered Tabs * * @param {color} [$ui-border-color-focus-active=$tab-border-color-focus-active] * The border-color of the active Tab when focused * @param {color} [$ui-border-color-disabled=$tab-border-color-disabled] * The border-color of disabled Tabs * * @param {string} [$ui-cursor=$tab-cursor] * The Tab cursor * * @param {string} [$ui-cursor-disabled=$tab-cursor-disabled] * The cursor of disabled Tabs * * @param {number} [$ui-font-size=$tab-font-size] * The font-size of Tabs * * @param {number} [$ui-font-size-focus=$tab-font-size-focus] * The font-size of focused Tabs * * @param {number} [$ui-font-size-over=$tab-font-size-over] * The font-size of hovered Tabs * * @param {number} [$ui-font-size-active=$tab-font-size-active] * The font-size of the active Tab * * @param {number} [$ui-font-size-focus-over=$tab-font-size-focus-over] * The font-size of focused hovered Tabs * * @param {number} [$ui-font-size-focus-active=$tab-font-size-focus-active] * The font-size of the active Tab when focused * * @param {number} [$ui-font-size-disabled=$tab-font-size-disabled] * The font-size of disabled Tabs * * @param {string} [$ui-font-weight=$tab-font-weight] * The font-weight of Tabs * * @param {string} [$ui-font-weight-focus=$tab-font-weight-focus] * The font-weight of focused Tabs * * @param {string} [$ui-font-weight-over=$tab-font-weight-over] * The font-weight of hovered Tabs * * @param {string} [$ui-font-weight-active=$tab-font-weight-active] * The font-weight of the active Tab * * @param {string} [$ui-font-weight-focus-over=$tab-font-weight-focus-over] * The font-weight of focused hovered Tabs * * @param {string} [$ui-font-weight-focus-active=$tab-font-weight-focus-active] * The font-weight of the active Tab when focused * * @param {string} [$ui-font-weight-disabled=$tab-font-weight-disabled] * The font-weight of disabled Tabs * * @param {string} [$ui-font-family=$tab-font-family] * The font-family of Tabs * * @param {string} [$ui-font-family-focus=$tab-font-family-focus] * The font-family of focused Tabs * * @param {string} [$ui-font-family-over=$tab-font-family-over] * The font-family of hovered Tabs * * @param {string} [$ui-font-family-active=$tab-font-family-active] * The font-family of the active Tab * * @param {string} [$ui-font-family-focus-over=$tab-font-family-focus-over] * The font-family of focused hovered Tabs * * @param {string} [$ui-font-family-focus-active=$tab-font-family-focus-active] * The font-family of the active Tab when focused * * @param {string} [$ui-font-family-disabled=$tab-font-family-disabled] * The font-family of disabled Tabs * * @param {number} [$ui-line-height=$tab-line-height] * The line-height of Tabs * * @param {color} [$ui-color=$tab-color] * The text color of Tabs * * @param {color} [$ui-color-focus=$tab-color-focus] * The text color of focused Tabs * * @param {color} [$ui-color-over=$tab-color-over] * The text color of hovered Tabs * * @param {color} [$ui-color-active=$tab-color-active] * The text color of the active Tab * * @param {color} [$ui-color-focus-over=$tab-color-focus-over] * The text color of focused hovered Tabs * * @param {color} [$ui-color-focus-active=$tab-color-focus-active] * The text color of the active Tab when focused * * @param {color} [$ui-color-disabled=$tab-color-disabled] * The text color of disabled Tabs * * @param {string/list} [$ui-background-gradient=$tab-background-gradient] * The background-gradient for Tabs. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$ui-background-gradient-focus=$tab-background-gradient-focus] * The background-gradient for focused Tabs. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$ui-background-gradient-over=$tab-background-gradient-over] * The background-gradient for hovered Tabs. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$ui-background-gradient-active=$tab-background-gradient-active] * The background-gradient for the active Tab. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$ui-background-gradient-focus-over=$tab-background-gradient-focus-over] * The background-gradient for focused hovered Tabs. Can be either the name of a * predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$ui-background-gradient-focus-active=$tab-background-gradient-focus-active] * The background-gradient for the active Tab when focused. Can be either the name of a * predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$ui-background-gradient-disabled=$tab-background-gradient-disabled] * The background-gradient for disabled Tabs. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {number} [$ui-inner-border-width=$tab-inner-border-width] * The inner border-width of Tabs * * @param {number} [$ui-inner-border-width-focus=$tab-inner-border-width-focus] * The inner border-width of focused Tabs * * @param {number} [$ui-inner-border-width-over=$tab-inner-border-width-over] * The inner border-width of hovered Tabs * * @param {number} [$ui-inner-border-width-active=$tab-inner-border-width-active] * The inner border-width of active Tabs * * @param {number} [$ui-inner-border-width-focus-over=$tab-inner-border-width-focus-over] * The inner border-width of focused hovered Tabs * * @param {number} [$ui-inner-border-width-focus-active=$tab-inner-border-width-focus-active] * The inner border-width of active Tabs when focused * * @param {number} [$ui-inner-border-width-disabled=$tab-inner-border-width-disabled] * The inner border-width of disabled Tabs * * @param {color} [$ui-inner-border-color=$tab-inner-border-color] * The inner border-color of Tabs * * @param {color} [$ui-inner-border-color-focus=$tab-inner-border-color-focus] * The inner border-color of focused Tabs * * @param {color} [$ui-inner-border-color-over=$tab-inner-border-color-over] * The inner border-color of hovered Tabs * * @param {color} [$ui-inner-border-color-active=$tab-inner-border-color-active] * The inner border-color of active Tabs * * @param {color} [$ui-inner-border-color-focus-over=$tab-inner-border-color-focus-over] * The inner border-color of focused hovered Tabs * * @param {color} [$ui-inner-border-color-focus-active=$tab-inner-border-color-focus-active] * The inner border-color of active Tabs when focused * * @param {color} [$ui-inner-border-color-disabled=$tab-inner-border-color-disabled] * The inner border-color of disabled Tabs * * @param {boolean} [$ui-inner-border-collapse=$tab-inner-border-collapse] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * * @param {boolean} [$ui-inner-border-collapse-focus=$tab-inner-border-collapse-focus] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is focused * * @param {boolean} [$ui-inner-border-collapse-over=$tab-inner-border-collapse-over] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is hovered * * @param {boolean} [$ui-inner-border-collapse-active=$tab-inner-border-collapse-active] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is active * * @param {boolean} [$ui-inner-border-collapse-focus-over=$tab-inner-border-collapse-focus-over] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is focused and hovered * * @param {boolean} [$ui-inner-border-collapse-focus-active=$tab-inner-border-collapse-focus-active] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is focused and active * * @param {boolean} [$ui-inner-border-collapse-disabled=$tab-inner-border-collapse-disabled] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is disabled * * @param {number} [$ui-body-outline-width-focus=$tab-body-outline-width-focus] * The body outline width of focused Tabs * * @param {string} [$ui-body-outline-style-focus=$tab-body-outline-style-focus] * The body outline-style of focused Tabs * * @param {color} [$ui-body-outline-color-focus=$tab-body-outline-color-focus] * The body outline color of focused Tabs * * @param {number} [$ui-icon-width=$tab-icon-width] * The width of the Tab close icon * * @param {number} [$ui-icon-height=$tab-icon-height] * The height of the Tab close icon * * @param {number} [$ui-icon-spacing=$tab-icon-spacing] * the space in between the text and the close button * * @param {list} [$ui-icon-background-position=$tab-icon-background-position] * The background-position of Tab icons * * @param {color} [$ui-glyph-color=$tab-glyph-color] * The color of Tab glyph icons * * @param {color} [$ui-glyph-color-focus=$tab-glyph-color-focus] * The color of a Tab glyph icon when the Tab is focused * * @param {color} [$ui-glyph-color-over=$tab-glyph-color-over] * The color of a Tab glyph icon when the Tab is hovered * * @param {color} [$ui-glyph-color-active=$tab-glyph-color-active] * The color of a Tab glyph icon when the Tab is active * * @param {color} [$ui-glyph-color-focus-over=$tab-glyph-color-focus-over] * The color of a Tab glyph icon when the Tab is focused and hovered * * @param {color} [$ui-glyph-color-focus-active=$tab-glyph-color-focus-active] * The color of a Tab glyph icon when the Tab is focused and active * * @param {color} [$ui-glyph-color-disabled=$tab-glyph-color-disabled] * The color of a Tab glyph icon when the Tab is disabled * * @param {number} [$ui-glyph-opacity=$tab-glyph-opacity] * The opacity of a Tab glyph icon * * @param {number} [$ui-glyph-opacity-disabled=$tab-glyph-opacity-disabled] * The opacity of a Tab glyph icon when the Tab is disabled * * @param {number} [$ui-opacity-disabled=$tab-opacity-disabled] * opacity to apply to the tab's main element when the tab is disabled * * @param {number} [$ui-text-opacity-disabled=$tab-text-opacity-disabled] * opacity to apply to the tab's text element when the tab is disabled * * @param {number} [$ui-icon-opacity-disabled=$tab-icon-opacity-disabled] * opacity to apply to the tab's icon element when the tab is disabled * * @param {number} [$ui-closable-icon-width=$tab-closable-icon-width] * The width of the Tab close icon * * @param {number} [$ui-closable-icon-height=$tab-closable-icon-height] * The height of the Tab close icon * * @param {number} [$ui-closable-icon-top=$tab-closable-icon-top] * The distance to offset the Tab close icon from the top of the tab * * @param {number} [$ui-closable-icon-right=$tab-closable-icon-right] * The distance to offset the Tab close icon from the right of the tab * * @param {number} [$ui-closable-icon-spacing=$tab-closable-icon-spacing] * The space in between the text and the close button * * @member Ext.tab.Tab */ /** * Creates a visual theme for a Tab Bar * * Note: When creating a tab bar UI with the extjs-tab-bar-ui mixin, * you will need to create a corresponding tab-ui of the same name. * This will ensure that the tabs render properly in your theme. * Not creating a matching tab theme may result in unpredictable * tab rendering. * * See `Ext.tab.Tab-css_mixin-extjs-tab-ui` * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number} [$ui-strip-height=$tabbar-strip-height] * The height of the Tab Bar strip * * @param {number/list} [$ui-strip-border-width=$tabbar-strip-border-width] * The border-width of the Tab Bar strip * * @param {color} [$ui-strip-border-color=$tabbar-strip-border-color] * The border-color of the Tab Bar strip * * @param {color} [$ui-strip-background-color=$tabbar-strip-background-color] * The background-color of the Tab Bar strip * * @param {number/list} [$ui-border-width=$tabbar-border-width] * The border-width of the Tab Bar * * @param {color} [$ui-border-color=$tabbar-border-color] * The border-color of the Tab Bar * * @param {number/list} [$ui-padding=$tabbar-padding] * The padding of the Tab Bar * * @param {color} [$ui-background-color=$tabbar-background-color] * The background color of the Tab Bar * * @param {string/list} [$ui-background-gradient=$tabbar-background-gradient] * The background-gradient of the Tab Bar. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {number} [$ui-scroller-width=$tabbar-scroller-width] * The width of the Tab Bar scrollers * * @param {number} [$ui-scroller-height=$tabbar-scroller-height] * The height of the Tab Bar scrollers * * @param {number/list} [$ui-scroller-top-margin=$tabbar-scroller-top-margin] * The margin of "top" scroller buttons * * @param {number/list} [$ui-scroller-right-margin=$tabbar-scroller-right-margin] * The margin of "right" scroller buttons * * @param {number/list} [$ui-scroller-bottom-margin=$tabbar-scroller-bottom-margin] * The margin of "bottom" scroller buttons * * @param {number/list} [$ui-scroller-left-margin=$tabbar-scroller-left-margin] * The margin of "left" scroller buttons * * @param {string} [$ui-scroller-cursor=$tabbar-scroller-cursor] * The cursor of the Tab Bar scrollers * * @param {string} [$ui-scroller-cursor-disabled=$tabbar-scroller-cursor-disabled] * The cursor of disabled Tab Bar scrollers * * @param {number} [$ui-scroller-opacity=$tabbar-scroller-opacity] * The opacity of Tab Bar scrollers * * @param {number} [$ui-scroller-opacity-over=$tabbar-scroller-opacity-over] * The opacity of hovered Tab Bar scrollers * * @param {number} [$ui-scroller-opacity-pressed=$tabbar-scroller-opacity-pressed] * The opacity of pressed Tab Bar scrollers * * @param {number} [$ui-scroller-opacity-disabled=$tabbar-scroller-opacity-disabled] * The opacity of disabled Tab Bar scrollers * * @param {boolean} [$ui-classic-scrollers=$tabbar-classic-scrollers] * `true` to use classic-style scroller buttons. When `true` scroller buttons are given * their hover state by changing their background-position, When `false` scroller buttons * are given their hover state by applying opacity. * * @param {number} [$ui-tab-height] * The minimum height of tabs that will be used in this tabbar UI. The tabbar body is given * a min-height so that it does not collapse when it does not contain any tabs, but it * is allowed to expand to be larger than the default tab height if it contains a tab * that's larger than the default height. * * @member Ext.tab.Bar */ /** * Creates a visual theme for a Tab Panel * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {color} [$ui-tab-background-color=$tab-base-color] * The background-color of Tabs * * @param {color} [$ui-tab-background-color-focus=$tab-base-color-focus] * The background-color of focused Tabs * * @param {color} [$ui-tab-background-color-over=$tab-base-color-over] * The background-color of hovered Tabs * * @param {color} [$ui-tab-background-color-active=$tab-base-color-active] * The background-color of the active Tab * * @param {color} [$ui-tab-background-color-focus-over=$tab-base-color-focus-over] * The background-color of focused hovered Tabs * * @param {color} [$ui-tab-background-color-focus-active=$tab-base-color-focus-active] * The background-color of the active Tab when focused * * @param {color} [$ui-tab-background-color-disabled=$tab-base-color-disabled] * The background-color of disabled Tabs * * @param {list} [$ui-tab-border-radius=$tab-border-radius] * The border-radius of Tabs * * @param {number} [$ui-tab-border-width=$tab-border-width] * The border-width of Tabs * * @param {number/list} [$ui-tab-border-width-focus=$tab-border-width-focus] * The border-width of focused Tabs * * @param {number/list} [$ui-tab-border-width-over=$tab-border-width-over] * The border-width of hovered Tabs * * @param {number/list} [$ui-tab-border-width-active=$tab-border-width-active] * The border-width of active Tabs * * @param {number/list} [$ui-tab-border-width-focus-over=$tab-border-width-focus-over] * The border-width of focused hovered Tabs * * @param {number/list} [$ui-tab-border-width-focus-active=$tab-border-width-focus-active] * The border-width of active Tabs when focused * * @param {number/list} [$ui-tab-border-width-disabled=$tab-border-width-disabled] * The border-width of disabled Tabs * * @param {number/list} [$ui-tab-margin=$tab-margin] * The border-width of Tabs * * @param {number/list} [$ui-tab-padding=$tab-padding] * The padding of Tabs * * @param {number/list} [$ui-tab-text-padding=$tab-text-padding] * The padding of the Tab's text element * * @param {color} [$ui-tab-border-color=$tab-border-color] * The border-color of Tabs * * @param {color} [$ui-tab-border-color-focus=$tab-border-color-focus] * The border-color of focused Tabs * * @param {color} [$ui-tab-border-color-over=$tab-border-color-over] * The border-color of hovered Tabs * * @param {color} [$ui-tab-border-color-active=$tab-border-color-active] * The border-color of the active Tab * * @param {color} [$ui-tab-border-color-focus-over=$tab-border-color-focus-over] * The border-color of focused hovered Tabs * * @param {color} [$ui-tab-border-color-focus-active=$tab-border-color-focus-active] * The border-color of the active Tab when focused * @param {color} [$ui-tab-border-color-disabled=$tab-border-color-disabled] * The border-color of disabled Tabs * * @param {string} [$ui-tab-cursor=$tab-cursor] * The Tab cursor * * @param {string} [$ui-tab-cursor-disabled=$tab-cursor-disabled] * The cursor of disabled Tabs * * @param {number} [$ui-tab-font-size=$tab-font-size] * The font-size of Tabs * * @param {number} [$ui-tab-font-size-focus=$tab-font-size-focus] * The font-size of focused Tabs * * @param {number} [$ui-tab-font-size-over=$tab-font-size-over] * The font-size of hovered Tabs * * @param {number} [$ui-tab-font-size-active=$tab-font-size-active] * The font-size of the active Tab * * @param {number} [$ui-tab-font-size-focus-over=$tab-font-size-focus-over] * The font-size of focused hovered Tabs * * @param {number} [$ui-tab-font-size-focus-active=$tab-font-size-focus-active] * The font-size of the active Tab when focused * * @param {number} [$ui-tab-font-size-disabled=$tab-font-size-disabled] * The font-size of disabled Tabs * * @param {string} [$ui-tab-font-weight=$tab-font-weight] * The font-weight of Tabs * * @param {string} [$ui-tab-font-weight-focus=$tab-font-weight-focus] * The font-weight of focused Tabs * * @param {string} [$ui-tab-font-weight-over=$tab-font-weight-over] * The font-weight of hovered Tabs * * @param {string} [$ui-tab-font-weight-active=$tab-font-weight-active] * The font-weight of the active Tab * * @param {string} [$ui-tab-font-weight-focus-over=$tab-font-weight-focus-over] * The font-weight of focused hovered Tabs * * @param {string} [$ui-tab-font-weight-focus-active=$tab-font-weight-focus-active] * The font-weight of the active Tab when focused * * @param {string} [$ui-tab-font-weight-disabled=$tab-font-weight-disabled] * The font-weight of disabled Tabs * * @param {string} [$ui-tab-font-family=$tab-font-family] * The font-family of Tabs * * @param {string} [$ui-tab-font-family-focus=$tab-font-family-focus] * The font-family of focused Tabs * * @param {string} [$ui-tab-font-family-over=$tab-font-family-over] * The font-family of hovered Tabs * * @param {string} [$ui-tab-font-family-active=$tab-font-family-active] * The font-family of the active Tab * * @param {string} [$ui-tab-font-family-focus-over=$tab-font-family-focus-over] * The font-family of focused hovered Tabs * * @param {string} [$ui-tab-font-family-focus-active=$tab-font-family-focus-active] * The font-family of the active Tab when focused * * @param {string} [$ui-tab-font-family-disabled=$tab-font-family-disabled] * The font-family of disabled Tabs * * @param {number} [$ui-tab-line-height=$tab-line-height] * The line-height of Tabs * * @param {color} [$ui-tab-color=$tab-color] * The text color of Tabs * * @param {color} [$ui-tab-color-focus=$tab-color-focus] * The text color of focused Tabs * * @param {color} [$ui-tab-color-over=$tab-color-over] * The text color of hovered Tabs * * @param {color} [$ui-tab-color-active=$tab-color-active] * The text color of the active Tab * * @param {color} [$ui-tab-color-focus-over=$tab-color-focus-over] * The text color of focused hovered Tabs * * @param {color} [$ui-tab-color-focus-active=$tab-color-focus-active] * The text color of the active Tab when focused * * @param {color} [$ui-tab-color-disabled=$tab-color-disabled] * The text color of disabled Tabs * * @param {string/list} [$ui-tab-background-gradient=$tab-background-gradient] * The background-gradient for Tabs. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$ui-tab-background-gradient-focus=$tab-background-gradient-focus] * The background-gradient for focused Tabs. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$ui-tab-background-gradient-over=$tab-background-gradient-over] * The background-gradient for hovered Tabs. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$ui-tab-background-gradient-active=$tab-background-gradient-active] * The background-gradient for the active Tab. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$ui-tab-background-gradient-focus-over=$tab-background-gradient-focus-over] * The background-gradient for focused hovered Tabs. Can be either the name of a * predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$ui-tab-background-gradient-focus-active=$tab-background-gradient-focus-active] * The background-gradient for the active Tab when focused. Can be either the name of a * predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {string/list} [$ui-tab-background-gradient-disabled=$tab-background-gradient-disabled] * The background-gradient for disabled Tabs. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {number} [$ui-tab-inner-border-width=$tab-inner-border-width] * The inner border-width of Tabs * * @param {number} [$ui-tab-inner-border-width-focus=$tab-inner-border-width-focus] * The inner border-width of focused Tabs * * @param {number} [$ui-tab-inner-border-width-over=$tab-inner-border-width-over] * The inner border-width of hovered Tabs * * @param {number} [$ui-tab-inner-border-width-active=$tab-inner-border-width-active] * The inner border-width of active Tabs * * @param {number} [$ui-tab-inner-border-width-focus-over=$tab-inner-border-width-focus-over] * The inner border-width of focused hovered Tabs * * @param {number} [$ui-tab-inner-border-width-focus-active=$tab-inner-border-width-focus-active] * The inner border-width of active Tabs when focused * * @param {number} [$ui-tab-inner-border-width-disabled=$tab-inner-border-width-disabled] * The inner border-width of disabled Tabs * * @param {color} [$ui-tab-inner-border-color=$tab-inner-border-color] * The inner border-color of Tabs * * @param {color} [$ui-tab-inner-border-color-focus=$tab-inner-border-color-focus] * The inner border-color of focused Tabs * * @param {color} [$ui-tab-inner-border-color-over=$tab-inner-border-color-over] * The inner border-color of hovered Tabs * * @param {color} [$ui-tab-inner-border-color-active=$tab-inner-border-color-active] * The inner border-color of active Tabs * * @param {color} [$ui-tab-inner-border-color-focus-over=$tab-inner-border-color-focus-over] * The inner border-color of focused hovered Tabs * * @param {color} [$ui-tab-inner-border-color-focus-active=$tab-inner-border-color-focus-active] * The inner border-color of active Tabs when focused * * @param {color} [$ui-tab-inner-border-color-disabled=$tab-inner-border-color-disabled] * The inner border-color of disabled Tabs * * @param {boolean} [$ui-tab-inner-border-collapse=$tab-inner-border-collapse] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * * @param {boolean} [$ui-tab-inner-border-collapse-focus=$tab-inner-border-collapse-focus] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is focused * * @param {boolean} [$ui-tab-inner-border-collapse-over=$tab-inner-border-collapse-over] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is hovered * * @param {boolean} [$ui-tab-inner-border-collapse-active=$tab-inner-border-collapse-active] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is active * * @param {boolean} [$ui-tab-inner-border-collapse-focus-over=$tab-inner-border-collapse-focus-over] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is focused and hovered * * @param {boolean} [$ui-tab-inner-border-collapse-focus-active=$tab-inner-border-collapse-focus-active] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is focused and active * * @param {boolean} [$ui-tab-inner-border-collapse-disabled=$tab-inner-border-collapse-disabled] * `true` to suppress the inner border of the tab on the side adjacent to the tab strip * when the tab is disabled * * @param {number} [$ui-tab-body-outline-width-focus=$tab-body-outline-width-focus] * The body outline width of focused Tabs * * @param {string} [$ui-tab-body-outline-style-focus=$tab-body-outline-style-focus] * The body outline-style of focused Tabs * * @param {color} [$ui-tab-body-outline-color-focus=$tab-body-outline-color-focus] * The body outline color of focused Tabs * * @param {number} [$ui-tab-icon-width=$tab-icon-width] * The width of the Tab close icon * * @param {number} [$ui-tab-icon-height=$tab-icon-height] * The height of the Tab close icon * * @param {number} [$ui-tab-icon-spacing=$tab-icon-spacing] * the space in between the text and the close button * * @param {list} [$ui-tab-icon-background-position=$tab-icon-background-position] * The background-position of Tab icons * * @param {color} [$ui-tab-glyph-color=$tab-glyph-color] * The color of Tab glyph icons * * @param {color} [$ui-tab-glyph-color-focus=$tab-glyph-color-focus] * The color of a Tab glyph icon when the Tab is focused * * @param {color} [$ui-tab-glyph-color-over=$tab-glyph-color-over] * The color of a Tab glyph icon when the Tab is hovered * * @param {color} [$ui-tab-glyph-color-active=$tab-glyph-color-active] * The color of a Tab glyph icon when the Tab is active * * @param {color} [$ui-tab-glyph-color-focus-over=$tab-glyph-color-focus-over] * The color of a Tab glyph icon when the Tab is focused and hovered * * @param {color} [$ui-tab-glyph-color-focus-active=$tab-glyph-color-focus-active] * The color of a Tab glyph icon when the Tab is focused and active * * @param {color} [$ui-tab-glyph-color-disabled=$tab-glyph-color-disabled] * The color of a Tab glyph icon when the Tab is disabled * * @param {number} [$ui-tab-glyph-opacity=$tab-glyph-opacity] * The opacity of a Tab glyph icon * * @param {number} [$ui-tab-glyph-opacity-disabled=$tab-glyph-opacity-disabled] * The opacity of a Tab glyph icon when the Tab is disabled * * @param {number} [$ui-tab-opacity-disabled=$tab-opacity-disabled] * opacity to apply to the tab's main element when the tab is disabled * * @param {number} [$ui-tab-text-opacity-disabled=$tab-text-opacity-disabled] * opacity to apply to the tab's text element when the tab is disabled * * @param {number} [$ui-tab-icon-opacity-disabled=$tab-icon-opacity-disabled] * opacity to apply to the tab's icon element when the tab is disabled * * @param {number} [$ui-strip-height=$tabbar-strip-height] * The height of the Tab Bar strip * * @param {number/list} [$ui-strip-border-width=$tabbar-strip-border-width] * The border-width of the Tab Bar strip * * @param {color} [$ui-strip-border-color=$tabbar-strip-border-color] * The border-color of the Tab Bar strip * * @param {color} [$ui-strip-background-color=$tabbar-strip-background-color] * The background-color of the Tab Bar strip * * @param {number/list} [$ui-bar-border-width=$tabbar-border-width] * The border-width of the Tab Bar * * @param {color} [$ui-bar-border-color=$tabbar-border-color] * The border-color of the Tab Bar * * @param {number/list} [$ui-bar-padding=$tabbar-padding] * The padding of the Tab Bar * * @param {color} [$ui-bar-background-color=$tabbar-background-color] * The background color of the Tab Bar * * @param {string/list} [$ui-bar-background-gradient=$tabbar-background-gradient] * The background-gradient of the Tab Bar. Can be either the name of a predefined gradient * or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {number} [$ui-bar-scroller-width=$tabbar-scroller-width] * The width of the Tab Bar scrollers * * @param {string} [$ui-bar-scroller-cursor=$tabbar-scroller-cursor] * The cursor of the Tab Bar scrollers * * @param {string} [$ui-bar-scroller-cursor-disabled=$tabbar-scroller-cursor-disabled] * The cursor of disabled Tab Bar scrollers * * @param {number} [$ui-bar-scroller-opacity=$tabbar-scroller-opacity] * The opacity of Tab Bar scrollers * * @param {number} [$ui-bar-scroller-opacity-over=$tabbar-scroller-opacity-over] * The opacity of hovered Tab Bar scrollers * * @param {number} [$ui-bar-scroller-opacity-pressed=$tabbar-scroller-opacity-pressed] * The opacity of pressed Tab Bar scrollers * * @param {number} [$ui-bar-scroller-opacity-disabled=$tabbar-scroller-opacity-disabled] * The opacity of disabled Tab Bar scrollers * * @param {number} [$ui-tab-closable-icon-width=$tab-closable-icon-width] * The width of the Tab close icon * * @param {number} [$ui-tab-closable-icon-height=$tab-closable-icon-height] * The height of the Tab close icon * * @param {number} [$ui-tab-closable-icon-top=$tab-closable-icon-top] * The distance to offset the Tab close icon from the top of the tab * * @param {number} [$ui-tab-closable-icon-right=$tab-closable-icon-right] * The distance to offset the Tab close icon from the right of the tab * * @param {number} [$ui-tab-closable-icon-spacing=$tab-closable-icon-spacing] * the space in between the text and the close button * * @member Ext.tab.Panel */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0; padding: 7px 12px 6px 12px; border-width: 1px; border-style: solid; background-color: #616f8c; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-mc { background-color: #616f8c; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-tab-default-top { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-frameInfo { font-family: th-3-3-3-3-1-1-1-1-7-12-6-12; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-tr, .x-tab-default-top-br, .x-tab-default-top-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-tl, .x-tab-default-top-bl, .x-tab-default-top-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-tl, .x-tab-default-top-bl, .x-tab-default-top-tr, .x-tab-default-top-br, .x-tab-default-top-tc, .x-tab-default-top-bc, .x-tab-default-top-ml, .x-tab-default-top-mr { background-image: url(images/tab/tab-default-top-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-ml, .x-tab-default-top-mr { background-image: url(images/tab/tab-default-top-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-top-mc { padding: 5px 10px 4px 10px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-default-top:before { display: none; content: "x-slicer:frame:3px 3px 3px 3px, corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom { -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; border-top-left-radius: 0; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0; -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; padding: 6px 12px 7px 12px; border-width: 1px 1px 1px 1px; border-style: solid; background-color: #616f8c; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-mc { background-color: #616f8c; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-tab-default-bottom { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-frameInfo { font-family: th-3-3-3-3-1-1-1-1-6-12-7-12; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-ml { background-position: 0 bottom; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-mr { background-position: right bottom; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-tr, .x-tab-default-bottom-br, .x-tab-default-bottom-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-tl, .x-tab-default-bottom-bl, .x-tab-default-bottom-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-tl, .x-tab-default-bottom-bl, .x-tab-default-bottom-tr, .x-tab-default-bottom-br, .x-tab-default-bottom-tc, .x-tab-default-bottom-bc, .x-tab-default-bottom-ml, .x-tab-default-bottom-mr { background-image: url(images/tab/tab-default-bottom-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-ml, .x-tab-default-bottom-mr { background-image: url(images/tab/tab-default-bottom-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-bottom-mc { padding: 4px 10px 5px 10px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-default-bottom:before { display: none; content: "x-slicer:frame:3px 3px 3px 3px, corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0; -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; padding: 7px 12px 6px 12px; border-width: 1px 1px 1px 1px; border-style: solid; background-color: #616f8c; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-mc { background-color: #616f8c; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-tab-default-left { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-frameInfo { font-family: th-3-3-3-3-1-1-1-1-7-12-6-12; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-tr, .x-tab-default-left-br, .x-tab-default-left-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-tl, .x-tab-default-left-bl, .x-tab-default-left-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-tl, .x-tab-default-left-bl, .x-tab-default-left-tr, .x-tab-default-left-br, .x-tab-default-left-tc, .x-tab-default-left-bc, .x-tab-default-left-ml, .x-tab-default-left-mr { background-image: url(images/tab/tab-default-left-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-ml, .x-tab-default-left-mr { background-image: url(images/tab/tab-default-left-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-left-mc { padding: 5px 10px 4px 10px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-default-left:before { display: none; content: "x-slicer:frame:3px 3px 3px 3px, corners:url(images/tab/tab-default-left-corners.gif), sides:url(images/tab/tab-default-left-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right { -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; border-top-left-radius: 0; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0; padding: 7px 12px 6px 12px; border-width: 1px 1px 1px 1px; border-style: solid; background-color: #616f8c; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-mc { background-color: #616f8c; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-tab-default-right { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-frameInfo { font-family: th-3-3-3-3-1-1-1-1-7-12-6-12; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-tr, .x-tab-default-right-br, .x-tab-default-right-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-tl, .x-tab-default-right-bl, .x-tab-default-right-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-tl, .x-tab-default-right-bl, .x-tab-default-right-tr, .x-tab-default-right-br, .x-tab-default-right-tc, .x-tab-default-right-bc, .x-tab-default-right-ml, .x-tab-default-right-mr { background-image: url(images/tab/tab-default-right-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-ml, .x-tab-default-right-mr { background-image: url(images/tab/tab-default-right-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tab-default-right-mc { padding: 5px 10px 4px 10px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-default-right:before { display: none; content: "x-slicer:frame:3px 3px 3px 3px, corners:url(images/tab/tab-default-right-corners.gif), sides:url(images/tab/tab-default-right-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 1073, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default { border-color: #2e3746; cursor: pointer; } /* line 1083, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-top { margin: 0 1px 0 0; } /* line 1087, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-top.x-rtl { margin: 0 0 0 1px; } /* line 1092, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-top.x-tab-rotate-left { margin: 0 0 0 1px; } /* line 1096, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-top.x-tab-rotate-left.x-rtl { margin: 0 1px 0 0; } /* line 1114, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-top.x-tab-focus { -webkit-box-shadow: #dfe2e8 0 1px 0px 0 inset, #dfe2e8 0 -1px 0px 0 inset, #dfe2e8 -1px 0 0px 0 inset, #dfe2e8 1px 0 0px 0 inset; -moz-box-shadow: #dfe2e8 0 1px 0px 0 inset, #dfe2e8 0 -1px 0px 0 inset, #dfe2e8 -1px 0 0px 0 inset, #dfe2e8 1px 0 0px 0 inset; box-shadow: #dfe2e8 0 1px 0px 0 inset, #dfe2e8 0 -1px 0px 0 inset, #dfe2e8 -1px 0 0px 0 inset, #dfe2e8 1px 0 0px 0 inset; } /* line 1143, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-top.x-tab-focus.x-tab-over { -webkit-box-shadow: #e1e4ea 0 1px 0px 0 inset, #e1e4ea 0 -1px 0px 0 inset, #e1e4ea -1px 0 0px 0 inset, #e1e4ea 1px 0 0px 0 inset; -moz-box-shadow: #e1e4ea 0 1px 0px 0 inset, #e1e4ea 0 -1px 0px 0 inset, #e1e4ea -1px 0 0px 0 inset, #e1e4ea 1px 0 0px 0 inset; box-shadow: #e1e4ea 0 1px 0px 0 inset, #e1e4ea 0 -1px 0px 0 inset, #e1e4ea -1px 0 0px 0 inset, #e1e4ea 1px 0 0px 0 inset; } /* line 1172, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-top.x-tab-focus.x-tab-active { -webkit-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; -moz-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; } /* line 1198, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-right { margin: 0 0 1px 0; } /* line 1202, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-right.x-rtl { margin: 0 0 1px 0; } /* line 1207, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-right.x-tab-rotate-right { margin: 1px 0 0 0; } /* line 1211, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-right.x-tab-rotate-right.x-rtl { margin: 1px 0 0 0; } /* line 1229, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-right.x-tab-focus { -webkit-box-shadow: #dfe2e8 0 1px 0px 0 inset, #dfe2e8 0 -1px 0px 0 inset, #dfe2e8 -1px 0 0px 0 inset, #dfe2e8 1px 0 0px 0 inset; -moz-box-shadow: #dfe2e8 0 1px 0px 0 inset, #dfe2e8 0 -1px 0px 0 inset, #dfe2e8 -1px 0 0px 0 inset, #dfe2e8 1px 0 0px 0 inset; box-shadow: #dfe2e8 0 1px 0px 0 inset, #dfe2e8 0 -1px 0px 0 inset, #dfe2e8 -1px 0 0px 0 inset, #dfe2e8 1px 0 0px 0 inset; } /* line 1258, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-right.x-tab-focus.x-tab-over { -webkit-box-shadow: #e1e4ea 0 1px 0px 0 inset, #e1e4ea 0 -1px 0px 0 inset, #e1e4ea -1px 0 0px 0 inset, #e1e4ea 1px 0 0px 0 inset; -moz-box-shadow: #e1e4ea 0 1px 0px 0 inset, #e1e4ea 0 -1px 0px 0 inset, #e1e4ea -1px 0 0px 0 inset, #e1e4ea 1px 0 0px 0 inset; box-shadow: #e1e4ea 0 1px 0px 0 inset, #e1e4ea 0 -1px 0px 0 inset, #e1e4ea -1px 0 0px 0 inset, #e1e4ea 1px 0 0px 0 inset; } /* line 1287, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-right.x-tab-focus.x-tab-active { -webkit-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; -moz-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; } /* line 1313, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-bottom { margin: 0 1px 0 0; } /* line 1317, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-bottom.x-rtl { margin: 0 0 0 1px; } /* line 1322, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-bottom.x-tab-rotate-left { margin: 0 0 0 1px; } /* line 1326, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-bottom.x-tab-rotate-left.x-rtl { margin: 0 1px 0 0; } /* line 1344, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-bottom.x-tab-focus { -webkit-box-shadow: #dfe2e8 0 1px 0px 0 inset, #dfe2e8 0 -1px 0px 0 inset, #dfe2e8 -1px 0 0px 0 inset, #dfe2e8 1px 0 0px 0 inset; -moz-box-shadow: #dfe2e8 0 1px 0px 0 inset, #dfe2e8 0 -1px 0px 0 inset, #dfe2e8 -1px 0 0px 0 inset, #dfe2e8 1px 0 0px 0 inset; box-shadow: #dfe2e8 0 1px 0px 0 inset, #dfe2e8 0 -1px 0px 0 inset, #dfe2e8 -1px 0 0px 0 inset, #dfe2e8 1px 0 0px 0 inset; } /* line 1373, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-bottom.x-tab-focus.x-tab-over { -webkit-box-shadow: #e1e4ea 0 1px 0px 0 inset, #e1e4ea 0 -1px 0px 0 inset, #e1e4ea -1px 0 0px 0 inset, #e1e4ea 1px 0 0px 0 inset; -moz-box-shadow: #e1e4ea 0 1px 0px 0 inset, #e1e4ea 0 -1px 0px 0 inset, #e1e4ea -1px 0 0px 0 inset, #e1e4ea 1px 0 0px 0 inset; box-shadow: #e1e4ea 0 1px 0px 0 inset, #e1e4ea 0 -1px 0px 0 inset, #e1e4ea -1px 0 0px 0 inset, #e1e4ea 1px 0 0px 0 inset; } /* line 1402, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-bottom.x-tab-focus.x-tab-active { -webkit-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; -moz-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; } /* line 1428, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-left { margin: 0 0 1px 0; } /* line 1432, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-left.x-rtl { margin: 0 0 1px 0; } /* line 1437, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-left.x-tab-rotate-right { margin: 1px 0 0 0; } /* line 1441, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-left.x-tab-rotate-right.x-rtl { margin: 1px 0 0 0; } /* line 1459, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-left.x-tab-focus { -webkit-box-shadow: #dfe2e8 0 1px 0px 0 inset, #dfe2e8 0 -1px 0px 0 inset, #dfe2e8 -1px 0 0px 0 inset, #dfe2e8 1px 0 0px 0 inset; -moz-box-shadow: #dfe2e8 0 1px 0px 0 inset, #dfe2e8 0 -1px 0px 0 inset, #dfe2e8 -1px 0 0px 0 inset, #dfe2e8 1px 0 0px 0 inset; box-shadow: #dfe2e8 0 1px 0px 0 inset, #dfe2e8 0 -1px 0px 0 inset, #dfe2e8 -1px 0 0px 0 inset, #dfe2e8 1px 0 0px 0 inset; } /* line 1488, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-left.x-tab-focus.x-tab-over { -webkit-box-shadow: #e1e4ea 0 1px 0px 0 inset, #e1e4ea 0 -1px 0px 0 inset, #e1e4ea -1px 0 0px 0 inset, #e1e4ea 1px 0 0px 0 inset; -moz-box-shadow: #e1e4ea 0 1px 0px 0 inset, #e1e4ea 0 -1px 0px 0 inset, #e1e4ea -1px 0 0px 0 inset, #e1e4ea 1px 0 0px 0 inset; box-shadow: #e1e4ea 0 1px 0px 0 inset, #e1e4ea 0 -1px 0px 0 inset, #e1e4ea -1px 0 0px 0 inset, #e1e4ea 1px 0 0px 0 inset; } /* line 1517, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-left.x-tab-focus.x-tab-active { -webkit-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; -moz-box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; box-shadow: #fbe9cc 0 1px 0px 0 inset, #fbe9cc 0 -1px 0px 0 inset, #fbe9cc -1px 0 0px 0 inset, #fbe9cc 1px 0 0px 0 inset; } /* line 1543, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-button-default { height: 16px; } /* line 1548, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-inner-default { font: bold 15px/16px helvetica, arial, verdana, sans-serif; color: white; max-width: 100%; } /* line 1559, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-icon-right > .x-tab-inner-default, .x-tab-icon-left > .x-tab-inner-default { max-width: calc(100% - 16px); } /* line 1566, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-icon-el-default { height: 16px; line-height: 16px; background-position: center center; } /* line 1570, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-icon-left > .x-tab-icon-el-default, .x-tab-icon-right > .x-tab-icon-el-default { width: 16px; } /* line 1575, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-icon-top > .x-tab-icon-el-default, .x-tab-icon-bottom > .x-tab-icon-el-default { min-width: 16px; } /* line 1582, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-icon-el-default.x-tab-glyph { font-size: 16px; line-height: 16px; color: white; opacity: 0.5; } /* line 1598, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-ie8 .x-tab-icon-el-default.x-tab-glyph { color: #b0b7c5; } /* line 1605, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-text.x-tab-icon-left > .x-tab-icon-el-default { margin-right: 6px; } /* line 1609, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-text.x-tab-icon-left > .x-tab-icon-el-default.x-rtl { margin-right: 0; margin-left: 6px; } /* line 1616, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-text.x-tab-icon-right > .x-tab-icon-el-default { margin-left: 6px; } /* line 1620, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-text.x-tab-icon-right > .x-tab-icon-el-default.x-rtl { margin-left: 0; margin-right: 6px; } /* line 1627, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-text.x-tab-icon-top > .x-tab-icon-el-default { margin-bottom: 6px; } /* line 1631, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-text.x-tab-icon-bottom > .x-tab-icon-el-default { margin-top: 6px; } /* line 1636, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-default { border-color: #616f8c; } /* line 1703, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-over.x-tab-default { border-color: #6d7b9a; background-color: #6d7b9a; } /* line 1814, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active.x-tab-default { border-color: #74400e; background-color: #ed9200; } /* line 1835, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active.x-tab-default .x-tab-glyph { color: white; } /* line 1843, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-ie8 .x-tab.x-tab-active.x-tab-default .x-tab-glyph { color: #f6c87f; } /* line 1922, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled.x-tab-default { cursor: default; } /* line 1939, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled.x-tab-default .x-tab-inner-default { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); opacity: 0.3; } /* line 1958, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled.x-tab-default .x-tab-icon-el-default { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } /* line 1963, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled.x-tab-default .x-tab-glyph { color: white; opacity: 0.3; filter: none; } /* line 1978, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-ie8 .x-tab.x-tab-disabled.x-tab-default .x-tab-glyph { color: #909aae; } /* line 1998, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-nbr .x-tab-default { background-image: none; } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-over .x-tab-default-top-tl, .x-tab-over .x-tab-default-top-bl, .x-tab-over .x-tab-default-top-tr, .x-tab-over .x-tab-default-top-br, .x-tab-over .x-tab-default-top-tc, .x-tab-over .x-tab-default-top-bc { background-image: url(images/tab/tab-default-top-over-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-over .x-tab-default-top-ml, .x-tab-over .x-tab-default-top-mr { background-image: url(images/tab/tab-default-top-over-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-over .x-tab-default-top-mc { background-color: #6d7b9a; background-repeat: repeat-x; background-image: url(images/tab/tab-default-top-over-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus .x-tab-default-top-tl, .x-tab-focus .x-tab-default-top-bl, .x-tab-focus .x-tab-default-top-tr, .x-tab-focus .x-tab-default-top-br, .x-tab-focus .x-tab-default-top-tc, .x-tab-focus .x-tab-default-top-bc { background-image: url(images/tab/tab-default-top-focus-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus .x-tab-default-top-ml, .x-tab-focus .x-tab-default-top-mr { background-image: url(images/tab/tab-default-top-focus-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus .x-tab-default-top-mc { background-color: #616f8c; background-repeat: repeat-x; background-image: url(images/tab/tab-default-top-focus-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-over .x-tab-default-top-tl, .x-tab-focus.x-tab-over .x-tab-default-top-bl, .x-tab-focus.x-tab-over .x-tab-default-top-tr, .x-tab-focus.x-tab-over .x-tab-default-top-br, .x-tab-focus.x-tab-over .x-tab-default-top-tc, .x-tab-focus.x-tab-over .x-tab-default-top-bc { background-image: url(images/tab/tab-default-top-focus-over-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-over .x-tab-default-top-ml, .x-tab-focus.x-tab-over .x-tab-default-top-mr { background-image: url(images/tab/tab-default-top-focus-over-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-over .x-tab-default-top-mc { background-color: #6d7b9a; background-repeat: repeat-x; background-image: url(images/tab/tab-default-top-focus-over-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active .x-tab-default-top-tl, .x-tab.x-tab-active .x-tab-default-top-bl, .x-tab.x-tab-active .x-tab-default-top-tr, .x-tab.x-tab-active .x-tab-default-top-br, .x-tab.x-tab-active .x-tab-default-top-tc, .x-tab.x-tab-active .x-tab-default-top-bc { background-image: url(images/tab/tab-default-top-active-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active .x-tab-default-top-ml, .x-tab.x-tab-active .x-tab-default-top-mr { background-image: url(images/tab/tab-default-top-active-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active .x-tab-default-top-mc { background-color: #ed9200; background-repeat: repeat-x; background-image: url(images/tab/tab-default-top-active-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-active .x-tab-default-top-tl, .x-tab-focus.x-tab-active .x-tab-default-top-bl, .x-tab-focus.x-tab-active .x-tab-default-top-tr, .x-tab-focus.x-tab-active .x-tab-default-top-br, .x-tab-focus.x-tab-active .x-tab-default-top-tc, .x-tab-focus.x-tab-active .x-tab-default-top-bc { background-image: url(images/tab/tab-default-top-focus-active-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-active .x-tab-default-top-ml, .x-tab-focus.x-tab-active .x-tab-default-top-mr { background-image: url(images/tab/tab-default-top-focus-active-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-active .x-tab-default-top-mc { background-color: #ed9200; background-repeat: repeat-x; background-image: url(images/tab/tab-default-top-focus-active-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled .x-tab-default-top-tl, .x-tab.x-tab-disabled .x-tab-default-top-bl, .x-tab.x-tab-disabled .x-tab-default-top-tr, .x-tab.x-tab-disabled .x-tab-default-top-br, .x-tab.x-tab-disabled .x-tab-default-top-tc, .x-tab.x-tab-disabled .x-tab-default-top-bc { background-image: url(images/tab/tab-default-top-disabled-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled .x-tab-default-top-ml, .x-tab.x-tab-disabled .x-tab-default-top-mr { background-image: url(images/tab/tab-default-top-disabled-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled .x-tab-default-top-mc { background-color: #616f8c; background-repeat: repeat-x; background-image: url(images/tab/tab-default-top-disabled-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-over .x-tab-default-right-tl, .x-tab-over .x-tab-default-right-bl, .x-tab-over .x-tab-default-right-tr, .x-tab-over .x-tab-default-right-br, .x-tab-over .x-tab-default-right-tc, .x-tab-over .x-tab-default-right-bc { background-image: url(images/tab/tab-default-right-over-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-over .x-tab-default-right-ml, .x-tab-over .x-tab-default-right-mr { background-image: url(images/tab/tab-default-right-over-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-over .x-tab-default-right-mc { background-color: #6d7b9a; background-repeat: repeat-x; background-image: url(images/tab/tab-default-right-over-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus .x-tab-default-right-tl, .x-tab-focus .x-tab-default-right-bl, .x-tab-focus .x-tab-default-right-tr, .x-tab-focus .x-tab-default-right-br, .x-tab-focus .x-tab-default-right-tc, .x-tab-focus .x-tab-default-right-bc { background-image: url(images/tab/tab-default-right-focus-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus .x-tab-default-right-ml, .x-tab-focus .x-tab-default-right-mr { background-image: url(images/tab/tab-default-right-focus-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus .x-tab-default-right-mc { background-color: #616f8c; background-repeat: repeat-x; background-image: url(images/tab/tab-default-right-focus-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-over .x-tab-default-right-tl, .x-tab-focus.x-tab-over .x-tab-default-right-bl, .x-tab-focus.x-tab-over .x-tab-default-right-tr, .x-tab-focus.x-tab-over .x-tab-default-right-br, .x-tab-focus.x-tab-over .x-tab-default-right-tc, .x-tab-focus.x-tab-over .x-tab-default-right-bc { background-image: url(images/tab/tab-default-right-focus-over-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-over .x-tab-default-right-ml, .x-tab-focus.x-tab-over .x-tab-default-right-mr { background-image: url(images/tab/tab-default-right-focus-over-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-over .x-tab-default-right-mc { background-color: #6d7b9a; background-repeat: repeat-x; background-image: url(images/tab/tab-default-right-focus-over-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active .x-tab-default-right-tl, .x-tab.x-tab-active .x-tab-default-right-bl, .x-tab.x-tab-active .x-tab-default-right-tr, .x-tab.x-tab-active .x-tab-default-right-br, .x-tab.x-tab-active .x-tab-default-right-tc, .x-tab.x-tab-active .x-tab-default-right-bc { background-image: url(images/tab/tab-default-right-active-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active .x-tab-default-right-ml, .x-tab.x-tab-active .x-tab-default-right-mr { background-image: url(images/tab/tab-default-right-active-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active .x-tab-default-right-mc { background-color: #ed9200; background-repeat: repeat-x; background-image: url(images/tab/tab-default-right-active-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-active .x-tab-default-right-tl, .x-tab-focus.x-tab-active .x-tab-default-right-bl, .x-tab-focus.x-tab-active .x-tab-default-right-tr, .x-tab-focus.x-tab-active .x-tab-default-right-br, .x-tab-focus.x-tab-active .x-tab-default-right-tc, .x-tab-focus.x-tab-active .x-tab-default-right-bc { background-image: url(images/tab/tab-default-right-focus-active-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-active .x-tab-default-right-ml, .x-tab-focus.x-tab-active .x-tab-default-right-mr { background-image: url(images/tab/tab-default-right-focus-active-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-active .x-tab-default-right-mc { background-color: #ed9200; background-repeat: repeat-x; background-image: url(images/tab/tab-default-right-focus-active-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled .x-tab-default-right-tl, .x-tab.x-tab-disabled .x-tab-default-right-bl, .x-tab.x-tab-disabled .x-tab-default-right-tr, .x-tab.x-tab-disabled .x-tab-default-right-br, .x-tab.x-tab-disabled .x-tab-default-right-tc, .x-tab.x-tab-disabled .x-tab-default-right-bc { background-image: url(images/tab/tab-default-right-disabled-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled .x-tab-default-right-ml, .x-tab.x-tab-disabled .x-tab-default-right-mr { background-image: url(images/tab/tab-default-right-disabled-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled .x-tab-default-right-mc { background-color: #616f8c; background-repeat: repeat-x; background-image: url(images/tab/tab-default-right-disabled-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-over .x-tab-default-bottom-tl, .x-tab-over .x-tab-default-bottom-bl, .x-tab-over .x-tab-default-bottom-tr, .x-tab-over .x-tab-default-bottom-br, .x-tab-over .x-tab-default-bottom-tc, .x-tab-over .x-tab-default-bottom-bc { background-image: url(images/tab/tab-default-bottom-over-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-over .x-tab-default-bottom-ml, .x-tab-over .x-tab-default-bottom-mr { background-image: url(images/tab/tab-default-bottom-over-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-over .x-tab-default-bottom-mc { background-color: #6d7b9a; background-repeat: repeat-x; background-image: url(images/tab/tab-default-bottom-over-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus .x-tab-default-bottom-tl, .x-tab-focus .x-tab-default-bottom-bl, .x-tab-focus .x-tab-default-bottom-tr, .x-tab-focus .x-tab-default-bottom-br, .x-tab-focus .x-tab-default-bottom-tc, .x-tab-focus .x-tab-default-bottom-bc { background-image: url(images/tab/tab-default-bottom-focus-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus .x-tab-default-bottom-ml, .x-tab-focus .x-tab-default-bottom-mr { background-image: url(images/tab/tab-default-bottom-focus-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus .x-tab-default-bottom-mc { background-color: #616f8c; background-repeat: repeat-x; background-image: url(images/tab/tab-default-bottom-focus-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-over .x-tab-default-bottom-tl, .x-tab-focus.x-tab-over .x-tab-default-bottom-bl, .x-tab-focus.x-tab-over .x-tab-default-bottom-tr, .x-tab-focus.x-tab-over .x-tab-default-bottom-br, .x-tab-focus.x-tab-over .x-tab-default-bottom-tc, .x-tab-focus.x-tab-over .x-tab-default-bottom-bc { background-image: url(images/tab/tab-default-bottom-focus-over-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-over .x-tab-default-bottom-ml, .x-tab-focus.x-tab-over .x-tab-default-bottom-mr { background-image: url(images/tab/tab-default-bottom-focus-over-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-over .x-tab-default-bottom-mc { background-color: #6d7b9a; background-repeat: repeat-x; background-image: url(images/tab/tab-default-bottom-focus-over-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active .x-tab-default-bottom-tl, .x-tab.x-tab-active .x-tab-default-bottom-bl, .x-tab.x-tab-active .x-tab-default-bottom-tr, .x-tab.x-tab-active .x-tab-default-bottom-br, .x-tab.x-tab-active .x-tab-default-bottom-tc, .x-tab.x-tab-active .x-tab-default-bottom-bc { background-image: url(images/tab/tab-default-bottom-active-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active .x-tab-default-bottom-ml, .x-tab.x-tab-active .x-tab-default-bottom-mr { background-image: url(images/tab/tab-default-bottom-active-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active .x-tab-default-bottom-mc { background-color: #ed9200; background-repeat: repeat-x; background-image: url(images/tab/tab-default-bottom-active-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-active .x-tab-default-bottom-tl, .x-tab-focus.x-tab-active .x-tab-default-bottom-bl, .x-tab-focus.x-tab-active .x-tab-default-bottom-tr, .x-tab-focus.x-tab-active .x-tab-default-bottom-br, .x-tab-focus.x-tab-active .x-tab-default-bottom-tc, .x-tab-focus.x-tab-active .x-tab-default-bottom-bc { background-image: url(images/tab/tab-default-bottom-focus-active-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-active .x-tab-default-bottom-ml, .x-tab-focus.x-tab-active .x-tab-default-bottom-mr { background-image: url(images/tab/tab-default-bottom-focus-active-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-active .x-tab-default-bottom-mc { background-color: #ed9200; background-repeat: repeat-x; background-image: url(images/tab/tab-default-bottom-focus-active-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled .x-tab-default-bottom-tl, .x-tab.x-tab-disabled .x-tab-default-bottom-bl, .x-tab.x-tab-disabled .x-tab-default-bottom-tr, .x-tab.x-tab-disabled .x-tab-default-bottom-br, .x-tab.x-tab-disabled .x-tab-default-bottom-tc, .x-tab.x-tab-disabled .x-tab-default-bottom-bc { background-image: url(images/tab/tab-default-bottom-disabled-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled .x-tab-default-bottom-ml, .x-tab.x-tab-disabled .x-tab-default-bottom-mr { background-image: url(images/tab/tab-default-bottom-disabled-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled .x-tab-default-bottom-mc { background-color: #616f8c; background-repeat: repeat-x; background-image: url(images/tab/tab-default-bottom-disabled-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-over .x-tab-default-left-tl, .x-tab-over .x-tab-default-left-bl, .x-tab-over .x-tab-default-left-tr, .x-tab-over .x-tab-default-left-br, .x-tab-over .x-tab-default-left-tc, .x-tab-over .x-tab-default-left-bc { background-image: url(images/tab/tab-default-left-over-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-over .x-tab-default-left-ml, .x-tab-over .x-tab-default-left-mr { background-image: url(images/tab/tab-default-left-over-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-over .x-tab-default-left-mc { background-color: #6d7b9a; background-repeat: repeat-x; background-image: url(images/tab/tab-default-left-over-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus .x-tab-default-left-tl, .x-tab-focus .x-tab-default-left-bl, .x-tab-focus .x-tab-default-left-tr, .x-tab-focus .x-tab-default-left-br, .x-tab-focus .x-tab-default-left-tc, .x-tab-focus .x-tab-default-left-bc { background-image: url(images/tab/tab-default-left-focus-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus .x-tab-default-left-ml, .x-tab-focus .x-tab-default-left-mr { background-image: url(images/tab/tab-default-left-focus-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus .x-tab-default-left-mc { background-color: #616f8c; background-repeat: repeat-x; background-image: url(images/tab/tab-default-left-focus-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-over .x-tab-default-left-tl, .x-tab-focus.x-tab-over .x-tab-default-left-bl, .x-tab-focus.x-tab-over .x-tab-default-left-tr, .x-tab-focus.x-tab-over .x-tab-default-left-br, .x-tab-focus.x-tab-over .x-tab-default-left-tc, .x-tab-focus.x-tab-over .x-tab-default-left-bc { background-image: url(images/tab/tab-default-left-focus-over-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-over .x-tab-default-left-ml, .x-tab-focus.x-tab-over .x-tab-default-left-mr { background-image: url(images/tab/tab-default-left-focus-over-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-over .x-tab-default-left-mc { background-color: #6d7b9a; background-repeat: repeat-x; background-image: url(images/tab/tab-default-left-focus-over-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active .x-tab-default-left-tl, .x-tab.x-tab-active .x-tab-default-left-bl, .x-tab.x-tab-active .x-tab-default-left-tr, .x-tab.x-tab-active .x-tab-default-left-br, .x-tab.x-tab-active .x-tab-default-left-tc, .x-tab.x-tab-active .x-tab-default-left-bc { background-image: url(images/tab/tab-default-left-active-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active .x-tab-default-left-ml, .x-tab.x-tab-active .x-tab-default-left-mr { background-image: url(images/tab/tab-default-left-active-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-active .x-tab-default-left-mc { background-color: #ed9200; background-repeat: repeat-x; background-image: url(images/tab/tab-default-left-active-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-active .x-tab-default-left-tl, .x-tab-focus.x-tab-active .x-tab-default-left-bl, .x-tab-focus.x-tab-active .x-tab-default-left-tr, .x-tab-focus.x-tab-active .x-tab-default-left-br, .x-tab-focus.x-tab-active .x-tab-default-left-tc, .x-tab-focus.x-tab-active .x-tab-default-left-bc { background-image: url(images/tab/tab-default-left-focus-active-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-active .x-tab-default-left-ml, .x-tab-focus.x-tab-active .x-tab-default-left-mr { background-image: url(images/tab/tab-default-left-focus-active-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-focus.x-tab-active .x-tab-default-left-mc { background-color: #ed9200; background-repeat: repeat-x; background-image: url(images/tab/tab-default-left-focus-active-fbg.gif); } /* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled .x-tab-default-left-tl, .x-tab.x-tab-disabled .x-tab-default-left-bl, .x-tab.x-tab-disabled .x-tab-default-left-tr, .x-tab.x-tab-disabled .x-tab-default-left-br, .x-tab.x-tab-disabled .x-tab-default-left-tc, .x-tab.x-tab-disabled .x-tab-default-left-bc { background-image: url(images/tab/tab-default-left-disabled-corners.gif); } /* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled .x-tab-default-left-ml, .x-tab.x-tab-disabled .x-tab-default-left-mr { background-image: url(images/tab/tab-default-left-disabled-sides.gif); } /* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab.x-tab-disabled .x-tab-default-left-mc { background-color: #616f8c; background-repeat: repeat-x; background-image: url(images/tab/tab-default-left-disabled-fbg.gif); } /* line 2046, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default-tl, .x-tab-default-bl, .x-tab-default-tr, .x-tab-default-br { filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); } /* line 2053, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default .x-tab-close-btn { top: 2px; right: 2px; width: 12px; height: 12px; background: url(images/tab/tab-default-close.png) 0 0; } /* line 2064, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default .x-tab-close-btn-over { background-position: -12px 0; } /* line 2074, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default .x-tab-close-btn-pressed { background-position: -24px 0; } /* line 2080, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default.x-tab-active .x-tab-close-btn { background-position: 0 -12px; } /* line 2085, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default.x-tab-active .x-tab-close-btn-over { background-position: -12px -12px; } /* line 2091, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default.x-tab-active .x-tab-close-btn-pressed { background-position: -24px -12px; } /* line 2098, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-default.x-tab-disabled .x-tab-close-btn { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); opacity: 0.3; background-position: 0 0; } /* line 2110, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-rtl.x-tab-default .x-tab-close-btn { right: auto; left: 2px; } /* line 2116, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-tab-closable.x-tab-default .x-tab-button { padding-right: 15px; } /* line 2121, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ .x-rtl.x-tab-closable.x-tab-default .x-tab-button { padding-right: 0px; padding-left: 15px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-focus.x-tab-default-top:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-top-focus-corners.gif), sides:url(images/tab/tab-default-top-focus-sides.gif), frame-bg:url(images/tab/tab-default-top-focus-fbg.gif), frame:3px 3px 3px 3px, stretch:bottom" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-focus.x-tab-default-right:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-right-focus-corners.gif), sides:url(images/tab/tab-default-right-focus-sides.gif), frame-bg:url(images/tab/tab-default-right-focus-fbg.gif), frame:3px 3px 3px 3px, stretch:left" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-focus.x-tab-default-bottom:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-bottom-focus-corners.gif), sides:url(images/tab/tab-default-bottom-focus-sides.gif), frame-bg:url(images/tab/tab-default-bottom-focus-fbg.gif), frame:3px 3px 3px 3px, stretch:top" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-focus.x-tab-default-left:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-left-focus-corners.gif), sides:url(images/tab/tab-default-left-focus-sides.gif), frame-bg:url(images/tab/tab-default-left-focus-fbg.gif), frame:3px 3px 3px 3px, stretch:right" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-over.x-tab-default-top:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif), frame:3px 3px 3px 3px, stretch:bottom" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-over.x-tab-default-right:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-right-over-corners.gif), sides:url(images/tab/tab-default-right-over-sides.gif), frame-bg:url(images/tab/tab-default-right-over-fbg.gif), frame:3px 3px 3px 3px, stretch:left" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-over.x-tab-default-bottom:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif), frame:3px 3px 3px 3px, stretch:top" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-over.x-tab-default-left:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-left-over-corners.gif), sides:url(images/tab/tab-default-left-over-sides.gif), frame-bg:url(images/tab/tab-default-left-over-fbg.gif), frame:3px 3px 3px 3px, stretch:right" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-active.x-tab-default-top:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif), frame:3px 3px 3px 3px, stretch:bottom" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-active.x-tab-default-right:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-right-active-corners.gif), sides:url(images/tab/tab-default-right-active-sides.gif), frame-bg:url(images/tab/tab-default-right-active-fbg.gif), frame:3px 3px 3px 3px, stretch:left" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-active.x-tab-default-bottom:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif), frame:3px 3px 3px 3px, stretch:top" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-active.x-tab-default-left:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-left-active-corners.gif), sides:url(images/tab/tab-default-left-active-sides.gif), frame-bg:url(images/tab/tab-default-left-active-fbg.gif), frame:3px 3px 3px 3px, stretch:right" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-focus.x-tab-over.x-tab-default-top:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-top-focus-over-corners.gif), sides:url(images/tab/tab-default-top-focus-over-sides.gif), frame-bg:url(images/tab/tab-default-top-focus-over-fbg.gif), frame:3px 3px 3px 3px, stretch:bottom" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-focus.x-tab-over.x-tab-default-right:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-right-focus-over-corners.gif), sides:url(images/tab/tab-default-right-focus-over-sides.gif), frame-bg:url(images/tab/tab-default-right-focus-over-fbg.gif), frame:3px 3px 3px 3px, stretch:left" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-focus.x-tab-over.x-tab-default-bottom:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-bottom-focus-over-corners.gif), sides:url(images/tab/tab-default-bottom-focus-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-focus-over-fbg.gif), frame:3px 3px 3px 3px, stretch:top" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-focus.x-tab-over.x-tab-default-left:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-left-focus-over-corners.gif), sides:url(images/tab/tab-default-left-focus-over-sides.gif), frame-bg:url(images/tab/tab-default-left-focus-over-fbg.gif), frame:3px 3px 3px 3px, stretch:right" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-focus.x-tab-active.x-tab-default-top:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-top-focus-active-corners.gif), sides:url(images/tab/tab-default-top-focus-active-sides.gif), frame-bg:url(images/tab/tab-default-top-focus-active-fbg.gif), frame:3px 3px 3px 3px, stretch:bottom" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-focus.x-tab-active.x-tab-default-right:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-right-focus-active-corners.gif), sides:url(images/tab/tab-default-right-focus-active-sides.gif), frame-bg:url(images/tab/tab-default-right-focus-active-fbg.gif), frame:3px 3px 3px 3px, stretch:left" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-focus.x-tab-active.x-tab-default-bottom:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-bottom-focus-active-corners.gif), sides:url(images/tab/tab-default-bottom-focus-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-focus-active-fbg.gif), frame:3px 3px 3px 3px, stretch:top" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-focus.x-tab-active.x-tab-default-left:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-left-focus-active-corners.gif), sides:url(images/tab/tab-default-left-focus-active-sides.gif), frame-bg:url(images/tab/tab-default-left-focus-active-fbg.gif), frame:3px 3px 3px 3px, stretch:right" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-disabled.x-tab-default-top:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif), frame:3px 3px 3px 3px, stretch:bottom" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-disabled.x-tab-default-right:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-right-disabled-corners.gif), sides:url(images/tab/tab-default-right-disabled-sides.gif), frame-bg:url(images/tab/tab-default-right-disabled-fbg.gif), frame:3px 3px 3px 3px, stretch:left" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-disabled.x-tab-default-bottom:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif), frame:3px 3px 3px 3px, stretch:top" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-disabled.x-tab-default-left:before { display: none; content: "x-slicer:corners:url(images/tab/tab-default-left-disabled-corners.gif), sides:url(images/tab/tab-default-left-disabled-sides.gif), frame-bg:url(images/tab/tab-default-left-disabled-fbg.gif), frame:3px 3px 3px 3px, stretch:right" !important; } /*</if slicer>*/ /* */ /* line 130, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-default { background-color: #3f4757; } /* line 169, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-default-top > .x-tab-bar-body-default { padding: 0; } /* line 173, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-default-bottom > .x-tab-bar-body-default { padding: 0 0 0 0; } /* line 177, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-default-left > .x-tab-bar-body-default { padding: 0 0 0 0; } /* line 182, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-rtl.x-tab-bar-default-left > .x-tab-bar-body-default { padding: 0 0 0 0; } /* line 187, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-default-right > .x-tab-bar-body-default { padding: 0 0 0 0; } /* line 192, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-rtl.x-tab-bar-default-right > .x-tab-bar-body-default { padding: 0 0 0 0; } /* line 199, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-plain.x-tab-bar-default-horizontal { border-top-color: transparent; border-bottom-color: transparent; border-left-width: 0; border-right-width: 0; } /* line 206, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-plain.x-tab-bar-default-vertical { border-right-color: transparent; border-left-color: transparent; border-top-width: 0; border-bottom-width: 0; } /* line 218, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-top > .x-tab-bar-body-default { padding-bottom: 5px; } /* line 222, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-bottom > .x-tab-bar-body-default { padding-top: 5px; } /* line 226, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-left > .x-tab-bar-body-default { padding-right: 5px; } /* line 230, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-left > .x-tab-bar-body-default.x-rtl { padding-right: 0; padding-left: 5px; } /* line 237, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-right > .x-tab-bar-body-default { padding-left: 5px; } /* line 241, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-right > .x-tab-bar-body-default.x-rtl { padding-left: 0; padding-right: 5px; } /* line 249, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-strip-default { border-style: solid; border-color: #3a4155; background-color: #ed9200; } /* line 256, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-top > .x-tab-bar-strip-default { border-width: 0 0 0 0; height: 5px; } /* line 260, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-top.x-tab-bar-plain > .x-tab-bar-strip-default { border-width: 0 0 0 0; } /* line 266, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-bottom > .x-tab-bar-strip-default { border-width: 0 0 0 0; height: 5px; } /* line 270, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-bottom.x-tab-bar-plain > .x-tab-bar-strip-default { border-width: 0 0 0 0; } /* line 276, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-left > .x-tab-bar-strip-default { border-width: 0 0 0 0; width: 5px; } /* line 280, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-left > .x-tab-bar-strip-default.x-rtl { border-width: 0 0 0 0; } /* line 285, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-left.x-tab-bar-plain > .x-tab-bar-strip-default { border-width: 0 0 0 0; } /* line 288, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-left.x-tab-bar-plain > .x-tab-bar-strip-default.x-rtl { border-width: 0 0 0 0; } /* line 296, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-right > .x-tab-bar-strip-default { border-width: 0 0 0 0; width: 5px; } /* line 300, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-right > .x-tab-bar-strip-default.x-rtl { border-width: 0 0 0 0; } /* line 305, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-right.x-tab-bar-plain > .x-tab-bar-strip-default { border-width: 0 0 0 0; } /* line 308, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-right.x-tab-bar-plain > .x-tab-bar-strip-default.x-rtl { border-width: 0 0 0 0; } /* line 320, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-horizontal > .x-tab-bar-body-default { min-height: 34px; } /* line 323, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-ie9m .x-tab-bar-horizontal > .x-tab-bar-body-default { min-height: 29px; } /* line 330, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-vertical > .x-tab-bar-body-default { min-width: 34px; } /* line 333, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-ie9m .x-tab-bar-vertical > .x-tab-bar-body-default { min-width: 29px; } /* line 145, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-tab-bar-default-scroller .x-box-scroller-body-horizontal { margin-left: 24px; } /* line 151, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-tab-bar-default-vertical-scroller .x-box-scroller-body-vertical { margin-top: 24px; } /* line 156, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-tab-bar-default { cursor: pointer; } /* line 165, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-tab-bar-default.x-box-scroller-hover { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); opacity: 0.8; } /* line 171, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-tab-bar-default.x-box-scroller-pressed { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); opacity: 0.6; } /* line 177, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-tab-bar-default.x-box-scroller-disabled { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); opacity: 0.3; cursor: default; } /* line 188, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-tab-bar-default.x-box-scroller-left, .x-box-scroller-tab-bar-default.x-box-scroller-right { width: 24px; height: 24px; top: 50%; margin-top: -12px; } /* line 214, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-tab-bar-default.x-box-scroller-left { margin-left: 0; margin-right: 0; margin-bottom: 0; background-image: url(images/tab-bar/default-scroll-left.png); } /* line 237, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-tab-bar-default.x-box-scroller-right { margin-left: 0; margin-right: 0; margin-bottom: 0; background-image: url(images/tab-bar/default-scroll-right.png); } /* line 263, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-tab-bar-default.x-box-scroller-top, .x-box-scroller-tab-bar-default.x-box-scroller-bottom { height: 24px; width: 24px; left: 50%; margin-left: -12px; } /* line 289, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-tab-bar-default.x-box-scroller-top { margin-top: 0; margin-right: 0; margin-bottom: 0; background-image: url(images/tab-bar/default-scroll-top.png); } /* line 312, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-tab-bar-default.x-box-scroller-bottom { margin-top: 0; margin-right: 0; margin-bottom: 0; background-image: url(images/tab-bar/default-scroll-bottom.png); } /* line 448, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-default-top .x-box-scroller-tab-bar-default { margin-top: -14px; } /* line 452, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-default-right .x-box-scroller-tab-bar-default { margin-left: -10px; } /* line 456, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-default-bottom .x-box-scroller-tab-bar-default { margin-top: -10px; } /* line 460, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-tab-bar-default-left .x-box-scroller-tab-bar-default { margin-left: -14px; } /* line 469, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-box-scroller-tab-bar-default { background-color: #3f4757; } /* line 475, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-box-scroller-tab-bar-default .x-ie8 .x-box-scroller-plain { background-color: #fff; } /* line 486, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-box-scroller-plain.x-box-scroller-tab-bar-default.x-box-scroller-left { background-image: url(images/tab-bar/default-plain-scroll-left.png); } /* line 490, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-box-scroller-plain.x-box-scroller-tab-bar-default.x-box-scroller-right { background-image: url(images/tab-bar/default-plain-scroll-right.png); } /* line 494, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-box-scroller-plain.x-box-scroller-tab-bar-default.x-box-scroller-top { background-image: url(images/tab-bar/default-plain-scroll-top.png); } /* line 498, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ .x-box-scroller-plain.x-box-scroller-tab-bar-default.x-box-scroller-bottom { background-image: url(images/tab-bar/default-plain-scroll-bottom.png); } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-bar-default-top:before { display: none; content: "x-slicer:stretch:bottom" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-bar-default-bottom:before { display: none; content: "x-slicer:stretch:top" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-bar-default-left:before { display: none; content: "x-slicer:stretch:right" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tab-bar-default-right:before { display: none; content: "x-slicer:stretch:left" !important; } /*</if slicer>*/ /* */ /** * Creates a visual theme for a Window * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number} [$ui-padding=$window-padding] * The padding of the Window * * @param {number} [$ui-border-radius=$window-border-radius] * The border-radius of the Window * * @param {color} [$ui-border-color=$window-border-color] * The border-color of the Window * * @param {number} [$ui-border-width=$window-border-width] * The border-width of the Window * * @param {color} [$ui-inner-border-color=$window-inner-border-color] * The inner border-color of the Window * * @param {number} [$ui-inner-border-width=$window-inner-border-width] * The inner border-width of the Window * * @param {color} [$ui-header-color=$window-header-color] * The text color of the Header * * @param {color} [$ui-header-background-color=$window-header-background-color] * The background-color of the Header * * @param {number/list} [$ui-header-padding=$window-header-padding] * The padding of the Header * * @param {string} [$ui-header-font-family=$window-header-font-family] * The font-family of the Header * * @param {number} [$ui-header-font-size=$window-header-font-size] * The font-size of the Header * * @param {string} [$ui-header-font-weight=$window-header-font-weight] * The font-weight of the Header * * @param {number} [$ui-header-line-height=$window-header-line-height] * The line-height of the Header * * @param {number/list} [$ui-header-text-padding=$window-header-text-padding] * The padding of the Header's text element * * @param {string} [$ui-header-text-transform=$window-header-text-transform] * The text-transform of the Header * * @param {color} [$ui-header-border-color=$ui-border-color] * The border-color of the Header * * @param {number} [$ui-header-border-width=$window-header-border-width] * The border-width of the Header * * @param {color} [$ui-header-inner-border-color=$window-header-inner-border-color] * The inner border-color of the Header * * @param {number} [$ui-header-inner-border-width=$window-header-inner-border-width] * The inner border-width of the Header * * @param {number} [$ui-header-icon-width=$window-header-icon-width] * The width of the Header icon * * @param {number} [$ui-header-icon-height=$window-header-icon-height] * The height of the Header icon * * @param {number} [$ui-header-icon-spacing=$window-header-icon-spacing] * The space between the Header icon and text * * @param {list} [$ui-header-icon-background-position=$window-header-icon-background-position] * The background-position of the Header icon * * @param {color} [$ui-header-glyph-color=$window-header-glyph-color] * The color of the Header glyph icon * * @param {number} [$ui-header-glyph-opacity=$window-header-glyph-opacity] * The opacity of the Header glyph icon * * @param {number} [$ui-tool-spacing=$window-tool-spacing] * The space between the {@link Ext.panel.Tool Tools} * * @param {string} [$ui-tool-background-image=$window-tool-background-image] * The background sprite to use for {@link Ext.panel.Tool Tools} * * @param {color} [$ui-body-border-color=$window-body-border-color] * The border-color of the Window body * * @param {color} [$ui-body-background-color=$window-body-background-color] * The background-color of the Window body * * @param {number} [$ui-body-border-width=$window-body-border-width] * The border-width of the Window body * * @param {string} [$ui-body-border-style=$window-body-border-style] * The border-style of the Window body * * @param {color} [$ui-body-color=$window-body-color] * The color of text inside the Window body * * @param {color} [$ui-background-color=$window-background-color] * The background-color of the Window * * @param {boolean} [$ui-force-header-border=$window-force-header-border] * True to force the window header to have a border on the side facing * the window body. Overrides dock layout's border management border * removal rules. * * @param {boolean} [$ui-include-border-management-rules=$window-include-border-management-rules] * True to include neptune style border management rules. * * @param {color} [$ui-wrap-border-color=$window-wrap-border-color] * The color to apply to the border that wraps the body and docked items. The presence of * the wrap border is controlled by the {@link #border} config. Only applicable when * `$ui-include-border-management-rules` is `true`. * * @param {color} [$ui-wrap-border-width=$window-wrap-border-width] * The width to apply to the border that wraps the body and docked items. The presence of * the wrap border is controlled by the {@link #border} config. Only applicable when * `$ui-include-border-management-rules` is `true`. * * @param {boolean} [$ui-ignore-frame-padding=$window-ignore-frame-padding] * True to ignore the frame padding. By default, the frame mixin adds extra padding when * border radius is larger than border width. This is intended to prevent the content * from colliding with the rounded corners of the frame. Set this to true to prevent * the window frame from adding this extra padding. * * @member Ext.window.Window */ /* line 665, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-ghost { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } /* line 212, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-default { border-color: #5b6270; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; } /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; padding: 0px 0px 0px 0px; border-width: 5px; border-style: solid; background-color: #3f4757; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-mc { background-color: #3f4757; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-window-default { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-0-0-0-0; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-tr, .x-window-default-br, .x-window-default-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-tl, .x-window-default-bl, .x-window-default-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-tl, .x-window-default-bl, .x-window-default-tr, .x-window-default-br, .x-window-default-tc, .x-window-default-bc, .x-window-default-ml, .x-window-default-mr { background-image: url(images/window/window-default-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-ml, .x-window-default-mr { background-image: url(images/window/window-default-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-default-mc { padding: 0px 0px 0px 0px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-window-default:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 234, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-body-default { border-color: #18181a; border-width: 1px; border-style: solid; background: #1f2833; color: white; font-size: 15px; font-weight: normal; font-family: helvetica, arial, verdana, sans-serif; } /* line 248, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default { font-size: 15px; border-color: #5b6270; background-color: #5b6270; } /* line 253, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default .x-tool-img { background-color: #5b6270; } /* line 266, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default-horizontal .x-window-header-default-tab-bar { margin-top: -5px; margin-bottom: -5px; } /* line 273, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default-vertical .x-window-header-default-tab-bar { margin-right: -5px; margin-left: -5px; } /* line 281, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-rtl.x-window-header-default-vertical .x-window-header-default-tab-bar { margin-left: -5px; margin-right: -5px; } /* line 289, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-title-default { color: white; font-size: 15px; font-weight: bold; font-family: helvetica, arial, verdana, sans-serif; line-height: 16px; } /* line 298, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-title-default > .x-title-text-default { padding: 0; text-transform: none; } /* line 341, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-top { height: 22px; padding-bottom: 6px; } /* line 346, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-right { width: 22px; padding-left: 6px; } /* line 351, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-right.x-rtl { padding-left: 0; padding-right: 6px; } /* line 358, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-bottom { height: 22px; padding-top: 6px; } /* line 363, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-left { width: 22px; padding-right: 6px; } /* line 368, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-left.x-rtl { padding-right: 0; padding-left: 6px; } /* line 375, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-title-default > .x-title-icon-wrap-default > .x-title-icon-default { width: 16px; height: 16px; background-position: center center; } /* line 381, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-title-default > .x-title-icon-wrap-default > .x-title-glyph { color: white; font-size: 16px; line-height: 16px; opacity: 0.5; } /* line 398, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-ie8 .x-window-header-title-default > .x-title-icon-wrap-default > .x-title-glyph { color: #adb0b7; } /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0; padding: 5px 5px 5px 5px; border-width: 5px 5px 5px 5px; border-style: solid; background-color: #5b6270; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-mc { background-color: #5b6270; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-window-header-default-top { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-tr, .x-window-header-default-top-br, .x-window-header-default-top-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-tl, .x-window-header-default-top-bl, .x-window-header-default-top-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-tl, .x-window-header-default-top-bl, .x-window-header-default-top-tr, .x-window-header-default-top-br, .x-window-header-default-top-tc, .x-window-header-default-top-bc, .x-window-header-default-top-ml, .x-window-header-default-top-mr { background-image: url(images/window-header/window-header-default-top-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-ml, .x-window-header-default-top-mr { background-image: url(images/window-header/window-header-default-top-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-top-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-window-header-default-top:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right { -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; border-top-left-radius: 0; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0; padding: 5px 5px 5px 5px; border-width: 5px 5px 5px 5px; border-style: solid; background-color: #5b6270; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-mc { background-color: #5b6270; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-window-header-default-right { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-tr, .x-window-header-default-right-br, .x-window-header-default-right-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-tl, .x-window-header-default-right-bl, .x-window-header-default-right-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-tl, .x-window-header-default-right-bl, .x-window-header-default-right-tr, .x-window-header-default-right-br, .x-window-header-default-right-tc, .x-window-header-default-right-bc, .x-window-header-default-right-ml, .x-window-header-default-right-mr { background-image: url(images/window-header/window-header-default-right-corners.gif); } /* line 428, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-window-header-default-right-tl, .x-rtl.x-window-header-default-right-ml, .x-rtl.x-window-header-default-right-bl, .x-rtl.x-window-header-default-right-tr, .x-rtl.x-window-header-default-right-mr, .x-rtl.x-window-header-default-right-br { background-image: url(images/window-header/window-header-default-right-corners-rtl.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-ml, .x-window-header-default-right-mr { background-image: url(images/window-header/window-header-default-right-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-right-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-window-header-default-right:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window-header/window-header-default-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-right-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom { -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; border-top-left-radius: 0; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; padding: 5px 5px 5px 5px; border-width: 5px 5px 5px 5px; border-style: solid; background-color: #5b6270; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-mc { background-color: #5b6270; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-window-header-default-bottom { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-tr, .x-window-header-default-bottom-br, .x-window-header-default-bottom-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-tl, .x-window-header-default-bottom-bl, .x-window-header-default-bottom-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-tl, .x-window-header-default-bottom-bl, .x-window-header-default-bottom-tr, .x-window-header-default-bottom-br, .x-window-header-default-bottom-tc, .x-window-header-default-bottom-bc, .x-window-header-default-bottom-ml, .x-window-header-default-bottom-mr { background-image: url(images/window-header/window-header-default-bottom-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-ml, .x-window-header-default-bottom-mr { background-image: url(images/window-header/window-header-default-bottom-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-bottom-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-window-header-default-bottom:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; padding: 5px 5px 5px 5px; border-width: 5px 5px 5px 5px; border-style: solid; background-color: #5b6270; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-mc { background-color: #5b6270; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-window-header-default-left { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-tr, .x-window-header-default-left-br, .x-window-header-default-left-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-tl, .x-window-header-default-left-bl, .x-window-header-default-left-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-tl, .x-window-header-default-left-bl, .x-window-header-default-left-tr, .x-window-header-default-left-br, .x-window-header-default-left-tc, .x-window-header-default-left-bc, .x-window-header-default-left-ml, .x-window-header-default-left-mr { background-image: url(images/window-header/window-header-default-left-corners.gif); } /* line 428, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-window-header-default-left-tl, .x-rtl.x-window-header-default-left-ml, .x-rtl.x-window-header-default-left-bl, .x-rtl.x-window-header-default-left-tr, .x-rtl.x-window-header-default-left-mr, .x-rtl.x-window-header-default-left-br { background-image: url(images/window-header/window-header-default-left-corners-rtl.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-ml, .x-window-header-default-left-mr { background-image: url(images/window-header/window-header-default-left-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-left-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-window-header-default-left:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window-header/window-header-default-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-left-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; padding: 5px 5px 5px 5px; border-width: 5px; border-style: solid; background-color: #5b6270; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-mc { background-color: #5b6270; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-window-header-default-collapsed-top { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-tr, .x-window-header-default-collapsed-top-br, .x-window-header-default-collapsed-top-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-tl, .x-window-header-default-collapsed-top-bl, .x-window-header-default-collapsed-top-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-tl, .x-window-header-default-collapsed-top-bl, .x-window-header-default-collapsed-top-tr, .x-window-header-default-collapsed-top-br, .x-window-header-default-collapsed-top-tc, .x-window-header-default-collapsed-top-bc, .x-window-header-default-collapsed-top-ml, .x-window-header-default-collapsed-top-mr { background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-ml, .x-window-header-default-collapsed-top-mr { background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-top-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-window-header-default-collapsed-top:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; padding: 5px 5px 5px 5px; border-width: 5px; border-style: solid; background-color: #5b6270; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-mc { background-color: #5b6270; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-window-header-default-collapsed-right { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-tr, .x-window-header-default-collapsed-right-br, .x-window-header-default-collapsed-right-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-tl, .x-window-header-default-collapsed-right-bl, .x-window-header-default-collapsed-right-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-tl, .x-window-header-default-collapsed-right-bl, .x-window-header-default-collapsed-right-tr, .x-window-header-default-collapsed-right-br, .x-window-header-default-collapsed-right-tc, .x-window-header-default-collapsed-right-bc, .x-window-header-default-collapsed-right-ml, .x-window-header-default-collapsed-right-mr { background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif); } /* line 428, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-window-header-default-collapsed-right-tl, .x-rtl.x-window-header-default-collapsed-right-ml, .x-rtl.x-window-header-default-collapsed-right-bl, .x-rtl.x-window-header-default-collapsed-right-tr, .x-rtl.x-window-header-default-collapsed-right-mr, .x-rtl.x-window-header-default-collapsed-right-br { background-image: url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-ml, .x-window-header-default-collapsed-right-mr { background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-right-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-window-header-default-collapsed-right:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; padding: 5px 5px 5px 5px; border-width: 5px; border-style: solid; background-color: #5b6270; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-mc { background-color: #5b6270; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-window-header-default-collapsed-bottom { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-tr, .x-window-header-default-collapsed-bottom-br, .x-window-header-default-collapsed-bottom-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-tl, .x-window-header-default-collapsed-bottom-bl, .x-window-header-default-collapsed-bottom-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-tl, .x-window-header-default-collapsed-bottom-bl, .x-window-header-default-collapsed-bottom-tr, .x-window-header-default-collapsed-bottom-br, .x-window-header-default-collapsed-bottom-tc, .x-window-header-default-collapsed-bottom-bc, .x-window-header-default-collapsed-bottom-ml, .x-window-header-default-collapsed-bottom-mr { background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-ml, .x-window-header-default-collapsed-bottom-mr { background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-bottom-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-window-header-default-collapsed-bottom:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; padding: 5px 5px 5px 5px; border-width: 5px; border-style: solid; background-color: #5b6270; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-mc { background-color: #5b6270; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-window-header-default-collapsed-left { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-frameInfo { font-family: dh-5-5-5-5-5-5-5-5-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-tr, .x-window-header-default-collapsed-left-br, .x-window-header-default-collapsed-left-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-tl, .x-window-header-default-collapsed-left-bl, .x-window-header-default-collapsed-left-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-tl, .x-window-header-default-collapsed-left-bl, .x-window-header-default-collapsed-left-tr, .x-window-header-default-collapsed-left-br, .x-window-header-default-collapsed-left-tc, .x-window-header-default-collapsed-left-bc, .x-window-header-default-collapsed-left-ml, .x-window-header-default-collapsed-left-mr { background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif); } /* line 428, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-window-header-default-collapsed-left-tl, .x-rtl.x-window-header-default-collapsed-left-ml, .x-rtl.x-window-header-default-collapsed-left-bl, .x-rtl.x-window-header-default-collapsed-left-tr, .x-rtl.x-window-header-default-collapsed-left-mr, .x-rtl.x-window-header-default-collapsed-left-br { background-image: url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-ml, .x-window-header-default-collapsed-left-mr { background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-window-header-default-collapsed-left-mc { padding: 5px 5px 5px 5px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-window-header-default-collapsed-left:before { display: none; content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 518, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default .x-window-header-icon { width: 16px; height: 16px; color: white; font-size: 16px; line-height: 16px; background-position: center center; } /* line 527, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default .x-window-header-glyph { color: white; font-size: 16px; line-height: 16px; opacity: 0.5; } /* line 544, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-ie8 .x-window-header-default .x-window-header-glyph { color: #adb0b7; } /* line 553, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default-horizontal .x-tool-after-title { margin: 0 0 0 6px; } /* line 558, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default-horizontal .x-rtl.x-tool-after-title { margin: 0 6px 0 0; } /* line 563, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default-horizontal .x-tool-before-title { margin: 0 6px 0 0; } /* line 568, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default-horizontal .x-rtl.x-tool-before-title { margin: 0 0 0 6px; } /* line 575, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default-vertical .x-tool-after-title { margin: 6px 0 0 0; } /* line 580, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default-vertical .x-rtl.x-tool-after-title { margin: 6px 0 0 0; } /* line 585, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default-vertical .x-tool-before-title { margin: 0 0 6px 0; } /* line 590, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default-vertical .x-rtl.x-tool-before-title { margin: 0 0 6px 0; } /* line 599, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-header-default { border-width: 5px !important; } /* line 609, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-nbr .x-window-default-collapsed .x-window-header { border-width: 0 !important; } /* line 620, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-default-resizable { overflow: visible; } /* line 625, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-default-resizable .x-window-handle-north-br { top: -5px; } /* line 628, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-default-resizable .x-window-handle-south-br { bottom: -5px; } /* line 631, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-default-resizable .x-window-handle-east-br { right: -5px; } /* line 634, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-default-resizable .x-window-handle-west-br { left: -5px; } /* line 637, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-default-resizable .x-window-handle-northwest-br { left: -5px; top: -5px; } /* line 641, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-default-resizable .x-window-handle-northeast-br { right: -5px; top: -5px; } /* line 645, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-default-resizable .x-window-handle-southeast-br { right: -5px; bottom: -5px; } /* line 649, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-default-resizable .x-window-handle-southwest-br { left: -5px; bottom: -5px; } /* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-l { border-left-color: #5b6270 !important; border-left-width: 1px !important; } /* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-b { border-bottom-color: #5b6270 !important; border-bottom-width: 1px !important; } /* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-bl { border-bottom-color: #5b6270 !important; border-bottom-width: 1px !important; border-left-color: #5b6270 !important; border-left-width: 1px !important; } /* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-r { border-right-color: #5b6270 !important; border-right-width: 1px !important; } /* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-rl { border-right-color: #5b6270 !important; border-right-width: 1px !important; border-left-color: #5b6270 !important; border-left-width: 1px !important; } /* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-rb { border-right-color: #5b6270 !important; border-right-width: 1px !important; border-bottom-color: #5b6270 !important; border-bottom-width: 1px !important; } /* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-rbl { border-right-color: #5b6270 !important; border-right-width: 1px !important; border-bottom-color: #5b6270 !important; border-bottom-width: 1px !important; border-left-color: #5b6270 !important; border-left-width: 1px !important; } /* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-t { border-top-color: #5b6270 !important; border-top-width: 1px !important; } /* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-tl { border-top-color: #5b6270 !important; border-top-width: 1px !important; border-left-color: #5b6270 !important; border-left-width: 1px !important; } /* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-tb { border-top-color: #5b6270 !important; border-top-width: 1px !important; border-bottom-color: #5b6270 !important; border-bottom-width: 1px !important; } /* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-tbl { border-top-color: #5b6270 !important; border-top-width: 1px !important; border-bottom-color: #5b6270 !important; border-bottom-width: 1px !important; border-left-color: #5b6270 !important; border-left-width: 1px !important; } /* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-tr { border-top-color: #5b6270 !important; border-top-width: 1px !important; border-right-color: #5b6270 !important; border-right-width: 1px !important; } /* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-trl { border-top-color: #5b6270 !important; border-top-width: 1px !important; border-right-color: #5b6270 !important; border-right-width: 1px !important; border-left-color: #5b6270 !important; border-left-width: 1px !important; } /* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-trb { border-top-color: #5b6270 !important; border-top-width: 1px !important; border-right-color: #5b6270 !important; border-right-width: 1px !important; border-bottom-color: #5b6270 !important; border-bottom-width: 1px !important; } /* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-window-default-outer-border-trbl { border-color: #5b6270 !important; border-width: 1px !important; } /* line 675, ../../../ext-theme-neutral/sass/src/window/Window.scss */ .x-window-body-plain { background-color: transparent; } /** * Creates a visual theme for a Ext.tip.Tip * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {color} [$ui-border-color=$tip-border-color] * The border-color of the Tip * * @param {number} [$ui-border-width=$tip-border-width] * The border-width of the Tip * * @param {number} [$ui-border-radius=$tip-border-radius] * The border-radius of the Tip * * @param {color} [$ui-background-color=$tip-background-color] * The background-color of the Tip * * @param {string/list} [$ui-background-gradient=$tip-background-gradient] * The background-gradient of the Tip. Can be either the name of a predefined gradient or a * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. * * @param {number} [$ui-tool-spacing=$tip-tool-spacing] * The space between {@link Ext.panel.Tool Tools} in the header * * @param {string} [$ui-tool-background-image=$tip-tool-background-image] * The sprite to use for the header {@link Ext.panel.Tool Tools} * * @param {number/list} [$ui-header-padding=$tip-header-padding] * The padding of the Tip header's body element * * @param {color} [$ui-header-color=$tip-header-color] * The text color of the Tip header * * @param {number} [$ui-header-font-size=$tip-header-font-size] * The font-size of the Tip header * * @param {string} [$ui-header-font-weight=$tip-header-font-weight] * The font-weight of the Tip header * * @param {number/list} [$ui-body-padding=$tip-body-padding] * The padding of the Tip body * * @param {color} [$ui-body-color=$tip-body-color] * The text color of the Tip body * * @param {number} [$ui-body-font-size=$tip-body-font-size] * The font-size of the Tip body * * @param {string} [$ui-body-font-weight=$tip-body-font-weight] * The font-weight of the Tip body * * @param {color} [$ui-body-link-color=$tip-body-link-color] * The text color of any anchor tags inside the Tip body * * @param {number} [$ui-inner-border-width=0] * The inner border-width of the Tip * * @param {color} [$ui-inner-border-color=#fff] * The inner border-color of the Tip * * @member Ext.tip.Tip */ /* line 179, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-anchor { position: absolute; overflow: hidden; height: 10px; width: 10px; border-style: solid; border-width: 5px; border-color: #122d5e; } /* line 192, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-anchor-top { border-top-color: transparent; border-left-color: transparent; border-right-color: transparent; _border-top-color: pink; _border-left-color: pink; _border-right-color: pink; _filter: chroma(color=pink); } /* line 205, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-anchor-bottom { border-bottom-color: transparent; border-left-color: transparent; border-right-color: transparent; _border-bottom-color: pink; _border-left-color: pink; _border-right-color: pink; _filter: chroma(color=pink); } /* line 218, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-anchor-left { border-top-color: transparent; border-bottom-color: transparent; border-left-color: transparent; _border-top-color: pink; _border-bottom-color: pink; _border-left-color: pink; _filter: chroma(color=pink); } /* line 231, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-anchor-right { border-top-color: transparent; border-bottom-color: transparent; border-right-color: transparent; _border-top-color: pink; _border-bottom-color: pink; _border-right-color: pink; _filter: chroma(color=pink); } /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 2px 2px 2px 2px; border-width: 1px; border-style: solid; background-color: #eeeef0; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-mc { background-color: #eeeef0; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-tip-default { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-frameInfo { font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-tr, .x-tip-default-br, .x-tip-default-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-tl, .x-tip-default-bl, .x-tip-default-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-tl, .x-tip-default-bl, .x-tip-default-tr, .x-tip-default-br, .x-tip-default-tc, .x-tip-default-bc, .x-tip-default-ml, .x-tip-default-mr { background-image: url(images/tip/tip-default-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-ml, .x-tip-default-mr { background-image: url(images/tip/tip-default-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-default-mc { padding: 0px 0px 0px 0px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tip-default:before { display: none; content: "x-slicer:frame:3px 3px 3px 3px, corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 112, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-default { border-color: #122d5e; } /* line 121, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-default .x-tool-img { background-image: url(images/tools/tool-sprites-dark.png); background-color: #eeeef0; } /* line 136, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-header-default .x-tool-after-title { margin: 0 0 0 6px; } /* line 141, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-header-default .x-rtl.x-tool-after-title { margin: 0 6px 0 0; } /* line 146, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-header-default .x-tool-before-title { margin: 0 6px 0 0; } /* line 151, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-header-default .x-rtl.x-tool-before-title { margin: 0 0 0 6px; } /* line 157, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-header-default { padding: 3px 3px 0 3px; } /* line 161, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-header-title-default { color: black; font-size: 15px; font-weight: bold; } /* line 167, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-body-default { padding: 3px; color: black; font-size: 15px; font-weight: normal; } /* line 172, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-body-default a { color: black; } /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 2px 2px 2px 2px; border-width: 1px; border-style: solid; background-color: #eeeef0; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-mc { background-color: #eeeef0; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-tip-form-invalid { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-frameInfo { font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-tr, .x-tip-form-invalid-br, .x-tip-form-invalid-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-tl, .x-tip-form-invalid-bl, .x-tip-form-invalid-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-tl, .x-tip-form-invalid-bl, .x-tip-form-invalid-tr, .x-tip-form-invalid-br, .x-tip-form-invalid-tc, .x-tip-form-invalid-bc, .x-tip-form-invalid-ml, .x-tip-form-invalid-mr { background-image: url(images/tip/tip-form-invalid-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-ml, .x-tip-form-invalid-mr { background-image: url(images/tip/tip-form-invalid-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-tip-form-invalid-mc { padding: 0px 0px 0px 0px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-tip-form-invalid:before { display: none; content: "x-slicer:frame:3px 3px 3px 3px, corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 112, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-form-invalid { border-color: #122d5e; } /* line 121, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-form-invalid .x-tool-img { background-image: url(images/tools/tool-sprites-dark.png); background-color: #eeeef0; } /* line 136, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-header-form-invalid .x-tool-after-title { margin: 0 0 0 6px; } /* line 141, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-header-form-invalid .x-rtl.x-tool-after-title { margin: 0 6px 0 0; } /* line 146, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-header-form-invalid .x-tool-before-title { margin: 0 6px 0 0; } /* line 151, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-header-form-invalid .x-rtl.x-tool-before-title { margin: 0 0 0 6px; } /* line 157, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-header-form-invalid { padding: 3px 3px 0 3px; } /* line 161, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-header-title-form-invalid { color: black; font-size: 15px; font-weight: bold; } /* line 167, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-body-form-invalid { padding: 3px 3px 3px 22px; color: black; font-size: 15px; font-weight: normal; } /* line 172, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-body-form-invalid a { color: black; } /* line 268, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-body-form-invalid { background: 1px 1px no-repeat; background-image: url(images/form/exclamation.png); } /* line 271, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-body-form-invalid li { margin-bottom: 4px; } /* line 273, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ .x-tip-body-form-invalid li.last { margin-bottom: 0; } /* COMMON */ /* line 2, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-container .x-toolbar-default { border-color: #CACACA; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+your_sha256_hashOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashZD0iciI/PjU1iboAAAAfSURBVHjaYvj//z8DDN+8eROVA6JROGABZA4IAwQYALYwMgX3eE7SAAAAAElFTkSuQmCC); color: #555; background-color: #F7F7F7; font-weight: bold; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; } /* line 12, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-container .x-docked-top { border-bottom-width: 1px !important; } /* line 16, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-container .x-docked-bottom { border-top-width: 1px !important; } /* line 21, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-container .x-tree-view, .x-bindinspector-container .x-grid-view { background-color: #F3F3F3; box-shadow: inset 8px 0 8px 0 rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 8px 0 8px 0 rgba(0, 0, 0, 0.1); -webkit-box-shadow: inset 8px 0 8px 0 rgba(0, 0, 0, 0.1); } /* line 28, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-last-item td { box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1); } /* line 34, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-unhighlighted.x-bindinspector-last-item td { box-shadow: 0 8px 8px black; -moz-box-shadow: 0 8px 8px black; -webkit-box-shadow: 0 8px 8px black; } /* COMPONENT LIST */ /* line 41, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-vm-results-tb.x-toolbar-default { background-color: #FFE8BE; } /* line 45, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-target-menu { padding: 10px; height: 0px; overflow: hidden; background: #3C3C3C; color: #FFFFFF; font-size: 15px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* line 56, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-target-menu hr { border-color: #5A5A5A; } /* line 60, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-picker-lbl { width: 76px; display: inline-block; text-align: right; padding-right: 19px; } /* line 68, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-preview-bind, .x-bindinspector-open-bind { padding: 4px; background: #4D4D4D; display: inline-block; margin: 2px 12px 2px 4px; color: #FFC154; font-weight: bold; border: 1px solid #695633; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; } /* line 84, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-preview-bind:hover, .x-bindinspector-open-bind:hover { background-color: #646464; color: white; border-color: #A2A2A2; } /* line 91, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-preview-vm, .x-bindinspector-open-vm { padding: 4px; background: #4D4D4D; display: inline-block; margin: 2px; color: #54CFFF; font-weight: bold; border: 1px solid #4F5E64; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; } /* line 107, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-preview-vm:hover, .x-bindinspector-open-vm:hover { background-color: #646464; color: white; border-color: #A2A2A2; } /* line 113, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-filter-visible .x-tree-node-text { font-weight: bold; background: #666666; padding: 2px 12px 3px 12px; margin-left: 5px; color: #FFFFFF; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; border: 1px solid #444444; } /* line 125, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindings-icon, .x-vm-icon { padding-left: 7px; vertical-align: bottom; font-size: 18px; } /* line 131, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindings-icon { color: #F39061; } /* line 135, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-vm-icon { color: #67AAE9; } /* line 139, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-filter-visible .x-bindings-icon { color: #F8A67F; } /* line 143, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-filter-visible .x-vm-icon { color: #7BC8F3; } /* data missing from binding */ /* line 148, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-missing-data .x-tree-icon { /*red*/ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABgUlEQVR42mNgwAGueUd43w6IunsrIOrBdd+wYAZSwBnPAGWgxm93A2P+g/At/6gfl70DNYk24LZ/5BKQRhB9wy9yFoh90zdyNVGar3iGat0OiP4LsvWMS6jcOVc/KZBr7vhH/bvsE6hPhO1Rq8C2+0VNgYnd8o/ohXplA17NIBtANoFsBNnMy8v7H4RPOPuJ3/KL+gqSu+YTboTTgJt+your_sha256_hashV7xDzTAMAJq8HRza/pHtMDFkA0Dghl9EK0RNxA5Uv3tHWIEl/KI+HrN0F8JlAEgOpAakFqQH4Xf/your_sha256_hashyour_sha256_hashTQxnHHxEgAGzHJiE3xJnECiTRb0F6QGlDQCUUiJb7CpB8QAAAABJRU5ErkJggg==); } /* rowbody */ /* line 154, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-cmp-list-row-body { display: none; background: #4E4E4E; padding: 7px 12px; color: #FFC256; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-size: 13px; line-height: 21px; border: 1px solid #222222; } /* line 166, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-grid-item-selected .x-cmp-list-row-body { display: block; } /* tips */ /* line 171, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-componentlist-tip { background: #3C3C3C; color: #C92424; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; } /* line 178, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-componentlist-tip hr { border-color: #5A5A5A; } /* line 182, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-componentlist-tip .x-binding-tip-descriptor { color: white; font-weight: bold; margin-left: 8px; } /* line 188, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-componentlist-tip .x-tip-body-default { color: #FFFFFF; font-size: 14px; } /* line 193, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-binding-tip-value { color: #FFC154; font-size: 15px; line-height: 28px; } /* line 199, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-binding-missing-data { color: #FF5E5E; font-weight: bold; } /* line 204, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-componentlist-tip .x-tip-anchor { position: absolute; overflow: hidden; border-style: solid; border-width: 16px 16px 16px 0; left: -15px !important; top: 50% !important; margin-top: -16px; border-color: transparent #3C3C3C; } /* BINDINGS PREVIEW */ /* line 218, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-prev-default { background: white; color: #6A8297; font-size: 22px; line-height: 31px; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; text-align: center; } /* VIEW MODEL DETAIL */ /* line 231, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindindicator-vm-src { background-image: url(data:image/png;base64,your_sha512_hash+rDUDxA///P1fAY8BzB6AB/0EYqOECiI9qAETu//+XDf//3xfAYcjLAKBNDxCKX00AKYZgEBsu/your_sha256_hashRU7AABzWObuSkN0egAAAABJRU5ErkJggg==); background-position: center center; background-repeat: no-repeat; background-color: #FF5200; } /* line 238, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-viewmodeldetail .x-grid-item-over .x-bindinspector-data-search-cell { visibility: visible; } /* line 242, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-viewmodeldetail .x-grid-item-over .x-bindinspector-data-search-cell:hover { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABNElEQVR42o2SLY6DUBSF2UHDBhCzDhSpI1gEO0BSgQI/G0CMqykSLGSWAggsogFFAuJOvyY0Q/kpJ3kJ4d1z7j3nPkXZga7rZ9/35Xq9ShRFEgTBr+u6qvIJp9Ppi+KmaWQcR+n7your_sha512_hash+your_sha256_hashCZgsLj4uKgABCENgGq+RBAcRppGmauiBPDwYyp+u61zf/98h3OlNUVdVzRRwyoSue+your_sha512_hash=); background-color: #FF5200; } /* line 247, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-data-search-cell { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/your_sha256_hashyour_sha256_hashyour_sha256_hash//EE4kY9M0cztlWZpRFP3oui54X7NIBYfDQeI4/your_sha256_hashQxDoWdLFn5pEEkQAWAajJKF4h1yhPq+N1/AamEAcyour_sha512_hash/jMnzbI73hMsAAAAASUVORK5CYII=); background-position: center center; background-repeat: no-repeat; visibility: hidden; } /* line 254, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-isloading .x-tree-icon { background-image: url(images/grid/loading.gif) !important; vertical-align: middle; width: 16px; height: 16px; } /* line 261, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-highlighted { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; } /* line 266, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-unhighlighted { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20); opacity: 0.2; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; } /* line 272, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bi-zero-bind-count { color: #CACACA; } /* line 276, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-not-inherited .x-bindinspector-indicator-col { /*gray diag lines*/ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+your_sha256_hashOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashZD0iciI/PjU1iboAAAAfSURBVHjaYvj//z8DDN+8eROVA6JROGABZA4IAwQYALYwMgX3eE7SAAAAAElFTkSuQmCC); border-right: 2px solid #CFCDCD; font-size: 13px; color: #8B8B8B; background-color: #F7F7F7; } /* line 285, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-indicator-col { border-right: 2px solid #F3F3F3; color: #414141; } /* line 290, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-missing-data .x-tree-node-text { position: relative; } /* line 294, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-data-only .x-tree-icon { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); opacity: 0.7; /*blue*/ /*background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABOklEQVR42mNgQANt8/ZodSw91Ne59PB1IP4Bwh3LD18DiYHkGHCB0PpVbB1LD0/pXHrkb9fyo/+xYZBcx5JDMwr7VnFiaO5aeng3TCHQoJntiw+Y1s/fzwHCIDZIDC6your_sha512_hash/uyQ/your_sha256_hashyour_sha256_hashyour_sha256_hash0Sg/sZCQAAbAWIYstl68AAAAAASUVORK5CYII=);*/ /*gray info*/ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABGElEQVR42qVTSwrCMBDNyg/oRVR0oZ6vN1ApCrrqvruurW2hvwuIFa+hCxVF34Ok1NIWrQNDkpf3pjOTqRA5s2275/v+your_sha256_hashOvfE1H0Yhjtq0gAAVlJ4chxnpHAlUGfc9cE5Su4yBRHgQRA1DrOZ5QNI/khm8aBWINJcpS2+your_sha256_hashw7WvbGJZgEwTF2zI4JdnJEc9I7WVg1SQejpI1FSN8pp1Esfcd7gnVjrKf/9MBWkumCq+dMd6YbeJpTVn7A1h4Ltw2AUeVgAAAABJRU5ErkJggg==); } /* line 305, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-data-only .x-tree-node-text, .x-bindinspector-data-only .x-grid-cell-inner { color: #CACACA; } /* line 309, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-stub-only .x-tree-icon { /*blue*/ /*background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABOklEQVR42mNgQANt8/ZodSw91Ne59PB1IP4Bwh3LD18DiYHkGHCB0PpVbB1LD0/pXHrkb9fyo/+xYZBcx5JDMwr7VnFiaO5aeng3TCHQoJntiw+Y1s/fzwHCIDZIDC6your_sha512_hash/uyQ/your_sha256_hashyour_sha256_hashyour_sha256_hash0Sg/sZCQAAbAWIYstl68AAAAAASUVORK5CYII=);*/ /*yellow alert*/ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/your_sha256_hashEuKoEu+SWcg5baLCS7tNTx98IzyMWjXoeHe95/z3vODdzi2kdTvIo30fL1+your_sha256_hashyour_sha256_hashE5hJXI+AbUVvfVtwZzkHTECAGptel8cgisSnyJDk+8GRlZ8MdOwxITghoa9ArhlZmzB+/abDjwh+c8+LBgRnMLEBHnxKJYpBpfMFDbGjWcGPFD11gAAAABJRU5ErkJggg==); } /* COMPONENT DETAIL */ /* line 319, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-stub-active { border-bottom: 1px solid #DFDFDF; } /* line 323, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-stub-active:hover { color: #3DB5CC; border-color: #3DB5CC; } /* line 328, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-cmp-datasrc { color: #2E2E2E; background-color: #FAFAFA; padding: 0px 10px; /*gray diag lines*/ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+your_sha256_hashOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashZD0iciI/PjU1iboAAAAfSURBVHjaYvj//z8DDN+8eROVA6JROGABZA4IAwQYALYwMgX3eE7SAAAAAElFTkSuQmCC); border-top: 1px solid #E0E0E0; } /* line 338, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-compdetail-grid .x-grid-cell-inner { line-height: 31px; font-size: 14px; padding: 10px 16px; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; } /* line 347, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-compdetail-grid .x-grid-item-selected, .x-bindinspector-compdetail-grid .x-grid-item-focused { background-color: white; } /* line 352, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-compdetail-grid .x-grid-item-selected .x-grid-cell, .x-bindinspector-compdetail-grid .x-grid-item-focused .x-grid-cell { border-left: 20px solid #FFC154; } /* line 356, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-comp-key { font-weight: bold; color: #575656; } /* line 362, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-comp-desc { margin-left: 12px; color: #919191; } /* line 367, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-comp-val { color: #318094; font-weight: bold; } /* line 372, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-bind-type { color: #C4935F; font-size: 12px; line-height: 10px; font-style: italic; text-align: right; } /* line 382, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-direct-val, .x-bindinspector-inherited-val, .x-bindinspector-mult-val { position: relative; } /* line 388, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-direct-val:after, .x-bindinspector-inherited-val:after, .x-bindinspector-mult-val-val:after { position: absolute; bottom: -13px; width: 16px; left: 50%; margin-left: -8px; text-align: center; color: gray; line-height: 14px; } /* line 399, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-direct-val:after { content: '\25CF'; } /* line 403, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-inherited-val { content: '\25CB'; } /* line 407, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */ .x-bindinspector-mult-val { content: '\25D3'; } /** * Creates a visual theme for a ButtonGroup. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {color} [$ui-background-color=$btn-group-background-color] * The background-color of the button group * * @param {color} [$ui-border-color=$btn-group-border-color] * The border-color of the button group * * @param {number} [$ui-border-width=$btn-group-border-width] * The border-width of the button group * * @param {number} [$ui-border-radius=$btn-group-border-radius] * The border-radius of the button group * * @param {color} [$ui-inner-border-color=$btn-group-inner-border-color] * The inner border-color of the button group * * @param {color} [$ui-header-background-color=$btn-group-header-background-color] * The background-color of the header * * @param {string} [$ui-header-font=$btn-group-header-font] * The font of the header * * @param {color} [$ui-header-color=$btn-group-header-color] * The text color of the header * * @param {number} [$ui-header-line-height=$btn-group-header-line-height] * The line-height of the header * * @param {number} [$ui-header-padding=$btn-group-header-padding] * The padding of the header * * @param {number} [$ui-body-padding=$btn-group-padding] * The padding of the body element * * @param {string} [$ui-tool-background-image=$btn-group-tool-background-image] * Sprite image to use for header {@link Ext.panel.Tool Tools} * * @member Ext.container.ButtonGroup */ /* line 101, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ .x-btn-group-default { border-color: #606068; -webkit-box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; -moz-box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; } /* line 110, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ .x-btn-group-header-default { padding: 4px 5px; line-height: 16px; background: #676772; -moz-border-radius-topleft: 0px; -webkit-border-top-left-radius: 0px; border-top-left-radius: 0px; -moz-border-radius-topright: 0px; -webkit-border-top-right-radius: 0px; border-top-right-radius: 0px; } /* line 121, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ .x-btn-group-header-default .x-tool-img { background-color: #676772; } /* line 132, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ .x-btn-group-header-text-container-default { font: normal 15px helvetica, arial, verdana, sans-serif; line-height: 16px; color: #d2d2d2; } /* line 138, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ .x-btn-group-body-default { padding: 0 1px; } /* line 140, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ .x-btn-group-body-default .x-table-layout { border-spacing: 5px; } /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 0px 1px 0px 1px; border-width: 3px; border-style: solid; background-color: #393d4e; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-mc { background-color: #393d4e; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-btn-group-default-framed { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-frameInfo { font-family: dh-3-3-3-3-3-3-3-3-0-1-0-1; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-tr, .x-btn-group-default-framed-br, .x-btn-group-default-framed-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-tl, .x-btn-group-default-framed-bl, .x-btn-group-default-framed-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-tl, .x-btn-group-default-framed-bl, .x-btn-group-default-framed-tr, .x-btn-group-default-framed-br, .x-btn-group-default-framed-tc, .x-btn-group-default-framed-bc, .x-btn-group-default-framed-ml, .x-btn-group-default-framed-mr { background-image: url(images/btn-group/btn-group-default-framed-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-ml, .x-btn-group-default-framed-mr { background-image: url(images/btn-group/btn-group-default-framed-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-mc { padding: 0px 1px 0px 1px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-group-default-framed:before { display: none; content: "x-slicer:frame:3px 3px 3px 3px, corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 0px 1px 0px 1px; border-width: 3px; border-style: solid; background-color: #393d4e; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-mc { background-color: #393d4e; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-btn-group-default-framed-notitle { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-frameInfo { font-family: dh-3-3-3-3-3-3-3-3-0-1-0-1; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-tr, .x-btn-group-default-framed-notitle-br, .x-btn-group-default-framed-notitle-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-tl, .x-btn-group-default-framed-notitle-bl, .x-btn-group-default-framed-notitle-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-tl, .x-btn-group-default-framed-notitle-bl, .x-btn-group-default-framed-notitle-tr, .x-btn-group-default-framed-notitle-br, .x-btn-group-default-framed-notitle-tc, .x-btn-group-default-framed-notitle-bc, .x-btn-group-default-framed-notitle-ml, .x-btn-group-default-framed-notitle-mr { background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-ml, .x-btn-group-default-framed-notitle-mr { background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-group-default-framed-notitle-mc { padding: 0px 1px 0px 1px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-group-default-framed-notitle:before { display: none; content: "x-slicer:frame:3px 3px 3px 3px, corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 101, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ .x-btn-group-default-framed { border-color: #606068; -webkit-box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; -moz-box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; } /* line 110, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ .x-btn-group-header-default-framed { padding: 4px 5px; line-height: 16px; background: #676772; -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; } /* line 121, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ .x-btn-group-header-default-framed .x-tool-img { background-color: #676772; } /* line 132, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ .x-btn-group-header-text-container-default-framed { font: normal 15px helvetica, arial, verdana, sans-serif; line-height: 16px; color: #d2d2d2; } /* line 138, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ .x-btn-group-body-default-framed { padding: 0 1px 0 1px; } /* line 140, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ .x-btn-group-body-default-framed .x-table-layout { border-spacing: 5px; } /* line 1, ../../../ext-theme-neutral/sass/src/dashboard/Dashboard.scss */ .x-dashboard-column { padding: 0 0 7px 0; } /* line 5, ../../../ext-theme-neutral/sass/src/dashboard/Dashboard.scss */ .x-dashboard-panel { margin-top: 7px; } /* line 9, ../../../ext-theme-neutral/sass/src/dashboard/Dashboard.scss */ .x-dashboard-column-first { padding-left: 7px; clear: left; } /* line 14, ../../../ext-theme-neutral/sass/src/dashboard/Dashboard.scss */ .x-dashboard-column-last { padding-right: 7px; } /* line 18, ../../../ext-theme-neutral/sass/src/dashboard/Dashboard.scss */ .x-dashboard .x-panel-dd-spacer { border: 2px dashed #99bbe8; background: #f6f6f6; border-radius: 4px; -moz-border-radius: 4px; margin-top: 7px; } /* line 28, ../../../ext-theme-neutral/sass/src/dashboard/Dashboard.scss */ .x-dashboard-dd-over { overflow: hidden !important; } /* line 1, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ .x-message-box .x-window-body { background-color: #1f2833; border-width: 0; } /* line 13, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ .x-message-box-info, .x-message-box-warning, .x-message-box-question, .x-message-box-error { background-position: left top; background-repeat: no-repeat; } /* line 23, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ .x-rtl.x-message-box-info, .x-rtl.x-message-box-warning, .x-rtl.x-message-box-question, .x-rtl.x-message-box-error { background-position: right top; } /* line 29, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ .x-message-box-icon { height: 32px; width: 32px; margin-right: 10px; } /* line 35, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ .x-message-box-info { background-image: url(images/shared/icon-info.png); } /* line 39, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ .x-message-box-warning { background-image: url(images/shared/icon-warning.png); } /* line 43, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ .x-message-box-question { background-image: url(images/shared/icon-question.png); } /* line 47, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ .x-message-box-error { background-image: url(images/shared/icon-error.png); } /** * Creates a visual theme for a CheckboxGroup buttons. Note this mixin only provides * styling for the CheckboxGroup body and its {@link Ext.form.field.Checkbox#boxLabel}, The {@link #fieldLabel} * and error icon/message are styled by {@link #extjs-label-ui}. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number/list} [$ui-body-padding=$form-checkboxgroup-body-padding] * The padding of the CheckboxGroup body element * * @param {color} [$ui-body-invalid-border-color=$form-checkboxgroup-body-invalid-border-color] * The border color of the CheckboxGroup body element when in an invalid state. * * @param {string} [$ui-body-invalid-border-style=$form-checkboxgroup-body-invalid-border-style] * The border style of the CheckboxGroup body element when in an invalid state. * * @param {number} [$ui-body-invalid-border-width=$form-checkboxgroup-body-invalid-border-width] * The border width of the CheckboxGroup body element when in an invalid state. * * @param {string} [$ui-body-invalid-background-image=$form-checkboxgroup-body-invalid-background-image] * The background image of the CheckboxGroup body element when in an invalid state. * * @param {string} [$form-checkboxgroup-body-invalid-background-repeat=$form-field-invalid-background-repeat] * The background-repeat of the CheckboxGroup body element when in an invalid state. * * @param {string} [$ui-body-invalid-background-position=$form-checkboxgroup-body-invalid-background-position] * The background-position of the CheckboxGroup body element when in an invalid state. * * @member Ext.form.CheckboxGroup */ /* line 44, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ .x-form-item-body-default.x-form-checkboxgroup-body { padding: 0 4px; } /* line 47, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ .x-form-invalid .x-form-item-body-default.x-form-checkboxgroup-body { border-width: 1px; border-style: solid; border-color: #cc3300; } /** * Creates a visual theme for text fields. Note this mixin only provides styling * For the form field body, The label and error are styled by * {@link Ext.form.Labelable#css_mixin-extjs-label-ui}. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {number} [$ui-header-font-size=$fieldset-header-font-size] * The font-size of the FieldSet header * * @param {string} [$ui-header-font-weight=$fieldset-header-font-weight] * The font-weight of the FieldSet header * * @param {string} [$ui-header-font-family=$fieldset-header-font-family] * The font-family of the FieldSet header * * @param {number/string} [$ui-header-line-height=$fieldset-header-line-height] * The line-height of the FieldSet header * * @param {color} [$ui-header-color=$fieldset-header-color] * The text color of the FieldSet header * * @param {number} [$ui-border-width=$fieldset-border-width] * The border-width of the FieldSet * * @param {string} [$ui-border-style=$fieldset-border-style] * The border-style of the FieldSet * * @param {color} [$ui-border-color=$fieldset=border-color] * The border-color of the FieldSet * * @param {number} [$ui-border-radius=$fieldset=border-radius] * The border radius of FieldSet elements. * * @param {number/list} [$ui-padding=$fieldset-padding] * The FieldSet's padding * * @param {number/list} [$ui-margin=$fieldset-margin] * The FieldSet's margin * * @param {number/list} [$ui-header-padding=$fieldset-header-padding] * The padding to apply to the FieldSet's header * * @param {number} [$ui-collapse-tool-size=$fieldset-collapse-tool-size] * The size of the FieldSet's collapse tool * * @param {number/list} [$ui-collapse-tool-margin=$fieldset-collapse-tool-margin] * The margin to apply to the FieldSet's collapse tool * * @param {number/list} [$ui-collapse-tool-padding=$fieldset-collapse-tool-padding] * The padding to apply to the FieldSet's collapse tool * * @param {string} [$ui-collapse-tool-background-image=$fieldset-collapse-tool-background-image] * The background-image to use for the collapse tool. If 'none' the default tool * sprite will be used. Defaults to 'none'. * * @param {number} [$ui-collapse-tool-opacity=$fieldset-collapse-tool-opacity] * The opacity of the FieldSet's collapse tool * * @param {number} [$ui-collapse-tool-opacity-over=$fieldset-collapse-tool-opacity-over] * The opacity of the FieldSet's collapse tool when hovered * * @param {number} [$ui-collapse-tool-opacity-pressed=$fieldset-collapse-tool-opacity-pressed] * The opacity of the FieldSet's collapse tool when pressed * * @param {number/list} [$ui-checkbox-margin=$fieldset-checkbox-margin] * The margin to apply to the FieldSet's checkbox (for FieldSets that use * {@link #checkboxToggle}) * * @member Ext.form.FieldSet */ /* line 110, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-default { border: 1px solid #727c8c; padding: 0 10px; margin: 0 0 10px; } /* line 123, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-ie8 .x-fieldset-default { padding-top: 0; } /* line 126, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-ie8 .x-fieldset-body-default { padding-top: 0; } /* line 132, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-header-default { padding: 0 3px 1px; line-height: 16px; } /* line 136, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-header-default > .x-fieldset-header-text { font: normal 14px/16px helvetica, arial, verdana, sans-serif; color: white; padding: 1px 0; } /* line 143, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-header-checkbox-default { margin: 2px 3px 0 0; line-height: 16px; } /* line 146, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-header-checkbox-default.x-rtl { margin: 2px 0 0 3px; } /* line 153, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-header-tool-default { margin: 2px 3px 0 0; padding: 0; } /* line 156, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-header-tool-default.x-rtl { margin: 2px 0 0 3px; } /* line 162, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-header-tool-default > .x-tool-img { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); opacity: 0.8; height: 15px; width: 15px; } /* line 169, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-header-tool-default.x-tool-over > .x-tool-img { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90); opacity: 0.9; } /* line 175, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-header-tool-default.x-tool-pressed > .x-tool-img { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); opacity: 1; } /* line 180, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-header-tool-default > .x-tool-toggle { background-image: url(images/fieldset/collapse-tool.png); background-position: 0 0; } /* line 187, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-header-tool-default.x-tool-over > .x-tool-toggle { background-position: 0 -15px; } /* line 194, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-default.x-fieldset-collapsed { border-width: 1px 1px 0 1px; border-left-color: transparent; border-right-color: transparent; } /* line 202, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-default.x-fieldset-collapsed .x-tool-toggle { background-position: -15px 0; } /* line 206, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ .x-fieldset-default.x-fieldset-collapsed .x-tool-over > .x-tool-toggle { background-position: -15px -15px; } /** * Creates a visual theme for spinner field triggers. Note this mixin only provides * styling for the spinner trigger buttons. The text field portion of the styling must be * created using {@link Ext.form.field.Text#css_mixin-extjs-text-field-ui} * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {boolean} [$ui-trigger-vertical=$spinner-trigger-vertical] * `true` to align the up/down triggers vertically. * * @param {number} [$ui-trigger-width=$form-trigger-width] * The width of the triggers. * * @param {number} [$ui-field-height=$form-text-field-height] * The height of the text field that the trigger must fit within. This does not set the * height of the field, only the height of the triggers. When {@link #css_mixin-extjs-spinner-trigger-ui $ui-trigger-vertical} * is true, the available height within the field borders is divided evenly between the * two triggers. * * @param {number/list} [$ui-field-border-width=$form-text-field-border-width] * The border width of the text field that the trigger must fit within. This does not set * the border of the field, it is only needed so that the border-width of the field can * be subtracted from the trigger height. * * @param {string} [$ui-trigger-vertical-background-image=$spinner-trigger-vertical-background-image] * The background image sprite for vertically aligned spinner triggers * * @param {string} [$ui-trigger-up-background-image='form/spinner-up'] * The background image for the "up" trigger when triggers are horizontally aligned * * @param {string} [$ui-trigger-down-background-image='form/spinner-down'] * The background image for the "down" trigger when triggers are horizontally aligned * * @param {color} [$ui-trigger-background-color=$form-text-field-background-color] * The background color of the spinner triggers * * @param {boolean} [$ui-classic-border=$form-text-field-classic-border] * `true` to use classic-theme styled border. * * @member Ext.form.trigger.Spinner */ /* line 59, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */ .x-form-trigger-spinner-default { width: 22px; } /* line 66, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */ .x-form-spinner-default { background-image: url(images/form/spinner.png); background-color: #34383f; width: 22px; height: 10px; } /* line 70, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */ .x-form-spinner-default.x-rtl { background-image: url(images/form/spinner-rtl.png); } /* line 102, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */ .x-form-spinner-up-default { background-position: 0 0; } /* line 105, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */ .x-form-spinner-up-default.x-form-spinner-over { background-position: -22px 0; } /* line 107, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */ .x-form-spinner-up-default.x-form-spinner-over.x-form-spinner-focus { background-position: -88px 0; } /* line 112, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */ .x-form-spinner-up-default.x-form-spinner-focus { background-position: -66px 0; } /* line 117, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */ .x-form-spinner-up-default.x-form-spinner.x-form-spinner-click { background-position: -44px 0; } /* line 122, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */ .x-form-spinner-down-default { background-position: 0 -10px; } /* line 125, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */ .x-form-spinner-down-default.x-form-spinner-over { background-position: -22px -10px; } /* line 127, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */ .x-form-spinner-down-default.x-form-spinner-over.x-form-spinner-focus { background-position: -88px -10px; } /* line 132, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */ .x-form-spinner-down-default.x-form-spinner-focus { background-position: -66px -10px; } /* line 137, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */ .x-form-spinner-down-default.x-form-spinner.x-form-spinner-click { background-position: -44px -10px; } /* line 1, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ .x-tbar-page-number { width: 30px; } /* line 5, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ .x-tbar-page-first { background-image: url(images/grid/page-first.png); } /* line 9, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ .x-tbar-page-prev { background-image: url(images/grid/page-prev.png); } /* line 13, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ .x-tbar-page-next { background-image: url(images/grid/page-next.png); } /* line 17, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ .x-tbar-page-last { background-image: url(images/grid/page-last.png); } /* line 21, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ .x-tbar-loading { background-image: url(images/grid/refresh.png); } /* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ .x-rtl.x-tbar-page-first { background-image: url(images/grid/page-last.png); } /* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ .x-rtl.x-tbar-page-prev { background-image: url(images/grid/page-next.png); } /* line 59, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ .x-rtl.x-tbar-page-next { background-image: url(images/grid/page-prev.png); } /* line 63, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ .x-rtl.x-tbar-page-last { background-image: url(images/grid/page-first.png); } /* line 1, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ .x-boundlist { border-width: 2px; border-style: solid; border-color: #222732; background: #404551; } /* line 8, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ .x-boundlist-item { padding: 0 6px; font: normal 15px helvetica, arial, verdana, sans-serif; line-height: 24px; cursor: pointer; cursor: hand; position: relative; /*allow hover in IE on empty items*/ border-width: 0; border-style: dotted; border-color: #404551; } /* line 24, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ .x-boundlist-selected { background: #e5872c; border-color: #e5872c; } /* line 29, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ .x-boundlist-item-over { background: #e5872c; border-color: #e5872c; } /* line 34, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ .x-boundlist-floating { border-top-width: 0; } /* line 38, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ .x-boundlist-above { border-top-width: 1px; border-bottom-width: 1px; } /* line 9, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker { border-width: 1px; border-style: solid; border-color: #798294; background-color: #21252e; width: 212px; } /* line 19, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-header { padding: 4px 6px; text-align: center; background-image: none; background-color: #5c6980; } /* line 32, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-arrow { width: 12px; height: 12px; top: 9px; cursor: pointer; -webkit-touch-callout: none; background-color: #5c6980; } /* line 51, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ div.x-datepicker-arrow:hover { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); opacity: 0.7; } /* line 56, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-next { right: 6px; background: url(images/datepicker/arrow-right.png) no-repeat 0 0; } /* line 61, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-prev { left: 6px; background: url(images/datepicker/arrow-left.png) no-repeat 0 0; } /* line 77, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-month .x-btn, .x-datepicker-month .x-btn .x-btn-tc, .x-datepicker-month .x-btn .x-btn-tl, .x-datepicker-month .x-btn .x-btn-tr, .x-datepicker-month .x-btn .x-btn-mc, .x-datepicker-month .x-btn .x-btn-ml, .x-datepicker-month .x-btn .x-btn-mr, .x-datepicker-month .x-btn .x-btn-bc, .x-datepicker-month .x-btn .x-btn-bl, .x-datepicker-month .x-btn .x-btn-br { background: transparent; border-width: 0 !important; } /* line 84, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-month .x-btn-inner { color: white; } /* line 89, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-month .x-btn-split-right:after, .x-datepicker-month .x-btn-over .x-btn-split-right:after { background-image: url(images/datepicker/month-arrow.png); padding-right: 8px; } /* line 94, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-month .x-btn-over { border-color: transparent; } /* line 99, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-column-header { width: 30px; color: white; font: bold 15px helvetica, arial, verdana, sans-serif; text-align: right; background-image: none; background-color: #3a4051; } /* line 118, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-column-header-inner { line-height: 25px; padding: 0 9px 0 0; } /* line 123, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-cell { text-align: right; border-width: 1px; border-style: solid; border-color: #21252e; } /* line 133, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-date { padding: 0 7px 0 0; font: normal 15px helvetica, arial, verdana, sans-serif; color: white; cursor: pointer; line-height: 23px; } /* line 143, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ div.x-datepicker-date:hover { color: white; background-color: #7e5530; } /* line 148, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-selected { border-style: solid; border-color: #864900; } /* line 151, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-selected .x-datepicker-date { background-color: #e5872c; font-weight: bold; } /* line 157, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-today { border-color: #9999aa; border-style: solid; } /* line 164, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-prevday .x-datepicker-date, .x-datepicker-nextday .x-datepicker-date { color: white; } /* line 171, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-disabled .x-datepicker-date { background-color: #eeeeee; cursor: default; color: white; } /* line 179, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-disabled div.x-datepicker-date:hover { background-color: #eeeeee; color: white; } /* line 185, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-footer, .x-monthpicker-buttons { padding: 3px 0; background-image: none; background-color: #5c6980; text-align: center; } /* line 201, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-datepicker-footer .x-btn, .x-monthpicker-buttons .x-btn { margin: 0 3px 0 2px; } /* line 207, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker { width: 212px; border-width: 1px; border-style: solid; border-color: #798294; background-color: #21252e; } /* line 217, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-months { border-width: 0 1px 0 0; border-color: #798294; border-style: solid; width: 105px; } /* line 226, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-months .x-monthpicker-item { width: 52px; } /* line 231, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-years { width: 105px; } /* line 234, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-years .x-monthpicker-item { width: 52px; } /* line 239, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-item { margin: 5px 0 5px; font: normal 15px helvetica, arial, verdana, sans-serif; text-align: center; } /* line 245, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-item-inner { margin: 0 5px 0 5px; color: white; border-width: 1px; border-style: solid; border-color: #21252e; line-height: 22px; cursor: pointer; } /* line 260, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ a.x-monthpicker-item-inner:hover { background-color: #7e5530; } /* line 264, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-selected { background-color: #e5872c; border-style: solid; border-color: #864900; } /* line 270, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-yearnav { height: 34px; } /* line 274, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-yearnav-button-ct { width: 52px; } /* line 278, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-yearnav-button { height: 12px; width: 12px; cursor: pointer; margin-top: 11px; -webkit-touch-callout: none; background-color: #21252e; } /* line 296, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ a.x-monthpicker-yearnav-button:hover { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); opacity: 0.7; } /* line 301, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-yearnav-next { background: url(images/datepicker/arrow-right.png) no-repeat 0 0; } /* line 305, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-yearnav-next-over { background-position: 0 0; } /* line 309, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-yearnav-prev { background: url(images/datepicker/arrow-left.png) no-repeat 0 0; } /* line 313, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-yearnav-prev-over { background-position: 0 0; } /* line 318, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-small .x-monthpicker-item { margin: 2px 0 2px; } /* line 322, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-small .x-monthpicker-item-inner { margin: 0 5px 0 5px; } /* line 326, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-small .x-monthpicker-yearnav { height: 28px; } /* line 330, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ .x-monthpicker-small .x-monthpicker-yearnav-button { margin-top: 8px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-datepicker-header:before { display: none; content: "x-slicer:stretch:bottom" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-datepicker-footer:before { display: none; content: "x-slicer:stretch:bottom" !important; } /*</if slicer>*/ /* */ /* line 1, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ .x-form-date-trigger { background-image: url(images/form/date-trigger.png); } /* line 5, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ .x-form-date-trigger.x-rtl { background-image: url(images/form/date-trigger-rtl.png); } /* line 1, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ .x-color-picker { width: 192px; height: 120px; background-color: white; border-color: white; border-width: 0; border-style: solid; } /* line 10, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ .x-color-picker-item { width: 24px; height: 24px; border-width: 1px; border-color: white; border-style: solid; background-color: white; cursor: pointer; padding: 2px; } /* line 22, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ a.x-color-picker-item:hover { border-color: #8bb8f3; background-color: #e6e6e6; } /* line 27, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ .x-color-picker-selected { border-color: #8bb8f3; background-color: #e6e6e6; } /* line 32, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ .x-color-picker-item-inner { line-height: 16px; border-color: #e1e1e1; border-width: 1px; border-style: solid; } /* line 1, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-btn-text { background: transparent no-repeat; background-image: url(images/editor/tb-sprite.png); } /* line 7, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-bold, .x-menu-item div.x-edit-bold { background-position: 0 0; background-image: url(images/editor/tb-sprite.png); } /* line 13, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-italic, .x-menu-item div.x-edit-italic { background-position: -16px 0; background-image: url(images/editor/tb-sprite.png); } /* line 19, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-underline, .x-menu-item div.x-edit-underline { background-position: -32px 0; background-image: url(images/editor/tb-sprite.png); } /* line 25, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-forecolor, .x-menu-item div.x-edit-forecolor { background-position: -160px 0; background-image: url(images/editor/tb-sprite.png); } /* line 31, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-backcolor, .x-menu-item div.x-edit-backcolor { background-position: -176px 0; background-image: url(images/editor/tb-sprite.png); } /* line 37, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-justifyleft, .x-menu-item div.x-edit-justifyleft { background-position: -112px 0; background-image: url(images/editor/tb-sprite.png); } /* line 43, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-justifycenter, .x-menu-item div.x-edit-justifycenter { background-position: -128px 0; background-image: url(images/editor/tb-sprite.png); } /* line 49, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-justifyright, .x-menu-item div.x-edit-justifyright { background-position: -144px 0; background-image: url(images/editor/tb-sprite.png); } /* line 55, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-insertorderedlist, .x-menu-item div.x-edit-insertorderedlist { background-position: -80px 0; background-image: url(images/editor/tb-sprite.png); } /* line 61, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-insertunorderedlist, .x-menu-item div.x-edit-insertunorderedlist { background-position: -96px 0; background-image: url(images/editor/tb-sprite.png); } /* line 67, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-increasefontsize, .x-menu-item div.x-edit-increasefontsize { background-position: -48px 0; background-image: url(images/editor/tb-sprite.png); } /* line 73, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-decreasefontsize, .x-menu-item div.x-edit-decreasefontsize { background-position: -64px 0; background-image: url(images/editor/tb-sprite.png); } /* line 79, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-sourceedit, .x-menu-item div.x-edit-sourceedit { background-position: -192px 0; background-image: url(images/editor/tb-sprite.png); } /* line 85, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-edit-createlink, .x-menu-item div.x-edit-createlink { background-position: -208px 0; background-image: url(images/editor/tb-sprite.png); } /* line 90, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tip .x-tip-bd .x-tip-bd-inner { padding: 5px; padding-bottom: 1px; } /* line 95, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-tb .x-font-select { font-size: 15px; font-family: inherit; } /* line 100, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-wrap textarea { font: normal 15px helvetica, arial, verdana, sans-serif; background-color: #34383f; resize: none; } /* line 1, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ .x-grid-drop-indicator { position: absolute; height: 1px; line-height: 0px; background-color: #77BC71; overflow: visible; pointer-events: none; } /* line 9, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ .x-grid-drop-indicator .x-grid-drop-indicator-left { position: absolute; top: -8px; left: -12px; background-image: url(images/grid/dd-insert-arrow-right.png); height: 16px; width: 16px; } /* line 18, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ .x-grid-drop-indicator .x-grid-drop-indicator-right { position: absolute; top: -8px; right: -11px; background-image: url(images/grid/dd-insert-arrow-left.png); height: 16px; width: 16px; } /* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ .x-grid-cell-inner-action-col { padding: 5px 4px 5px 4px; } /* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ .x-action-col-cell .x-item-disabled { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); opacity: 0.3; } /* line 16, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ .x-action-col-icon { height: 16px; width: 16px; cursor: pointer; } /* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Check.scss */ .x-grid-cell-inner-checkcolumn { padding: 4px 10px 3px 10px; } /* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Check.scss */ .x-grid-checkcolumn { width: 19px; height: 19px; background: url(images/form/checkbox.png) 0 0 no-repeat; } /* line 17, ../../../ext-theme-neutral/sass/src/grid/column/Check.scss */ .x-item-disabled .x-grid-checkcolumn { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); opacity: 0.3; } /* line 22, ../../../ext-theme-neutral/sass/src/grid/column/Check.scss */ .x-grid-checkcolumn-checked { background-position: 0 -19px; } /* line 1, ../../../ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */ .x-grid-cell-inner-row-numberer { padding: 5px 5px 4px 3px; } /* * Define UI for fields which are rendered to fit inside grid cells. * This includes cell and row editor fields and fields in widget columns. */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 3px 3px 3px 3px; border-width: 1px; border-style: solid; background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-mc { background-image: url(images/btn/btn-grid-cell-small-fbg.gif); background-position: 0 top; background-color: #2a3142; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-btn-grid-cell-small { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; background-image: none; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-frameInfo { font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-tl { background-position: 0 -6px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-tr { background-position: right -9px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-bl { background-position: 0 -12px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-br { background-position: right -15px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-bc { background-position: 0 -3px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-tr, .x-btn-grid-cell-small-br, .x-btn-grid-cell-small-mr { padding-right: 3px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-tl, .x-btn-grid-cell-small-bl, .x-btn-grid-cell-small-ml { padding-left: 3px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-tc { height: 3px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-bc { height: 3px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-tl, .x-btn-grid-cell-small-bl, .x-btn-grid-cell-small-tr, .x-btn-grid-cell-small-br, .x-btn-grid-cell-small-tc, .x-btn-grid-cell-small-bc, .x-btn-grid-cell-small-ml, .x-btn-grid-cell-small-mr { background-image: url(images/btn/btn-grid-cell-small-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-ml, .x-btn-grid-cell-small-mr { background-image: url(images/btn/btn-grid-cell-small-sides.gif); } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-btn-grid-cell-small-mc { padding: 1px 1px 1px 1px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-grid-cell-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, frame-bg:url(images/btn/btn-grid-cell-small-fbg.gif), corners:url(images/btn/btn-grid-cell-small-corners.gif), sides:url(images/btn/btn-grid-cell-small-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-grid-cell-small { border-color: #222836; } /* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-button-grid-cell-small { height: 16px; } /* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-inner-grid-cell-small { font: bold 12px/16px helvetica, arial, verdana, sans-serif; color: white; padding: 0 5px; max-width: 100%; } /* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-right > .x-btn-inner-grid-cell-small, .x-btn-icon-left > .x-btn-inner-grid-cell-small { max-width: calc(100% - 16px); } /* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-grid-cell-small { height: 16px; } /* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-left > .x-btn-icon-el-grid-cell-small, .x-btn-icon-right > .x-btn-icon-el-grid-cell-small { width: 16px; } /* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-top > .x-btn-icon-el-grid-cell-small, .x-btn-icon-bottom > .x-btn-icon-el-grid-cell-small { min-width: 16px; } /* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-icon-el-grid-cell-small.x-btn-glyph { font-size: 16px; line-height: 16px; color: white; opacity: 0.5; } /* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-ie8 .x-btn-icon-el-grid-cell-small.x-btn-glyph { color: #9498a0; } /* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-grid-cell-small { margin-right: 0px; } /* line 497, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-grid-cell-small.x-rtl { margin-right: 0; margin-left: 0px; } /* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-grid-cell-small { margin-left: 0px; } /* line 508, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-grid-cell-small.x-rtl { margin-left: 0; margin-right: 0px; } /* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-grid-cell-small { margin-bottom: 5px; } /* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-grid-cell-small { margin-top: 5px; } /* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-grid-cell-small { padding-right: 5px; } /* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-grid-cell-small { margin-right: 5px; } /* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-arrow-bottom > .x-btn-button-grid-cell-small, .x-btn-split-bottom > .x-btn-button-grid-cell-small { padding-bottom: 3px; } /* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-grid-cell-small.x-btn-arrow-right:after { width: 8px; padding-right: 8px; background-image: url(images/button/grid-cell-small-arrow.png); } /* line 554, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-grid-cell-small.x-rtl.x-btn-arrow-right:after { background-image: url(images/button/grid-cell-small-arrow-rtl.png); } /* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-grid-cell-small.x-btn-arrow-bottom:after { height: 8px; background-image: url(images/button/grid-cell-small-arrow.png); } /* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-grid-cell-small.x-btn-split-right:after { width: 14px; padding-right: 14px; background-image: url(images/button/grid-cell-small-s-arrow.png); } /* line 592, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-grid-cell-small.x-rtl.x-btn-split-right:after { background-image: url(images/button/grid-cell-small-s-arrow-rtl.png); } /* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-wrap-grid-cell-small.x-btn-split-bottom:after { height: 14px; background-image: url(images/button/grid-cell-small-s-arrow-b.png); } /* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-grid-cell-small { padding-right: 5px; } /* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-grid-cell-small { margin-right: 5px; } /* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-grid-cell-small { background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over.x-btn-grid-cell-small { border-color: #1f2431; background-image: none; background-color: #262d3c; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3b424f), color-stop(50%, #262d3c), color-stop(51%, #242a39), color-stop(100%, #262d3c)); background-image: -webkit-linear-gradient(top, #3b424f, #262d3c 50%, #242a39 51%, #262d3c); background-image: -moz-linear-gradient(top, #3b424f, #262d3c 50%, #242a39 51%, #262d3c); background-image: -o-linear-gradient(top, #3b424f, #262d3c 50%, #242a39 51%, #262d3c); background-image: -ms-linear-gradient(top, #3b424f, #262d3c 50%, #242a39 51%, #262d3c); background-image: linear-gradient(top, #3b424f, #262d3c 50%, #242a39 51%, #262d3c); } /* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active.x-btn-grid-cell-small, .x-btn.x-btn-pressed.x-btn-grid-cell-small { border-color: #191e28; background-image: none; background-color: #1f2431; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1f2431), color-stop(50%, #1d222e), color-stop(51%, #1f2431), color-stop(100%, #353945)); background-image: -webkit-linear-gradient(top, #1f2431, #1d222e 50%, #1f2431 51%, #353945); background-image: -moz-linear-gradient(top, #1f2431, #1d222e 50%, #1f2431 51%, #353945); background-image: -o-linear-gradient(top, #1f2431, #1d222e 50%, #1f2431 51%, #353945); background-image: -ms-linear-gradient(top, #1f2431, #1d222e 50%, #1f2431 51%, #353945); background-image: linear-gradient(top, #1f2431, #1d222e 50%, #1f2431 51%, #353945); } /* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled.x-btn-grid-cell-small { background-image: none; background-color: #2a3142; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3f4554), color-stop(50%, #2a3142), color-stop(51%, #272e3e), color-stop(100%, #2a3142)); background-image: -webkit-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -moz-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -o-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: -ms-linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); background-image: linear-gradient(top, #3f4554, #2a3142 50%, #272e3e 51%, #2a3142); } /* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-grid-cell-small-tl, .x-btn-focus .x-btn-grid-cell-small-bl, .x-btn-focus .x-btn-grid-cell-small-tr, .x-btn-focus .x-btn-grid-cell-small-br, .x-btn-focus .x-btn-grid-cell-small-tc, .x-btn-focus .x-btn-grid-cell-small-bc { background-image: url(images/btn/btn-grid-cell-small-focus-corners.gif); } /* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-grid-cell-small-ml, .x-btn-focus .x-btn-grid-cell-small-mr { background-image: url(images/btn/btn-grid-cell-small-focus-sides.gif); } /* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus .x-btn-grid-cell-small-mc { background-color: #2a3142; background-image: url(images/btn/btn-grid-cell-small-focus-fbg.gif); } /* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-grid-cell-small-tl, .x-btn-over .x-btn-grid-cell-small-bl, .x-btn-over .x-btn-grid-cell-small-tr, .x-btn-over .x-btn-grid-cell-small-br, .x-btn-over .x-btn-grid-cell-small-tc, .x-btn-over .x-btn-grid-cell-small-bc { background-image: url(images/btn/btn-grid-cell-small-over-corners.gif); } /* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-grid-cell-small-ml, .x-btn-over .x-btn-grid-cell-small-mr { background-image: url(images/btn/btn-grid-cell-small-over-sides.gif); } /* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-over .x-btn-grid-cell-small-mc { background-color: #262d3c; background-image: url(images/btn/btn-grid-cell-small-over-fbg.gif); } /* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-grid-cell-small-tl, .x-btn-focus.x-btn-over .x-btn-grid-cell-small-bl, .x-btn-focus.x-btn-over .x-btn-grid-cell-small-tr, .x-btn-focus.x-btn-over .x-btn-grid-cell-small-br, .x-btn-focus.x-btn-over .x-btn-grid-cell-small-tc, .x-btn-focus.x-btn-over .x-btn-grid-cell-small-bc { background-image: url(images/btn/btn-grid-cell-small-focus-over-corners.gif); } /* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-grid-cell-small-ml, .x-btn-focus.x-btn-over .x-btn-grid-cell-small-mr { background-image: url(images/btn/btn-grid-cell-small-focus-over-sides.gif); } /* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-over .x-btn-grid-cell-small-mc { background-color: #262d3c; background-image: url(images/btn/btn-grid-cell-small-focus-over-fbg.gif); } /* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-grid-cell-small-tl, .x-btn.x-btn-menu-active .x-btn-grid-cell-small-bl, .x-btn.x-btn-menu-active .x-btn-grid-cell-small-tr, .x-btn.x-btn-menu-active .x-btn-grid-cell-small-br, .x-btn.x-btn-menu-active .x-btn-grid-cell-small-tc, .x-btn.x-btn-menu-active .x-btn-grid-cell-small-bc, .x-btn.x-btn-pressed .x-btn-grid-cell-small-tl, .x-btn.x-btn-pressed .x-btn-grid-cell-small-bl, .x-btn.x-btn-pressed .x-btn-grid-cell-small-tr, .x-btn.x-btn-pressed .x-btn-grid-cell-small-br, .x-btn.x-btn-pressed .x-btn-grid-cell-small-tc, .x-btn.x-btn-pressed .x-btn-grid-cell-small-bc { background-image: url(images/btn/btn-grid-cell-small-pressed-corners.gif); } /* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-grid-cell-small-ml, .x-btn.x-btn-menu-active .x-btn-grid-cell-small-mr, .x-btn.x-btn-pressed .x-btn-grid-cell-small-ml, .x-btn.x-btn-pressed .x-btn-grid-cell-small-mr { background-image: url(images/btn/btn-grid-cell-small-pressed-sides.gif); } /* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-menu-active .x-btn-grid-cell-small-mc, .x-btn.x-btn-pressed .x-btn-grid-cell-small-mc { background-color: #1f2431; background-image: url(images/btn/btn-grid-cell-small-pressed-fbg.gif); } /* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-tl, .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-bl, .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-tr, .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-br, .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-tc, .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-bc, .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-tl, .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-bl, .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-tr, .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-br, .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-tc, .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-bc { background-image: url(images/btn/btn-grid-cell-small-focus-pressed-corners.gif); } /* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-ml, .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-mr, .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-ml, .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-mr { background-image: url(images/btn/btn-grid-cell-small-focus-pressed-sides.gif); } /* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-mc, .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-mc { background-color: #1f2431; background-image: url(images/btn/btn-grid-cell-small-focus-pressed-fbg.gif); } /* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-grid-cell-small-tl, .x-btn.x-btn-disabled .x-btn-grid-cell-small-bl, .x-btn.x-btn-disabled .x-btn-grid-cell-small-tr, .x-btn.x-btn-disabled .x-btn-grid-cell-small-br, .x-btn.x-btn-disabled .x-btn-grid-cell-small-tc, .x-btn.x-btn-disabled .x-btn-grid-cell-small-bc { background-image: url(images/btn/btn-grid-cell-small-disabled-corners.gif); } /* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-grid-cell-small-ml, .x-btn.x-btn-disabled .x-btn-grid-cell-small-mr { background-image: url(images/btn/btn-grid-cell-small-disabled-sides.gif); } /* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn.x-btn-disabled .x-btn-grid-cell-small-mc { background-color: #2a3142; background-image: url(images/btn/btn-grid-cell-small-disabled-fbg.gif); } /* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-btn-grid-cell-small { background-image: none; } /* line 963, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-btn-disabled.x-btn-grid-cell-small { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } /* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-first { border-right-width: 1px !important; } /* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-first .x-btn-grid-cell-small-mc { padding-right: 3px !important; } /* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-middle { border-right-width: 1px !important; } /* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-middle .x-btn-grid-cell-small-mc { padding-right: 3px !important; padding-left: 3px !important; } /* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-last .x-btn-grid-cell-small-mc { padding-left: 3px !important; } /* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-first { border-bottom-width: 1px !important; } /* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-first .x-btn-grid-cell-small-mc { padding-bottom: 3px !important; } /* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-middle { border-bottom-width: 1px !important; } /* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-middle .x-btn-grid-cell-small-mc { padding-top: 3px !important; padding-bottom: 3px !important; } /* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-last .x-btn-grid-cell-small-mc { padding-top: 3px !important; } /* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item.x-btn-grid-cell-small:after { content: ' '; border-style: solid; border-width: 0; position: absolute; } /* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small:after { top: 1px; right: 0; bottom: 1px; left: 0; } /* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-first:after { left: 1px; } /* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-last:after { right: 1px; } /* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small:after { top: 0; right: 1px; bottom: 0; left: 1px; } /* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-first:after { top: 1px; } /* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-last:after { bottom: 1px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-grid-cell-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-grid-cell-small-focus-corners.gif), sides:url(images/btn/btn-grid-cell-small-focus-sides.gif), frame-bg:url(images/btn/btn-grid-cell-small-focus-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-over.x-btn-grid-cell-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-grid-cell-small-over-corners.gif), sides:url(images/btn/btn-grid-cell-small-over-sides.gif), frame-bg:url(images/btn/btn-grid-cell-small-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-over.x-btn-grid-cell-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-grid-cell-small-focus-over-corners.gif), sides:url(images/btn/btn-grid-cell-small-focus-over-sides.gif), frame-bg:url(images/btn/btn-grid-cell-small-focus-over-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-pressed.x-btn-grid-cell-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-grid-cell-small-pressed-corners.gif), sides:url(images/btn/btn-grid-cell-small-pressed-sides.gif), frame-bg:url(images/btn/btn-grid-cell-small-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-focus.x-btn-pressed.x-btn-grid-cell-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-grid-cell-small-focus-pressed-corners.gif), sides:url(images/btn/btn-grid-cell-small-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-grid-cell-small-focus-pressed-fbg.gif)" !important; } /*</if slicer>*/ /* */ /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-btn-disabled.x-btn-grid-cell-small:before { display: none; content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-grid-cell-small-disabled-corners.gif), sides:url(images/btn/btn-grid-cell-small-disabled-sides.gif), frame-bg:url(images/btn/btn-grid-cell-small-disabled-fbg.gif)" !important; } /*</if slicer>*/ /* */ /* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-grid-cell-small-cell > .x-grid-cell-inner { padding-top: 1px; padding-bottom: 1px; } /* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */ .x-button-grid-cell-small-cell > .x-grid-cell-inner > .x-btn-grid-cell-small { vertical-align: top; } /* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ .x-grid-group-hd { border-width: 0 0 1px 0; border-style: solid; border-color: #c1c1c1; padding: 7px 4px; background: #f5f5f5; cursor: pointer; } /* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ .x-grid-group-hd-not-collapsible { cursor: default; } /* line 15, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ .x-grid-group-hd-collapsible .x-grid-group-title { background-repeat: no-repeat; background-position: left center; background-image: url(images/grid/group-collapse.png); padding: 0 0 0 17px; } /* line 24, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ .x-rtl.x-grid-view .x-grid-group-hd-collapsible .x-grid-group-title { background-position: right center; padding: 0 17px 0 0; } /* line 30, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ .x-grid-group-title { color: #666666; font: bold 15px/17px helvetica, arial, verdana, sans-serif; } /* line 36, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ .x-grid-group-hd-collapsed .x-grid-group-title { background-image: url(images/grid/group-expand.png); } /* line 41, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ .x-grid-group-collapsed .x-grid-group-title { background-image: url(images/grid/group-expand.png); } /* line 45, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ .x-group-by-icon { background-image: url(images/grid/group-by.png); } /* line 49, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ .x-show-groups-icon { background-image: url(images/grid/group-by.png); } /* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ .x-grid-rowbody { font: normal 14px/17px helvetica, arial, verdana, sans-serif; padding: 5px 10px 5px 10px; } /* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ .x-docked-summary { border-width: 1px; border-color: #c1c1c1; border-style: solid; background: #232d38 !important; } /* line 6, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ .x-docked-summary .x-grid-table { border: 0 none; } /* line 16, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ .x-grid-row-summary .x-grid-cell, .x-grid-row-summary .x-grid-rowwrap, .x-grid-row-summary .x-grid-cell-rowbody { border-color: #ededed; background-color: #232d38 !important; border-top: 1px solid #ededed; font: normal 14px/17px helvetica, arial, verdana, sans-serif; } /* line 27, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ .x-docked-summary .x-grid-item, .x-docked-summary .x-grid-row-summary .x-grid-cell { border-bottom: 0 none; border-top: 0 none; } /* line 34, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ .x-grid-row-summary .x-grid-cell-inner-row-expander { display: none; } /** * Creates a visual theme for a Menu. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {color} [$ui-background-color=$menu-background-color] * The background-color of the Menu * * @param {color} [$ui-border-color=$menu-border-color] * The border-color of the Menu * * @param {string} [$ui-border-style=$menu-border-style] * The border-style of the Menu * * @param {number} [$ui-border-width=$menu-border-width] * The border-width of the Menu * * @param {number/list} [$ui-padding=$menu-padding] * The padding to apply to the Menu body element * * @param {color} [$ui-text-color=$menu-text-color] * The color of Menu Item text * * @param {string} [$ui-item-font-family=$menu-item-font-family] * The font-family of {@link Ext.menu.Item Menu Items} * * @param {number} [$ui-item-font-size=$menu-item-font-size] * The font-size of {@link Ext.menu.Item Menu Items} * * @param {string} [$ui-item-font-weight=$menu-item-font-weight] * The font-weight of {@link Ext.menu.Item Menu Items} * * @param {number} [$ui-item-height=$menu-item-height] * The height of {@link Ext.menu.Item Menu Items} * * @param {number} [$ui-item-border-width=$menu-item-border-width] * The border-width of {@link Ext.menu.Item Menu Items} * * @param {string} [$ui-item-cursor=$menu-item-cursor] * The style of cursor to display when the cursor is over a {@link Ext.menu.Item Menu Item} * * @param {string} [$ui-item-disabled-cursor=$menu-item-disabled-cursor] * The style of cursor to display when the cursor is over a disabled {@link Ext.menu.Item Menu Item} * * @param {color} [$ui-item-active-background-color=$menu-item-active-background-color] * The background-color of the active {@link Ext.menu.Item Menu Item} * * @param {color} [$ui-item-active-border-color=$menu-item-active-border-color] * The border-color of the active {@link Ext.menu.Item Menu Item} * * @param {string/list} [$ui-item-background-gradient=$menu-item-background-gradient] * The background-gradient for {@link Ext.menu.Item Menu Items}. Can be either the name * of a predefined gradient or a list of color stops. Used as the `$type` parameter for * {@link Global_CSS#background-gradient}. * * @param {number} [$ui-item-active-border-radius=$menu-item-active-border-radius] * The border-radius of {@link Ext.menu.Item Menu Items} * * @param {number} [$ui-item-icon-size=$menu-item-icon-size] * The size of {@link Ext.menu.Item Menu Item} icons * * @param {color} [$ui-glyph-color=$menu-glyph-color] * The color to use for menu icons configured using {@link Ext.menu.Item#glyph glyph} * * @param {number} [$ui-glyph-opacity=$menu-glyph-opacity] * The opacity to use for menu icons configured using {@link Ext.menu.Item#glyph glyph} * * @param {number} [$ui-item-checkbox-size=$menu-item-checkbox-size] * The size of {@link Ext.menu.Item Menu Item} checkboxes * * @param {list} [$ui-item-icon-background-position=$menu-item-icon-background-position] * The background-position of {@link Ext.menu.Item Menu Item} icons * * @param {number} [$ui-item-icon-vertical-offset=$menu-item-icon-vertical-offset] * vertical offset for menu item icons/checkboxes. By default the icons are roughly * vertically centered, but it may be necessary in some cases to make minor adjustments * to the vertical position. * * @param {number} [$ui-item-text-vertical-offset=$menu-item-text-vertical-offset] * vertical offset for menu item text. By default the text is given a line-height * equal to the menu item's content-height, however, depending on the font this may not * result in perfect vertical centering. Offset can be used to make small adjustments * to the text's vertical position. * * @param {number/list} [$ui-item-text-horizontal-spacing=$menu-item-text-horizontal-spacing] * The space to the left and right of {@link Ext.menu.Item Menu Item} text. Can be specified * as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g. * * $menu-item-text-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right * * @param {number} [$ui-item-icon-horizontal-spacing=$menu-item-icon-horizontal-spacing] * The space to the left and right of {@link Ext.menu.Item Menu Item} icons. Can be specified * as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g. * * $menu-item-icon-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right * * @param {number} [$ui-item-arrow-horizontal-spacing=$menu-item-arrow-horizontal-spacing] * The space to the left and right of {@link Ext.menu.Item Menu Item} arrows. Can be specified * as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g. * * $menu-item-arrow-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right * * @param {number/list} [$ui-item-separator-margin=$menu-item-separator-margin] * The margin of {@link Ext.menu.Separator Menu Separators} * * @param {number} [$ui-item-arrow-height=$menu-item-arrow-height] * The height of {@link Ext.menu.Item Menu Item} arrows * * @param {number} [$ui-item-arrow-width=$menu-item-arrow-width] * The width of {@link Ext.menu.Item Menu Item} arrows * * @param {number} [$ui-item-disabled-opacity=$menu-item-disabled-opacity] * The opacity of disabled {@link Ext.menu.Item Menu Items} * * @param {number/list} [$ui-component-margin=$menu-component-margin] * The margin non-MenuItems placed in a Menu * * @param {color} [$ui-separator-border-color=$menu-separator-border-color] * The border-color of {@link Ext.menu.Separator Menu Separators} * * @param {color} [$ui-separator-background-color=$menu-separator-background-color] * The background-color of {@link Ext.menu.Separator Menu Separators} * * @param {number} [$ui-separator-size=$menu-separator-size] * The size of {@link Ext.menu.Separator Menu Separators} * * @param {number} [$ui-scroller-width=$menu-scroller-width] * The width of Menu scrollers * * @param {number} [$ui-scroller-height=$menu-scroller-height] * The height of Menu scrollers * * @param {color} [$ui-scroller-border-color=$menu-scroller-border-color] * The border-color of Menu scroller buttons * * @param {number} [$ui-scroller-border-width=$menu-scroller-border-width] * The border-width of Menu scroller buttons * * @param {number/list} [$ui-scroller-top-margin=$menu-scroller-top-margin] * The margin of "top" Menu scroller buttons * * @param {number/list} [$ui-scroller-bottom-margin=$menu-scroller-bottom-margin] * The margin of "bottom" Menu scroller buttons * * @param {string} [$ui-scroller-cursor=$menu-scroller-cursor] * The cursor of Menu scroller buttons * * @param {string} [$ui-scroller-cursor-disabled=$menu-scroller-cursor-disabled] * The cursor of disabled Menu scroller buttons * * @param {number} [$ui-scroller-opacity=$menu-scroller-opacity] * The opacity of Menu scroller buttons. Only applicable when * {@link #$menu-classic-scrollers} is `false`. * * @param {number} [$ui-scroller-opacity-over=$menu-scroller-opacity-over] * The opacity of hovered Menu scroller buttons. Only applicable when * {@link #$menu-classic-scrollers} is `false`. * * @param {number} [$ui-scroller-opacity-pressed=$menu-scroller-opacity-pressed] * The opacity of pressed Menu scroller buttons. Only applicable when * {@link #$menu-classic-scrollers} is `false`. * * @param {number} [$ui-scroller-opacity-disabled=$menu-scroller-opacity-disabled] * The opacity of disabled Menu scroller buttons. * * @param {boolean} [$ui-classic-scrollers=$menu-classic-scrollers] * `true` to use classic-style scroller buttons. When `true` scroller buttons are given their * hover state by changing their background-position, When `false` scroller buttons are * given their hover state by applying opacity. * * @member Ext.menu.Menu */ /* line 236, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-default { border-style: solid; border-width: 1px; border-color: #1b1e28; } /* line 242, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-body-default { background: #414551; padding: 0; } /* line 247, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-icon-separator-default { left: 26px; border-left: solid 1px #222233; background-color: #666666; width: 1px; } /* line 254, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-icon-separator-default.x-rtl { left: auto; right: 26px; } /* line 261, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-default { border-width: 0; cursor: pointer; } /* line 265, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-default.x-menu-item-active { background-image: none; background-color: #ed9200; } /* line 277, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-nlg .x-menu-item-default.x-menu-item-active { background: #ed9200 repeat-x left top; background-image: url(images/menu/menu-item-default-active-bg.gif); } /* line 284, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-default.x-menu-item-disabled { cursor: default; } /* line 287, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-default.x-menu-item-disabled a { cursor: default; } /* line 292, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-default.x-menu-item-separator { height: 1px; border-top: solid 1px #222233; background-color: #666666; margin: 2px 0; padding: 0; } /* line 300, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-default.x-menu-item-disabled { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } /* line 305, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-ie9m .x-menu-item-default.x-menu-item-disabled .x-menu-item-icon-ui { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } /* line 309, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-ie9m .x-menu-item-default.x-menu-item-disabled .x-menu-item-text-default { background-color: transparent; } /* line 319, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-default .x-form-item-label { font-size: 15px; color: white; } /* line 327, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-text-default, .x-menu-item-cmp-default { margin: 0 5px 0 5px; } /* line 331, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-text-default { font: normal 15px helvetica, arial, verdana, sans-serif; line-height: 23px; padding-top: 1px; color: white; cursor: pointer; } /* line 342, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-text-default.x-menu-item-indent { margin-left: 32px; } /* line 346, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-text-default.x-menu-item-indent-no-separator { margin-left: 26px; } /* line 350, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-text-default.x-menu-item-indent-right-icon { margin-right: 31px; } /* line 354, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-text-default.x-menu-item-indent-right-arrow { margin-right: 22px; } /* line 358, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-disabled .x-menu-item-text-default { cursor: default; } /* line 366, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-rtl.x-menu-item-text-default, .x-rtl.x-menu-item-cmp-default { margin: 0 5px 0 5px; } /* line 371, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-rtl.x-menu-item-text-default.x-menu-item-indent { margin-right: 32px; } /* line 375, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-rtl.x-menu-item-text-default.x-menu-item-indent-no-separator { margin-right: 26px; } /* line 379, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-rtl.x-menu-item-text-default.x-menu-item-indent-right-icon { margin-left: 31px; } /* line 383, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-rtl.x-menu-item-text-default.x-menu-item-indent-right-arrow { margin-left: 22px; } /* line 390, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-indent-default { margin-left: 32px; } /* line 393, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-indent-default.x-rtl { margin-left: 0; margin-right: 32px; } /* line 400, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-icon-default { width: 16px; height: 16px; top: 4px; left: 5px; background-position: center center; } /* line 408, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-icon-default.x-rtl { left: auto; right: 5px; } /* line 412, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-active .x-menu-item-icon-default.x-rtl { right: 5px; } /* line 418, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-icon-default.x-menu-item-glyph { font-size: 16px; line-height: 16px; color: gray; opacity: 0.5; } /* line 435, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-ie8 .x-menu-item-icon-default.x-menu-item-glyph { color: #606268; } /* line 443, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-icon-default.x-menu-item-icon-right { width: 16px; height: 16px; top: 4px; right: 5px; left: auto; background-position: center center; } /* line 452, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-icon-default.x-menu-item-icon-right.x-rtl { right: auto; left: 5px; } /* line 456, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-active .x-menu-item-icon-default.x-menu-item-icon-right.x-rtl { left: 5px; } /* line 468, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-checked .x-menu-item-icon-default.x-menu-item-checkbox { background-image: url(images/menu/default-checked.png); } /* line 472, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-unchecked .x-menu-item-icon-default.x-menu-item-checkbox { background-image: url(images/menu/default-unchecked.png); } /* line 478, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-checked .x-menu-item-icon-default.x-menu-group-icon { background-image: url(images/menu/default-group-checked.png); } /* line 482, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-unchecked .x-menu-item-icon-default.x-menu-group-icon { background-image: none; } /* line 488, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-arrow-default { width: 12px; height: 9px; top: 8px; right: 0; background-image: url(images/menu/default-menu-parent.png); } /* line 495, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-active .x-menu-item-arrow-default { top: 8px; right: 0; } /* line 501, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-arrow-default.x-rtl { left: 0; right: auto; background-image: url(images/menu/default-menu-parent-left.png); } /* line 506, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-menu-item-active .x-menu-item-arrow-default.x-rtl { left: 0; } /* line 145, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-menu-default-scroller .x-box-scroller-body-horizontal { margin-left: 16px; } /* line 151, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-menu-default-vertical-scroller .x-box-scroller-body-vertical { margin-top: 24px; } /* line 156, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-menu-default { cursor: pointer; } /* line 165, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-menu-default.x-box-scroller-hover { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); opacity: 0.8; } /* line 171, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-menu-default.x-box-scroller-pressed { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); opacity: 0.6; } /* line 177, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-menu-default.x-box-scroller-disabled { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25); opacity: 0.25; cursor: default; } /* line 263, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-menu-default.x-box-scroller-top, .x-box-scroller-menu-default.x-box-scroller-bottom { height: 16px; width: 16px; left: 50%; margin-left: -8px; } /* line 289, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-menu-default.x-box-scroller-top { margin-top: 4px; margin-right: 0; margin-bottom: 4px; background-image: url(images/menu/default-scroll-top.png); } /* line 312, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-menu-default.x-box-scroller-bottom { margin-top: 4px; margin-right: 0; margin-bottom: 4px; background-image: url(images/menu/default-scroll-bottom.png); } /* line 540, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ .x-ie8 .x-box-scroller-menu-default { background-color: #414551; } /* line 1, ../../../ext-theme-neutral/sass/src/grid/filters/Filters.scss */ .x-grid-filters-filtered-column { font-style: italic; font-weight: bold; text-decoration: underline; } /* line 7, ../../../ext-theme-neutral/sass/src/grid/filters/Filters.scss */ .x-grid-filters-icon { background-repeat: no-repeat; background-position: center center; } /* line 12, ../../../ext-theme-neutral/sass/src/grid/filters/Filters.scss */ .x-grid-filters-find { background-image: url(images/grid/filters/find.png); } /* line 16, ../../../ext-theme-neutral/sass/src/grid/filters/Filters.scss */ .x-grid-filters-gt { background-image: url(images/grid/filters/greater_than.png); } /* line 20, ../../../ext-theme-neutral/sass/src/grid/filters/Filters.scss */ .x-grid-filters-lt { background-image: url(images/grid/filters/less_than.png); } /* line 24, ../../../ext-theme-neutral/sass/src/grid/filters/Filters.scss */ .x-grid-filters-eq { background-image: url(images/grid/filters/equals.png); } /* line 1, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ .x-grid-locked .x-grid-inner-locked { border-width: 0 1px 0 0; border-style: solid; } /* line 6, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ .x-grid-locked .x-rtl.x-grid-inner-locked { border-width: 0 0 0 1px; } /* line 12, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ .x-grid-locked-split .x-grid-inner-normal { border-width: 0 0 0 1px; border-style: solid; } /* line 17, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ .x-grid-locked-split .x-rtl.x-grid-inner-normal { border-width: 0 1px 0 0; } /* line 22, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ .x-grid-inner-locked { border-right-color: #3a4155; } /* line 28, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ .x-grid-inner-locked .x-column-header-last, .x-grid-inner-locked .x-grid-cell-last { border-right-width: 0!important; } /* line 32, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ .x-grid-inner-locked .x-rtl.x-column-header-last { border-left-width: 0!important; } /* line 41, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ .x-rtl.x-grid-inner-locked { border-right-color: #3a4155; border-left-color: #3a4155; } /* line 43, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ .x-rtl.x-grid-inner-locked .x-grid-row .x-column-header-last { border-left: 0 none; } /* line 46, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ .x-rtl.x-grid-inner-locked .x-grid-row .x-grid-cell-last { border-left: 0 none; } /* line 57, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ .x-hmenu-lock { background-image: url(images/grid/hmenu-lock.png); } /* line 61, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ .x-hmenu-unlock { background-image: url(images/grid/hmenu-unlock.png); } /* * Define UI for fields which are rendered to fit inside grid cells. * This includes cell and row editor fields and fields in widget columns. */ /* line 17, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ .x-grid-editor .x-form-display-field { text-overflow: ellipsis; } /* line 23, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ .x-grid-editor .x-form-action-col-field { padding: 5px 4px 5px 4px; } /* line 3, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ .x-tree-cell-editor .x-form-text { padding-left: 2px; padding-right: 2px; } /* line 2, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-grid-row-editor .x-field { margin: 0 3px 0 2px; } /* line 7, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-grid-row-editor .x-form-display-field { padding: 6px 7px 5px 8px; } /* line 16, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-grid-row-editor .x-form-action-col-field { padding: 4px 1px 4px 2px; } /* line 27, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-grid-row-editor .x-form-text { padding: 4px 5px 3px 6px; } /* line 31, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-gecko .x-grid-row-editor .x-form-text { padding-left: 5px; padding-right: 4px; } /* line 40, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-grid-row-editor .x-panel-body { border-top: 1px solid #3a4155 !important; border-bottom: 1px solid #3a4155 !important; padding: 5px 0 5px 0; background-color: #3f4757; } /* line 50, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-grid-with-col-lines .x-grid-row-editor .x-form-cb { margin-right: 1px; } /* line 55, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-grid-with-col-lines .x-grid-row-editor .x-rtl.x-form-cb { margin-right: 0; margin-left: 1px; } /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom { -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; border-top-left-radius: 0; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; padding: 5px 5px 5px 5px; border-width: 0 1px 1px 1px; border-style: solid; background-color: #3f4757; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-mc { background-color: #3f4757; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-grid-row-editor-buttons-default-bottom { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-frameInfo { font-family: th-0-5-5-5-0-1-1-1-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-tr, .x-grid-row-editor-buttons-default-bottom-br, .x-grid-row-editor-buttons-default-bottom-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-tl, .x-grid-row-editor-buttons-default-bottom-bl, .x-grid-row-editor-buttons-default-bottom-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-tc { height: 0; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-bc { height: 5px; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-tl, .x-grid-row-editor-buttons-default-bottom-bl, .x-grid-row-editor-buttons-default-bottom-tr, .x-grid-row-editor-buttons-default-bottom-br, .x-grid-row-editor-buttons-default-bottom-tc, .x-grid-row-editor-buttons-default-bottom-bc, .x-grid-row-editor-buttons-default-bottom-ml, .x-grid-row-editor-buttons-default-bottom-mr { background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-ml, .x-grid-row-editor-buttons-default-bottom-mr { background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-bottom-mc { padding: 5px 1px 1px 1px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-grid-row-editor-buttons-default-bottom:before { display: none; content: "x-slicer:frame:0 5px 5px 5px, corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top { -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; border-top-left-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; border-top-right-radius: 5px; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0; padding: 5px 5px 5px 5px; border-width: 1px 1px 0 1px; border-style: solid; background-color: #3f4757; } /* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-mc { background-color: #3f4757; } /* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-grid-row-editor-buttons-default-top { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent !important; box-shadow: none !important; } /* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-frameInfo { font-family: th-5-5-0-5-1-1-0-1-5-5-5-5; } /* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-tl { background-position: 0 -10px; } /* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-tr { background-position: right -15px; } /* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-bl { background-position: 0 -20px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-br { background-position: right -25px; } /* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-ml { background-position: 0 top; } /* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-mr { background-position: right top; } /* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-tc { background-position: 0 0; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-bc { background-position: 0 -5px; } /* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-tr, .x-grid-row-editor-buttons-default-top-br, .x-grid-row-editor-buttons-default-top-mr { padding-right: 5px; } /* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-tl, .x-grid-row-editor-buttons-default-top-bl, .x-grid-row-editor-buttons-default-top-ml { padding-left: 5px; } /* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-tc { height: 5px; } /* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-bc { height: 0; } /* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-tl, .x-grid-row-editor-buttons-default-top-bl, .x-grid-row-editor-buttons-default-top-tr, .x-grid-row-editor-buttons-default-top-br, .x-grid-row-editor-buttons-default-top-tc, .x-grid-row-editor-buttons-default-top-bc, .x-grid-row-editor-buttons-default-top-ml, .x-grid-row-editor-buttons-default-top-mr { background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif); } /* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-ml, .x-grid-row-editor-buttons-default-top-mr { background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif); background-repeat: repeat-y; } /* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-grid-row-editor-buttons-default-top-mc { padding: 1px 1px 5px 1px; } /*<if slicer>*/ /* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-cmd-slicer.x-grid-row-editor-buttons-default-top:before { display: none; content: "x-slicer:frame:5px 5px 0 5px, corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)" !important; } /*</if slicer>*/ /* */ /* line 98, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-grid-row-editor-buttons { border-color: #3a4155; } /* line 102, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-row-editor-update-button { margin-right: 3px; } /* line 105, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-row-editor-cancel-button { margin-left: 2px; } /* line 110, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-rtl.x-row-editor-update-button { margin-left: 3px; margin-right: auto; } /* line 114, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-rtl.x-row-editor-cancel-button { margin-right: 2px; margin-left: auto; } /* line 121, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-grid-row-editor-errors .x-tip-body { padding: 5px; } /* line 126, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-grid-row-editor-errors-item { list-style: disc; margin-left: 15px; } /* line 133, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ .x-rtl.x-grid-row-editor-errors .x-grid-row-editor-errors-item { margin-left: 0; margin-right: 15px; } /* line 1, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ .x-grid-cell-inner-row-expander { padding: 8px 6px 7px 6px; } /* line 14, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ .x-grid-row-expander { width: 11px; height: 11px; cursor: pointer; background-image: url(images/grid/group-collapse.png); } /* line 20, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ .x-grid-row-collapsed .x-grid-row-expander { background-image: url(images/grid/group-expand.png); } /* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ .x-accordion-layout-ct { background-color: #5b6270; padding: 5px 5px 0; } /* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ .x-accordion-hd .x-panel-header-title { color: white; font-weight: bold; font-family: helvetica, arial, verdana, sans-serif; text-transform: none; } /* line 13, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ .x-accordion-item { margin: 0 0 5px; } /* line 16, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ .x-accordion-item .x-accordion-hd { background: #5c6b82; border-width: 0; border-color: #3a4155; padding: 8px 10px; } /* line 29, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ .x-accordion-item .x-accordion-hd-sibling-expanded { border-top-color: #3a4155; border-top-width: 0; } /* line 34, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ .x-accordion-item .x-accordion-hd-last-collapsed { border-bottom-color: #5c6b82; } /* line 38, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ .x-accordion-item .x-accordion-body { border-width: 0; } /* line 45, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ .x-accordion-hd .x-tool-collapse-top, .x-accordion-hd .x-tool-collapse-bottom { background-position: 0 -272px; } /* line 50, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ .x-accordion-hd .x-tool-expand-top, .x-accordion-hd .x-tool-expand-bottom { background-position: 0 -256px; } /* line 58, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ .x-accordion-hd .x-tool-over .x-tool-collapse-top, .x-accordion-hd .x-tool-over .x-tool-collapse-bottom { background-position: -16px -272px; } /* line 63, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ .x-accordion-hd .x-tool-over .x-tool-expand-top, .x-accordion-hd .x-tool-over .x-tool-expand-bottom { background-position: -16px -256px; } /* line 69, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ .x-accordion-hd .x-tool-img { background-color: #5c6b82; } /* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Form.scss */ .x-form-layout-wrap { border-spacing: 5px; } /* line 1, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle { position: absolute; z-index: 100; font-size: 1px; line-height: 5px; overflow: hidden; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; background-color: #fff; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; } /* line 17, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-collapsed .x-resizable-handle { display: none; } /* line 21, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-north { cursor: n-resize; } /* line 24, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-south { cursor: s-resize; } /* line 27, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-east { cursor: e-resize; } /* line 30, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-west { cursor: w-resize; } /* line 33, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-southeast { cursor: se-resize; } /* line 36, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-northwest { cursor: nw-resize; } /* line 39, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-northeast { cursor: ne-resize; } /* line 42, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-southwest { cursor: sw-resize; } /* line 46, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-east { width: 5px; height: 100%; right: 0; top: 0; } /* line 53, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-south { width: 100%; height: 5px; left: 0; bottom: 0; } /* line 60, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-west { width: 5px; height: 100%; left: 0; top: 0; } /* line 67, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-north { width: 100%; height: 5px; left: 0; top: 0; } /* line 74, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-southeast { width: 5px; height: 5px; right: 0; bottom: 0; z-index: 101; } /* line 82, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-northwest { width: 5px; height: 5px; left: 0; top: 0; z-index: 101; } /* line 90, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-northeast { width: 5px; height: 5px; right: 0; top: 0; z-index: 101; } /* line 98, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-southwest { width: 5px; height: 5px; left: 0; bottom: 0; z-index: 101; } /* line 107, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-window .x-window-handle { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; } /* line 111, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-window-collapsed .x-window-handle { display: none; } /* line 116, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-proxy { border: 1px dashed #3b5a82; position: absolute; overflow: hidden; z-index: 50000; } /* line 125, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-over, .x-resizable-pinned .x-resizable-handle { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); opacity: 1; } /* line 131, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-east-over, .x-resizable-handle-west-over { background-image: url(images/sizer/e-handle.png); } /* line 137, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-south-over, .x-resizable-handle-north-over { background-image: url(images/sizer/s-handle.png); } /* line 142, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-southeast-over { background-position: top left; background-image: url(images/sizer/se-handle.png); } /* line 147, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-northwest-over { background-position: bottom right; background-image: url(images/sizer/nw-handle.png); } /* line 152, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-northeast-over { background-position: bottom left; background-image: url(images/sizer/ne-handle.png); } /* line 157, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-handle-southwest-over { background-position: top right; background-image: url(images/sizer/sw-handle.png); } /* line 165, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-pinned .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-west { background-image: url(images/sizer/e-handle.png); } /* line 171, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-pinned .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-north { background-image: url(images/sizer/s-handle.png); } /* line 176, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-pinned .x-resizable-handle-southeast { background-position: top left; background-image: url(images/sizer/se-handle.png); } /* line 181, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-pinned .x-resizable-handle-northwest { background-position: bottom right; background-image: url(images/sizer/nw-handle.png); } /* line 186, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-pinned .x-resizable-handle-northeast { background-position: bottom left; background-image: url(images/sizer/ne-handle.png); } /* line 191, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ .x-resizable-pinned .x-resizable-handle-southwest { background-position: top right; background-image: url(images/sizer/sw-handle.png); } /* line 1, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ .x-column-header-checkbox { border-color: #373c4b; } /* line 6, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ .x-grid-row-checker, .x-column-header-checkbox .x-column-header-text { height: 19px; width: 19px; background-image: url(images/form/checkbox.png); line-height: 19px; } /* line 15, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ .x-column-header-checkbox .x-column-header-inner { padding: 6px 4px 5px 4px; } /* line 19, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ .x-grid-cell-row-checker .x-grid-cell-inner { padding: 4px 4px 3px 4px; } /* line 32, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ .x-grid-hd-checker-on .x-column-header-text, .x-grid-item-selected .x-grid-row-checker, .x-grid-item-selected .x-grid-row-checker { background-position: 0 -19px; } /* Horizontal styles */ /* line 2, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-horz { padding-left: 8px; background: no-repeat 0 -16px; } /* line 6, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-horz .x-slider-end { padding-right: 8px; background: no-repeat right -32px; } /* line 12, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-horz .x-slider-inner { height: 16px; } /* line 16, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-horz .x-slider-thumb { width: 16px; height: 16px; margin-left: -8px; background-image: url(images/slider/slider-thumb.png); } /* line 23, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-horz.x-slider-focus .x-slider-thumb { background-position: -48px -48px; } /* line 27, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-horz .x-slider-thumb-over { background-position: -16px -16px; } /* line 31, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-horz.x-slider-focus .x-slider-thumb-over { background-position: -64px -64px; } /* line 35, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-horz .x-slider-thumb-drag { background-position: -32px -32px; } /* line 39, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-horz.x-slider-focus .x-slider-thumb-drag { background-position: -80px -80px; } /* line 44, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-rtl.x-slider-horz { padding-left: 0; padding-right: 8px; background-position: right -32px; } /* line 49, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-rtl.x-slider-horz .x-slider-end { padding-right: 0; padding-left: 8px; background-position: left -16px; } /* line 55, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-rtl.x-slider-horz .x-slider-thumb { margin-right: -8px; } /* Vertical styles */ /* line 62, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-ct-vert { height: 100%; } /* line 66, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-vert { padding-top: 8px; background: no-repeat -32px 0; height: 100%; } /* line 71, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-vert > .x-slider-end { height: 100%; } /* line 73, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-vert > .x-slider-end > .x-slider-inner { height: 100%; } /* line 79, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-vert .x-slider-end { padding-bottom: 8px; background: no-repeat -16px bottom; width: 16px; } /* line 85, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-vert .x-slider-inner { width: 16px; } /* line 89, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-vert .x-slider-thumb { width: 16px; height: 16px; margin-bottom: -8px; background-image: url(images/slider/slider-v-thumb.png); } /* line 96, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-vert.x-slider-focus .x-slider-thumb { background-position: -48px -48px; } /* line 100, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-vert .x-slider-thumb-over { background-position: -16px -16px; } /* line 104, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-vert.x-slider-focus .x-slider-thumb-over { background-position: -64px -64px; } /* line 108, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-vert .x-slider-thumb-drag { background-position: -32px -32px; } /* line 112, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-vert.x-slider-focus .x-slider-thumb-drag { background-position: -80px -80px; } /* line 118, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-horz, .x-slider-horz .x-slider-end, .x-slider-horz .x-slider-inner { background-image: url(images/slider/slider-bg.png); } /* line 124, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-vert, .x-slider-vert .x-slider-end, .x-slider-vert .x-slider-inner { background-image: url(images/slider/slider-v-bg.png); } /* line 129, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ .x-slider-default-cell > .x-grid-cell-inner, .x-sliderwidget-default-cell > .x-grid-cell-inner { padding-top: 5px; padding-bottom: 5px; } /* line 1, ../../../ext-theme-neutral/sass/src/sparkline/Base.scss */ .x-sparkline-cell .x-grid-cell-inner { padding-top: 1px; padding-bottom: 1px; line-height: 24px; } /** * Creates a visual theme for a Breadcrumb. * * @param {string} $ui * The name of the UI being created. Can not included spaces or special punctuation * (used in CSS class names). * * @param {string} [$ui-button-ui=$breadcrumb-button-ui] * The name of the button UI that will be used with this breadcrumb UI. Used for overriding * the button arrows for the given button UI when it is used inside a breadcrumb with this UI. * * @param {number} [$ui-button-spacing=$breadcrumb-button-spacing] * The space between the breadcrumb buttons * * @param {number} [$ui-arrow-width=$breadcrumb-arrow-width] * The width of the breadcrumb arrows when * {@link Ext.toolbar.Breadcrumb#useSplitButtons} is `false` * * @param {number} [$ui-split-width=$breadcrumb-split-width] * The width of breadcrumb arrows when {@link Ext.toolbar.Breadcrumb#useSplitButtons} is * `true` * * @param {boolean} [$ui-include-menu-active-arrow=$breadcrumb-include-menu-active-arrow] * `true` to include a separate background-image for menu arrows when a breadcrumb button's * menu is open * * @param {boolean} [$ui-include-split-over-arrow=$breadcrumb-include-split-over-arrow * `true` to include a separate background-image for split arrows when a breadcrumb button's * arrow is hovered * * @param {string} [$ui-folder-icon=$breadcrumb-folder-icon] * The background-image for the default "folder" icon * * @param {string} [$ui-leaf-icon=$breadcrumb-leaf-icon] * The background-image for the default "leaf" icon * * @param {number} [$ui-scroller-width=$breadcrumb-scroller-width] * The width of Breadcrumb scrollers * * @param {number} [$ui-scroller-height=$breadcrumb-scroller-height] * The height of Breadcrumb scrollers * * @param {color} [$ui-scroller-border-color=$breadcrumb-scroller-border-color] * The border-color of Breadcrumb scrollers * * @param {number} [$ui-scroller-border-width=$breadcrumb-scroller-border-width] * The border-width of Breadcrumb scrollers * * @param {number/list} [$ui-scroller-top-margin=$breadcrumb-scroller-top-margin] * The margin of "top" scroller buttons * * @param {number/list} [$ui-scroller-right-margin=$breadcrumb-scroller-right-margin] * The margin of "right" scroller buttons * * @param {number/list} [$ui-scroller-bottom-margin=$breadcrumb-scroller-bottom-margin] * The margin of "bottom" scroller buttons * * @param {number/list} [$ui-scroller-left-margin=$breadcrumb-scroller-left-margin] * The margin of "left" scroller buttons * * @param {string} [$ui-scroller-cursor=$breadcrumb-scroller-cursor] * The cursor of Breadcrumb scrollers * * @param {string} [$ui-scroller-cursor-disabled=$breadcrumb-scroller-cursor-disabled] * The cursor of disabled Breadcrumb scrollers * * @param {number} [$ui-scroller-opacity=$breadcrumb-scroller-opacity] * The opacity of Breadcrumb scroller buttons. Only applicable when * `$ui-classic-scrollers` is `false`. * * @param {number} [$ui-scroller-opacity-over=$breadcrumb-scroller-opacity-over] * The opacity of hovered Breadcrumb scroller buttons. Only applicable when * `$ui-classic-scrollers` is `false`. * * @param {number} [$ui-scroller-opacity-pressed=$breadcrumb-scroller-opacity-pressed] * The opacity of pressed Breadcrumb scroller buttons. Only applicable when * `$ui-classic-scrollers` is `false`. * * @param {number} [$ui-scroller-opacity-disabled=$breadcrumb-scroller-opacity-disabled] * The opacity of disabled Breadcrumb scroller buttons. * * @param {boolean} [$ui-classic-scrollers=$breadcrumb-classic-scrollers] * `true` to use classic-style scroller buttons. When `true` scroller buttons are given * their hover state by changing their background-position, When `false` scroller buttons * are given their hover state by applying opacity. * * @member Ext.toolbar.Breadcrumb */ /* line 115, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */ .x-breadcrumb-btn-default { margin: 0 0 0 0px; } /* line 119, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */ .x-breadcrumb-icon-folder-default { background-image: url(images/tree/folder.png); } /* line 123, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */ .x-breadcrumb-icon-leaf-default { background-image: url(images/tree/leaf.png); } /* line 128, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */ .x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-arrow:after { width: 20px; background-image: url(images/breadcrumb/default-arrow.png); } /* line 134, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */ .x-rtl.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-arrow:after { background-image: url(images/breadcrumb/default-arrow-rtl.png); } /* line 140, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */ .x-btn-menu-active.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-arrow:after { background-image: url(images/breadcrumb/default-arrow-open.png); } /* line 145, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */ .x-rtl.x-btn-menu-active.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-arrow:after { background-image: url(images/breadcrumb/default-arrow-open-rtl.png); } /* line 153, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */ .x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-split:after { width: 20px; background-image: url(images/breadcrumb/default-split-arrow.png); } /* line 159, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */ .x-rtl.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-split:after { background-image: url(images/breadcrumb/default-split-arrow-rtl.png); } /* line 165, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */ .x-btn-over.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-split:after { background-image: url(images/breadcrumb/default-split-arrow-over.png); } /* line 170, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */ .x-rtl.x-btn-over.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-split:after { background-image: url(images/breadcrumb/default-split-arrow-over-rtl.png); } /* line 177, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */ .x-btn-menu-active.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-split:after { background-image: url(images/breadcrumb/default-split-arrow-open.png); } /* line 182, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */ .x-rtl.x-btn-menu-active.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-split:after { background-image: url(images/breadcrumb/default-split-arrow-open-rtl.png); } /* line 145, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-breadcrumb-default-scroller .x-box-scroller-body-horizontal { margin-left: 24px; } /* line 151, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-breadcrumb-default-vertical-scroller .x-box-scroller-body-vertical { margin-top: 24px; } /* line 156, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-breadcrumb-default { cursor: pointer; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); opacity: 0.6; } /* line 165, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-breadcrumb-default.x-box-scroller-hover { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); opacity: 0.8; } /* line 171, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-breadcrumb-default.x-box-scroller-pressed { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); opacity: 1; } /* line 177, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */ .x-box-scroller-breadcrumb-default.x-box-scroller-disabled { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25); opacity: 0.25; cursor: default; } ```
385695 Clete, provisional designation , is a Neptune trojan, co-orbital with the ice giant Neptune, approximately in diameter. It was named after Clete, one of the Amazons from Greek mythology. The minor planet was discovered on 8 October 2005, by American astronomers Scott Sheppard and Chad Trujillo at Las Campanas Observatory in Chile. 23 known Neptune trojans have already been discovered. Numbering and naming This minor planet was named from Greek mythology after Clete, a member of the Amazons, an all-female warrior tribe that fought in the Trojan War on the side of the Trojans against the Greek. Clete was one of the twelve followers of the Amazonian queen Penthesilea and went looking for her after she went missing during the war. According to the queen's will, Clete sailed to Italy and founded the city of Clete. The official was published by the Minor Planet Center on 18 May 2019 (). The naming follows the scheme already established with 385571 Otrera, which is to name these Neptune trojans after figures related to the Amazons. Orbit and classification Clete orbits near Neptune's Lagrangian point about 60° ahead of Neptune and thus has the about same orbital period as Neptune. It orbits the Sun at a distance of 28.5–31.6 AU once every 164 years and 9 months (60,182 days; semi-major axis of 30.06 AU). Its orbit has an eccentricity of 0.05 and an inclination of 5° with respect to the ecliptic. The Neptune-resonance should keep it more than 19 AU from Neptune for 14,000 years. , it is 25.5 AU from Neptune. Clete is located close to the boundary separating stable orbits from unstable ones, and it may be influenced by a secular resonance. Physical characteristics Diameter The discoverers estimate that Clete has a mean-diameter of 100 kilometers based on a magnitude of 23.2. Based on a generic magnitude-to-diameter conversion, it measures approximately 97 kilometers in diameter using an absolute magnitude of 8.3 with an assumed albedo of 0.09. References External links 385695 Discoveries by Chad Trujillo Discoveries by Scott S. Sheppard Named minor planets 20051008
My Own Private Oshawa is a theatrical play written and performed by Jonathan Wilson, which premiered in 1996. A one-man show taking place aboard a GO Train in which Wilson is travelling home from Toronto to Oshawa for a visit, the show is performed as a monologue about his childhood experiences as a repressed and closeted gay kid, and the impact of his more flamboyantly gay friend Gordon on his sense of self. The ultimate purpose of the trip, to attend Gordon's funeral following his death of AIDS, is revealed only at the end of the play. The play was staged for the first time in July 1996 at the Toronto Fringe Festival, where it was one of the major hits of the festival; due to its popularity, it was later remounted by Tarragon Theatre in the fall. The Tarragon production received two Dora Mavor Moore Award nominations (Small Theatre division) in 1997, for Outstanding New Play or Musical and Outstanding Performance by a Male (Wilson). Film adaptation In 1998, the play was optioned by producer Sandra Faire for adaptation as a theatrical film. Directed by Allan Manson, the film directly introduced the plot point that Wilson was an actor performing My Own Private Oshawa as a stage show, but was primarily structured as a conventional narrative with a multi-actor cast rather than being performed exclusively by Wilson. Its cast included Shaun Majumder, Martha Chaves, Gavin Crawford, Lou Eisen, Brigitte Gall, Ed Sahely and Christopher Peterson. The film was screened at the Columbus International Film & Video Festival in 2002, but was not widely distributed until being broadcast by CTV Television Network as a Pride Week special on June 25, 2005. References External links 1996 plays Canadian LGBT-related plays Canadian plays adapted into films Canadian comedy-drama television films Canadian LGBT-related television films 2002 films 2002 LGBT-related films LGBT-related comedy-drama films Films shot in Toronto Films set in Toronto HIV/AIDS in Canadian films 2000s Canadian films CTV Television Network original films
Aphorista is a genus of handsome fungus beetles in the family Endomychidae. There are at least four described species in Aphorista. Species These four species belong to the genus Aphorista: Aphorista laeta (LeConte, 1854) Aphorista morosa (LeConte, 1859) Aphorista ovipennis Casey Aphorista vittata (Fabricius, 1787) References Further reading Endomychidae Articles created by Qbugbot Coccinelloidea genera
The Geneva Red Birds were a Minor league baseball team based in Geneva, Alabama, that played in the Alabama State League from 1946 to 1950. External links Baseball Reference Geneva County, Alabama Baseball teams established in 1946 Baseball teams disestablished in 1950 Defunct minor league baseball teams Professional baseball teams in Alabama Defunct Alabama State League teams St. Louis Cardinals minor league affiliates Boston Red Sox minor league affiliates 1946 establishments in Alabama 1950 disestablishments in Alabama Defunct baseball teams in Alabama Alabama State League teams
The Seats of the Mighty is a novel published in 1896 by Gilbert Parker. It was first published in serial form in The Atlantic starting in March 1895, and released in book form in 1896. It was the third highest best-selling book in the United States in 1896. It is a historical novel depicting the English conquest of Quebec with James Wolfe and the Marquis de Montcalm as two of the characters. It was adapted into a play by late 1896 and a silent film in 1914 starring Lionel Barrymore. References External links The Seats of the Mighty full text at Project Gutenberg The Seats of the Mighty full scan (1896 print) via Google Books (1914 film version) 1896 Canadian novels Novels set in Quebec Works originally published in The Atlantic (magazine) Canadian novels adapted into films New Canadian Library
Elaphrus ruscarius is a species of ground beetle in the subfamily Elaphrinae. It was described by Say in 1834. References Elaphrinae Beetles described in 1834
Vieja melanurus, the quetzal cichlid, redhead cichlid or firehead cichlid, is a species of cichlid that is native to the Lake Petén system, the Grijalva–Usumacinta River basin and other Atlantic river drainages in southern Mexico, Belize and Guatemala, with introduced populations in a few other countries. It typically inhabits slow-moving or standing waters such as rivers, lakes and lagoons; although primarily a freshwater fish, it may occur in slightly brackish habitats. It is popular in the aquarium trade, where often listed under the synonym V. synspila/synspilum. It is almost entirely herbivorous, but may also take small animal prey. V. melanurus can reach a total length of . Males grow larger than females and also develop a prominent nuchal hump on their forehead. Adults are quite colourful cichlids with an orange to pinkish-red head, a body often displaying greenish, bluish, pink and golden-orange, and a horizontal black bar (often patchy or mottled) at the base of the tail; the belly and mottling elsewhere on the body can also be black. There are significant individual and geographical variations in the colours; partially, this is related to the clarity of the water at a location. Adults are always robust and high-bodied cichlids, but there are some regional variations depending on habitat. It has been used in creating new hybridized aquarium cichlids that became popular in Asia in recent years and is likely one of the species used in the creation of modern blood parrot cichlids and flowerhorn cichlids. References melanurus Fish of Central America Taxa named by Albert Günther Fish described in 1862
Nicola Terrenato (born October 22, 1963) is an Italian scholar of ancient Italy. Terrenato was born in Rome. A Classical archaeologist teaching in the Interdepartmental Program in Classical Art and Archaeology (IPCAA) at the University of Michigan in Ann Arbor Michigan, United States, Terrenato's expertise includes the Romanization of Italy and the archaeology of Etruria. He is the Director of the Kelsey Museum of Archaeology. He has excavated at Rome (Palatine Hill and Auditorium site), at Volterra and in the Cecina Valley, and in Basilicata. Terrenato is the director of the Cecina Valley Survey in Northern Tuscany. Since 2007, Terrenato has been director of the Gabii Project at the site of the ancient city of Gabii, approximately east of Rome. His team completed two seasons of geophysical and topographical survey at the site (2007 and 2008), and began major excavations in June 2009. Excavations are ongoing and will continue in 2023. The Gabii Project has received support from the National Endowment for the Humanities as well as multiple other organizations for its continued research. Selected works F. Cambi and N. Terrenato. 1994. Introduzione all'archeologia dei paesaggi. Rome: Nuova Italia Scientifica. M. Munzi and N. Terrenato. ed. 2000. Volterra. Il teatro e le terme. Florence: Insegna del Giglio. E. Regoli and N. Terrenato. ed. 2000. Guida al Museo Archeologico di Rosignano Marittimo. Paesaggi e insediamenti in Val di Cecina. Siena: Nuova Immagine. N. Terrenato. ed. 2000. Archeologia Teorica. Florence: Insegna del Giglio. S. Keay and N. Terrenato. ed. 2001. Italy and the West. Comparative issues in Romanization. Oxford: Oxbow. P. Van Dommelen and N. Terrenato. ed. 2007. Articulating local cultures: Power and identity under the expanding Roman Republic. Portsmouth: JRA. N. Terrenato and D.C. Haggis. ed. 2011. State Formation in Italy and Greece: Questioning the Neoevolutionist Paradigm. Oxbow. () J. A. Becker and N. Terrenato. ed. Roman Republican Villas: Architecture, Context, and Ideology. (University of Michigan Press, 2011). () R. Opitz, M. Mogetta, and N. Terrenato, ed. A Mid-Republican House from Gabii. (University of Michigan Press, 2016). () N. Terrenato, The Early Roman Expansion into Italy. (Cambridge University Press, 2019). Winner of the 2021 Wiseman Book Award. References 1963 births Living people Archaeologists from Rome University of Michigan faculty Classical archaeologists
Cleto de Jesús González Víquez (13 October 1858 – 23 September 1937) was, on two occasions, the President of Costa Rica, firstly as the 18th president in 1906 and lastly as the 26th president in 1928. Don Cleto was born in Barva, Heredia on October 13, 1858, as the son of Cleto González Pérez and Aurora Víquez Murillo. He was a renowned Costa Rican politician, lawyer, and historian. He married in 1889 to Adela Herrán Bonilla and died in San José, Costa Rica on September 23, 1937. Cleto González Víquez was given the title of Benemérito de la Patria on October 5, 1944. President of Costa Rica Don Cleto began his political career at a young age. He was a mayor of San José, Secretary of the State of President Bernardo Soto Alfaro, Undersecretary of the Government and Police, among other offices. He also became president of the College of Lawyers and of the Junta de Caridad de San José (today the Junta de Protección Social). From 1890 until 1902 he belonged to the opposition party. In 1905 he was elected President of the Republic of Costa Rica for the first time. He governed with a lot of tact, taking into account that he did not have a majority in Congress. During his second term in office, from 1928 to 1932, González Víquez used Keynesian ideas to stave off further effects of the Great Depression. He increased public spending and ratcheted up public infrastructure projects. Main achievements of Cleto González Víquez's administration: He concluded the railroad to the Pacific in 1910 He dictated the first Law of Railroads He expanded the System of Pipes of San José. He built the old building of the National Library Reinforced the municipal services He created the accounts receivable of Work in 1928 and Social Forecast and impulsed the making of a Code of Work He was prompted the accounts receivable of Agriculture they were created and Stockbreeding and the National Service of Electricity in 1928 He created the attorney general's office of the Republic He founded the National Patronage of the Infancy He founded the First National Business of Air Transportations in 1932 Inaugurated the dock of Puntarenas in 1928 Paved the streets of San José References External links Expresidentes de Costa Rica (Spanish) |- 1858 births 1937 deaths Presidents of Costa Rica Vice presidents of Costa Rica People from Heredia Province National Union Party (Costa Rica) politicians Foreign ministers of Costa Rica 20th-century Costa Rican politicians
MrSID (pronounced Mister Sid) is an acronym that stands for multiresolution seamless image database. It is a file format (filename extension .sid) developed and patented by LizardTech (in October 2018 absorbed into Extensis) for encoding of georeferenced raster graphics, such as orthophotos. MrSID originated as the result of research efforts at Los Alamos National Laboratory (LANL). Common uses Geographic information systems MrSID was originally developed for Geographic Information Systems (GIS). With this format, large raster image files such as aerial photographs or satellite imagery are compressed and can be quickly viewed without having to decompress the entire file. The MrSID (.sid) format is supported in major GIS applications such as Autodesk, Bentley Systems, CARIS, ENVI, ERDAS, ESRI, Global Mapper, Intergraph, MapInfo, QGIS and MiraMon. Fingerprints According to the Open Source Geospatial Foundation (which releases GDAL), MrSID was developed "under the aegis of the U.S. government for storing fingerprints for the FBI." Other uses In a 1996 entry for the R&D 100 Awards, LANL identified other uses for the format: "it can be used as an efficient method for storing and retrieving photographic archives; it can store and retrieve satellite data for consumer games and educational CD-ROMs; and it is well suited for use in vehicle navigation systems. Moreover, MrSID holds promise for being used in image compression and editing for desktop publishing and nonlinear digital video software." For certain downloadable images (such as maps), American Memory at the Library of Congress began using MrSID in 1996; in January 2005 it also began using JPEG 2000. Depending on image content and color depth, compression of American Memory maps is typically better with MrSID, which on average achieves a compression ratio of approximately 22:1 versus the 20:1 achieved with JPEG 2000. Software Extensis offers a software package called GeoExpress to read and write MrSID files. They also provide a free web browser plug-in for the Microsoft Windows operating system. (A Macintosh OS version of this viewer, introduced in 2005, was discontinued.) Most commercial GIS software packages can read some versions of MrSID files including those from GE Smallworld, ESRI, Intergraph, Bentley Systems, MapInfo, Safe Software, Autodesk, with ERDAS IMAGINE being able to both read and write MrSID files. GeoExpress can also generate JPEG 2000 (.jp2) data. When combined with LizardTech's Express Server, .sid and .jp2 data can be served quickly to a variety of GIS applications and other client applications either through direct integrations or via WMS. There is no open source implementation of the MrSID format. Some open source GIS systems can read MrSID files, including MapWindow GIS and those based on GDAL. The Decode Software Development Kit (SDK) is made available as a free download from Extensis. This enables the capability to implement MrSID reading capability in any application. Some image editing and management software systems can also read MrSID files, including XnView and IrfanView. Technology Encoding MrSID technology uses lossless wavelet compression to create an initial image. Then the encoder divides the image into zoom levels, subbands, subblocks and bitplanes. After the initial encoding, the image creator can apply zero or more optimizations. While 2:1 compression ratios may be achieved losslessly, higher compression rates are lossy much like JPEG-compressed data. Decoding MrSID uses selective decoding meaning that the decoder does not have to decode the entire file to view a specific zoom level, image quality or scene for example. References External links MrSID Technology Primer (PDF) from LizardTech's website MrSID Viewer (standalone version) from the Library of Congress MrSID SDKs from the Extensis website. Lossy compression algorithms Lossless compression algorithms GIS raster file formats
Edithais pehuensis is an extinct species of sea snail, a marine gastropod mollusk, in the family Muricidae, the murex snails or rock snails. Distribution This species occurs in New Zealand. References pehuensis Gastropods described in 1926
Master of the King's Music (or Master of the Queen's Music, or earlier Master of the King's Musick) is a post in the Royal Household of the United Kingdom. The holder of the post originally served the monarch of England, directing the court orchestra and composing or commissioning music as required. The post is broadly comparable to that of poet laureate. It is given to people eminent in the field of classical music; they have almost always been composers. Duties are not clearly stated, though it is generally expected the holder of the post will write music to commemorate important royal events, such as coronations, birthdays, anniversaries, marriages and deaths, and to accompany other ceremonial occasions. The individual may also act as the sovereign's adviser in musical matters. Since 2004 the appointment has been for a fixed term of ten years rather than for life, as previously. The King's Musick In the 14th century professional music-making in England was theoretically regulated by the Crown. Musicians known as the "King's Minstrels" or the "King's Musick" wore the royal livery and exercised some control of other musicians, although the musicologist Leonard Duck describes that control as "nominal". Henry VI appointed a Royal Commission to regulate unlicensed minstrelsy and in 1469 Edward IV granted the royal minstrels a Guild charter. According to the charter, "no Minstrel of our Kingdom ... shall henceforth in any way practise or publicly exercise the art or occupation within our Kingdom aforesaid, unless he belong to the said Brotherhood or Guild". This led to legal difficulties between the royal minstrels and the City Company under the patronage of the City of London, chartered by James I in 1604 to perform in the City and three miles outside it. The King's Minstrels requested and received a charter from Charles I in 1635 to "have the survey, scrutinie, correction and government of all and singular the musicians within the kingdome of England". First Masters of the King's Musick The first appointed Master of the King's Musick was the only one seriously to attempt to rule all the musicians in the kingdom as a guild. This was Nicholas Lanier, appointed by Charles I in 1626 as Master of the King's Musick (the spelling was changed to "Music" in the 20th century, during Sir Edward Elgar's tenure). At that time the holder of the post took charge of the monarch's private band, a responsibility which continued until the band was dissolved in 1901 by Edward VII. The position lapsed during the period of military rule following the Civil War, but on the restoration of the monarchy in 1660 Lanier returned from exile to resume the revived post. After Lanier's death in 1666, Charles II appointed a French violinist, Louis Grabu, to the post. Grabu was primarily concerned with organising the music for the court, and the Westminster musicians' guild fell into decline, coming to an end after 1697. Neither Grabu nor his successor Nicholas Staggins, who served from 1674 to 1700, was a talented composer; they turned to established composers such as Henry Purcell to supply music for important occasions. 18th century Staggins was succeeded by John Eccles, who was appointed by William III in June 1700. Eccles was the longest-serving Master, holding the post for 35 years; he is also the only one to have served under four monarchs (William III, Anne, George I and George II). He was already a well-known composer before his appointment, described by Grove's Dictionary of Music and Musicians as "undoubtedly the greatest of the Restoration theatre composers" after Purcell. He nevertheless continued his predecessors' practice of commissioning works from other composers, including Handel, who supplied the Ode for the Birthday of Queen Anne (1713). Duck comments that Handel's eminence as a composer "evidently did not qualify him as a suitable candidate for the honour of Master of the King's Music – the Hanoverian kings clearly played safe by choosing musicians of unimpeachable native breeding". After Eccles's death in 1735, his post was filled by Maurice Greene, who already held the posts of organist of St Paul's Cathedral and organist and composer of the Chapel Royal. He held the post for twenty years, but his health was never robust, and he frequently called upon his former pupil William Boyce to compose music for the birthday and New Year odes written by the Poet Laureate in honour of the king. After Greene died in December 1755, Boyce succeeded him as Master of the King's Musick, and later in the Chapel Royal appointment. It was probably in the latter capacity rather than the former that Boyce provided what Grove calls "an imposing and deeply felt orchestral anthem" for the funeral of George II on 11 November 1760, "a splendid setting of 'The King shall rejoice"' for the wedding of King George III and Princess Charlotte on 8 September 1761, and eight anthems for the coronation of the king later in the same month. Boyce died in 1779, and was succeeded as Master by another former pupil of Greene, John Stanley, who held the post until he died in 1786. He composed fifteen birthday and New Year odes, but none of them have survived. The last Master appointed in the 18th century was Sir William Parsons. He was viewed by his contemporaries as an affable man but a musician of limited ability, although his court music cannot be assessed, having mostly been lost. He is believed to be the first professional musician to have been knighted in Britain, although it was said that the honour was more for "the score of his merits than because of the merits of his scores". 19th century Parsons held the post of Master until 1817, when he was succeeded by William Shield, best known as a theatre composer: he composed or arranged music for at least thirty-six operas and seven pantomimes and ballets. Shield's tenure is most notable for the abandonment of the traditional provision of court odes. By custom, the Poet Laureate of the day wrote the words for the odes, a task that the then holder, Robert Southey, found uncongenial. After the death of George III in 1820 the odes were discontinued. The post of Master of the King's Musick continued because George IV maintained the traditional small orchestra, which Shield's successor, Christian Kramer, directed. That remained the chief function of the Master through the tenures of Franz Cramer (Master 1834–48), George Frederick Anderson (Master 1848–70), and Sir William Cusins (Master 1870–93). The last of these produced a few works for royal occasions, including a jubilee cantata, "Grant the Queen a Long Life" (1887). The last Master appointed in the 19th century was Sir Walter Parratt, organist of St George's Chapel, Windsor. His tenure lasted thirty-one years from 1893, under the reigns of three monarchs – Queen Victoria, Edward VII and George V. In Duck's view, Parratt's role was chiefly that of musical adviser to the Crown. Among his actions in that capacity were inviting Elgar to set A. C. Benson's verses as a Coronation Ode for Edward VII in 1901, and writing an anthem for the anniversary of Queen Victoria's death in 1909. Parratt's own official compositions included a contribution to a collection of choral songs by various composers in honour of Queen Victoria and a Confortare for the coronation service of Edward VII. 20th century After Parratt's death in 1924, there was a body of opinion that the position of Master was an anachronism, with neither a royal band to direct nor regular royal odes to compose. Elgar, who was well regarded by the royal family, pressed the case for retaining the post. According to the music writer Nicholas Kenyon, he also "lobbied shamelessly" for his own candidacy for it. Other names, including that of Ralph Vaughan Williams had been suggested, but George V and his advisers took the view that "if the post is to go to the most eminent musician it would hardly be possible to go beyond Elgar." Elgar's appointment was announced in May 1924; The Times commented, "it is entirely fitting that in the changed condition of the office he should be made Master of the King's Musick and the Musician Laureate of the British people." Elgar was not required to write any official music in his new capacity, but in 1931, he dedicated his Nursery Suite to the Duchess of York and her two daughters. He used his influence as Master to track down the original instruments of Edward VII's band, to ensure the royal music library was well ordered, and to secure recognition for other musicians, including a knighthood for Granville Bantock and the Companion of Honour for Delius. As musical aide to the king he gave advice about such topics as the foundation of a national opera company, the correct version of the national anthem to be broadcast by the BBC, and the musical events at which members of the royal family should be present. Elgar died in 1934. He was succeeded by Sir Walford Davies, organist of St George's Chapel, Windsor, who had been rumoured to be in the running for the post in 1924. In a 1966 retrospective of the various Masters, Charles Cudworth wrote that Davies was "a fine musician, a good composer, and was even better-known as one of the world's first great broadcasters, so the appointment was popular." When Davies died in 1941, Sir Arnold Bax replaced him, to the surprise of many in the musical world, given his strong affinities with Ireland, and no record of writing occasional music. Bax did write a few pieces for royal occasions, including a march for the coronation of Elizabeth II. Bax died in 1953; many expected his successor to be Sir William Walton, but to Walton's own relief the post went to Sir Arthur Bliss. In The Times, the critic Frank Howes commented, "The duties of a Master of the Queen's Music are what he chooses to make of them, but they include the composition of ceremonial and occasional music". Bliss, who composed quickly and with facility, was able to discharge the calls on him as Master, providing music as required for state occasions, from the birth of a child to the Queen, and the funeral of Winston Churchill, to the investiture of the Prince of Wales. When Bliss died in 1975, Walton and others lobbied for the appointment of Malcolm Arnold. There was some surprise that Bliss's actual successor was the Australian composer Malcolm Williamson; Walton attributed the appointment to the need for "cementing the cracks in the Commonwealth". Williamson held the post from 1975 until his death in 2003, composing works including Lament in Memory of Lord Mountbatten of Burma (1980), Ode for Queen Elizabeth (1980), and Songs for a Royal Baby (1985). 21st century Sir Peter Maxwell Davies was appointed to the Mastership in 2004 in succession to Williamson. For the first time the appointment was for a fixed, ten-year, term rather than for life, with the aim of making the post more attractive to composers. Maxwell Davies' work as Master included a Christmas carol for the Queen which was recorded by the Chapels Royal, and a work to accompany a poem by the Poet Laureate, Andrew Motion, to mark the Queen's eightieth birthday in 2006. He played a key role in the creation of the Queen's Medal for Music. After the end of Maxwell Davies' term, Judith Weir was appointed in 2014, again for a ten-year term. Reporting the appointment, The Guardian said that rather than writing pieces for royal occasions, Weir would concentrate on supporting and speaking up for her composer colleagues, challenging the function that contemporary music fulfils in society, and embarking on a nationwide exploration of the state of music education in order to create pieces that will be useful for schoolchildren and amateur musicians. However, Weir has composed several works for state events, including The True Light for the First World War centenary in 2018, By Wisdom for the Platinum Jubilee and Like as the hart for the Queen's state funeral. Office holders See also Kapellmeister Notes Sources Positions within the British Royal Household Masters of the King's Music
Millard Salter's Last Day is an American novel by Jacob M. Appel. It was published by Simon & Schuster in 2017. The novel won the Faulkner-Wisdom Prize for the Novel in 2016. Judge John Gregory Brown, the chair of the awards panel, wrote of the novel: "It is a remarkably astute and funny novel about death, utterly convincing in every way. If this author isn't an elderly psychiatrist from New York, then the novel is a feat of astounding research and ventriloquism." Plot The novel tells the story of the final day in the life of a 75-year-old psychiatrist, Millard Salter, who runs the consult-liaison service at St. Dymphna's Hospital in New York City. Salter's second wife has died a slow, painful death of cancer, so he volunteers with an underground organization that helps terminally-ill patients commit suicide. However, he falls in love with the first such patient to whom he is assigned, Delilah, and decides to end his own life on the same day that she ends hers. Reception The Washington Post described the novel's protagonist as "man is full of life" and wrote that he "calls up comparisons to the late John Updike's visited and revisited character, Rabbit. Embodying contemporary ennui, Rabbit considers himself fulfilled when he manages to merely 'muddle through.'" At Tablet, Alexander Aciman described the novel as "The Best Novel of 2017 That You Never Heard Of." References 2017 American novels English-language novels Simon & Schuster books Novels set in hospitals Novels set in New York City
Bowman is an unincorporated community in Chicot County, Arkansas, United States. References Unincorporated communities in Chicot County, Arkansas Unincorporated communities in Arkansas
Mount Profitis Ilias is a mountain on the Greek island of Rhodes. It is named for the biblical Elijah. Geology Profitis Ilias is formed of uplifted fault blocks themselves a product of the Hellenide orogeny which produced a stack of Alpine nappes of Mesozoic age. These are part of the Pindos-Olonos series of low-grade metamorphic limestone sediments. The mountain overlooks Middle Miocene-Pleistocene sedimentary basins. Sudden topographic variations and land instabilities are due to a multitude of thrust faults. Ophiolites, usually gabbro occur. Botany Profitis Ilias is covered with forests of pines (Pinus brutia) and cypress (Cupressus sempervirens) and maquis shrubland. Notable are the Rhodes Paeony Paonia rhodia and Cyclamen rhodium. The large parasitic orchid Limodorum abortivum grows in the pinewoods. Also notable are Ophrys ferrum-equinum, the Profitis Ilias Bee Orchid Ophrys fuciflora ssp. oreas (found only here), Ophrys arachnites ssp. attica, Ophrys lutea, Ophrys oestrifera ssp. dodekanensis, Orchis italica, Cephalanthera longifolia, Orchis provincialis (high altitudes moist woodland Prophitas Ilias only) Zoology In Spring and Autumn many pasage migrants occur. Rare snakes include leopard snake and Dahl's whip snake. The Mediterranean house gecko is more common. History Near the summit and 8 km from Eleousa are Hotel "Elaphos and Elaphina" and the Byzantine monastery named "Prophetes Elias". There are two hotel buildings, a three-storeyed one, "Elaphos" (now restored and functional) and a two-storeyed one, the "Elaphina. The "Elaphos" hotel was built by the Italian colonists in the Dodecanese in 1929 as Albergo del Cervo (Deer Hotel) In 1930, a ground floor restaurant, a large veranda, a tennis court and a dancing floor were added. Later, the second floor was constructed (replacing the veranda). In 1932 the building was extended with a new wing, called "Elaphina". The hotel was named after the deer Dama dama platoni that lives in the adjacent woods. De Vecchi's House This villa was the summer residence of General Cesare Maria De Vecchi, Italian Governor of Rhodes between 1936–1940. It is opposite to and overlooks the Hotel "Elaphos and Elaphina", amongst trees on the hill behind the taverna. Eleousa 8 km from the hotel Elaphos is the village of Eleousa founded as Profitis Ilias-Campochiaro. During their occupation of Rhodes the Italians built four agricultural villages that were to be populated by Italian settlers. Three of them stood not far from the coast: San Benedetto (Kolymbia), San Marco (near Kattavia) and Peveragno (Kato Kalamata). Profitis Ilias-Campochiaro lay more inland. The settlers each received a house and a plot of land. Those at the montane Profitis Ilias-Campochiaro came from the Trentino-Alto Adige /Südtirol. Profitis Ilias-Campochiaro (Eleousa) dates back to 1935–1936. The village was constructed with a Roman Catholic church (now Greek Orthodox) a school, shops, a Casa del Fascio (formerly with a tower), municipal services, medical facilities and a cinema. All these buildings were (and are) grouped around a rectangular town square. Hydraulic works were also carried out, to allow irrigation and hydroelectric power generation. The round pond with fountain just outside the village is a part of this system. Agios Nikolaos Foundoukli Agios Nikolaos Foundoukli late Byzantine church dedicated to St Nicholas containing 15th century frescoes. It is 2 km. from Eleousa. Around the church are very old olive and Oriental plane trees. See also Mount Attavyros Natural history of Rhodes Salakos References External links Mediterranean Black Sea Flyway Rhodes Mountains of Greece Landforms of Rhodes (regional unit) Mountains of the South Aegean
BTPN Towers are a pair of skyscrapers located at Mega Kuningan in Jakarta, Indonesia. They are part of a mixed use development called the Quadrant Complex. There are two buildings: The BTPN Office Tower, also known as Menara BTPN, is 223 meters tall and has 48 floors. It was constructed from 2013 to 2016, and serves as the headquarters for Bank BTPN, now part of Sumitomo Mitsui Banking Corporation as well as other businesses. The BTPN Hotel Tower has 25 floors and is under construction. See also List of tallest buildings in Indonesia List of tallest buildings in Jakarta References Buildings and structures in Jakarta Skyscraper office buildings in Indonesia Post-independence architecture of Indonesia Buildings and structures completed in 2016 South Jakarta
Island Lake is a summer village in Alberta, Canada. It is located on the western shore of Island Lake, along Highway 2, northwest of Athabasca. Demographics In the 2021 Census of Population conducted by Statistics Canada, the Summer Village of Island Lake South had a population of 81 living in 42 of its 85 total private dwellings, a change of from its 2016 population of 61. With a land area of , it had a population density of in 2021. In the 2016 Census of Population conducted by Statistics Canada, the Summer Village of Island Lake had a population of 228 living in 96 of its 263 total private dwellings, a change from its 2011 population of 243. With a land area of , it had a population density of in 2016. See also List of communities in Alberta List of summer villages in Alberta List of resort villages in Saskatchewan References External links 1983 establishments in Alberta Summer villages in Alberta
A referendum was held in the breakaway republic of Transnistria on 6 April 2003. Voters were asked to support a change in the country's constitution that would allow the private ownership of land. Turnout was 38.92%, falling short of the 50% required by Transnistrian law for the referendum to be valid. Of the participating voters, 56% voted in favour and 44% against. Results References Referendums in Transnistria Transnistria 2003 elections in Moldova 2003 in Transnistria
Əhmədabad and Akhmedabad may refer to: Əhmədabad, Goranboy, Azerbaijan Əhmədabad, Sabirabad, Azerbaijan Əhmədabad, Tovuz, Azerbaijan Ahmadabad-e Khanliq, Iran Ahmadabad-e Owfan, Iran Akhmedabad, Zanjan, Iran See also Ahmedabad Ahmadabad (disambiguation)
Jorebungalow (also spelt Jorebunglow) is a village in the Jorebunglow Sukhiapokhri CD block in the Darjeeling Sadar subdivision of the Darjeeling district in the Indian state of West Bengal. Geography Location Jorebungalow is located at . Area overview The map alongside shows a part of the southern portion of the Darjeeling Himalayan hill region in the Darjeeling district. In the Darjeeling Sadar subdivision 61.00% of the total population lives in the rural areas and 39.00% of the population lives in the urban areas. In the Mirik subdivision 80.11% of the total population lives in rural areas and 19.89% lives in urban areas. There are 78 tea gardens/ estates (the figure varies slightly according to different sources), in the district, producing and largely exporting Darjeeling tea. It engages a large proportion of the population directly/ indirectly. Some tea gardens were identified in the 2011 census as census towns or villages. Such places are marked in the map as CT (census town) or R (rural/ urban centre). Specific tea estate pages are marked TE. Note: The map alongside presents some of the notable locations in the subdivision. All places marked in the map are linked in the larger full screen map. Civic Administration Police station Jorebungalow police station has jurisdiction over the Jorebunglow Sukhiapokhri CD block. Demographics According to the 2011 Census of India, Jorebungalow had a total population of 2,854 of which 1,368 (48%) were males and 1,486 (52%) were females. There were 267 persons in the age range of 0 to 6 years. The total number of literate people in Jorebungalow was 2,332 (8171% of the population over 6 years). Economy This tiny hamlet was one of the most important trading points during the British rule. For most of the tea gardens in the neighbouring areas like Glenbourne, Teesta Valley, etc., Jorebungalow was the storage point for tea leaves to be transported to Calcutta and beyond and to bring back rations and items of daily needs. References Villages in Darjeeling district
Cheyenne is an American Western television series of 108 black-and-white episodes broadcast on ABC from 1955 to 1962. The show was the first hour-long Western, and was the first hour-long dramatic series of any kind, with continuing characters, to last more than one season. It was also the first series to be made by a major Hollywood film studio which did not derive from its established film properties, and the first of a long chain of Warner Bros. original series produced by William T. Orr. Synopsis The show starred Clint Walker, a native of Illinois, as Cheyenne Bodie, a physically large cowboy with a gentle spirit in search of frontier justice who wanders the American West in the days after the American Civil War. The first episode, "Mountain Fortress", is about robbers pretending to be Good Samaritans. It features James Garner (who had briefly been considered for the role of Cheyenne but could not be located until after Walker had already been cast) as a guest star, but with higher billing given to Ann Robinson as Garner's intended bride. The episode reveals that Bodie's parents were killed by Indians, tribe unknown. He was taken by Cheyenne Indians when he was an infant but left to be raised by a white family when he was 12. (One episode, 'West of the River' is inconsistent and states that he was taken and raised by the Cheyenne when he was 10 years old, and he left them by choice when he was 18 years old.) In the series, the character Bodie maintains a positive and understanding attitude toward the Native Americans, despite the death of his parents. In Season 5, Episode 1 "The Long Rope", which originally aired on September 26, 1960, Cheyenne returns to the town where he was raised by a family (the Pierces) whose father/husband Jeff was lynched when he, Cheyenne, was a youth. This causes some confusion with the viewer as it was said that Cheyenne was raised by a Cheyenne tribe after unknown Indians had killed his parents, but the various accounts say that he left the tribe at 12 or 18. Cast Clint Walker as Cheyenne Bodie (107 episodes) L.Q. Jones appeared as "Smitty" Smith in episodes 1, 2 and 4 but other than that there were no other continuing characters, although several actors were frequently used in guest or bit roles. Clyde Howdy appeared as a variety of characters in 49 episodes; Chuck Hicks can be seen playing assorted characters in 15 episodes; and Lane Chandler appears as different characters in 10 episodes. Background and production The series began as a part of Warner Bros. Presents, a "wheel program" that alternated three different series in rotation. In its first year, Cheyenne traded broadcast weeks with Casablanca and Kings Row. Thereafter, Cheyenne was overhauled by new producer Roy Huggins and left the umbrella of that wheel. Cheyenne ran from 1955 to 1963, except for a hiatus when Walker went on strike for better terms (1958–1959); among other demands, the actor wanted increased residuals, a reduction of the 50% cut of personal appearance payments that had to be turned over to Warner Bros., and a release from the restriction of recording music only for the company's own label. The interim had the introduction of a virtual Bodie-clone called Bronco Layne, played by Ty Hardin, born in New York City, but raised in Texas. Hardin was featured as the quasi main character during Bodie's absence. When Warner Bros. renegotiated Walker's contract and the actor returned to the show in 1959, Bronco was spun off. Even after returning to the program – having been prohibited from seeking other work during the long contract negotiation – Walker was unhappy to continue to play a role which he felt he had already exhausted. He told reporters that he felt like "a caged animal." Episodes Release Broadcast Cheyenne aired on ABC from 1955 to 1963: September 1955–September 1959 on Tuesday at 7:30–8:30 pm; September 1959–December 1962, Monday 7:30–8:30 pm; and April 1963–September 1963, Friday 7:30–8:30 pm. The series finished at number 13 in the Nielsen ratings for the 1957–1958 season, number 18 for 1958–1959, number 17 for 1959–1960, and number 28 for 1960–1961. Home media Warner Home Video released a "Best of..." single disc featuring three individual episodes (from three separate seasons) on September 27, 2005, as part of their "Television Favorites" compilation series. The featured episodes were "The Storm Riders" (from season one), "The Trap" (from season two) and "The Young Fugitives" (from season six). Warner Home Video has released the first season on DVD in Region 1. Seasons 2–7 have been released via their Warner Archive Collection. These are manufacture-on-demand releases on DVD-R discs. The seventh and final season was released on November 12, 2013. Reception Cheyenne was a co-winner of the 1957 Golden Globe Award for Television Achievement. 1957: Emmy nomination for Robert Watts (Best Editing of a Film for Television) Spin-offs and crossovers At the conclusion of the sixth season, a special episode was aired, "A Man Named Ragan", the pilot for a program called The Dakotas, starring Larry Ward, Chad Everett, Jack Elam, and Michael Greene, that was to have replaced Cheyenne in the middle of the next season. However, because Cheyenne Bodie never appeared in "Ragan", the two programs are only tenuously linked. Walker reprised the Cheyenne Bodie character in 1991 for the TV movie The Gambler Returns: The Luck of the Draw, which featured numerous actors from earlier television series playing their original roles (Jack Kelly, Brian Keith, Gene Barry, Hugh O'Brien, Chuck Connors, David Carradine etc.) and also portrayed Cheyenne in a time travel episode of Kung Fu: The Legend Continues called "Gunfighters" in 1995. References External links 1950s Western (genre) television series 1960s Western (genre) television series American Broadcasting Company original programming 1955 American television series debuts 1962 American television series endings Dell Comics titles Television series by Warner Bros. Television Studios Television shows set in Wyoming Black-and-white American television shows English-language television shows Cultural depictions of Sitting Bull Cultural depictions of George Armstrong Custer
Aparna Vinod is an Indian actress. She made her film debut in 2015 with the Malayalam film Njan Ninnodu Koodeyundu. Early life and education Aparna was born in Ernakulam in Kerala to entrepreneur Vinod P (a descendant of Padmanaban Palpu) and outfitter/designer Vaiga Sukumar. She attended school at St. Thomas Residential School during her early years and went on to complete her 10th standard from Fr. Mathew Alakalam Public School, Chalakudy graduating from Saraswathi Vidyalaya in Trivandrum. Aparna graduated in B.Sc., Psychology under the University of Calicut at Sahrdaya College of Advanced Studies. She has done her M.Sc. in Psychology from Presidency College,Madras. Personal life Aparna married Rinil Raj on 28 November 2022 in Kozhikode, Kerala. Career Film Aparna debuted in 2015 in the Malayalam industry through Njan Ninnodu Koodeyundu, a Malayalam-language Indian feature film directed by Priyanandanan, starring opposite Siddharth Bharathan and Vinay Forrt in a lead role. In her second film Kohinoor, she played the lead female role alongside Asif Ali. After the success of Kohinoor, her debut in the Tamil film Industry came in the form of a role in a Vijay movie, playing a minor role as a friend of the female lead Keerthy Suresh, who gets killed, in the 2017 Tamil film, Bhairavaa. The film was directed by veteran Tamil Director Bharathan. Drama At the Zonal and University Level arts festival conducted by the University of Calicut in 2017, Aparna Vinod played the role of a central female character who went through various stages of life, from a teenaged girl to a revolutionary character, in a play inspired by the Greek tragedy Oedipus Rex. Her work in the play earned her critical acclaim and two university level awards including Best Actress in a Leading Role for English Drama. Critics praised her method acting skills and dedication to the role. In January 2018, Aparna was awarded the title of Best Actress in a Leading Role at the Zonal Level by the University of Calicut for her performance in the critically acclaimed English language play, Road To Redemption, Which drew strong influences from plays like Dickens' A Christmas Carol and Oscar Wilde's "The Happy Prince". The key theme of the play deals with the protagonist's struggle with Oedipus Complex. Filmography References Indian film actresses Living people People from Thrissur district Year of birth missing (living people) Actresses in Malayalam cinema Actresses in Tamil cinema
Coomalie Creek is a locality in the Northern Territory of Australia located about south-east of the territory capital of Darwin. The locality consists of land bounded to the east by the Adelaide River and whose western boundary lies the immediate west of the Stuart Highway which passes through the locality in a north–south alignment. This locality is named after Coomalie Creek, which flows through the locality, and whose name is considered to be corruption of the aboriginal name, Gumili. Its boundaries and name were gazetted on 29 October 1997. The 2016 Australian census which was conducted in August 2016 reports that Coomalie Creek had 20 people living within its boundaries. Coomalie Creek is located within the federal division of Lingiari, the territory electoral division of Daly and within the local government area of the Coomalie Shire. During World War II, Coomalie Creek Airfield was constructed by the Royal Australian Air Force in the locality, which was bombed by Japanese forces on several occasions. Although it is on private land, the airfield has been partially restored and along with an anti-aircraft defence battery nearby, are some of the most intact examples of wartime infrastructure in the Northern Territory. Both are heritage-listed. References Populated places in the Northern Territory
A pissant, also seen as piss ant or piss-ant, refers to a specific type of ant. The word is also used as a pejorative noun or adjective, indicating insignificance. The original pissant is any of a certain group of large ant species, commonly called wood ants, that make mounded nests in forests throughout most of Europe. The name pissant arises from the urine-like odour produced by their nesting material—needles and straw from pine trees—and the formic acid that constitutes their venom. Formica rufa is one such ant, but there are others with similar characteristics. Forelius and Iridomyrmex are two genera of piss ants. In the United States, the word pissant may refer to any small ant that infests a home. Slang Pissant is an epithet for an inconsequential, irrelevant, or worthless person, especially one who is irritating or contemptible out of proportion to his or her perceived significance. A Virginia politician is said to have silenced a heckler by saying, "I'm a big dog on a big hunt and I don't have time for a piss-ant on a melon stalk". The term piss-ant also may be used as an adjective, usually as a pejorative, to mean insignificant and annoying. In conversations with his advisors during the Vietnam War, U.S. President Lyndon B. Johnson referred to Vietnam as "a piddling piss-ant little country". In the context of incorporating a celebrity's family into the limelight, Alex Reimer, a frequent guest at Boston's radio station WEEI, called Tom Brady's daughter "an annoying little pissant" in January 2018 prior to Super Bowl LII. Culture Pissant also may be used positively. Ron Ault of the AFL–CIO said, in describing the relationship of his union to the Pentagon, "Our job is to be the irritant piss ant stinging them on their ankles at every opportunity." After being defeated 4–0 in a 2009 Australian semi-final football match against Melbourne Victory, Adelaide United coach Aurelio Vidmar's post-match press conference became infamous when he described Adelaide as a "pissant town", with the Adelaide media perceived to be working against him and the club. The rant gained nationwide publicity in Australia. A character in Kurt Vonnegut's novel Cat's Cradle had a specific definition of a pissant as type of person: A pissant is somebody who thinks he's so damn smart, he can never keep his mouth shut. No matter what anybody says, he's got to argue with it. You say you like something, and, by God, he'll tell you why you’re wrong to like it. A pissant does his best to make you feel like a boob all the time. No matter what you say, he knows better. Chapter 1 of Stephen King's The Stand opens with the words: Hapscomb's Texaco sat on Number 93 just north of Arnette, a pissant four-street burg about 110 miles from Houston. Tony Stark nicknames Ant-Man a pissant in Avengers: Endgame. In the musical The Unsinkable Molly Brown, the title character says, "I'm as good as any piss ant that ever lived!" in the patter opening to the song "I Ain't Down Yet". See also Formica pratensis Formica polyctena References Slang
Gouxia danielaferreroae is a species of mealybug that lives in France. It was placed in a monotypic genus by Lucien Goux in 1989, but the genus name he used, Giraudia, was a junior homonym of at least two other animal genera. The genus was renamed Gouxia in his honour in 2009. References Hemiptera of Europe Monotypic Hemiptera genera Sternorrhyncha genera Pseudococcidae
Cinereach is a nonprofit film funding organization in New York, NY, founded in 2006, which provides grants, awards, an annual fellowship, and in-house film production. The organization also has partnerships with other film development organizations such as the Sundance Institute and other film funding organizations. In 2009, Cinereach funded $1.5 million of Sundance Film Festival grants over three years. The funding supports a minimum of twelve feature and documentary films developed at Sundance. In June 2011, four grants each were given for post-production and development for feature films, and for documentaries, one development and two production grants were made. The organization provides direct annual grants to fund development, production, and post-production in documentary and feature film categories. Films supported by Cinereach in the past include: Return, Donor Unknown, The Forgiveness of Blood, Pariah, Entre nos, Bully, The Boy Mir, Kinyarwanda, and Circumstance. Cinereach's 2018 grantees include Akicita: The Battle of Standing Rock, Black Mother, Chained for Life, Hale County This Morning, This Evening, Matangi/Maya/M.I.A., Monsters and Men, Night Comes On, Phantom Cowboys, Shirkers, Sorry to Bother You, This is Congo, and Wild Nights with Emily. Recipients of the Cinereach Producers Initiative award have included Karin Chien, Julie Goldman, Lars Knudsen, Heather Rae, Joslyn Barnes, Shrihari Sathe and Jay van Hoy. Cinereach rebranded in 2009 with a new identity and website design by experience design firm Method. References External links Non-profit organizations based in New York City Film organizations in the United States Arts organizations established in 2006
Poet Amanda Lear (Cyrillic: Πoeт Аманда Лир; Russian for Amanda Lear Sings) is a compilation album by French singer Amanda Lear, first released in 1981 by Melodiya. Background The album was released in the former Soviet Union by state-owned label Melodiya, featuring material from Lear's first three studio albums, released between 1977 and 1979. The LP mostly consists of songs from Never Trust a Pretty Face, to the extent that it retains the original track listing of its side B. The only track from that album not to be approved of by the Russian authorities was the German wartime classic "Lili Marleen". The compilation features two tracks from Sweet Revenge and only one song from I Am a Photograph, omitting most of Lear's greatest hits of the disco era. While a number of flexi discs with Lear's recordings was released in both the Soviet Union and other parts of the Eastern Bloc during the 1980s, the Poet Amanda Lear compilation was one of the few releases to actually be pressed on vinyl and released with a proper picture sleeve. Originally released in 1981, the LP was re-issued a number of times up until 1990. It has been voted the 10th favourite album of 1981 in the Soviet Union. Along with The Beatles, ABBA and Boney M., Amanda Lear was one of the very few Western pop acts during the Cold War era to have her music officially released in the Soviet Union by Melodiya. Both I Am a Photograph and Sweet Revenge were released by Ariola Records in East Germany in 1978 and were then followed by a series of singles and EPs issued by DDR record label Amiga in the late 1970s and early 1980s, which found their way to other parts of Eastern Europe. An official visit to the USSR was scheduled for 1982, but ultimately cancelled because Lear was involved in a legal dispute with her record company at the time. Lear has gained a large and lasting fanbase in the entire Eastern Bloc, and in late November 1997 she finally was able to visit Moscow, appearing on a TV show broadcast during the Russian New Year's festivities with an audience of approximately fifty million viewers. Track listing Side A "Реклама Вокруг Нас" ("Fashion Pack") (Anthony Monn, Amanda Lear) – 5:05 "Забудь Это" ("Forget It") (Anthony Monn, Amanda Lear) – 4:10 "Голубое Танго" ("Blue Tango") (Leroy Anderson, Amanda Lear) – 2:40 "Голливудский Кадр" ("Hollywood Flashback") (Anthony Monn, Amanda Lear) – 4:31 "Комиксы" ("Comics") (Charly Ricanek, Amanda Lear) – 3:40 "Никогда Не Доверяй Красивому Лицу" ("Never Trust a Pretty Face") (Anthony Monn, Amanda Lear) – 4:45 Side B "Сфинкс" ("The Sphinx") (Anthony Monn, Amanda Lear) – 4:20 "Черные Ямы" ("Black Holes") (Anthony Monn, Amanda Lear) – 5:00 "Интеллектуально" ("Intellectually") (Charly Ricanek, Amanda Lear) – 4:15 "Зеркало" ("Miroir") (Amanda Lear) – 2:00 "Мечтатель" ("Dreamer (South Pacific)") (Rainer Pietsch, Amanda Lear) – 5:10 Release history References 1981 compilation albums Amanda Lear compilation albums
Katō, Kato, Katou or Katoh (加藤, characters for "add/increase" and "wisteria") is the 10th most common Japanese surname. Notable people with the surname , Japanese actress and idol , Japanese field hockey player , Japanese field hockey player , Japanese curler and coach , Japanese Go player , Japanese politician , Japanese comedian, actor and musician , Japanese volleyball player , Japanese motorcycle racer , Japanese footballer , Japanese actor , Japanese baseball player , Japanese ninja , Imperial Japanese Navy officer , Japanese painter , Japanese voice actress , Japanese poet , Japanese cross-country skier Funky Kato (born 1978), Japanese singer-songwriter , Japanese entertainer and actor Hajime Katō (disambiguation), multiple people , Japanese gravure idol, television personality and professional wrestler , Japanese baseball player , Japanese musician and composer , Japanese footballer , Japanese shogi player , Japanese footballer , Japanese racing driver and team manager , Japanese footballer and manager , Japanese aikidoka , Japanese academic and politician , Japanese mixed martial artist and kickboxer , Japanese footballer and manager , Japanese footballer , Japanese swimmer , Japanese contemporary artist , Japanese speed skater , Japanese tennis player , Japanese rower , Japanese streamer , Japanese footballer , Japanese naval officer Kaori Kato (born 1977), Japanese women cricketer , Japanese politician , Japanese manga artist , Japanese actor and singer , Japanese mathematician , Japanese sport shooter , Japanese women's professional shogi player , Japanese actor , Japanese footballer , Japanese footballer , Japanese sport wrestler , Japanese daimyō Kiyomi Kato (disambiguation), multiple people , Japanese footballer Koichi Kato (disambiguation), multiple people , Japanese footballer , Japanese baseball player , better known as Koyuki, Japanese model and actress , Japanese animator , Japanese photographer , Japanese footballer , Japanese figure skater , Japanese footballer , Japanese swimmer , Japanese game developer and scenario writer , Japanese actor , Japanese entomologist , Japanese baseball player , Japanese voice actress , Japanese handball player , Japanese singer-songwriter , Japanese idol and singer , Japanese basketball coach , Japanese footballer , Japanese samurai and daimyō , Japanese speed skater Miyu Kato (disambiguation), multiple people , Japanese shogi player , Japanese voice actress , Japanese illustrator , Japanese actress , Japanese engineer , Japanese footballer , Japanese sprinter , Japanese footballer , Japanese singer and actress , Japanese footballer , Japanese singer and idol Ricky Kato (born 1994), Australian golfer , Japanese figure skater , Japanese gymnast , Japanese actress and model , Japanese actor and television personality , Japanese lawyer and diplomat , Japanese footballer , Imperial Japanese Navy admiral , Japanese Paralympic swimmer Satori Kato, Japanese chemist , Japanese gymnast , Japanese actor , Japanese voice actor , Japanese activist and politician , Japanese idol and singer , Japanese idol and model , Japanese Go player , Japanese footballer , Japanese baseball player , better known as SO-SO, Japanese beatboxer and looper Shuichi Kato (disambiguation), multiple people , Japanese professional wrestler , Japanese samurai , Japanese rower , Japanese cyclist , Japanese film director and screenwriter , Japanese Nordic combined skier , Japanese footballer , Japanese pornographic film actor , Japanese politician, diplomat and Prime Minister of Japan Takako Katō (disambiguation), multiple people , Japanese handball player , Japanese baseball player , Japanese baseball player , Japanese footballer , Japanese cyclist Takeshi Katō (disambiguation), multiple people , Japanese baseball player , Japanese World War II flying ace , Japanese baseball player , Japanese composer , Japanese journalist , Japanese mixed martial artist , Japanese painter , Japanese singer-songwriter and actress , Japanese surgeon , Japanese women's footballer , Japanese mass murderer , Imperial Japanese Navy admiral, politician and Prime Minister of Japan , Japanese footballer , Japanese politician , Japanese mathematician , Japanese contemporary artist , cofounder of Korg , Japanese footballer , Japanese daimyō , Japanese footballer , Japanese volleyball player , Japanese neurosurgeon , Japanese actor , Japanese daimyō , Japanese film director and screenwriter , Japanese footballer , Japanese footballer and manager , Japanese Paralympic judoka , Japanese swimmer , Japanese idol and singer Yuki Kato japanese actress , Japanese shogi player , Japanese triathlete , Japanese footballer , Japanese model, actress and beauty pageant winner Fictional characters , a character in the Green Hornet series Go Kato, a character in the manga series Someday's Dreamers Griffin Kato, a character in the manga series Rave Master , a character in the anime series Digimon Tamers , a character in the manga series Prince of Tennis Kazumi Kato, a character in The Order of the Stick webcomic , a character in the light novel and anime series Sound! Euphonium , protagonist of the light novel series Bodacious Space Pirates , a character in the video game Shadow Hearts: Covenant , a character in the manga series Gantz , a character in the light novel series Saekano: How to Raise a Boring Girlfriend , a character in the visual novel School Days , a character in the anime series Space Battleship Yamato , a character in the tokusatsu series Shuriken Sentai Ninninger , protagonist of the novel series Teito Monogatari , a character in the manga series Angel Sanctuary , a character in the manga series Doubt! Haru Kato (加藤 春), a character in the anime series The Millionaire Detective Balance: Unlimited References Japanese-language surnames
```java /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ package io.camunda.zeebe.client.impl.search.filter; import static io.camunda.zeebe.client.api.search.SearchRequestBuilders.variableValueFilter; import io.camunda.zeebe.client.api.search.filter.ProcessInstanceFilter; import io.camunda.zeebe.client.api.search.filter.VariableValueFilter; import io.camunda.zeebe.client.impl.search.TypedSearchRequestPropertyProvider; import io.camunda.zeebe.client.impl.util.CollectionUtil; import io.camunda.zeebe.client.protocol.rest.ProcessInstanceFilterRequest; import io.camunda.zeebe.client.protocol.rest.VariableValueFilterRequest; import java.util.List; import java.util.function.Consumer; public class ProcessInstanceFilterImpl extends TypedSearchRequestPropertyProvider<ProcessInstanceFilterRequest> implements ProcessInstanceFilter { private final ProcessInstanceFilterRequest filter; public ProcessInstanceFilterImpl() { filter = new ProcessInstanceFilterRequest(); } @Override public ProcessInstanceFilter processInstanceKeys(final Long... values) { return processInstanceKeys(CollectionUtil.toList(values)); } @Override public ProcessInstanceFilter processInstanceKeys(final List<Long> values) { filter.setKey(CollectionUtil.addValuesToList(filter.getKey(), values)); return this; } @Override public ProcessInstanceFilter variable(final VariableValueFilter value) { final VariableValueFilterRequest variableFilter = provideSearchRequestProperty(value); filter.addVariablesItem(variableFilter); return this; } @Override public ProcessInstanceFilter variable(final Consumer<VariableValueFilter> fn) { return variable(variableValueFilter(fn)); } @Override protected ProcessInstanceFilterRequest getSearchRequestProperty() { return filter; } } ```
"I Saw It Cummin'" is the first single released from PMD's debut album, Shade Business. It was produced by PMD and DJ Scratch and became PMD's most successful single during his brief solo career, peaking at 89 on the Billboard Hot 100, his only solo single to do so. The song sampled the Ohio Players' "Funky Worm", Ice Cube's "No Vaseline" and Snoop Doggy Dogg's "What's My Name" and was a diss song aimed at his former musical partner Erick Sermon. The duo disbanded EPMD the previous year due to tensions stemming from a late 1991 burglary of PMD's home in which Sermon was allegedly involved. Single track listing A-Side "I Saw It Cummin'" (Album Version)- 4:00 "I Saw It Cummin'" (Zone Mix)- 3:57 "I Saw It Cummin'" (Back Alley Bozack Mix)- 3:45 "I Saw It Cummin'" (Underground Funk Mix)- 3:57 B-Side "Steppin' Thru Hardcore" (Album Version)- 3:37 "I Saw It Cummin'" (Instrumental)- 4:00 Charts References 1994 debut singles PMD (rapper) songs 1994 songs RCA Records singles Songs written by PMD (rapper)
Michel P. Samson (born 1972) is a Canadian politician, who represented the electoral district of Cape Breton-Richmond, formerly Richmond in the Nova Scotia House of Assembly from 1998 to 2017. He was a member of the Nova Scotia Liberal Party. Samson attended Isle Madame District High School and graduated with a B.A. from Dalhousie University in 1994 and a LL.B. from Dalhousie Law School in 1997. Samson articled with the Halifax law firm of Blois, Nickerson & Bryson and he was admitted to the Nova Scotia in 1998 before working as an associate at the Port Hawkesbury law firm of Macdonald, Boudrot & Doucet. Political career In 1998 Samson successfully ran for the Nova Scotia Liberal Party nomination in the riding of Richmond. He was elected in the 1998 provincial election. In December 1998, Samson was appointed to the Executive Council of Nova Scotia where he served as Minister of the Environment as well as Minister responsible for administration of the Youth Secretariat Act. At the time, he was the youngest person ever to be appointed to the Executive Council of Nova Scotia. Samson was re-elected in the 1999, 2003, 2006 and 2013 provincial elections. Samson served as interim leader of the Nova Scotia Liberal Party from 2006-2007 following the resignation of Francis MacKenzie until Stephen McNeil was elected leader; Samson having decided not to pursue the leadership. On October 22, 2013, Samson was appointed to the Executive Council of Nova Scotia to serve as Minister of Economic and Rural Development and Tourism as well as Minister of Acadian Affairs. In March 2015, Samson was sworn-in as Minister of Energy following the resignation from cabinet of Andrew Younger. In the 2017 election, Samson was defeated by Progressive Conservative candidate Alana Paon. Electoral record |- |Liberal |Michel Samson |align="right"|4369 |align="right"|56.51 |align="right"| |- |Progressive Conservative |Joe Janega |align="right"|1696 |align="right"|21.93 |align="right"| |- |New Democratic Party |Bert Lewis |align="right"|1667 |align="right"|21.56 |align="right"| |} |- |- |New Democratic Party |Clair Rankin |align="right"|1477 |align="right"|25.31 |align="right"|+15.88 |- |Progressive Conservative |John Greene |align="right"|1045 |align="right"|17.91 |align="right"|-22.65 |- |} |- |Liberal |Michel Samson |align="right"|2722 |align="right"|48.55 |align="right"| |- |Progressive Conservative |John Greene |align="right"|2268 |align="right"|40.56 |align="right"| |- |New Democratic Party |Mary Pat Cude |align="right"|529 |align="right"|9.43 |align="right"| |- |} |- |Liberal |Michel Samson |align="right"|3047 |align="right"|51.36 |align="right"| |- |Progressive Conservative |Richie Cotton |align="right"|1850 |align="right"|31.18 |align="right"| |- |New Democratic Party |Clair Rankin |align="right"|1036 |align="right"|17.46 |align="right"| |} |- |Liberal |Michel Samson |align="right"|3105 |align="right"| |align="right"| |- |Progressive Conservative |Joseph MacPhee |align="right"|1905 |align="right"| |align="right"| |- |New Democratic Party |Wilma Conrod |align="right"|1595 |align="right"| |align="right"| |} |- |- |Progressive Conservative |Joseph MacPhee |align="right"|1,905 |align="right"| |align="right"| |- |New Democratic Party |Wilma Conrod |align="right"|1,595 |align="right"| |align="right"| |} See also 2007 Nova Scotia Liberal Party leadership election References External links Members of the Nova Scotia Legislative Assembly Liberal caucus profile 1972 births Nova Scotia Liberal Party MLAs Schulich School of Law alumni Acadian people Living people Members of the Executive Council of Nova Scotia People from Richmond County, Nova Scotia 21st-century Canadian politicians Nova Scotia political party leaders
Luchtkastelen is a 1914 Dutch silent drama film directed by Louis H. Chrispijn. Cast Willem van der Veer ... Jack Annie Bos ... Alice Stanton Jan van Dommelen ... Visser / Fisherman Theo Frenkel Eugenie Krix ... Mevrouw Stanton / Mrs. Stanton Koba Kinsbergen Alex Benno Fred Homann ... Visser / Fisherman External links 1914 films Dutch silent feature films Dutch black-and-white films 1914 drama films Films directed by Louis H. Chrispijn Silent Dutch drama films
Kikar Singh (born 26 August 1939) is an Indian politician. He was a Member of Parliament, representing Bathinda, Punjab in the Lok Sabha the lower house of India's Parliament as a member of the Akali Dal (Sant Group). References External links Official biographical sketch in Parliament of India website 1939 births Living people Lok Sabha members from Punjab, India Shiromani Akali Dal politicians India MPs 1967–1970
In optical astronomy, interferometry is used to combine signals from two or more telescopes to obtain measurements with higher resolution than could be obtained with either telescopes individually. This technique is the basis for astronomical interferometer arrays, which can make measurements of very small astronomical objects if the telescopes are spread out over a wide area. If a large number of telescopes are used a picture can be produced which has resolution similar to a single telescope with the diameter of the combined spread of telescopes. These include radio telescope arrays such as VLA, VLBI, SMA, astronomical optical interferometer arrays such as COAST, NPOI and IOTA, resulting in the highest resolution optical images ever achieved in astronomy. The VLT Interferometer is expected to produce its first images using aperture synthesis soon, followed by other interferometers such as the CHARA array and the Magdalena Ridge Observatory Interferometer which may consist of up to 10 optical telescopes. If outrigger telescopes are built at the Keck Interferometer, it will also become capable of interferometric imaging. Types of interferometers Astronomical interferometers come in two types—direct detection and heterodyne. These differ only in the way that the signal is transmitted. Aperture synthesis can be used to computationally simulate a large telescope aperture from either type of interferometer. In the near future other arrays are expected to release their first interferometric images, including the ISI, VLTI, the CHARA array and the MRO interferometers. At the beginning of the 21st century, the VLTI and Keck Interferometer large-telescope arrays came into operation, and the first interferometric measurements of the brightest few extra-galactic targets were performed. Astronomical direct-detection interferometry One of the first astronomical interferometers was built on the Mount Wilson Observatory's reflector telescope in order to measure the diameters of stars. This method was extended to measurements using separated telescopes by Johnson, Betz and Townes (1974) in the infrared and by Labeyrie (1975) in the visible. The red giant star Betelgeuse was among the first to have its diameter determined in this way. In the late 1970s improvements in computer processing allowed for the first "fringe-tracking" interferometer, which operates fast enough to follow the blurring effects of astronomical seeing, leading to the Mk I, II and III series of interferometers. Similar techniques have now been applied at other astronomical telescope arrays, such as the Keck Interferometer and the Palomar Testbed Interferometer. Techniques from Very Long Baseline Interferometry (VLBI), in which a large aperture is synthesized computationally, were implemented at optical and infrared wavelengths in the 1980s by the Cavendish Astrophysics Group. The use of this technique provided the first very high resolution images of nearby stars. In 1995 this technique was demonstrated on an array of separate optical telescopes as a Michelson Interferometer for the first time, allowing a further improvement in resolution, and allowing even higher resolution imaging of stellar surfaces. The same technique has now been applied at a number of other astronomical telescope arrays, including the Navy Prototype Optical Interferometer and the IOTA array and soon the VLTI, CHARA array and MRO Interferometers. Projects are now beginning that will use interferometers to search for extrasolar planets, either by astrometric measurements of the reciprocal motion of the star (as used by the Palomar Testbed Interferometer and the VLTI) or through the use of nulling (as will be used by the Keck Interferometer and Darwin). A detailed description of the development of astronomical optical interferometry can be found here. Impressive results were obtained in the 1990s, with the Mark III measuring diameters of hundreds of stars and many accurate stellar positions, COAST and NPOI producing many very high resolution images, and ISI measuring stars in the mid-infrared for the first time. Additional results included direct measurements of the sizes of and distances to Cepheid variable stars, and young stellar objects. Interferometers are seen by most astronomers as very specialized instruments, as they are capable of a very limited range of observations. It is often said that an interferometer achieves the effect of a telescope the size of the distance between the apertures; this is only true in the limited sense of angular resolution. The combined effects of limited aperture area and atmospheric turbulence generally limit interferometers to observations of comparatively bright stars and active galactic nuclei. However, they have proven useful for making very high precision measurements of simple stellar parameters such as size and position (astrometry) and for imaging the nearest giant stars. For details of individual instruments, see the list of astronomical interferometers at visible and infrared wavelengths. Astronomical heterodyne interferometry Radio wavelengths are much longer than optical wavelengths, and the observing stations in radio astronomical interferometers are correspondingly further apart. The very large distances do not always allow any usable transmission of radio waves received at the telescopes to some central interferometry point. For this reason many telescopes instead record the radio waves onto a storage medium. The recordings are then transferred to a central correlator station where the waves are interfered. Historically the recordings were analog and were made on magnetic tapes. This was quickly superseded by the current method of digitizing the radio waves, and then either storing the data onto computer hard disks for later shipping, or streaming the digital data directly over a telecommunications network e.g. over the Internet to the correlator station. Radio arrays with a very broad bandwidth, and also some older arrays, transmit the data in analogue form either electrically or through fibre-optics. A similar approach is also used at some submillimetre and infrared interferometers, such as the Infrared Spatial Interferometer. Some early radio interferometers operated as intensity interferometers, transmitting measurements of the signal intensity over electrical cables to a central correlator. A similar approach was used at optical wavelengths by the Narrabri Stellar Intensity Interferometer to make the first large-scale survey of stellar diameters in the 1970s. At the correlator station, the actual interferometer is synthesized by processing the digital signals using correlator hardware or software. Common correlator types are the FX and XF correlators. The current trend is towards software correlators running on consumer PCs or similar enterprise hardware. There also exists some amateur radio astronomy digital interferometers, such as the ALLBIN of the European Radio Astronomy Club. As most radio astronomy interferometers are digital they do have some shortcomings due to the sampling and quantization effects as well as the need for much more computing power when compared to analog correlation. The output of both a digital and analog correlator can be used to computationally synthesize the interferometer aperture in the same way as with direct detection interferometers (see above). Using gamma-ray telescopes Optical intensity interferometry has been revived, measuring the width of giant stars using the optical instruments of the Cherenkov Telescope Array, a ground-based Cherenkov-radiation-based gamma-ray telescope normally intended to observe atmospheric Cherenkov-radiation so as to detect gamma-ray photons. See also Aperture synthesis Astronomical interferometer List of astronomical interferometers at visible and infrared wavelengths List of types of interferometers Multiple satellite imaging Optical coherence tomography Very-long-baseline interferometry Wave interference References P. Hariharan, Optical Interferometry, 2nd edition, Academic Press, San Diego, USA, 2003. E. Hecht, Optics, 2nd Edition, Addison-Wesley Publishing Co., Reading, Mass, USA, 1987. Further reading External links Description of astronomical interferometry. List of papers which chart the historical development of astronomical interferometry Astronomical interferometers Observational astronomy
Bulevirtide, sold under the brand name Hepcludex, is an antiviral medication for the treatment of chronic hepatitis D (in the presence of hepatitis B). The most common side effects include raised levels of bile salts in the blood and reactions at the site of injection. Bulevirtide works by attaching to and blocking a receptor (target) through which the hepatitis delta and hepatitis B viruses enter liver cells. By blocking the entry of the virus into the cells, it limits the ability of HDV to replicate and its effects in the body, reducing symptoms of the disease. Bulevirtide was approved for medical use in the European Union in July 2020. Structural formula Bulevirtide is a 47-amino acid peptide with the following sequence: CH3(CH2)12CO-Gly-Thr-Asn-Leu-Ser-Val-Pro-Asn-Pro-Leu-Gly-Phe-Phe-Pro-Asp-His-Gln-Leu-Asp-Pro-Ala-Phe-Gly-Ala-Asn-Ser-Asn-Asn-Pro-Asp-Trp-Asp-Phe-Asn-Pro-Asn-Lys-Asp-His-Trp-Pro-Glu-Ala-Asn-Lys-Val-Gly-NH2 (C13H27CO-GTNLSVPNPLGFFPDHQLDPAFGANSNNPDWDFNPNKDHWPEANKVG-NH2) Medical uses Bulevirtide is indicated for the treatment of chronic hepatitis delta virus (HDV) infection in plasma (or serum) HDV-RNA positive adult patients with compensated liver disease. Pharmacology Mechanism of action Bulevirtide binds and inactivates the sodium/bile acid cotransporter, blocking both HBV and HDV viruses from entering hepatocytes. The hepatitis B virus uses its surface lipopeptide pre-S1 for docking to mature liver cells via their sodium/bile acid cotransporter (NTCP) and subsequently entering the cells. Myrcludex B is a synthetic N-acylated pre-S1 that can also dock to NTCP, blocking the virus's entry mechanism. The drug is also effective against hepatitis D because the hepatitis D virus uses the same entry receptor as HBV and is only effective in the presence of a hepatitis B virus infection. Pre-clinical data in mice suggests that pharmacological inhibition of NTCP-mediated bile salt uptake may also be effective to lower hepatic bile salt accumulation in cholestatic conditions. This reduces hepatocellular damage. An increased ratio of phospholipid to bile salts seen in bile upon NTCP inhibition may further contribute to the protective effect as bile salts are less toxic in presence of phospholipids. References External links Anti–RNA virus drugs Viral hepatitis Orphan drugs Entry inhibitors
```javascript 'use strict'; const { expect } = require('chai'); const validate = require('../../src/pattern-validation'); describe('pattern-validation.js', () => { describe('validate week day', () => { it('should fail with invalid week day', () => { expect(() => { validate('* * * * 9'); }).to.throw('9 is a invalid expression for week day'); }); it('should fail with invalid week day name', () => { expect(() => { validate('* * * * foo'); }).to.throw('foo is a invalid expression for week day'); }); it('should not fail with valid week day', () => { expect(() => { validate('* * * * 5'); }).to.not.throw(); }); it('should not fail with valid week day name', () => { expect(() => { validate('* * * * Friday'); }).to.not.throw(); }); it('should not fail with * for week day', () => { expect(() => { validate('* * * * *'); }).to.not.throw(); }); it('should not fail with */2 for week day', () => { expect(() => { validate('* * * */2 *'); }).to.not.throw(); }); it('should not fail with Monday-Sunday for week day', () => { expect(() => { validate('* * * * Monday-Sunday'); }).to.not.throw(); }); it('should not fail with 1-7 for week day', () => { expect(() => { validate('0 0 1 1 1-7'); }).to.not.throw(); }); }); }); ```
Charles Calello (born August 24, 1938) is an American arranger, composer, conductor, record producer, and singer born in Newark, New Jersey. Calello attended Newark Arts High School and the Manhattan School of Music, in New York City. His track record of successfully collaborating with various artists to produce or arrange Billboard hit songs led to his nickname in the industry as the "Hit Man." In the late 1950s, Calello was a member of Frankie Valli's group The Four Lovers, but left before the group was transformed into The Four Seasons. In 1962, he became the group's musical arranger. In 1965, he briefly filled in for Nick Massi (who was Calello's replacement in The Four Lovers five years earlier but had abruptly quit the band) while the band prepared Joe Long to take the role on a permanent basis. Following his stint with the Seasons, he became a staff arranger/producer at Columbia Records. In 1968, he became an independent producer and arranger and a year later arranged Frank Sinatra's album Watertown, written by Bob Gaudio. He has worked and recorded with Barbra Streisand, Frank Sinatra, Roberto Carlos, Neil Diamond, Al Kooper, Bruce Springsteen, Jane Olivor, Laura Nyro, Liza Minnelli, Engelbert Humperdinck, the Cyrkle, Jimmy Clanton, Ray Charles, Deana Martin, Natalie Cole, Bobby Vinton, Janis Ian, Barry Manilow, Juice Newton, Red Rider, Nancy Sinatra, the Highwaymen, Shirley Ellis, Deborah Allen, and many others. Calello was the conductor and responsible for the string arrangements on Springsteen's "Jungleland" from the album Born to Run. Calello has had over 100 Billboard chart records, 38 of which have been top 20. Some of his hits include “Sweet Caroline” by Neil Diamond, “Native New Yorker” by Odyssey, “My Heart Belongs to Me” by Barbra Streisand, and “After the Lovin'” by Engelbert Humperdinck. In 1979, he had his own hit record with a disco version of "Sing, Sing, Sing". He has also composed film music, including the scores to Who Killed Teddy Bear (1965) and The Lonely Lady (1983). In 1992, he became principal arranger and assistant conductor of the Florida Symphonic Pops in Boca Raton, which became the Sunshine Pops Orchestra. References External links 1938 births Living people Musicians from Newark, New Jersey Manhattan School of Music alumni Newark Arts High School alumni Record producers from New Jersey The Four Seasons (band) members Jersey Shore musicians American music arrangers American male songwriters American male conductors (music) 21st-century American composers Classical musicians from New York (state) Classical musicians from New Jersey American male composers 21st-century American conductors (music) 21st-century American male musicians
Andrey Semyonov (born 16 August 1977) is a Russian sprinter. He competed in the men's 4 × 400 metres relay at the 2000 Summer Olympics. References External links 1977 births Living people Place of birth missing (living people) Russian male sprinters Olympic male sprinters Olympic athletes for Russia Athletes (track and field) at the 2000 Summer Olympics World Athletics Championships athletes for Russia World Athletics Indoor Championships medalists Russian Athletics Championships winners Universiade medalists in athletics (track and field) Universiade silver medalists for Russia Medalists at the 2003 Summer Universiade 21st-century Russian people
Kevin Hewison is an Australian social and political scientist, formerly the Weldon E. Thornton Distinguished Professor at University of North Carolina at Chapel Hill (UNC) and director of the Carolina Asia Center. He is now Weldon E. Thornton Distinguished Emeritus Professor at UNC. Born on 15 May 1954, in Collie, Western Australia, he grew up in Perth, attending Doubleview Primary School (1960–1964), Scotch College (1965–1966) and Churchlands Senior High School (1967–1971). He completed undergraduate studies in social science at Perth's Western Australian Institute of Technology (now Curtin University, 1972–1974), where he also completed a Graduate Diploma in Education (1975). While teaching high school in Perth's suburbs, he obtained a First Class Honours degree in Southeast Asian Studies at Murdoch University in 1978. He went on to finish his Ph.D. in 1984 at Murdoch University, supervised by Richard Robison. In his academic career, Hewison has held academic posts at Murdoch University in Australia (1983–84, 1991–1994, 2013–2015), Australian National University (1985–86), University of Papua New Guinea (1984), University of New England (UNE, 1994–2000) and the City University of Hong Kong (2000–2004) in various social science and area studies disciplines. In late 1986, Hewison joined the Thai-Australia Northeast Village Water Resources Project based in Khon Kaen as a consultant sociologist and worked with the project until late 1989. He was the team leader on the UNICEF Laos rural sanitation and water supply masterplan (1991), and also worked as an advisor on social and community issues for the Australian Agency for International Development in 1996–98, while on leave from UNE. At UNE, Hewison was the Foundation Chair of Asian Studies and chair of the Department of Asian Languages and Societies. In late 2000, he relocated to Hong Kong to become professor and director of City University's Southeast Asia Research Centre. In January 2005, Hewison joined UNC-Chapel Hill as professor of Asian studies and director of the Carolina Asia Center and became Weldon E. Thornton Distinguished Professor in 2012. He retired from UNC-Chapel Hill in mid 2013 to become the Sir Walter Murdoch Professor of Politics and International Studies and director of the Asia Research Centre at Murdoch University, retiring in 2015. Hewison has also held visiting positions at several universities. In 1989–90, he was a visiting professor at Mahidol University (Thailand) and has twice been a visiting professor at the University of Warwick (UK), in 2000 and 2010. In the first half of 2012, he was visiting professor of Asian studies at the Singapore Management University and in December 2015 and February–March 2016, Hewison was Academic Icon (visiting professor) with the Institute of China Studies, University of Malaya. In 2017, he spent January to July as a visiting research scholar at the Center for Southeast Asian Studies at Kyoto University. In May 2018, he was visiting guest professor with the department of political science and Forum for Asian Studies at Stockholm University. In 2014, he was elected a Fellow of the Academy of Social Sciences in Australia. He is editor-in-chief of Journal of Contemporary Asia Known primarily for his work on Thailand's political economy and on various aspects of labour and precarious work in Asia, he has authored or edited some 250 books, articles, chapters, and media contributions. Books Bankers and Bureaucrats: Capital and State in Thailand, New Haven: Yale Center for International and Area Studies, Yale University Southeast Asian Monographs, No. 34, 1989. Power and Politics in Thailand: Essays in Political Economy, Manila and Wollongong: Journal of Contemporary Asia Publishers, 1989. Village Life: Culture and Transition in Thailand's Northeast, Bangkok: White Lotus, 2001 (with Seri Phongphit). Precarious Asia. Global Capitalism and Work in Japan, South Korea, and Indonesia, Stanford: Stanford University Press, 2022 (with Arne Kalleberg and Kwang-Yeong Shin). Edited books Southeast Asia in the 1980s: The Politics of Economic Crisis, Sydney & London: Allen & Unwin, and Boston, Hyman Allen, 1987 (ed. with R. Robison & R. Higgott). Southeast Asia in the 1990s: Authoritarianism, Democracy and Capitalism, Sydney: Allen & Unwin, 1993 (ed. with R. Robison & G. Rodan). The Political Economy of South-East Asia. An Introduction, Melbourne: Oxford University Press, 1997 (ed. with G. Rodan & R. Robison). Political Change in Thailand. Democracy and Participation, London and New York: Routledge, 1997. The Political Economy of South-East Asia. Conflicts, Crises, and Change, Melbourne: Oxford University Press, 2001 (ed. with G. Rodan & R. Robison). Transnational Migration and Work in Asia, London & New York: RoutledgeCurzon, 2006 (ed. with K. Young). Neoliberalism and Conflict in Asia After 9/11, London & New York: Routledge, 2006 (ed. with G. Rodan). The Political Economy of South-East Asia. Markets, Power and Contestation, Melbourne: Oxford University Press, 2006 (ed. with G. Rodan & R. Robison). East Asia and the Trials of Neo-Liberalism, London & New York: Routledge, 2006 (ed. with R. Robison). Policy Responses to Precarious Work in Asia, Taipei: Institute of Sociology, Academia Sinica, 2015 (ed. with M. H-H. Hsiao & A. Kalleberg). Military, Monarchy and Repression: Assessing Thailand's Authoritarian Turn, Abingdon: Routledge, 2017 (ed. with Veerayooth Kanchoochat). References Living people University of North Carolina at Chapel Hill faculty Australian political scientists American political scientists Fellows of the Academy of the Social Sciences in Australia 1954 births
The Mennonite Publication Board was founded in 1908 in Scottdale, Pennsylvania, as an organization through which the (old) Mennonite Church could own and operate its own publishing and periodicals. It served as the overseeing board for the printing and sale of denominational texts, operating the Mennonite Publishing House in Scottdale along with several bookstores throughout the United States and Canada, until 2002. Founding Prior to 1908, Mennonite publications and periodicals were owned and operated outside of the church, under multiple Mennonite publishing agencies, including the Mennonite Publishing Company, the Mennonite Book and Tract Society and the Gospel Witness Company. Several conferences under the (old) Mennonite Church began expressing a desire to consolidate and control the production of denominational texts, including the Kansas-Nebraska Conference in 1898, with several other conferences expressing interest by 1907. In November 1907 a meeting in Elkhart of delegates from nine conferences voted unanimously that the church should control its publications. A committee was formed with J.S. Shoemaker elected as chairman, and the new committee began negotiating with the three privately operated Mennonite publishing houses, the Mennonite Publishing Company, Gospel Witness Company, and the Mennonite Book and Tract Society, to purchase equipment and publications. Scottdale, Pennsylvania was chosen as the board's headquarters, as well as the location for its printing company, the Mennonite Publishing House. The new Mennonite Publication Board would organize and govern the church's printing interests, while the Mennonite Publishing House would carry out practical operations. Function The board operated with an executive committee including a president, vice-president, secretary, and financial agent, although these positions were altered over the years. Notable members of this executive committee include J.C. Wenger, J.S. Shoemaker, Paul Erb, Moses H. Shantz, and A.J. Metzler. Metzler served as a Publishing Agent for the board, the general manager of the board's operations. The board in total had a membership of more than 30 in 1956, its net worth was $1,019,223.72 and along with the publishing house, it owned several bookstores across the United States and Canada. The original charter of the Mennonite Publication Board stated its goal as being "to establish, own and control a church publication house for the publication and dissemination of the literature of the Mennonite churches..." In God Uses Ink, John A. Hostetler notes that although the details of how this goal is carried out changed over the board's life, its general purpose was to create policies that led to the growth of Mennonite publishing. Decline In his article for The Mennonite on the decline of Mennonite Publishing House, John Sharp suggests that its difficulties arose partly from a denominational reorganization in 1971 which saw Scottdale, Pennsylvania replaced as a center of influence within the church. Sharp also describes the deep financial difficulties of the church's publishing, brought about by a confusion over whether the Mennonite Publication Board and Mennonite Publishing House should be publishing what was most profitable or what was most beneficial to the church. Construction of a Mennonite Publishing House warehouse in 1978, as well as a reliance for funding on debenture notes paid by persons and congregations within the church, saw the church's publications deeply in debt by the 1980s. Restructuring The creation of Mennonite Church USA out of the (old) Mennonite Church and the General Conference Mennonite Church in 2002 saw the Mennonite Publication Board and Mennonite Publishing House replaced by the Mennonite Publishing Network, which represented the broader publishing interests of Mennonite Church USA and Mennonite Church Canada. Due to serious financial issues and debts for both Mennonite Publishing House and the General Conference publishing house, Faith and Life Press, this restructuring eliminated staff from the Mennonite Publishing House and ended their printing operations. By 2003, after taking out loans from several sources in order to pay back debts, all publishing responsibilities were placed under control of the new Mennonite Publishing Network board. In 2006, Mennonite Publishing Network sold the remaining Provident Bookstores it had been operating in order to pay off the last of the debts it had accrued before and during its restructuring. In November 2010, Mennonite Publishing Network relocated to Harrisonburg, Virginia, and merged with Third Way Media, an outreach of the Mennonite Mission Network, to form MennoMedia, which performs print and electronic publishing in a number of formats. References 1908 establishments in Pennsylvania Mennonitism in Pennsylvania
In criminal law, a conspiracy is an agreement between two or more persons to commit a crime at some time in the future. Criminal law in some countries or for some conspiracies may require that at least one overt act be undertaken in furtherance of that agreement, to constitute an offense. There is no limit to the number participating in the conspiracy and, in most countries, the plan itself is the crime, so there is no requirement that any steps have been taken to put the plan into effect (compare attempts which require proximity to the full offense). For the purposes of concurrence, the actus reus is a continuing one and parties may join the plot later and incur joint liability and conspiracy can be charged where the co-conspirators have been acquitted or cannot be traced. Finally, repentance by one or more parties does not affect liability (unless, in some cases, it occurs before the parties have committed overt acts) but may reduce their sentence. An unindicted co-conspirator, or unindicted conspirator, is a person or entity that is alleged in an indictment to have engaged in conspiracy, but who is not charged in the same indictment. Prosecutors choose to name persons as unindicted co-conspirators for a variety of reasons including grants of immunity, pragmatic considerations, and evidentiary concerns. England and Wales Common law offence At common law, the crime of conspiracy was capable of infinite growth, able to accommodate any new situation and to criminalize it if the level of threat to society was sufficiently great. The courts were therefore acting in the role of the legislature to create new offences and, following the Law Commission Report No. 76 on Conspiracy and Criminal Law Reform, the Criminal Law Act 1977 produced a statutory offence and abolished all the common law varieties of conspiracy, except two: that of conspiracy to defraud, and that of conspiracy to corrupt public morals or to outrage public decency. Conspiracy to defraud Section 5(2) of the Criminal Law Act 1977 preserved the common law offence of conspiracy to defraud. Conspiracy to defraud was defined in Scott v Commissioner of Police of the Metropolis per Viscount Dilhorne: Conspiracy to corrupt public morals or to outrage public decency Section 5(3) Criminal Law Act 1977 preserved the common law offence of conspiracy to corrupt public morals or of conspiracy to outrage public decency. Conspiracy to corrupt public morals is an offence under the common law of England and Wales. Conspiracy to outrage public decency is an offence under the common law of England and Wales. Section 5(1) of the Criminal Law Act 1977 does not affect the common law offence of conspiracy if, and in so far as, it can be committed by entering into an agreement to engage in conduct which tends to corrupt public morals, or which outrages public decency, but which does not amount to or involve the commission of an offence if carried out by a single person otherwise than in pursuance of an agreement. One authority maintains that conspiracy to "corrupt public morals" has no definitive case law, that it is unknown whether or not it is a substantive offence, and that it is unlikely that conspirators will be prosecuted for this offence. These two offences cover situations where, for example, a publisher encourages immoral behaviour through explicit content in a magazine or periodical, as in the 1970 case of Knuller (Publishing, Printing and Promotions) Ltd v Director of Public Prosecutions, which ultimately was decided in 1973 by the House of Lords. In the 1991 case of R v Rowley, the defendant left notes in public places over a period of three weeks offering money and presents to boys with the intention of luring them for immoral purposes, but there was nothing lewd, obscene or disgusting in the notes, nor were they printed by a news magazine at the behest of Rowley, which would have invoked the element of conspiracy. The judge ruled that the jury was entitled to look at the purpose behind the notes in deciding whether they were lewd or disgusting. On appeal against conviction, it was held that an act outraging public decency required a deliberate act which was in itself lewd, obscene or disgusting, so Rowley's motive in leaving the notes was irrelevant and, since there was nothing in the notes themselves capable of outraging public decency, the conviction was quashed. Statutory offence This offence was created as a result of the Law Commission's recommendations in their Report, Conspiracy and Criminal Law Reform, 1976, Law Com No 76. This was part of the commission's programme of codification of the criminal law. The eventual aim was to abolish all the remaining common law offences and replace them, where appropriate, with offences precisely defined by statute. The common law offences were seen as unacceptably vague and open to development by the courts in ways which might offend the principle of certainty. There was an additional problem that it could be a criminal conspiracy at common law to engage in conduct which was not in itself a criminal offence: see Law Com No 76, para 1.7. This was a major mischief at which the 1977 Act was aimed, although it retained the convenient concept of a common law conspiracy to defraud: see Law Com No 76, paras 1.9 and 1.16. Henceforward, according to the Law Commission, it would only be an offence to agree to engage in a course of conduct which was itself a criminal offence. Section 1(1) of the Criminal Law Act 1977 provides: Section 1A (inserted by the Criminal Justice (Terrorism and Conspiracy) Act 1998, s. 5) bans conspiracies part of which occurred in England and Wales to commit an act or the happening of some other event outside the United Kingdom which constitutes an offence under the law in force in that country or territory. Many conditions apply including that prosecutions need consent from the Attorney General. Exceptions Under section 2(1) the intended victim of the offence cannot be guilty of conspiracy. Under section 2(2) there can be no conspiracy where the only other person(s) to the agreement are: Mens rea There must be an agreement between two or more persons. The mens rea of conspiracy is a separate issue from the mens rea required of the substantive crime. Lord Bridge in R v Anderson – quoted in R v Hussain said: Lord Bridge in R v Anderson also said: It is not therefore necessary for any action to be taken in furtherance of the criminal purpose in order for a conspiracy offence to have been committed. This distinguishes a conspiracy from an attempt (which necessarily does involve a person doing an act): see Criminal Attempts Act 1981. Things said or done by one conspirator Lord Steyn in R v Hayter said: History According to Edward Coke, conspiracy was originally a statutory remedy against false accusation and prosecution by "a consultation and agreement between two or more to appeal or indict an innocent man falsely and maliciously of felony, whom they cause to be indicted and appealed; and afterward the party is lawfully acquitted". In Poulterer's Case, 77 Eng. Rep. 813 (K.B. 1611), the court reasoned that the thrust of the crime was the confederating of two or more, and dropped the requirement that an actual indictment of an innocent take place, whereby precedent was set that conspiracy only need involve an attempted crime, and that the agreement was the act, which enabled subsequent holdings against an agreement to commit any crime, not just that originally proscribed. Conspiracy to trespass In Kamara v Director of Public Prosecutions, nine students, who were nationals of Sierra Leone, appealed their convictions for conspiracy to trespass, and unlawful assembly. These persons, together with others who did not appeal, conspired to occupy the London premises of the High Commissioner for Sierra Leone in order to publicize grievances against the government of that country. Upon their arrival at the commission, they threatened the caretaker with an imitation firearm and locked him in a reception room with ten other members of the staff. The students then held a press conference on the telephone, but the caretaker was able to contact the police, who arrived, released the prisoners, and arrested the accused. In this case the Court felt that the public interest was clearly involved because of the statutory duty of the British Government to protect diplomatic premises. Lauton J delivered the judgment of the Court of Appeal dismissing the appeal from conviction. Conspiracy to corrupt public morals and conspiracy to outrage public decency These offences were at one time tied up with prostitution and homosexual behaviour. After the Second World War, due to the fame of several convicts, the Wolfenden report was commissioned by government, and was published in 1957. Thereupon came the publication of several books, both pro and contra the report. Of these books we can isolate two representatives: Lord Devlin wrote in favour of societal norms, or morals, while H. L. A. Hart wrote that the state could ill regulate private conduct. In May 1965, Devlin is reported to have conceded defeat. The Street Offences Act 1959 prohibited England's prostitutes from soliciting in the streets. One Shaw published a booklet containing prostitutes' names and addresses; each woman listed had paid Shaw for her advertisement. A 1962 majority in the House of Lords not only found the appellant guilty of a statutory offence (living on the earnings of prostitution), but also of the "common law misdemeanour of conspiracy to corrupt public morals". In the case of Knuller (Publishing, Printing and Promotions) Ltd v DPP, which was decided 1973 in the House of Lords, the appellants were directors of a company which published a fortnightly magazine. On an inside page under a column headed "Males" advertisements were inserted inviting readers to meet the advertisers for the purpose of homosexual practices. The appellants were convicted on counts of conspiracy to corrupt public morals, and conspiracy to outrage public decency. The appeal on count 1 was dismissed, while the appeal on count 2 was allowed because in the present case there had been a misdirection in relation to the meaning of "decency" and the offence of "outrage". The list of cases consulted in the ratio decidendi is lengthy, and the case of Shaw v DPP is a topic of furious discussion. Conspiracy to effect a public mischief In Withers v Director of Public Prosecutions, which reached the House of Lords in 1974, it was unanimously held that conspiracy to effect a public mischief was not a separate and distinct class of criminal conspiracy. This overruled earlier decisions to the contrary effect. The Law Commission published a consultation paper on this subject in 1975. Conspiracy to murder The offence of conspiracy to murder was created in statutory law by section 4 of the Offences Against the Person Act 1861. Northern Ireland Common law offence See . Statutory offence See Part IV of the Criminal Attempts and Conspiracy (Northern Ireland) Order 1983 (S.I. 1983/1120 (N.I. 13)). United States Conspiracy has been defined in the United States as an agreement of two or more people to commit a crime, or to accomplish a legal end through illegal actions. Conspiracy law usually does not require proof of specific intent by the defendants to injure any specific person to establish an illegal agreement. Instead, usually the law requires only that the conspirators have agreed to engage in a certain illegal act. However, the application of conspiracy laws requires a tacit agreement among members of a group to commit a crime. Such laws allow the government to charge a defendant regardless of whether the planned criminal act has been committed or the possibility of the crime being carried out successfully. In most U.S. jurisdictions, for a person to be convicted of conspiracy, not only must he or she agree to commit a crime, but at least one of the conspirators must commit an overt act (the actus reus) in furtherance of the crime. However, in United States v. Shabani the U.S. Supreme Court ruled that this "overt act" element is not required under the federal drug conspiracy statute, 21 U.S.C. section 846. The conspirators can be guilty even if they do not know the identity of the other members of the conspiracy. California criminal law is somewhat representative of other jurisdictions. A punishable conspiracy exists when at least two people form an agreement to commit a crime, and at least one of them does some act in furtherance to committing the crime. Each person is punishable in the same manner and to the same extent as is provided for the punishment of the crime itself. One example of this is the Han twins murder conspiracy case, where one twin sister attempted to hire two youths to have her twin sister killed. One important feature of a conspiracy charge is that it relieves prosecutors of the need to prove the particular roles of conspirators. If two persons plot to kill another (and this can be proven), and the victim is indeed killed as a result of the actions of either conspirator, it is not necessary to prove with specificity which of the conspirators actually pulled the trigger. (Otherwise, both conspirators could conceivably handle the gun, leaving two sets of fingerprints and then demand acquittals for both, based on the fact that the prosecutor would be unable to prove, beyond a reasonable doubt, which of the two conspirators pulled the trigger.) A conspiracy conviction requires proof that (a) the conspirators did indeed conspire to commit the crime, and (b) the crime was committed by an individual involved in the conspiracy. Proof of which individual it was is usually not necessary. It is also an option for prosecutors, when bringing conspiracy charges, to decline to indict all members of the conspiracy (though the existence of all members may be mentioned in an indictment). Such unindicted co-conspirators are commonly found when the identities or whereabouts of members of a conspiracy are unknown, or when the prosecution is concerned only with a particular individual among the conspirators. This is common when the target of the indictment is an elected official or an organized crime leader, and the co-conspirators are persons of little or no public importance. More famously, President Richard Nixon was named as an unindicted co-conspirator by the Watergate special prosecutor, in an event leading up to his eventual resignation. Conspiracy against the United States Conspiracy against the United States, or conspiracy to defraud the United States, is a federal offense in the United States under . The crime is that of two or more persons who conspire to commit an offense against the United States, or to defraud the United States. Conspiracy against rights The United States has a federal statute dealing with conspiracies to deprive a citizen of rights secured by the U.S. Constitution. Unindicted co-conspirators The United States Attorneys' Manual generally recommends against naming unindicted co-conspirators, although their use is not generally prohibited by law or policy. Some commentators have raised due-process concerns over the use of unindicted co-conspirators. Although there have been few cases on the subject, the Fifth Circuit Court of Appeals addressed these concerns in 1975 United States v. Briggs. President Richard Nixon The term unindicted co-conspirator was familiarized in 1974 when then U.S. President Richard Nixon was named as an unindicted co-conspirator in indictments stemming from the Watergate Investigation. Nixon was not indicted, because of concerns about whether the United States Constitution allowed the indictment of a sitting President (see Executive privilege). President Donald Trump The term unindicted co-conspirator made a resurgence in the public discourse when U.S. President Donald Trump was allegedly named as an unindicted co-conspirator in the conviction of Trump's lawyer Michael Cohen for lying to congress, tax evasion, uttering fraudulent documents, and campaign finance offenses. Although Trump was not named explicitly, with the term "Un-indicted co-conspirator number 1" used instead, Michael Cohen subsequently testified in congress that "Un-indicted co-conspirator number 1" referred to Donald Trump. Mueller investigation Special counsel Robert Mueller used "coordination" and "conspiracy" in a synonymous fashion as he looked for evidence of agreed coordination, not just a mutual understanding ("two parties taking actions that were informed by or responsive to the other's actions or interests"). Mueller expressly explained why he was not interested in proving mere collusion, which he, for the purposes of his investigation, determined was not the same as "conspiracy". There had to be "coordination", which implies a conscious "agreement": From Mueller special counsel investigation#Conspiracy vs collusion: Japan The United Nations special rapporteur Joseph Cannataci wrote a letter to the Japanese Prime-Minister, Shinzō Abe, expressing concerns about Anti-Conspiracy Bill. Hajime Yoshikawa is opposed to the Anti-Conspiracy Bill. Tadashi Shimizu is against the passed Anti-Conspiracy Bill. An opposition party recently accused the prime minister of influencing a government decision to fund and approve a veterinary school at a university owned by Mr Abe's friend. Edward Snowden said "This is the beginning of a new wave of mass surveillance in Japan, not well explained focuses on terrorism and everything else that's not related to terrorism – things like taking plants from the forestry reserve, And the only real understandable answer (to the government's desire to pass the bill)...is that this is a bill that authorizes the use of surveillance in new ways because now everyone can be a criminal. " And Snowden said it should include strong guarantees of human rights and privacy and ensure that those guarantees are "not enforced through the words of politicians but through the actions of courts." "This means in advance of surveillance, in all cases the government should seek an individualized warrant, and individualized authorization that this surveillance is lawful and appropriate in relationship to the threat that's presented by the police," he said. International law Conspiracy law was used at the Nuremberg Trials for members of the Nazi leadership charged with participating in a "conspiracy or common plan" to commit international crimes. This was controversial because conspiracy was not a part of the European civil law tradition. Nonetheless, the crime of conspiracy continued in international criminal justice, and was incorporated into the international criminal laws against genocide. Of the Big Five, only the French Republic exclusively subscribed to the civil law; the USSR subscribed to the socialist law, the U.S. and the U.K. followed the common law; and the Republic of China did not have a cause of action at this particular proceeding. (In addition, both the civil and the customary law were upheld.) The jurisdiction of the International Military Tribunal was unique and extraordinary at its time, being a court convened under the law of nations and the laws and customs of war. It was the first of its sort in human history, and found several defendants not guilty. See also Civil conspiracy List of political conspiracies Footnotes References Fichtelberg, Aaron, "Conspiracy and International Criminal Justice" (2006) Criminal Law Forum Vol 17, No. 2. Inchoate offenses Common law offences in England and Wales
The East and Central Africa Cricket Conference was a regional body which organised cricket teams from Malawi, Tanzania, Uganda, and Zambia. It ceased to exist in 1997 with the formation of the African Cricket Association, which now oversees all cricket administration across the African continent. The East African Cricket Conference was probably at its strongest in the 1970s when the EACC organised the East African Cricket Team with members from Kenya, Tanzania, and Uganda. The team was invited to, and participated in the 1975 Cricket World Cup. The team continued to be an associate member of the ICC until being replaced by the East and Central African cricket team in 1989. The East and Central African cricket team continued to have ICC associate membership until 2003, when each of the member nations joined the ICC separately as independent members of the African Cricket Association. Members References External links ICC region page Cricket administration Cric Cricket in Africa Cricket in East Africa
Jože Vrtačič (born 1 February 1980) is a Slovenian sprinter. He competed in the men's 4 × 400 metres relay at the 2000 Summer Olympics. References 1980 births Living people Athletes (track and field) at the 2000 Summer Olympics Slovenian male sprinters Olympic athletes for Slovenia Place of birth missing (living people)
EC Kapfenberg is a defunct professional ice hockey team that played in the Austrian Hockey League. Based in Kapfenberg, Austria, they were active from 1981 to 2002. References Defunct ice hockey teams in Austria Ice hockey clubs established in 1981 2002 disestablishments in Austria Former Austrian Hockey League teams
The Tallahassee Scorpions were an American professional indoor soccer team based in Tallahassee, Florida, that played in the EISL during both of the league's seasons from 1997 to 1998. They played their home games at the Tallahassee-Leon County Civic Center. During their existence, the Scorpions played a total of 52 regular season games, winning 28 (one via shootout) and losing 25. They scored a total of 705 goals and allowed a total of 577 goals and notched 80 total points in standings out of a possible 156 points. (The EISL awarded 3 points for a win, 2 for a shootout win, 1 for a shootout loss, and 0 for a loss in regulation.) The team won one division title but failed to advance past that in the first season and had a losing record in its second and final season. The team ceased operations after the league collapsed in late December 1998. History 1997 season The Scorpions finished third overall in the seven-team league. They finished the season with a record of 15 wins (including 1 shootout win) and 9 losses for a total of 44 standings points. Scorpions player Billy Reinhardt was named the EISL's Most Valuable Player for 1997. 1998 season The Scorpions finished fifth overall in the seven-team league. They finished the season with a record of 12 wins and 16 losses for a total of 36 standings points. The team did not qualify for the playoffs. The team averaged 2,041 fans per game over their 14 home games in the 1998 regular season, sixth-best in the league. Tallahassee Scorpions defender Dan Radke was named to the 1998 EISL All-League Team. Players receiving All-League Honorable Mentions included defender Harold Ooft, midfielder Kurt Keefer, and forward Hunter Goff. References External links Tallahassee Scorpions at Soccer Times Eastern Indoor Soccer League teams Association football clubs established in 1997 Association football clubs disestablished in 1998 Defunct indoor soccer clubs in the United States Soccer clubs in Florida Sports in Tallahassee, Florida 1997 establishments in Florida 1998 disestablishments in Florida
Linda Somers-Smith (born May 7, 1961, in Bitburg Air Force Base, Rhineland-Palatinate) is an American long-distance runner who is a two-time United States national champion in the marathon. Somers competed in the marathon at the 1996 Summer Olympics. She also won the 1992 Chicago Marathon (2:37:41) and the 1993 California International Marathon (2:34:11). Somers is notable as she is one of the very few athletes who has continued running at the elite level since she turned Pro in 1984 into the transition to Masters athlete. She continues to win and place in Open competition, even at the age of 50, all the while as a practicing attorney. She has run in seven US Olympic Trials Marathons and in the 2008 Boston venue she set the United States 45-49 age group record (2:38:49)* placing 17th. She continues to show impressive results, placing sixth in the Open US Club Nationals Cross Country meet in 2009* (Lexington, Kentucky), and setting age group road records in the 5K (16:14, San Jose 11/26/2009)*, the 10k (33:39, Paso Robles, California 9/26/2010), 10 Miles (57:07 Redding, California 3/6/2010) and the Half Marathon (1:13:32, Rock 'n Roll San Jose Half Marathon, California 10/3/2010). Somers qualified for her seventh consecutive US Olympic Trials A Standard, a record number, while winning the Masters title (sixth place overall finish ) in the 2010 Los Angeles Marathon (2:36:33). On January 14, 2012, at the age of 50, she finished in 28th place at the USA Olympic Trials Marathon in Houston with a time of 2:37:36, another American Age Group Record. Somers was inducted into the Road Runners Club of America (RRCA) Hall of Fame on March 17, 2012. Later in 2012 she was inducted into the USATF Masters Hall of Fame. US road running records Age 45+ 5 km – 16:14 (November 2009) 10 miles – 57:09 (March 2010) 20 km – 69:42 (October 2010) Half-marathon – 73:32 (October 2010) 30 km – 1:52:44 (April 2008) Age 50+ World age 50+ Half-marathon record – 75:18 (October 2011) Marathon – 2:37:36 (January 2012) As of 2017 Achievements References External links Profile at www.legacy.usatf.org 1961 births Living people People from Bitburg American female long-distance runners American female marathon runners Athletes (track and field) at the 1996 Summer Olympics Olympic track and field athletes for the United States Chicago Marathon female winners 21st-century American women
Gugarchin () may refer to: Gugarchin, Ardabil Gugarchin, East Azerbaijan
Greg Rallo (born August 26, 1981) is an American former professional ice hockey player who predominantly played in the American Hockey League (AHL). He appeared in 11 games in the National Hockey League (NHL) with the Florida Panthers. Playing career Undrafted, Rallo played two seasons with the Texas Stars before he was signed to a one-year contract by the Florida Panthers on July 2, 2011. In the 2011–12 season, he made his long-awaited debut in the NHL as a 30-year-old in a 3-2 overtime victory against the Carolina Hurricanes on December 18, 2011. He was re-signed to a one-year, two way contract extension on July 1, 2012. After three seasons within the Panthers organization, Rallo returned to the Texas Stars on a one-year AHL contract on August 1, 2014. After two years playing for the Stars, he decided to venture to Europe, signing on a one-year contract for the German club, Iserlohn Roosters of the Deutsche Eishockey Liga on August 12, 2016. In the 2016–17 season with the Roosters, Rallo played on the top two scoring lines, finishing 5th in scoring with 25 points in 45 games as Iserlohn finished out of playoff contention. On March 3, 2017, it was announced that Rallo's contract would not be renewed. On July 5, 2017, Rallo signed a one-year AHL contract in for his third stint with the Texas Stars. Limited to 29 games through injury in the 2017–18 season, Rallo completed his final professional year with 5 goals and 11 points. Having played 12 professional seasons, Rallo announced his retirement in accepting an assistant coaching role with the Milwaukee Admirals of the AHL on July 12, 2018. Career statistics References External links 1981 births Albany River Rats players American men's ice hockey centers Ferris State Bulldogs men's ice hockey players Florida Panthers players Ice hockey players from Illinois Idaho Steelheads (ECHL) players Iowa Stars players Iserlohn Roosters players Living people Manitoba Moose players People from Gurnee, Illinois Sportspeople from Lake County, Illinois Rockford IceHogs (AHL) players San Antonio Rampage players Texas Stars players Undrafted National Hockey League players
El fogón de los gauchos is a 1935 Argentine musical film directed and written by Julio Irigoyen. Main cast Diana Bernal Silvia Cecy Alberto Miranda Roberto Roldán External links 1935 films 1930s Spanish-language films Argentine black-and-white films Films directed by Julio Irigoyen Argentine musical films 1935 musical films 1930s Argentine films
Tigaon may refer to: Tigaon, Camarines Sur, Philippines Tigaon (Vidhan Sabha constituency), India
Coma Nation is a 2002 album by Canadian band Eidolon. The album was reviewed with 8/10 in Metal.de, 8.0 in Rockhard.de as well as in Powermetal.de and Metal Express Radio. Track listing "Nemesis" "Coma Nation" "Scarred" "The Pentacle Star" "Lost Voyage" "Hunt You Down" "Life in Agony" "From Below" "A Day of Infamy" "Within the Gates" Credits Pat Mulock – lead vocals Glen Drover – guitars, vocals Adrian Robichaud – bass Shawn Drover – drums, vocals Andy LaRocque – mixing References 2002 albums Eidolon (band) albums Metal Blade Records albums
Jeremy Kauffman (born September 19, 1984) is an American entrepreneur and political activist known for founding and leading the blockchain-based filesharing project LBRY. Kauffman is also known as a vocal supporter and activist within the Free State Project (FSP) and a former board member. The FSP is a movement designed to get libertarians to move to the state of New Hampshire. Kauffman was the Libertarian nominee in the 2022 United States Senate election in New Hampshire, losing to Democrat Maggie Hassan. Early life Kauffman was born on September 19, 1984. He earned two Bachelor of Science degrees in physics and computer science at Rensselaer Polytechnic Institute. Business career Jeremy Kauffman was CEO of TopScore prior to formulating the idea for a version of YouTube that would be decentralized in its construction and operation. The result of this idea for a media and video viewing platform that claimed to be fully decentralized was called LBRY (pronounced as "library"). LBRY was launched in 2015. When asked about the purpose of LBRY and Odysee, Kauffman stated that while the LBRY blockchain could be used in a 'Wild West' kind of way, the main goal of the platform was to provide people with choices for content. Following an investigation by the SEC regarding the issuance of a cryptocurrency token called "LBRY credit" (LBC)., a federal judge in November 2022 ruled that LBC is legally a security that requires regulation by the SEC. Kauffman has not yet commented on whether he intends to appeal the decision or to settle with the SEC but has said the decision "threatens the entire U.S. cryptocurrency industry" by classifying "almost every cryptocurrency" as a security. Upon hearing that Gary Gensler would be the head of the SEC, Kauffman was hopeful that an M.I.T. professor who specialized in cryptocurrency would be fair to the new industry and to not be "a complete sociopath." Odysee, an open-source video-sharing website that uses the LBRY network, was also founded by Kauffman in 2020. While Kauffman has indicated that he would remove content from the Odysee platform that courts deem to be illegal, he has signaled support for the practice of putting 3D-printed gun blueprint files on the website by sharing such a file from his personal Twitter account. Political activity In 2018, Kauffman joined the board of directors of the non-profit, the Free State Project. Kauffman believes that the Free State Project is the most effective way for libertarians to achieve "liberty in our lifetimes" and has debated this assertion in a public forum. Kauffman is also a member of the Libertarian Party's Mises Caucus. In April 2021, Kauffman was given access to Libertarian Party of New Hampshire (LPNH)'s official Twitter account soon after the state party was taken over by the Mises Caucus. Kauffman later made tweets on the LPNH account that received controversy, such as calling for child labor to be legalized, saying "All Republicans do about wokeness is whine. Libertarians have solutions; repeal the Civil Rights Act [of 1964]", and re-opening the Guantanamo Bay detention camp "so that Anthony Fauci and every governor that locked their state down can be sent there, never again to be allowed inside of the United States". The pro-child labor tweet specifically received pushback from 2012 and 2016 Libertarian presidential nominee Gary Johnson, saying "This isn't what libertarianism means to millions of Americans". The tweets later partly resulted in the resignation of the national Libertarian Party leader Joe-Bishop Henchman. Kauffman defended his actions by saying the tweets were good for libertarians, and accused national party leadership of being "woke neoliberal globalists". At Porcupine Freedom Festival 2021, an annual libertarian festival held in New Hampshire, Executive Director of the Free State Project, Jeremy Kauffman and chair of the Libertarian Party Angela McArdle debated which strategy is more effective. Kauffman argued that, "There are more people in this room that are elected members to the NH House of Representatives and former members of the Libertarian Party than there are Libertarian Party members nationwide." McArdle argued that, while she wants to see the Free State Project succeed, the Free State Project could not have existed without the political infrastructure provided by the Libertarian Party developed over the course of five decades. In 2022, Kauffman ran for the United States Senate as a Libertarian in New Hampshire. In response to a question as to why he was running for office, he replied, "I'm the only one running that will actually make the government smaller". Among his key campaign issues are "abolishing the Federal Reserve, the Internal Revenue Service and child-labor laws", "making sure the lockdowns and restrictions can't happen again" and committing "to end the drug war". In an New Hampshire Public Radio interview, Kauffman stated that he wanted "less democracy," elaborating that he does not want people in California and New York voting on his life in New Hampshire and that it is permissible to "let states disagree" under the U.S. system of federalism. While some polls initially indicated that Kauffman's run would have a vote splitting effect between Maggie Hassan and Don Bolduc, Hassan beat Bolduc by about 9 points, and Kauffman received about 2% of the total vote. In late September of 2023, Kauffman was expelled from the Free State Project Board during a voting session. The vote came weeks after continued agitation by Kauffman against other Free State members such as Carla Gericke as well as the organizations founder Jason Sorens. The board cited Kauffman’s internet trolling and perceived promotion of racism on social media as reasons for his expulsion. Personal life Kauffman has four children with his wife Rachel. See also New Hampshire Liberty Alliance New Hampshire Liberty Forum References 1984 births Activists from New Hampshire American technology chief executives American technology company founders Candidates in the 2022 United States Senate elections Internet trolls Living people New Hampshire Libertarians People associated with cryptocurrency People from Manchester, New Hampshire Rensselaer Polytechnic Institute alumni
Diana Baieva (; born 2004) is a Ukrainian female rhythmic gymnast. She won two gold, one silver and one bronze medal at the 2020 European Championship. References External links 2004 births Living people Ukrainian rhythmic gymnasts Medalists at the Rhythmic Gymnastics European Championships Sportspeople from Makiivka 21st-century Ukrainian women Medalists at the Rhythmic Gymnastics World Championships
Ford is a civil parish in Shropshire, England. It contains 21 listed buildings that are recorded in the National Heritage List for England. Of these, two are at Grade II*, the middle of the three grades, and the others are at Grade II, the lowest grade. The parish contains the village of Ford and the surrounding countryside. The listed buildings are two country houses and associated structures, smaller houses, a church and a sundial in the churchyard, a public house, a milestone, and a war memorial. Key Buildings References Citations Sources Lists of buildings and structures in Shropshire
The Bowling Green Falcons men's ice hockey statistical leaders are individual statistical leaders of the Bowling Green Falcons men's ice hockey program in various categories, including goals, assists, points, and saves. Within those areas, the lists identify single-game, single-season, and career leaders. The Falcons represent Bowling Green State University in the NCAA's Central Collegiate Hockey Association. Bowling Green began competing in intercollegiate ice hockey in 1969. These lists are updated through the end of the 2020–21 season. Goals Assists Points Saves References Lists of college ice hockey statistical leaders by team Statistical
Educational Credential Evaluators, Inc. (ECE) is a public service nonprofit organization. ECE prepares evaluation reports that identify the United States equivalents of educational qualifications earned in other countries. Founded in 1980 by James S. Frey, the company is based and located in Milwaukee, Wisconsin. ECE is a charter member of the National Association of Credential Evaluation Services (NACES), an organization incorporated in Delaware in 1987 to establish and maintain professional standards for private credential evaluation services. According to the United States Department of Education and the United States Department of State, NACES is one of two national credential evaluation associations that have membership guidelines and standards. ECE offers support to other professionals within the field of international education and has been associated or involved with the following organizations: American Association of Collegiate Registrars and Admissions Officers (AACRAO) Asia-Pacific Association of International Education (APAIE) Association of Educational Assessment in Africa (AEAA) Caribbean Area Network for Quality Assurance in Tertiary Education (CANQATE) European Association for International Education (EAIE) International Education Association of South Africa (IEASA) NAFSA: Association of International Educators National Association of Graduate Admissions Professionals (NAGAP) External links References Educational organizations based in the United States Academic transfer Educational evaluation methods
Dobre (German: Todenhagen) is a village in the administrative district of Gmina Będzino, within Koszalin County, West Pomeranian Voivodeship, in north-western Poland. It lies approximately east of Będzino, west of Koszalin, and north-east of the regional capital Szczecin. For the history of the region, see History of Pomerania. References Dobre
An unorganized area or unorganized territory () is any geographic region in Canada that does not form part of a municipality or Indian reserve. In these areas, the lowest level of government is provincial or territorial. In some of these areas, local service agencies may have some of the responsibilities that would otherwise be covered by municipalities. British Columbia Most regional districts in British Columbia include some electoral areas, which are unincorporated areas that do not have their own municipal government, but residents of such areas still receive a form of local government by electing representatives to their regional district boards. The Stikine Region in the province's far northwest is the only part of British Columbia not in a regional district, because of its low population and the lack of any incorporated municipalities. The Stikine Region—not to be confused with the Stikine Country or the Kitimat-Stikine Regional District—provides services and regulatory capacities in the same way as regional districts, however, but is managed directly by the provincial government instead of by a regional district board. Manitoba In Manitoba, territories not part of rural municipalities, urban municipalities (city, town, or village), local government districts, or Indian reserves are classified as "Unorganized". These cover 67.4% of the total area of the province of Manitoba, with Unorganized Division No. 23 constituting more than half of the entire unorganized area of the province. The unorganized areas of Manitoba are labeled to and referred as with the Census division number they are located in, even though census divisions do not serve any administrative purpose. Ontario In Ontario, unorganized areas are found only in the Northern Ontario region, inclusive of the Parry Sound District, the parts of the province where there is no county or regional municipality level of government. Some communities within unorganized areas may have some municipal services administered by local services boards. Unorganized areas in Ontario are named only by the district of which they are a part, with a geographic qualifier added when a single district contains more than one such area. Three of the province's unorganized areas had no reported population in the Canada 2006 Census; they are marked with †daggers. Algoma, UNO, North Part †Algoma, UNO, South East Part Cochrane, UNO, North Part Cochrane, UNO, South East Part †Cochrane, UNO, South West Part Kenora, UNO Manitoulin, UNO, Mainland Manitoulin, UNO, West Part Nipissing, UNO, North Part Nipissing, UNO, South Part Parry Sound, UNO, Centre Part Parry Sound, UNO, North East Part Rainy River, UNO Sudbury, UNO, North Part Thunder Bay, UNO †Timiskaming, UNO, East Part Timiskaming, UNO, West Part Quebec Unorganized territories () in Quebec are located within regional county municipalities. They are usually named for a geographic feature within the unincorporated area. Saskatchewan The Northern Saskatchewan Administration District is the unorganized area of Saskatchewan, which encompasses approximately half of the province’s landmass. Because of its extremely sparse population, the district has no local government and is directly subject to the Minister of Government Relations. See also Unincorporated area Unorganized territory References
Marcin Kaczmarek (born 3 December 1979 in Sieradz) is a Polish footballer playing currently for Star Starachowice. Career Club In August 2008, he joined Lechia Gdańsk on a three-year contract. In February 2011, he signed a contract with ŁKS Łódź. On 8 June 2019, 39-year old Kaczmarek joined KSZO Ostrowiec Świętokrzyski. National team Marcin Kaczmarek also played twice in the Poland national football team. His debut took place in the game versus Iceland in Warsaw on 7 September 2005. References External links 1979 births Living people Polish men's footballers Ceramika Opoczno players KSZO Ostrowiec Świętokrzyski players Korona Kielce players Poland men's international footballers Lechia Gdańsk players ŁKS Łódź players Widzew Łódź players Olimpia Grudziądz players Ekstraklasa players I liga players II liga players III liga players People from Sieradz Footballers from Łódź Voivodeship Men's association football midfielders
The Glasgow Gaiety Theatre was a cine-theatre in Anderston Cross, Glasgow, Scotland. Originally known as the Victoria Music Hall, then the Tivoli Variety Theatre, and co-founded by a grandson of James Baylis of the Theatre Royal, Glasgow it opened in 1899 presenting Musicals, variety shows and pantomimes. When it was rebuilt in 1904 it changed to operate as a cine-variety under the name of Gaiety Theatre, becoming a full cinema in 1935. The Beatles appeared there in 1963. The cinema closed in 1965. It is not to be confused with the Gaiety Theatre, Sauchiehall Street, which became the Empire Theatre. References Further reading The Theatre Royal: Entertaining a Nation by Graeme Smith published 2008 Former theatres in Scotland Theatres in Glasgow 1899 establishments in Scotland Theatres completed in 1899
Bizarro is a super villain who appears in comic books published by DC Comics. Bizarro or Bizzarro may also refer to: Genre Evil twin, the stock character type of which Superman's Bizarro is an example Bizarro fiction, since 2005 a genre of underground literature Music Bizarro (album), a 1989 album by the rock group The Wedding Present People Bruno Bizarro (born 1979), Portuguese composer Carlos Eduardo Bizarro (born 1980), Brazilian footballer Gennaro Bizzarro (born 1976), American politician Ryan Bizzarro (born 1985), American politician Physical entertainment Bizarro (roller coaster), rebranded 2009, at Six Flags Great Adventure amusement park Print media Bizarro (novel), an unfinished novel by Sir Walter Scott begun in 1832 and published posthumously in 2008 Bizarro (comic strip), since 1985 a daily comic strip by Dan Piraro Television "Bizarro" (Supergirl), a 2016 episode of the CBS television series Supergirl "Bizarro" (Sealab 2021 episode) See also Bazzaro, an Italian surname Bizarra, a counterpart to DC Comics' Wonder Woman
Józefów () is a village in the administrative district of Gmina Bolimów, within Skierniewice County, Łódź Voivodeship, in central Poland. It lies approximately north-east of Bolimów, north-east of Skierniewice, and north-east of the regional capital Łódź. References Villages in Skierniewice County
```java /* * * All rights reserved. This program and the accompanying materials * * path_to_url */ package org.locationtech.jts.triangulate; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.TreeMap; import org.locationtech.jts.geom.Coordinate; import org.locationtech.jts.geom.Envelope; import org.locationtech.jts.geom.Geometry; import org.locationtech.jts.geom.GeometryCollection; import org.locationtech.jts.geom.GeometryFactory; import org.locationtech.jts.geom.LineString; import org.locationtech.jts.geom.MultiLineString; import org.locationtech.jts.geom.Polygon; import org.locationtech.jts.geom.util.LinearComponentExtracter; import org.locationtech.jts.triangulate.quadedge.QuadEdgeSubdivision; import org.locationtech.jts.triangulate.quadedge.Vertex; /** * A utility class which creates Conforming Delaunay Triangulations * from collections of points and linear constraints, and extract the resulting * triangulation edges or triangles as geometries. * * @author Martin Davis * */ public class ConformingDelaunayTriangulationBuilder { private Collection siteCoords; private Geometry constraintLines; private double tolerance = 0.0; private QuadEdgeSubdivision subdiv = null; private Map constraintVertexMap = new TreeMap(); public ConformingDelaunayTriangulationBuilder() { } /** * Sets the sites (point or vertices) which will be triangulated. * All vertices of the given geometry will be used as sites. * The site vertices do not have to contain the constraint * vertices as well; any site vertices which are * identical to a constraint vertex will be removed * from the site vertex set. * * @param geom the geometry from which the sites will be extracted. */ public void setSites(Geometry geom) { siteCoords = DelaunayTriangulationBuilder.extractUniqueCoordinates(geom); } /** * Sets the linear constraints to be conformed to. * All linear components in the input will be used as constraints. * The constraint vertices do not have to be disjoint from * the site vertices. * The constraints must not contain duplicate segments (up to orientation). * * @param constraintLines the lines to constraint to */ public void setConstraints(Geometry constraintLines) { this.constraintLines = constraintLines; } /** * Sets the snapping tolerance which will be used * to improved the robustness of the triangulation computation. * A tolerance of 0.0 specifies that no snapping will take place. * * @param tolerance the tolerance distance to use */ public void setTolerance(double tolerance) { this.tolerance = tolerance; } private void create() { if (subdiv != null) return; Envelope siteEnv = DelaunayTriangulationBuilder.envelope(siteCoords); List segments = new ArrayList(); if (constraintLines != null) { siteEnv.expandToInclude(constraintLines.getEnvelopeInternal()); createVertices(constraintLines); segments = createConstraintSegments(constraintLines); } List sites = createSiteVertices(siteCoords); ConformingDelaunayTriangulator cdt = new ConformingDelaunayTriangulator(sites, tolerance); cdt.setConstraints(segments, new ArrayList(constraintVertexMap.values())); cdt.formInitialDelaunay(); cdt.enforceConstraints(); subdiv = cdt.getSubdivision(); } private List createSiteVertices(Collection coords) { List verts = new ArrayList(); for (Iterator i = coords.iterator(); i.hasNext(); ) { Coordinate coord = (Coordinate) i.next(); if (constraintVertexMap.containsKey(coord)) continue; verts.add(new ConstraintVertex(coord)); } return verts; } private void createVertices(Geometry geom) { Coordinate[] coords = geom.getCoordinates(); for (int i = 0; i < coords.length; i++) { Vertex v = new ConstraintVertex(coords[i]); constraintVertexMap.put(coords[i], v); } } private static List createConstraintSegments(Geometry geom) { List lines = LinearComponentExtracter.getLines(geom); List constraintSegs = new ArrayList(); for (Iterator i = lines.iterator(); i.hasNext(); ) { LineString line = (LineString) i.next(); createConstraintSegments(line, constraintSegs); } return constraintSegs; } private static void createConstraintSegments(LineString line, List constraintSegs) { Coordinate[] coords = line.getCoordinates(); for (int i = 1; i < coords.length; i++) { constraintSegs.add(new Segment(coords[i-1], coords[i])); } } /** * Gets the QuadEdgeSubdivision which models the computed triangulation. * * @return the subdivision containing the triangulation */ public QuadEdgeSubdivision getSubdivision() { create(); return subdiv; } /** * Gets the edges of the computed triangulation as a {@link MultiLineString}. * * @param geomFact the geometry factory to use to create the output * @return the edges of the triangulation */ public Geometry getEdges(GeometryFactory geomFact) { create(); return subdiv.getEdges(geomFact); } /** * Gets the faces of the computed triangulation as a {@link GeometryCollection} * of {@link Polygon}. * * @param geomFact the geometry factory to use to create the output * @return the faces of the triangulation */ public Geometry getTriangles(GeometryFactory geomFact) { create(); return subdiv.getTriangles(geomFact); } } ```
The Meaning of Night is a painting by the Belgian Surrealist René Magritte. Painted in 1927, it is an oil painting on canvas with dimensions 139 cm by 105 cm and is in the Menil Collection, Houston. See also List of paintings by René Magritte References 1927 paintings Paintings by René Magritte Water in art
JSON (JavaScript Object Notation, pronounced ; also ) is an open standard file format and data interchange format that uses human-readable text to store and transmit data objects consisting of attribute–value pairs and arrays (or other serializable values). It is a common data format with diverse uses in electronic data interchange, including that of web applications with servers. JSON is a language-independent data format. It was derived from JavaScript, but many modern programming languages include code to generate and parse JSON-format data. JSON filenames use the extension .json. Douglas Crockford originally specified the JSON format in the early 2000s. He and Chip Morningstar sent the first JSON message in April 2001. Naming and pronunciation The 2017 international standard (ECMA-404 and ISO/IEC 21778:2017) specifies that "JSON" is "pronounced , as in 'Jason and The Argonauts. The first (2013) edition of ECMA-404 did not address the pronunciation. The UNIX and Linux System Administration Handbook states that "Douglas Crockford, who named and promoted the JSON format, says it's pronounced like the name Jason. But somehow, “JAY-sawn” seems to have become more common in the technical community." Crockford said in 2011, "There's a lot of argument about how you pronounce that, but I strictly don't care." Standards After had been available as its "informational" specification since 2006, JSON was first standardized in 2013, as ECMA-404. , published in 2017, is the current version of the Internet Standard STD 90, and it remains consistent with ECMA-404. That same year, JSON was also standardized as ISO/IEC 21778:2017. The ECMA and ISO/IEC standards describe only the allowed syntax, whereas the RFC covers some security and interoperability considerations. History JSON grew out of a need for a real-time server-to-browser session communication protocol without using browser plugins such as Flash or Java applets, the dominant methods used in the early 2000s. Crockford first specified and popularized the JSON format. The acronym originated at State Software, a company co-founded by Crockford and others in March 2001. The co-founders agreed to build a system that used standard browser capabilities and provided an abstraction layer for Web developers to create stateful Web applications that had a persistent duplex connection to a Web server by holding two Hypertext Transfer Protocol (HTTP) connections open and recycling them before standard browser time-outs if no further data were exchanged. The co-founders had a round-table discussion and voted whether to call the data format JSML (JavaScript Markup Language) or JSON (JavaScript Object Notation), as well as under what license type to make it available. The JSON.org website was launched in 2001. In December 2005, Yahoo! began offering some of its Web services in JSON. A precursor to the JSON libraries was used in a children's digital asset trading game project named Cartoon Orbit at Communities.com (the State co-founders had all worked at this company previously) for Cartoon Network , which used a browser side plug-in with a proprietary messaging format to manipulate DHTML elements (this system is also owned by 3DO ). Upon discovery of early Ajax capabilities, digiGroups, Noosh, and others used frames to pass information into the user browsers' visual field without refreshing a Web application's visual context, realizing real-time rich Web applications using only the standard HTTP, HTML and JavaScript capabilities of Netscape 4.0.5+ and IE 5+. Crockford then found that JavaScript could be used as an object-based messaging format for such a system. The system was sold to Sun Microsystems, Amazon.com and EDS. JSON was based on a subset of the JavaScript scripting language (specifically, Standard ECMA-262 3rd Edition—December 1999) and is commonly used with JavaScript, but it is a language-independent data format. Code for parsing and generating JSON data is readily available in many programming languages. JSON's website lists JSON libraries by language. In October 2013, Ecma International published the first edition of its JSON standard ECMA-404. That same year, used ECMA-404 as a reference. In 2014, became the main reference for JSON's Internet uses, superseding and (but preserving ECMA-262 and ECMA-404 as main references). In November 2017, ISO/IEC JTC 1/SC 22 published ISO/IEC 21778:2017 as an international standard. On 13 December 2017, the Internet Engineering Task Force obsoleted when it published , which is the current version of the Internet Standard STD 90. Crockford added a clause to the JSON license stating that "The Software shall be used for Good, not Evil," in order to open-source the JSON libraries while mocking corporate lawyers and those who are overly pedantic. On the other hand, this clause led to license compatibility problems of the JSON license with other open-source licenses, as open-source software and free software usually imply no restrictions on the purpose of use. Syntax The following example shows a possible JSON representation describing a person. { "first_name": "John", "last_name": "Smith", "is_alive": true, "age": 27, "address": { "street_address": "21 2nd Street", "city": "New York", "state": "NY", "postal_code": "10021-3100" }, "phone_numbers": [ { "type": "home", "number": "212 555-1234" }, { "type": "office", "number": "646 555-4567" } ], "children": [ "Catherine", "Thomas", "Trevor" ], "spouse": null } Character encoding Although Crockford originally asserted that JSON is a strict subset of JavaScript and ECMAScript, his specification actually allows valid JSON documents that are not valid JavaScript; JSON allows the Unicode line terminators and to appear unescaped in quoted strings, while ECMAScript 2018 and older do not. This is a consequence of JSON disallowing only "control characters". For maximum portability, these characters should be backslash-escaped. JSON exchange in an open ecosystem must be encoded in UTF-8. The encoding supports the full Unicode character set, including those characters outside the Basic Multilingual Plane (U+0000 to U+FFFF). However, if escaped, those characters must be written using UTF-16 surrogate pairs. For example, to include the Emoji character in JSON: { "face": "😐" } // or { "face": "\uD83D\uDE10" } JSON became a strict subset of ECMAScript as of the language's 2019 revision. Data types JSON's basic data types are: Number: a signed decimal number that may contain a fractional part and may use exponential E notation, but cannot include non-numbers such as NaN. The format makes no distinction between integer and floating-point. JavaScript uses IEEE-754 double-precision floating-point format for all its numeric values (later also supporting BigInt), but other languages implementing JSON may encode numbers differently. String: a sequence of zero or more Unicode characters. Strings are delimited with double quotation marks and support a backslash escaping syntax. Boolean: either of the values true or false Array: an ordered list of zero or more elements, each of which may be of any type. Arrays use square bracket notation with comma-separated elements. Object: a collection of name–value pairs where the names (also called keys) are strings. The current ECMA standard states: "The JSON syntax does not impose any restrictions on the strings used as names, does not require that name strings be unique, and does not assign any significance to the ordering of name/value pairs." Objects are delimited with curly brackets and use commas to separate each pair, while within each pair the colon ':' character separates the key or name from its value. null: an empty value, using the word null Whitespace is allowed and ignored around or between syntactic elements (values and punctuation, but not within a string value). Four specific characters are considered whitespace for this purpose: space, horizontal tab, line feed, and carriage return. In particular, the byte order mark must not be generated by a conforming implementation (though it may be accepted when parsing JSON). JSON does not provide syntax for comments. Early versions of JSON (such as specified by ) required that a valid JSON text must consist of only an object or an array type, which could contain other types within them. This restriction was dropped in , where a JSON text was redefined as any serialized value. Numbers in JSON are agnostic with regard to their representation within programming languages. While this allows for numbers of arbitrary precision to be serialized, it may lead to portability issues. For example, since no differentiation is made between integer and floating-point values, some implementations may treat 42, 42.0, and 4.2E+1 as the same number, while others may not. The JSON standard makes no requirements regarding implementation details such as overflow, underflow, loss of precision, rounding, or signed zeros, but it does recommend expecting no more than IEEE 754 binary64 precision for "good interoperability". There is no inherent precision loss in serializing a machine-level binary representation of a floating-point number (like binary64) into a human-readable decimal representation (like numbers in JSON), and back, since there exist published algorithms to do this exactly and optimally. Comments were intentionally excluded from JSON. In 2012, Douglas Crockford described his design decision thus: "I removed comments from JSON because I saw people were using them to hold parsing directives, a practice which would have destroyed interoperability." JSON disallows "trailing commas", a comma after the last value inside a data structure. Trailing commas are a common feature of JSON derivatives to improve ease of use. Semantics While JSON provides a syntactic framework for data interchange, unambiguous data interchange also requires agreement between producer and consumer on the semantics of specific use of the JSON syntax. One example of where such an agreement is necessary is the serialization of data types defined by the JavaScript syntax that are not part of the JSON standard, e.g., Date, Function, Regular Expression, and undefined. Interoperability RFC 8259 describes certain aspects of JSON syntax which, while legal per the specifications, can cause interoperability problems. Certain JSON implementations only accept JSON texts which represent an object or an array. For interoperability, applications interchanging JSON should transmit messages which are objects or arrays. The specifications allow JSON objects which contain multiple members with the same name. The behavior of implementations processing objects with duplicate names is unpredictable. For interoperability, applications should avoid duplicate names when transmitting JSON objects. The specifications specifically say that the order of members in JSON objects is not significant. For interoperability, applications should avoid assigning meaning to member ordering even if the parsing software makes that ordering visible. While the specifications place no limits on the magnitude or precisions of JSON number literals, the widely-used JavaScript implementation stores them as IEEE754 "binary64" quantities. For interoperability, applications should avoid transmitting numbers which cannot be represented in this way, for example 1E400 or 3.141592653589793238462643383279. While the specifications do not constrain the character encoding of the Unicode characters in a JSON text, the vast majority of implementations assume UTF-8 encoding; for interoperability, applications should always and only encode JSON messages in UTF-8. The specifications do not forbid transmitting byte sequences that do not correctly represent Unicode characters. For interoperability, applications should transmit messages containing no such byte sequences. The specification does not constrain how applications go about comparing Unicode strings. For interoperability, applications should always perform such comparisons code unit by code unit. In 2015, the IETF published RFC7493, describing the "I-JSON Message Format", a restricted profile of JSON which constrains the syntax and processing of JSON to avoid, as much as possible, these interoperability issues. Metadata and schema The official MIME type for JSON text is "application/json", and most modern implementations have adopted this. The unofficial MIME type "text/json" or the content-type "text/javascript" are also supported for legacy reasons by many service providers, browsers, servers, web applications, libraries, frameworks, and APIs. Notable examples include the Google Search API, Yahoo!, Flickr, Facebook API, Lift framework, and Dojo Toolkit 0.4. JSON Schema specifies a JSON-based format to define the structure of JSON data for validation, documentation, and interaction control. It provides a contract for the JSON data required by a given application, and how that data can be modified. JSON Schema is based on the concepts from XML Schema (XSD) but is JSON-based. As in XSD, the same serialization/deserialization tools can be used both for the schema and data, and it is self-describing. It is specified in an Internet Draft at the IETF, currently in 2020-12 draft, which was released on January 28, 2021. There are several validators available for different programming languages, each with varying levels of conformance. The standard filename extension is .json. The JSON standard does not support object references, but an IETF draft standard for JSON-based object references exists. Uses JSON-RPC is a remote procedure call (RPC) protocol built on JSON, as a replacement for XML-RPC or SOAP. It is a simple protocol that defines only a handful of data types and commands. JSON-RPC lets a system send notifications (information to the server that does not require a response) and multiple calls to the server that can be answered out of order. Asynchronous JavaScript and JSON (or AJAJ) refers to the same dynamic web page methodology as Ajax, but instead of XML, JSON is the data format. AJAJ is a web development technique that provides for the ability of a webpage to request new data after it has loaded into the web browser. Typically it renders new data from the server in response to user actions on that webpage. For example, what the user types into a search box, client-side code then sends to the server, which immediately responds with a drop-down list of matching database items. JSON has seen ad hoc usage as a configuration language. However, it does not support comments. In 2012, Douglas Crockford, JSON creator, had this to say about comments in JSON when used as a configuration language: "I know that the lack of comments makes some people sad, but it shouldn't. Suppose you are using JSON to keep configuration files, which you would like to annotate. Go ahead and insert all the comments you like. Then pipe it through JSMin before handing it to your JSON parser." MongoDB uses JSON-like data for its document-oriented database. Some relational databases, such as PostgreSQL and MySQL, have added support for native JSON data types. This allows developers to store JSON data directly in a relational database without having to convert it to another data format. Safety JSON being a subset of JavaScript can lead to the misconception that it is safe to pass JSON texts to the JavaScript eval() function. This is not safe, due to certain valid JSON texts, specifically those containing or , not being valid JavaScript code until JavaScript specifications were updated in 2019, and so older engines may not support it. To avoid the many pitfalls caused by executing arbitrary code from the Internet, a new function, was first added to the fifth edition of ECMAScript, which as of 2017 is supported by all major browsers. For non-supported browsers, an API-compatible JavaScript library is provided by Douglas Crockford. In addition, the TC39 proposal "Subsume JSON" made ECMAScript a strict JSON superset as of the language's 2019 revision. Various JSON parser implementations have suffered from denial-of-service attack and mass assignment vulnerability. Alternatives JSON is promoted as a low-overhead alternative to XML as both of these formats have widespread support for creation, reading, and decoding in the real-world situations where they are commonly used. Apart from XML, examples could include CSV and supersets of JSON. Also, Google Protocol Buffers can fill this role, although it is not a data interchange language. XML XML has been used to describe structured data and to serialize objects. Various XML-based protocols exist to represent the same kind of data structures as JSON for the same kind of data interchange purposes. Data can be encoded in XML in several ways. The most expansive form using tag pairs results in a much larger (in character count) representation than JSON, but if data is stored in attributes and 'short tag' form where the closing tag is replaced with , the representation is often about the same size as JSON or just a little larger. However, an XML attribute can only have a single value and each attribute can appear at most once on each element. XML separates "data" from "metadata" (via the use of elements and attributes), while JSON does not have such a concept. Another key difference is the addressing of values. JSON has objects with a simple "key" to "value" mapping, whereas in XML addressing happens on "nodes", which all receive a unique ID via the XML processor. Additionally, the XML standard defines a common attribute , that can be used by the user, to set an ID explicitly. XML tag names cannot contain any of the characters !"#$%&'()*+,/;<=>?@[\]^`{|}~, nor a space character, and cannot begin with , , or a numeric digit, whereas JSON keys can (even if quotation mark and backslash must be escaped). XML values are strings of characters, with no built-in type safety. XML has the concept of schema, that permits strong typing, user-defined types, predefined tags, and formal structure, allowing for formal validation of an XML stream. JSON has several types built-in and has a similar schema concept in JSON Schema. XML supports comments, while JSON does not. Supersets Support for comments and other features have been deemed useful, which has led to several nonstandard JSON supersets being created. Among them are HJSON, HOCON, and JSON5 (which despite its name, is not the fifth version of JSON). YAML YAML version 1.2 is a superset of JSON; prior versions were not strictly compatible. For example, escaping a slash with a backslash is valid in JSON, but was not valid in YAML. YAML supports comments, while JSON does not. CSON CSON ("cursive script object notation"), is defined as tiny grammar additions to JSONs ABNF grammar specified by RFC 4627. Like YAML, it is a strict superset of JSON. Contrary to YAML, every CSON data can be translated to JSON back and forth, so one can continue to use a library which only understands JSON, and one does not have to translate existing JSON. Besides such JSON equivalence, design considerations were: Ease of writing, it supports comments, single + double quoted strings, strings in multiple lines, redundant commas. Ease of parsing, it is LL(1) and explicitly avoids context sensitivity. Incompatibility to JavaScript is not strict, therefore avoid CSON over HTTP. Whitespaces are not significant. Like YAML, strict string, no data types, unlike e.g., TOML. Additional data types should not be a data format job, and would make every implementation difficult. Libraries for C, JavaScript, Python, and Rust exist. HOCON HOCON ("Human-Optimized Config Object Notation" is a format for human-readable data, and a superset of JSON. The uses of HOCON are: It is primarily used in conjunction with the Play framework, and is developed by Lightbend. It is also supported as a configuration format for .NET projects via Akka.NET and Puppet. TIBCO Streaming: HOCON is the primary configuration file format for the TIBCO Streaming family of products (StreamBase, LiveView, and Artifact Management Server) as of TIBCO Streaming Release 10. It is also the primary configuration file format for several subsystems of Exabeam Advanced Analytics. Jitsi uses it as the "new" config system and .properties-Files as fallback JSON5 JSON5 ("JSON5 Data Interchange Format") is an extension of JSON syntax that just like JSON is also valid JavaScript syntax. The specification was started in 2012 and finished in 2018 with version 1.0.0. The main differences to JSON syntax are: Optional trailing commas Unquoted object keys Single quoted and multiline strings Additional number formats Comments JSON5 syntax is supported in some software as extension of JSON syntax, for instance in SQLite. JSONC There is a format similar to JSON5, primarily used by Microsoft called "JSONC" (JSON with comments). Parse JSON with comments Stringify objects with circular references use single line (//) as well as block comments (/* */) accepts trailing commas, but they are discouraged and the editor will display a warning Derivatives Several serialization formats have been built on or from the JSON specification. Examples include GeoJSON, a format designed for representing simple geographical features JSON→URL, a language-independent data interchange format for the JSON data model JSON-LD, a method of encoding linked data using JSON JSON-RPC, a remote procedure call protocol encoded in JSON JsonML, a lightweight markup language used to map between XML and JSON Smile (data interchange format) UBJSON, a binary computer data interchange format imitating JSON, but requiring fewer bytes of data See also BSON Comparison of data serialization formats Amazon Ion a superset of JSON Jackson (API) jaql - a functional data processing and query language most commonly used for JSON query processing jq - a "JSON query language" and high-level programming language JSONiq - a JSON-oriented query and processing language based on XQuery JSON streaming S-expression Wikipedia TNT Module References External links Ajax (programming) Articles with example JavaScript code Computer-related introductions in 2001 Ecma standards ISO standards Markup languages Open formats
Corwin is a masculine given name which may refer to: Corrie Artman (1907-1970), American National Football League player Corwin Brown (born 1970), American National Football League coach and retired player Corwin Clairmont (born 1946), Native American printmaker and artist Corwin Clatt (1924–1997), American football player Corwin Hansch (1918-2011), American chemist and professor Corwin M. Nixon (1913-2003), American politician Corwin of Amber, the protagonist of the first five books of Roger Zelazny's Chronicles of Amber Masculine given names
North Somerset Council is the local authority for the unitary authority of North Somerset, England. Until 1 April 1996 it was a non-metropolitan district called Woodspring, in the county of Avon. Political control Since the first election to the council in 1973 political control of the council has been held by the following parties: Woodspring Non-metropolitan district North Somerset Unitary authority Leadership The leaders of the council since 2005 have been: Council elections Non-metropolitan district elections 1973 Woodspring District Council election 1976 Woodspring District Council election 1979 Woodspring District Council election (New ward boundaries) 1980 Woodspring District Council election 1982 Woodspring District Council election 1983 Woodspring District Council election (District boundary changes took place but the number of seats remained the same) 1984 Woodspring District Council election (District boundary changes took place but the number of seats remained the same) 1986 Woodspring District Council election 1987 Woodspring District Council election 1991 Woodspring District Council election (District boundary changes took place but the number of seats remained the same) Unitary authority elections 1995 North Somerset Council election 1999 North Somerset Council election (New ward boundaries increased the number of seats by 2) 2003 North Somerset Council election 2007 North Somerset Council election 2011 North Somerset Council election (New ward boundaries) 2015 North Somerset Council election (New ward boundaries) 2019 North Somerset Council election 2023 North Somerset Council election District result maps By-election results 1995–1999 1999–2003 2003–2007 2007–2011 2011–2015 2015–2019 References External links North Somerset Council By-election results Council elections in Somerset Politics of North Somerset North Somerset Council elections in Avon
Ilya Borisovich Zbarsky (; November 8, 1913 – November 9, 2007) was a Soviet and Russian biochemist who served as the head of Lenin's Mausoleum from 1956 to 1989. He was appointed as Advisor at the Direction of the Institute in 1989 due to his age. He was the son of Boris Zbarsky, who helped mummify Lenin's body in 1924. Zbarsky was a member of the Russian Academy of Medical Sciences. With Samuel Hutchinson, he was the author of the book Lenin's Embalmers. He died on November 9, 2007 in Moscow. References and sources Ilya Borisovich Zbarsky biography References 1913 births 2007 deaths 20th-century Russian chemists People from Kamianets-Podilskyi Academicians of the Russian Academy of Medical Sciences Academicians of the USSR Academy of Medical Sciences Moscow State University alumni Recipients of the Order of Friendship of Peoples Recipients of the Order of the Red Banner of Labour Molecular biologists Russian biochemists Russian Jews Soviet biochemists Soviet Jews
Steven "Steve" L. Heston is an American mathematician, economist, and financier. He's also prominently active in the field of gambling-related research, where he sometimes uses the pen name Kim Lee. Education Steve Heston studied Mathematics and Economics at the University of Maryland, wherefrom he obtained his B.S. In 1985, he completed his M.B.A. studies in Industrial Administration at the Carnegie Mellon University's Graduate School of Industrial Administration. From the same university, Carnegie Mellon, in 1987, he received his M.S. in Finance and in 1990 his Ph.D. Academic career Heston was at the Yale School of Organization and Management from 1989 until 1993, a Visiting Assistant Professor of Finance at the Columbia Business School until 1994, and Assistant Professor of Finance at the Washington University in St. Louis until 1998. He is currently, and since 2002, Professor of Finance at the University of Maryland, at College Park. Career in finance Heston is known for analyzing options with stochastic volatility. From 1998 to 2002, Heston worked as Vice President of U.S. Arbitrage and also of Quantitative Equities, in Goldman Sachs, New York. Heston is the originator of the eponymous Heston model, a mathematical formulation describing the evolution of an underlying asset's volatility. Gambling-related research Steve Heston, under his own name or the pen name "Kim Lee," has written extensively on issues related to the games of poker and casino blackjack, and gambling-related issues, in general. He is also active in online message boards on issues related to the mathematics of gambling. Heston is the author of numerous articles and texts on the game of blackjack, often participating in teams' strategy formulation, on issues ranging from simple card counting and bankroll management to more advanced advantage-techniques. Heston is co-author of two highly praised books on tournament poker: Along with Blair Rodman and Lee Nelson, of Kill Phil, and, with Lee Nelson and professional poker tournament player Tysen Streib, of the subsequent Kill Everyone. The titles are a word play combining the title of the Quentin Tarantino movie Kill Bill and the name of Phil Hellmuth, professional poker player and winner of multiple tournaments, with a significant number of WSOP bracelets. References External links University of Maryland official website American economists American financiers Tepper School of Business alumni University of Maryland, College Park alumni American essayists American poker players American gambling writers Year of birth missing (living people) Living people Washington University in St. Louis faculty Washington University in St. Louis mathematicians Financial economists
Sumedha Dissanayake (born 12 February 1995) is a Sri Lankan cricketer. He made his Twenty20 debut for Kandy Customs Cricket Club in the 2018–19 SLC Twenty20 Tournament on 16 February 2019. He made his List A debut for Kandy Customs Cricket Club in the 2018–19 Premier Limited Overs Tournament on 4 March 2019. References External links 1995 births Living people Sri Lankan cricketers Kandy Customs Sports Club cricketers Place of birth missing (living people)
Yuan Wemyss (also known as Rita Yuan Gao, Yuan Gao and Rita Pickering; Chinese: 高源; born 14 January 1976) is a former Chinese-born Scottish badminton player who won Scottish National Championships for 13 times. Career Wemyss was a bright sport prospect who formerly played at the regional level in China but never made it up to the national squad due to very tough competition. She temporarily left the sport in 1999 and began pursuing her another interest in learning English at the Carlisle College. In Carlisle, she met Scottish National badminton coach Dan Travers who in turn began supporting her for playing further Badminton and represent Scotland at international stage. She there got her nickname Rita, then after dubbed as Rita Yuan Gao. She is also known as Yuan Gao. As of 2012, Yuan Gao moved to Zurich, Switzerland for part-time study of a Master of Philosophy in Sports Studies at the University of Stirling with a coaching role at Swiss Badminton. She also served as a Woman's ambassador in Badminton World Federation. In 2013, she competed in World Senior Championships also. Currently she is acting as Performance and Development Coach of Badminton Scotland. Family Wemyss comes from Wuhan, a big industrial city in Central China located alongside Yangtze river. Her father was a football coach and her brother was a professional player of Hubei Province. Her mother was a former Army administrator. Achievements IBF World Grand Prix The World Badminton Grand Prix sanctioned by International Badminton Federation (IBF) from 1983 to 2006. Women's doubles IBF International Women's singles Women's doubles Mixed doubles References External links 1976 births Living people Badminton players from Wuhan Scottish female badminton players Chinese emigrants to the United Kingdom Naturalised citizens of the United Kingdom British sportspeople of Chinese descent Badminton players at the 2002 Commonwealth Games Commonwealth Games competitors for Scotland
The ASEAN Summit is a biannual meeting held by the members of the Association of Southeast Asian Nations (ASEAN) in relation to economic, political, security, and socio-cultural development of Southeast Asian countries. In addition, it serves as a prominent regional (Asia) and international (worldwide) conference, with world leaders attending its related summits and meetings to discuss various problems and global issues, strengthening co-operation, and making decisions. The summit has been praised by world leaders for its success and ability to produce results on a global level. The league of ASEAN is currently connected with other countries who aim to participate on the missions and visions of the league. The league conducts annual meetings with other countries in an organisation collectively known as the ASEAN dialogue partners. ASEAN +3 adds China, Japan, and South Korea. The formal summits are held in three days. The usual itinerary are as follows: ASEAN leaders hold an internal organisation meeting. ASEAN leaders hold a conference together with foreign ministers of the ASEAN Regional Forum. Leaders of three ASEAN Dialogue Partners (also known as ASEAN +3), namely China, Japan, and South Korea, hold a meeting with the ASEAN leaders. And a separate meeting is set for leaders of two ASEAN Dialogue Partners (also known as ASEAN +CER), namely Australia and New Zealand. History The 1st ASEAN Summit was held in February 1976 in Bali, Indonesia. At this summit, ASEAN expressed its readiness to "develop fruitful relations" and mutually beneficial co-operation with other countries of the region. The ASEAN leaders signed the Treaty of Amity and Cooperation in Southeast Asia. The 2nd ASEAN summit held in Kuala Lumpur, Malaysia in August 1977 was the occasion for the first summit meeting between Japan and ASEAN. Japan expressed its intention to promote co-operation with ASEAN. At the 9th ASEAN Summit, a meeting in October 2003 in Bali, Indonesia, the leaders of the member states signed a declaration known as the Bali Concord II in which they agreed to pursue closer economic integration by 2020. According to the declaration, "an ASEAN Community" would be set upon three pillars, "namely political and security cooperation, economic cooperation, and socio-cultural cooperation; For the purpose of ensuring durable peace, stability and shared prosperity in the region." The plan envisaged a region with a population of 500 million and annual trade of US$720 billion. Also, a free trade area would be established in the region by 2020. ASEAN's leaders also discussed setting up a security community alongside the economic one, though without any formal military alliance. During the same meeting, China and ASEAN also agreed to work faster toward a mutual trade agreement which would create the world's most populous market, with 1.7 billion consumers. Japan also signed an agreement pledging to reduce tariff and non-tariff barriers with ASEAN members. At the 11th ASEAN summit in December 2005 in Kuala Lumpur, Malaysia, several main issues were discussed: the spread of bird flu the South Thailand insurgency democracy in Myanmar crude oil prices fluctuation and poverty investment and trade ASEAN Charter Immediately after the summit ended, the inaugural East Asia Summit was held. The 12th ASEAN Summit was originally set to be hosted in Cebu in the Philippines in December 2006. However, on 8 December, organizers decided to move the summit schedule to January 2007 due to Typhoon Seniang hitting the area. Metro Cebu jointly hosted various events of the summit. The actual conference was held at the Cebu International Convention Centre in Mandaue, while the Shangri-La Mactan Island Resort & Spa in Lapu-Lapu City provided accommodations for delegates and venues for smaller meetings. At the summit, the member countries of ASEAN signed five agreements pertaining to continuing integration of ASEAN and enhancing political, economic, and social co-operation in the region: Cebu Declaration Towards a Caring and Sharing Community Cebu Declaration on the Blueprint for the ASEAN Charter Cebu Declaration on the Acceleration of the Establishment of an ASEAN Community by 2015 ASEAN Declaration on the Protection and Promotion of the Rights of Migrant Workers ASEAN Convention on Counter Terrorism The 13th ASEAN Summit was held in November 2007 in Singapore. The key theme of the discussions was set to be on "Energy, Environment, Climate Change and Sustainable Development". In line with the theme, the ASEAN Leaders' Declaration on Environmental Sustainability was signed at the summit and a proposal to work on a Singapore Declaration on the Environment was issued at the Third East Asia Summit. The leaders endorsed the ASEAN Economic Community Blueprint, which would help chart concrete targets for establishing a single market and production base in the ASEAN region by 2015. Other documents that were negotiated and signed include: ASEAN Mutual Recognition Agreement on Architectural Services ASEAN Framework Arrangement for the Mutual Recognition of Surveying Qualifications Protocol to Implement the Sixth Package of Commitments under the ASEAN Framework Agreement on Services Agreements on trade and areas of co-operation with ASEAN Dialogue Partners The 15th ASEAN Summit was held in October 2009 in Hua Hin and Cha-am, Thailand. It involved the leaders of ASEAN member states together with their dialogue partners from China, Japan, South Korea, India, Australia, and New Zealand. A flurry of meetings among Asian leaders on the last day raised the possibility of forging a regional free trade pact, which is likely to be raised at the 2009 Asia Pacific Economic Cooperation summit. The 28th and 29th ASEAN Summits were held in September 2016 in Vientiane, Laos. The year 2016 also marked the start off of the implementation of the ASEAN Community Vision 2025. Apart from the two main summits, other sideline summits under the umbrella of ASEAN were also held. There were nine Summits with ASEAN's Dialogue Partners under the ASEAN Plus One, ASEAN Plus Three, and East Asia Summit co-operation frameworks. Also, under the sub-regional co-operation framework, the Mekong-Japan Summit was held. This occasion also provided a platform for ASEAN Leaders to meet with Representatives of ASEAN Inter-Parliamentary Assembly (AIPA), Representatives of ASEAN Youth, and ASEAN Business Advisory Council. The main theme discussed at the summits was regarding the further commitment for the implementation of the ASEAN Community Vision 2025 and the three community Blueprints. ASEAN Leaders also signed the ASEAN Declaration on One ASEAN, One Response: ASEAN Responding to Disasters as One in the Region and Outside the Region. South China Sea issues also came atop among important agenda at the summit. At the summit, the Philippines and Japan expressed serious concerns over China's maritime territorial claims and building of artificial islands in the South China Sea. Japan's Prime Minister, Shinzo Abe, called for peaceful settlement of dispute between China and the Philippines. The Philippines' President, Rodrigo Duterte, reaffirmed at the meeting that the dispute should be solved “within the boundaries of the law, referring to the arbitral ruling under the Philippines v. China case by the Permanent Court of Arbitration in July 2016. The draft statement of meetings included lukewarm criticism over China’s actions in the South China Sea. However, there were no statements about ASEAN’s position on the arbitral ruling. No multilateral statement has been clearly made to reflect the voice of the ASEAN community as a whole on the South China Sea issues. China reiterated that there should be no interference and the issues should be dealt in a bilateral manner. ASEAN Summit Under the ASEAN Charter, the ASEAN Summit is the supreme policy-making body of ASEAN. It comprises the heads of state or government of each member state. Accordingly, the Chairmanship of ASEAN rotates annually, based on the alphabetical order of the English names of ASEAN member states. The member state assuming the Chairmanship holds it for one calendar year, and chairs the ASEAN Summit and related summits, the ASEAN Coordinating Council, the three ASEAN Community Councils, relevant ASEAN Sectoral Ministerial Bodies and senior officials, and the Committee of Permanent Representatives. In addition, the Secretary General of the Association of Southeast Asian Nations is appointed by the ASEAN Summit, selected from among nationals of ASEAN member states based on alphabetical rotation. The Chairmanship of ASEAN for 2023 is held by Indonesia. ASEAN Summit Meetings The ASEAN Summit Meetings are held by its ten member states annually. Under the ASEAN Charter, ASEAN Summit Meetings are held twice annually, to be hosted by the member state holding the ASEAN Chairmanship. Further special or ad hoc meetings may be convened whenever necessary, to be chaired by the member state holding the ASEAN Chairmanship at venues to be agreed upon by the ASEAN member states. During the fifth summit in Bangkok, the leaders decided to meet "informally" between each formal summit. After earthquake and tsunami in Desember 2004, ASEAN members held special summit in ASEAN Secreatriat, Jakarta, lead by Prime Minister of Malaysia as ASEAN Charmain that year. In 2020, during its year of chairmanship, Vietnam hosted a Special ASEAN summit and Special ASEAN+3 summit on COVID-19. Issues 14th ASEAN Summit and Protest The 14th ASEAN summit was held from February to March 2009 in Hua Hin, Thailand. It was originally scheduled for December 2008, but was postponed due to the 2008 Thai political crisis. At the summit, ASEAN leaders signed the Cha-am Hua Hin Declaration on the Roadmap for an ASEAN Community and adopted various other documents, including the ASEAN Political-Security Community Blueprint and the ASEAN Socio-Cultural Community Blueprint. The summit was reconvened in Pattaya, Thailand in April 2009. This second part of the summit was to consist of various meetings between the ASEAN members and one or more non-ASEAN countries from 10 to 12 April. However, it was aborted on 11 April when hundreds of protesters forced their way past security forces into the venue. Many of the visiting leaders had to be evacuated from the venue by helicopter to a nearby military airbase, although none were injured. The protests were part of the 2008 Thai political crisis and were not believed to be directed at ASEAN leaders, but rather at Thailand's government. East Timor The new nation of East Timor, previously ruled by Indonesia, has had a long struggle with ASEAN. East Timor, during its long process towards independence, has sought to have observer status in ASEAN, much like Papua New Guinea, and eventually official member status. Historically, ASEAN countries supported Indonesia over East Timor, with the Philippines and Malaysia barring overseas NGOs from participating in East Timor conferences in the late 1990s. More recently, Myanmar opposed granting observer status to East Timor because of the latter's support for opposition leader Aung San Suu Kyi. In 2002, East Timor was recognised as an observer of ASEAN and joined the ASEAN Regional Forum in 2005. In December 2005, the government of East Timor stated that the nation would be a member of ASEAN by 2011. The nation's then-President, Xanana Gusmão, had already applied for membership at the 39th Annual Ministerial Meeting of ASEAN Foreign Ministers held in Kuala Lumpur in 2006. However, the request is still pending as of July 2019. Myanmar (Burma) Also prior to the 10th ASEAN Summit, Myanmar had taken steps to rehabilitate itself by releasing up to 9,000 prisoners who were imprisoned under the old junta. Myanmar's new leader General Soe Win attended the conference and foreign minister Nyan Win had already made pre-summit press releases on Myanmar's continuing commitment for the roadmap to democracy. Myanmar was due to hold the chair of ASEAN in 2006. This however had attracted criticism from various factions. The United States and the European Union publicly announced that they might boycott any ASEAN-related event if Myanmar was the chair. In July 2005, during an ASEAN foreign minister meeting in Vientiane, Myanmar decided to postpone its turn. The Philippines, the country next in line, instead held the ASEAN chairmanship in 2006. Apart from the United States, various ASEAN lawmakers have called Myanmar's membership to be stripped due to its poor human rights record. Following the 2021 Myanmar coup d'état in which the Tatmadaw—Myanmar's military—ousted the country's democratically elected leaders, widespread protests broke out in response to the coup and the military's subsequent use of force on civilians. ASEAN called for a special ASEAN Leaders Meeting in Jakarta on April 24, 2021, with the military junta's leader Min Aung Hlaing in attendance along with other member states' heads of government and foreign ministers. Members of the National Unity Government formed in response to the coup and consisting of ousted lawmakers were reported to have been in contact with ASEAN leaders, but were not formally invited to the meeting. ASEAN released a statement that it had agreed to a "five-point consensus" with Min Aung Hlaing on the cessation of violence in Myanmar, constructive dialogue among all parties concerned, and the appointment of a special envoy by ASEAN to facilitate the dialogue process. However, after continued violence in the country and non-committal by Myanmar's military government to the "five-point consensus", its military leaders were barred from attending the 40th and 41st ASEAN Summits in November 2022. Thailand Prior to the 10th ASEAN summit, Thai Prime Minister Thaksin Shinawatra publicly threatened to walk out of the meeting if any member states raised the issue of the Thai government's handling of the insurgency in south Thailand. He stated "If the topic is raised, I will fly back home". This is notable since leaders have often shown solidarity with each other over high-profile issues such as East Timor and the handling by Myanmar of Aung San Suu Kyi. Furthermore, one of the principles on which ASEAN was founded is a stated principle of non-interference in the internal affairs of other member states, as enshrined in the Treaty of Amity and Cooperation in Southeast Asia. Any tension has been kept from the public view and leaders have avoided confrontational statements in public. Indonesia (the world's most populous Muslim country) and Malaysia, however, were particularly vehement in their condemnation over the Thai government's handling of the events in south Thailand, with a former Malaysian Prime minister going to the extent of suggesting that the Southern Thai states should be given autonomy power. The Malaysian foreign minister further was quoted as saying that there is no such thing as absolute non-interference. It is thought that Thaksin's statement was made following the Malaysian government's passing of an opposition resolution condemning the Thai government for the death of at least 85 Muslim protestors in southern Thailand. Laotian spokesman Yong Chanthalangsy stated "I think we have a golden rule, that is non-interference in the internal affairs of each other." He added "It is a courtesy among the leaders, among the ministers, that if one of the leaders does not wish to discuss a question, all the leaders will respect it." Free Trade Area In 2004, Australia and New Zealand started the negotiation for a free trade deal with ASEAN. The ASEAN-Australia-New Zealand Free Trade Area was established at the 14th ASEAN Summit in 2009. It is one of Asia's largest trade arrangements and covers trade in goods, investment and services, financial services, telecommunications, electronic commerce, and intellectual property. The aim of the negotiation is to significantly reduce trade barriers by 2016. Treaty of Amity and Cooperation ASEAN's Treaty of Amity and Cooperation in Southeast Asia is open for non-ASEAN states to accede. It requires the contracting parties to forgo any threat or use of force against each other. The foreign ministers of ASEAN member states determined that invitation to the inaugural East Asia Summit, the first of which was held in late 2005 and hosted by Malaysia, was to be restricted to parties to the treaty. The Howard Government in Australia, although seeking invitation, was reluctant to accede to the treaty, claiming that it was out of date and might conflict with obligations and rights it had under other treaties. However, with entry to the summit confined to parties to the treaty, and with domestic pressure to sign, Australia decided in early 2005 to sign the treaty on the condition that its rights under the Charter of the United Nations are recognised as inalienable. Upon the announcement of accession, Australian Foreign Minister Alexander Downer was asked whether or not he considered himself an east Asian, he replied: "Do I consider myself an East Asian? ... I consider myself an Australian." References External links Official and special interest ASEAN official website ASEAN Summit 2021 official website 12th Summit Special News website 12th ASEAN Summit Special Coverage website Special Coverage website 20th-century diplomatic conferences 21st-century diplomatic conferences (Asia-Pacific)
The Military Man () is a 2014 Canadian drama film starring Laurent Lucas, written and directed by Noël Mitrani. Plot A former French soldier lives in solitude in Montreal. Since returning from Afghanistan with a leg injury, this soldier has had trouble coming to grips with reality and overcoming his loneliness. The trauma caused by his memories of the conflict leads him towards an unhealthy relationship with women. One day, his behavior brings him into contact with a woman and makes him questions his motives. Cast Laurent Lucas as Bertrand Noémie Godin-Vigneau as Audrey Larry Day Harry Standjofski Production The film is an independent feature shot on super 16 mm like a documentary. For the role, Laurent Lucas specially grew his beard and shaved his head. The film was shot on location in Montreal with a very small crew. External links FNC (Review) Review (French) 2014 films Canadian drama films Films set in Montreal War in Afghanistan (2001–2021) films Films directed by Noël Mitrani French-language Canadian films 2010s Canadian films
KIKD (106.7 FM, "Kick 106.7") is an FM radio station based in Carroll, Iowa. The station plays Country music. KIKD is part of Carroll Broadcasting, along with KKRL and KCIM. History KIKD-FM signed on the air on St. Patrick's Day, 1996, under the ownership of the Betty Baudler Horras of Ames Broadcasting Company, owner of KCCQ-FM, and KASI-AM as well as a company that produces vinyl signs. On February 4, 1999, a bid was made for KIKD-FM from Carroll Broadcasting Company, owners of KKRL-FM and KCIM-AM. Later, KIKD's studios were moved from the corner of Highway 30 and Clark Street in Carroll to 1119 East Plaza Drive in Carroll. At the time of the bid, KIKD-FM and KCIM-AM were both country music stations. Later KCIM was forced to change its format. Neal Trobak, the Program Director at the time of the buyout, said, "I assume we will go to an easy-listening format of some kind, compatible with the age of the people that listen to us". KIKD was originally an automated Hot Country station under the direction of Bob Foster. In 1999, the station began using local hosts during the daytime hours 6 a.m.-10a.m. In 2000, KIKD extended their local hosts to 6 a.m.-6 p.m., then once again in 2008 from 5 a.m.-7 p.m. On-air staff and programming KIKD's current morning announcer is Kristin Campisi. Other current announcers (as of July 2012) include Renie Osterlund, and Tiffini Young. The station airs shows dedicated to country music and is currently an affiliate of Westwood One. References Heman B (1999) Carroll Broadcasting Co. announces bid for KIKD Daily Times Herald 02/04/1999 pp 1. Jones Radio Network, Jones Radio.com, accessed February 19, 2006 FCC Documentation, FCC.gov, accessed February 19, 2006 FCC Documentation, FCC.gov, accessed February 19, 2006 External links Kick 106.7 Website Carroll Broadcasting Country radio stations in the United States IKD
In geometry of 4 dimensions or higher, a double pyramid or duopyramid or fusil is a polytope constructed by 2 orthogonal polytopes with edges connecting all pairs of vertices between the two. The term fusil is used by Norman Johnson as a rhombic-shape. The term duopyramid was used by George Olshevsky, as the dual of a duoprism. Polygonal forms The lowest dimensional forms are 4 dimensional and connect two polygons. A p-q duopyramid or p-q'' fusil, represented by a composite Schläfli symbol {p} + {q}, and Coxeter-Dynkin diagram . The regular 16-cell can be seen as a 4-4 duopyramid or 4-4 fusil, , symmetry , order 128. A p-q duopyramid or p-q fusil has Coxeter group symmetry [p,2,q], order 4pq. When p and q are identical, the symmetry in Coxeter notation is doubled as or [2p,2+,2q], order 8p2. Edges exist on all pairs of vertices between the p-gon and q-gon. The 1-skeleton of a p-q duopyramid represents edges of each p and q polygon and pq complete bipartite graph between them. Geometry A p-q duopyramid can be seen as two regular planar polygons of p and q sides with the same center and orthogonal orientations in 4 dimensions. Along with the p and q edges of the two polygons, all permutations of vertices in one polygon to vertices in the other form edges. All faces are triangular, with one edge of one polygon connected to one vertex of the other polygon. The p and q sided polygons are hollow, passing through the polytope center and not defining faces. Cells are tetrahedra constructed as all permutations of edge pairs between each polygon. It can be understood by analogy to the relation of the 3D prisms and their dual bipyramids with Schläfli symbol { } + {p}, and a rhombus in 2D as { } + { }. A bipyramid can be seen as a 3D degenerated duopyramid, by adding an edge across the digon { } on the inner axis, and adding intersecting interior triangles and tetrahedra connecting that new edge to p-gon vertices and edges. Other nonuniform polychora can be called duopyramids by the same construction, as two orthogonal and co-centered polygons, connected with edges with all combinations of vertex pairs between the polygons. The symmetry will be the product of the symmetry of the two polygons. So a rectangle-rectangle duopyramid would be topologically identical to the uniform 4-4 duopyramid, but a lower symmetry [2,2,2], order 16, possibly doubled to 32 if the two rectangles are identical. Coordinates The coordinates of a p-q duopyramid (on a unit 3-sphere) can be given as: All pairs of vertices are connected by edges. Perspective projections Orthogonal projections The 2n vertices of a n-n duopyramid'' can be orthogonally projected into two regular n-gons with edges between all vertices of each n-gon. The regular 16-cell can be seen as a 4-4 duopyramid, being dual to the 4-4 duoprism, which is the tesseract. As a 4-4 duopyramid, the 16-cell's symmetry is [4,2,4], order 64, and doubled to , order 128 with the 2 central squares interchangeable. The regular 16-cell has a higher symmetry [3,3,4], order 384. Example 6-4 duopyramid References 4-polytopes
The BX convoys were a World War II series of convoys across the Gulf of Maine from Boston to HalifaX. These convoys were escorted by the Western Local Escort Force (WLEF) of the Royal Canadian Navy to protect coastal shipping in transit between North American loading ports and trans-Atlantic convoy assembly points in Nova Scotia. Background Allied war materials had been transported from North America to the United Kingdom in HX convoys since 1939 and in slower SC convoys since 1940. These convoys were escorted by the Royal Navy and Royal Canadian Navy. The United States Navy provided a few escorts to HX and SC convoys beginning in September 1941. Declaration of war on 8 December 1941 removed United States neutrality assertions which had previously protected trade shipping in the Western Atlantic. Although the United States was slow to convoy coastal shipping, the Royal Canadian Navy established the WLEF in February 1942. Loaded ships eastbound WLEF escorted the first BX convoy from Saint John, New Brunswick, on 21 March 1942 and reached Halifax the following day. Ten of the first twelve BX convoys originated in Saint John. BX 4 was the first convoy originating in Boston on 3 April 1942, and BX 8 sailed from Boston on 18 April. BX 13 was the first convoy of the series to sail in multiple sections. The main convoy of eleven merchant ships left Boston on 3 May, and two ships left Saint John as convoy BX 13A on 5 May. BX 14 was the first of the series to sail from Portland, Maine, on 7 May. These early WLEF convoys sailed with as few as a single ship as the United States struggled to efficiently control sailing dates. BX 20 on 24 May was the first to include more than eleven ships. June convoys sailed in two sections with a main convoy like BX 25 with 43 ships leaving Boston on 17 June and a smaller convoy of seven ships leaving Boston two days later as BX 25B. The Mystic Steamship Company's collier was grounded and sank in the Cape Cod Canal on June 28, 1942. Temporary closure of the canal interrupted the flow of coastal shipping from Long Island Sound. Thirty-two ships of BX 27 left Buzzards Bay on 2 July, 15 ships of BX 27B left Boston on 3 July, BX 27C left Newport, Rhode Island on 4 July, four ships of BX 27D left Boston on 2 July, 2 ships of BX 27E left Portland on 1 July, and BX 27J left Saint John on 1 July. In the confusion, of BX 27 was torpedoed by on July 3 as the first loss from a BX convoy. The canal reopened on July 31, after the wrecked Stephen R. Jones was removed with the help of 17 tons of dynamite. Five ships sailed from Saint John as convoy BX 28F on 8 July, followed by 48 ships from Boston on 9 July as BX 28, 8 ships from Boston on 10 July as BX 28B, and 3 ships from Boston on 11 July as BX 28C. This four-section pattern of one Bay of Fundy section and three Boston sections continued until the BX convoy series was temporarily suspended on 11 September 1942 by shifting assembly of HX convoys from Halifax to New York City. The series resumed with convoy BX 38 from Boston on 25 March 1943 when the assembly point for SC convoys shifted from New York City to Sydney, Nova Scotia. For the remainder of the war, single-section BX convoys sailed at intervals of four to ten days collecting shipping from Gulf of Maine ports destined for SC convoys. Approximately 8 percent of the ships traveling in SC convoys loaded in the Gulf of Maine, including explosives loaded at Searsport, Maine. The most damaging attack on a BX convoy was made by on 14 January 1945. Convoy BX 141 was within visual range of Chebucto Head, Nova Scotia when Kapitän zur See Kurt Dobratz torpedoed the 6985-ton British tanker British Freedom at 1035, the 7176-ton American Liberty ship Martin van Buren at 1041, and the 8779-ton British tanker Athelviking at 1052. The two tankers sank, and the Liberty ship was destroyed by the surf after grounding. U-1232 managed to survive ramming by the and escaped in difficult ASDIC conditions off Halifax. Canadian warships of the WLEF escorted a total of 3464 ships across the Gulf of Maine in 206 BX convoys until convoy BX 164 made the last departure from Boston on 22 May 1945. Westbound shipping Ships traveling westbound (often empty) on similar routes were designated XB convoys. A total of 2194 ships crossed the Gulf of Maine westbound in 196 XB convoys. Notes References Arnold Hague : The Allied Convoy System 1939–1945 (2000). ISBN (Canada) 1 55125 033 0 . ISBN (UK) 1 86176 147 3 North Atlantic convoys of World War II Battle of the Atlantic
LGBT literature in El Salvador consists of literary works written by Salvadorean authors that involve plots, themes or characters that are part of or related to sexual diversity. Until the 21st century, El Salvador did not have its own tradition of LGBT literature, although there were some representations of themes related to sexual diversity in previous years. One of the oldest was the verse story "La corrección de menores", published in 1923 by humorist Francisco Herrera Velado, which tells the story of a boy who is raised as a woman and lives in constant transition between the two genders. A similar character later appeared in the novel ¡Justicia, señor gobernador! (1960), by Hugo Lindo. In 2004 the collection of poems Injurias y otros poemas was published, by writer Ricardo Lindo Fuentes, and it is traditionally considered the first Salvadoran work with openly homoerotic themes. The publication of Injurias y otros poemas opened the door for several other LGBT works in subsequent years, including novels such as Ángeles caídos (2005), by Carlos Alberto Soriano, and Heterocity (2011), by Mauricio Orellana Suárez. The latter, in particular, was well received critically and was awarded the Mario Monteforte Toledo Central American Novel Prize. Other authors of LGBT works of notoriety include the storyteller Jacinta Escudos and poets such as Alberto López Serrano, Silvia Matus, Kenny Rodríguez and Marielos Olivos. As for transgender literature, since the 1990s literary works with trans representation have become more common, although they have almost always been accompanied by tragic denouements, with death as the usual ending for these characters. This trend has continued up to the present day, with works including the novel El verbo J (2018), by Claudia Hernández, where an immigrant transgender woman experiences conditions of exclusion and violence for most of her life. Background Nahuat-Pipil literature As a result of the transcriptions of Pipil myths published by the German explorer Leonhard Schultze-Jena in 1930, there are literary depictions of same-sex sexual relations in the Náhuat-Pipil language. One example is the myth of "La boda del vagabundo," which tells the story of a father who decides to deceive his daughter's suitors by declaring that whoever could drink the water from a well until he could get a piece of cheese from the bottom could marry her. When a vagabond realizes that it was actually the reflection of the moon in the water, he decides to trick the father by opening a channel for the well to dry up. Overconfidence leads the father to promise that he would also turn himself in if the vagabond won, so when the watercourse dries up the well, he has no choice but to allow the vagabond to penetrate him through the anus, which causes him intense pain. The following day, the vagabond marries the daughter, who unlike her father, enjoys sex with him. As can be seen in the story, rather than an act of sexual pleasure, anal penetration is shown as a form of humiliation of the defeated. This idea of domination on the basis of sex is repeated in other Pipil myths, where emasculation is a common way of exercising power over defeated men. Also notable is the fact that having sex with other men does not grant "homosexual" status to the vagabond or the father in the eyes of the daughter. 20th century Although not many works of Salvadorean literature during the 20th century are known to have explored themes related to sexual diversity, there are some exceptions. In 1923, the writer and humorist Francisco Herrera Velado published the work Mentiras y verdades, which recounts popular legends and anecdotes in verse. One of them is "La corrección de menores", where he tells the story of Luis/Luisa, a man who is raised as a girl and over the years lives in constant transition between both genders. Among his partners is a woman identified as a lesbian who takes on the role of "Romeo", while Luis becomes his "Juliet". Subsequently, Luis becomes a poet and decides to write the story of his "old life as a transvestite". Another case of a male character who is raised as a woman is found in the novel ¡Justicia, señor gobernador!, published in 1960 by the writer Hugo Lindo. The work, which is considered a precursor of testimonial literature in El Salvador, tells the story of a trial in which a transvestite named Mercedes López Gámez is accused of rape and murder of a young woman. Through Mercedes' conversations with lawyer José Amenábar, the reader discovers that Mercedes was born a biological man, but that her mother had decided to raise her as a girl. Although in her village she enjoyed being treated as a woman and receiving compliments from men, upon moving to San Salvador she encounters a community in which "homosexuality does not exist," and the rage leads her to the act of sexist violence that results in the trial discussed in the novel. It has also been mentioned as a precedent the novel Íngrimo (1970), by Salvador Salazar Arrué, which explores the construction of the identity of an adolescent boy who, at one point in the novel, states: A common characteristic in some Salvadorean Spanish-language works of the time is that, as in "La boda del vagabundo", anal penetration is shown as a symbol of humiliation towards other men. One case is found in the novel One Day of Life (1980), by Manlio Argueta, which includes a scene where a priest is sodomized with a stick by a group of soldiers as a form of domination. Transvestism is also used as a symbol of social degradation in some writings of the time, as in the memoirs of the guerrilla Alfonso Hernández, who recounts in a poetic tone a youth in San Salvador in which his friends disguised themselves as prostitutes to "satirize the dregs of society...". Narrative After the end of El Salvador's Civil War in 1992, more representations of LGBT characters began to appear in narrative works, particularly of transgender women. However, several of these characters met tragic ends, as in the short story "Santiago, la Bellita" (1995), by writer René Rodas, whose protagonist, known as la Bellita, is murdered by one of her clients in the brothel where she served as a sex worker. The novel Putolión (1997), by David Hernández, is notorious for offering an overview of the spaces occupied by LGBT people during the second half of the twentieth century. The work recounts how, since the 1950s, a sector of San Salvador known as La Praviana was very popular among LGBT people, particularly those who worked as prostitutes. Because the novel suggested that an important figure in Salvadorean politics was homosexual, the publication of Putolión was controversial and the authorities pressured the publisher to withdraw all copies from circulation and destroy them shortly after their appearance. In 1997, Jacinta Escudos published a book of short stories, Cuentos sucios, which included one of the first stories to explore lesbian attraction. In later years, Escudos entered into transgender literature with the stories "Memoria de Siam" (2008) and "Nights in Tunisia" (2010). In the case of "Memoria de Siam", Escudos took fantastic features to narrate the transformation that a woman undergoes to become a man to enter into a sentimental relationship with the woman she loves, although at the same time she reproduces traditional discourses on the roles of men and women. At the end of the story, the protagonist ends his transformation by exclaiming, "I like being a man.". 21st century The first Salvadorean novel with a gay protagonist was Más allá del horizonte (Beyond the horizon) (2002), by Julio Leiva, which tells the story of Salvador, a gay boy who decides to join the Farabundo Marti National Liberation Front during the time of the civil war. Salvador goes by the name of Jesus during his time in the guerrilla and when his comrades find out about his sexual orientation, they "promote" him to command in the front line of combat, as a way for him to be killed for his sexuality. Jesus manages to survive and, as a reward, he is sent to spy on an army colonel, but is captured and tortured. When his captors learn about his homosexuality, Jesús is victim of gang rape, but he does not confess to being part of the guerrilla. In 2005, Carlos Alberto Soriano's novel Ángeles Caídos (Fallen Angels) was published. The plot of this work follows the story of Nicolás, Anselmo and Renato, three gay men living in a city that resembles San Salvador in the early 1990s. The novel also portrays the cases of extreme violence against trans women at the time, who in the plot are attacked by members of youth gangs and by unknown men who shoot them from vehicles. Some publications of the time continued to portray LGBT people in a pejorative way, such as the novel Cualquier forma de morir (2006), by Rafael Menjívar Ochoa, whose gay protagonist is described as "mentally ill" and a pedophile. Shortly thereafter, the author Mauricio Orellana Suárez appeared, who in a period of three years published two novels with LGBT themes: Ciudad de Alado (2009) and Heterocity (2011). The latter won the Central American Mario Monteforte Toledo Novel Prize in its 2011 edition and emerged after discussions in the Legislative Assembly to ban same-sex marriage in the country. The novel is a critique of the heteronormative policies of the State, and explores the experiences of different LGBT people in El Salvador at the time, including Marvin Diez, a middle-class gay man who began having sexual experiences with other men at a young age and over the years must confront the prejudices his family has ingrained in him to accept his sexual orientation. Other characters include Adán, a young, lower-class gay man who is falsely accused of raping a child, Wally Vargas, a television host who is praised as the epitome of masculinity, but who secretly has sex with men, and Denis Farías, a congressman who has a gay brother and is trying to get the Legislative Assembly to pass a constitutional amendment to legalize Equal Marriage. In recent years, narratives with transgender characters have continued to focus on stories with tragic endings. One example is the short story "La Pedrina", published in 2007 by Francisco Andrés Escobar and inspired by the real story of a well-known transgender woman of the same name in the city of Santa Ana. Unlike the real character, who died at age 85 of cardiorespiratory arrest, the Pedrina of the story ends up committing suicide after the death of her mother, not to mention that the end of the story has a transphobic connotation by emphasizing the genitals of the deceased. Another example is the story "Johnny-Luz" (2018), by Mauricio Orellana Suárez, which tells the story of a trans woman who ends up being murdered by her own father. In 2018, writer Claudia Hernández published the novel El verbo J, which has as its protagonist a transgender woman from a lower social class who leaves El Salvador to emigrate to the United States. During her passage through Mexico, the protagonist is kidnapped and turned into a sex slave, but manages to escape and arrive at her destination. However, she later becomes infected with HIV and does not follow the proper treatment, so that over the years the disease progresses and by the end of the novel it is assumed that she is close to death. Poetry The first Salvadorean literary work with openly LGBT themes was the collection of poems Injurias y otros poemas, published by the writer Ricardo Lindo Fuentes in May 2004. The work marked Lindo's public coming out, and he stated that he had written the book as a protest against the exclusion of homosexuals in El Salvador. Injurias y otros poemas also represented a break with the Salvadoran poetry of the time, which had traditionally avoided touching on topics considered taboo. An example of these themes can be seen in the following fragment of a poem from the book entitled "El sacrificio" (The sacrifice): The following year, in 2005, the collection of poems La fiera de un ángel, by René Chacón, appeared, which followed in the poetic footsteps initiated by Lindo. Lindo himself published a second book of poetry with LGBT themes in 2010, entitled Bello amigo, atardece.... Another recognized writer of LGBT poetry is Alberto López Serrano, with works such as Y qué imposible no llamarte ingle (2011) and in particular with Cantos para mis muchachos (2014). This poetry book was presented in several Central American countries and provoked homophobic attacks on social networks after being promoted by the National Autonomous University of Honduras. One of the main characteristics of this collection of poems is the references to Greek myths. Lesbian poetry has also had several representatives in the country, including writers Silvia Matus, Kenny Rodríguez and Marielos Olivos. A similarity between the poetry of Matus and Olivos is their commitment to social denunciation, which is explained by the fact that both have had a long history of activism in feminist organizations. Matu's poetry also explores the female body as the origin of love, as can be seen in the following fragment of the poem "Amar a otra mujer" (Loving another woman): See also LGBT rights in El Salvador Equal marriage in El Salvador Literature in El Salvador References Bibliography Arévalo, Amaral (2022). «¿El asesinato como destino? Identidades trans en narrativas de la postguerra salvadoreña 1992–2021». Whatever. A Transdisciplinary Journal of Queer Theories and Studies. Accessed on September 5, 2022. Borja, Luis (2021). La voz del otro: Aproximacièn al discurso homoerótico en la poesía salvadoreña. Accessed on September 4, 2022. Chacón, Josué (2017). La transexualidad y la construcción de roles de género en los personajes de los cuentos “Memoria de Siam” y “Nights in Tunisia” de Jacinta Escudos. San Salvador. Archived from the original on September 5, 2022. Accessed on September 5, 2022. Lara Martínez, Rafael (2012). I ndígena, cuerpo y sexualidad en la literatura salvadoreña. El Salvador: Editorial Universidad Don Bosco. Accessed on September 4, 2022. Velásquez, Antonio (2015). «Miradas sobre la representación de la homosexualidad en la literatura centroamericana y el caso de Trágame tierra». The Latin Americanist 59 (2): 51–66. ISSN 1557-203X. Accessed on September 5, 2022. LGBT literature by country LGBT literature El Salvador articles El Salvador-related lists LGBT-related books
Røssvoll Church () is a parish church of the Church of Norway in Rana Municipality in Nordland county, Norway. It is located in the village of Røssvoll. It is the church for the Røssvoll parish which is part of the Indre Helgeland prosti (deanery) in the Diocese of Sør-Hålogaland. The white, wooden church was built in an octagonal style in 1952 using plans drawn up by the architects A. Nygård and Skyberg. The church seats about 250 people. The church was built with a donation from Anne Marie Bosse, which is why it is sometimes referred to as the Anne Marie Church. Helgeland Kammerkor gave a Spring concert in Røssvoll Church in 2013. Media gallery See also List of churches in Sør-Hålogaland References Rana, Norway Churches in Nordland Wooden churches in Norway 20th-century Church of Norway church buildings Octagonal churches in Norway Churches completed in 1953 1953 establishments in Norway
Mathias Weske (born 1963) is a German computer scientist, and Professor of Business Process Technology at the University of Potsdam, known for his contributions in the field of business process management and as a founder of the business Signavio. Weske received his PhD in 1993 at the University of Koblenz, and his habilitation in 2000 at the University of Münster. In 2000-01 he was associate professor at the Eindhoven University of Technology, and in 2001 he was appointed Professor of Computer Science at the Hasso Plattner Institut of the University of Potsdam. Publications Weske authored and co-authored numerous publications in the field of Business Process Management and Computer Science. Books, a selection: Van Der Aalst, Wil MP, Arthur HM Ter Hofstede, and Mathias Weske. Business process management: A survey. Springer Berlin Heidelberg, 2003. Weske, Mathias. Business process management: concepts, languages, architectures. Springer, 2012. Articles, a selection: van der Aalst, Wil MP, and Mathias Weske. "The P2P approach to interorganizational workflows." Advanced Information Systems Engineering. Springer Berlin Heidelberg, 2001. Van der Aalst, Wil MP, Mathias Weske, and Dolf Grünbauer. "Case handling: a new paradigm for business process support." Data & Knowledge Engineering 53.2 (2005): 129-162. Decker, G., Kopp, O., Leymann, F., & Weske, M. (2007, July). "BPEL4Chor: Extending BPEL for modeling choreographies". In Web Services, 2007. ICWS 2007. IEEE International Conference on (pp. 296–303). IEEE. References External links Mathias Weske at the University of Potsdam 1963 births Living people German computer scientists Academic staff of the Eindhoven University of Technology Academic staff of the University of Potsdam
The 24th Cuban National Series saw Vegueros of Pinar del Río Province win the title, outdistancing Camagüey by seven games. The Vegueros roster included notable players Luis Casanova, Omar Ajete, and Omar Linares. Forestales, also from Pinar del Río, again finished atop the second division. As in the prior season, the league split into two divisions of nine teams after the first half of the season. The 18 teams of the league and the 75-game schedule remained unchanged. This was the last time the league did not have a postseason to determine its champion. Standings First division Second division Source: References Further reading (Note - text is printed in a white font on a white background, depending on browser used.) Cuban National Series seasons Cuban National Series Cuban National Series Cuban National Series Cuban National Series
Acropoma japonicum, the glowbelly, is a fish species in the family Acropomatidae found in the Indo-West Pacific. It is a benthopelagic predatory fish with a bioluminescent organ on its ventral surface. The glowbelly is an important food fish in some areas. Description Acropoma japonicum has a moderately elongated and compressed body with a covering of large scales which are deciduous. It has two light-producing organs, photophores in the abdominal muscle which run from the thorax to just past the anus, these are connected at the end nearest the fish's head. The dorsal fin of the glowbelly has 9 spines in its anterior portion with 10 soft rays behind them while the anal fin has 3 spines and 7 soft rays. This species attains a maximum total length of . Distribution Acropoma japonicum has a wide distribution in the Indo-Pacific region and it can be found from the eastern coast of Africa through the Indian Ocean and into the western Pacific Ocean as far north as Japan. Habitat and biology Acropoma japonicum is a marine species with a depth range of It inhabits sand and sandy mud bottoms. This is a predatory species in which the smaller individuals feed on copepods and caridean shrimp while the larger fish fed on those groups too but also preying on small fishes and krill. This species is unusual in having what appears to be a short life cycle for a predatory fish, the juvenile fish begin to settle at the end of the breeding season and are sexually mature by the start of the following breeding season. As the breeding season progresses the body condition of the males worsens and as a result they have a higher mortality than the females. Most fish do not survive beyond their first breeding season and females dominate older age classes. The older age classes may also migrate to deeper waters. Human usage Acropoma japonicum is an important food fish which is a bycatch in Korean waters but in Japan it is used in the commercial manufacture of fishcakes. It is also used to make fishmeal. This species is also of ecological importance as it is an important constituent of the diet of many commercially important fish species. Taxonomy Acropoma japonicum was first formally described in 1859 by the German born British zoologist Albert Günther (1830-1914) with the type locality being given as the "Japanese Sea". When Günther described it he placed it in a monotypic genus, Acropoma and so this species is the type species of that genus. A number of new species have been described in the 2000s in the genus Acropoma, for example the glowblellies around Australia have been named as Acropoma leobergi. References japonicum Fish described in 1859 Taxa named by Albert Günther
Gajush is a village in the Lezhë County, north-western Albania. Following the local government reform of 2015, Gajush became a part of the municipality of Lezhë and is under the municipal unit of Shënkoll. Demographic History Gajush (Gajpi) is attested in the Ottoman defter of 1467 as a hass-ı mir-liva property in the vilayet of Dimitri Gjonima. The total number of households present in the settlement is missing, however, the following household heads are recorded: Gjon Bardi, Pal Dida, Lesh Trasha, Lumsha Aleksi, and Gjin Slani. References Administrative units of Lezhë Villages in Lezhë County
```objective-c /* infblock.h -- header to use infblock.c * For conditions of distribution and use, see copyright notice in zlib.h */ /* WARNING: this file should *not* be used by applications. It is part of the implementation of the compression library and is subject to change. Applications should only use zlib.h. */ struct inflate_blocks_state; typedef struct inflate_blocks_state FAR inflate_blocks_statef; extern inflate_blocks_statef * inflate_blocks_new OF(( z_streamp z, check_func c, /* check function */ uInt w)); /* window size */ extern int inflate_blocks OF(( inflate_blocks_statef *, z_streamp , int)); /* initial return code */ extern void inflate_blocks_reset OF(( inflate_blocks_statef *, z_streamp , uLongf *)); /* check value on output */ extern int inflate_blocks_free OF(( inflate_blocks_statef *, z_streamp)); extern void inflate_set_dictionary OF(( inflate_blocks_statef *s, const Bytef *d, /* dictionary */ uInt n)); /* dictionary length */ extern int inflate_blocks_sync_point OF(( inflate_blocks_statef *s)); ```
```html <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=us-ascii"> <link rel="stylesheet" type="text/css" href="../../../boost.css"> <title>{{Library}} - Acknowledgments</title> </head> <body link="#0000FF" vlink="#800080"> <table border="0" cellpadding="7" cellspacing="0" width="100%" summary= "header"> <tr> <td valign="top" width="300"> <h3><a href="../../../index.htm"><img height="86" width="277" alt= "C++ Boost" src="../../../boost.png" border="0"></a></h3> </td> <td valign="top"> <h1 align="center">{{Library}}</h1> <h2 align="center">Acknowledgments</h2> </td> </tr> </table> <hr> {{text}} <hr> <p><a href="path_to_url"><img border="0" src= "../../../doc/images/valid-html401.png" alt="Valid HTML 4.01 Transitional" height="31" width="88"></a></p> <p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->04 December, 2006<!--webbot bot="Timestamp" endspan i-checksum="38514" --></p> "mailto:{{address}}">{{author}}</a></i></p> accompanying file <a href="../../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or copy at <a href= "path_to_url">path_to_url </body> </html> ```
The Peuzelaarsteeg is a narrow lane in Haarlem, the Netherlands, that connects the Grote Houtstraat to the Frankestraat. The lane is famous as the former living quarters of Frans Hals and other Haarlem artists, though it was changed unrecognizably when the Mennonite church was built there in the 17th century. References Streets in Haarlem
Kłośno (German Krämerwinkel) is a settlement in the administrative district of Gmina Grzmiąca, within Szczecinek County, West Pomeranian Voivodeship, in north-western Poland. For the history of the region, see History of Pomerania. References Villages in Szczecinek County
Medgar Wiley Evers (; July 2, 1925June 12, 1963) was an American civil rights activist and the NAACP's first field secretary in Mississippi, who was assassinated by Byron De La Beckwith. Evers, a decorated U.S. Army combat veteran who had served in World War II, was engaged in efforts to overturn segregation at the University of Mississippi, end the segregation of public facilities, and expand opportunities for African Americans including the enforcement of voting rights. A college graduate, Evers became active in the Civil Rights Movement in the 1950s. Following the 1954 ruling of the United States Supreme Court in Brown v. Board of Education that segregated public schools were unconstitutional, Evers challenged the segregation of the state-supported public University of Mississippi, applying to law school there. He also worked for voting rights, economic opportunity, access to public facilities, and other changes in the segregated society. Evers was awarded the 1963 NAACP Spingarn Medal. Evers was murdered in 1963 at his home in Jackson, Mississippi, now the Medgar and Myrlie Evers Home National Monument, by Byron De La Beckwith, a member of the White Citizens' Council in Jackson. This group was formed in 1954 in Mississippi to resist the integration of schools and civil rights activism. As a veteran, Evers was buried with full military honors at Arlington National Cemetery. His murder and the resulting trials inspired civil rights protests, and his life and death inspired numerous works of art, music, and film. Although all-white juries failed to reach verdicts in Beckwith's first two trials in the 1960s, he was convicted in 1994 based on new evidence. Evers' widow, Myrlie Evers, became a noted activist in her own right, serving as national chair of the NAACP. In 1969 his brother Charles became the first African American to be elected mayor of a Mississippi city in the post-Reconstruction era. Early life Evers was born on July 2, 1925, in Decatur, Mississippi, the third of five children (including elder brother Charles Evers) of Jesse (Wright) and James Evers. The family included Jesse's two children from a previous marriage. The Evers family owned a small farm and James also worked at a sawmill. Evers and his siblings walked a day to attend segregated schools; eventually Medgar earned his high school diploma. Evers served in the United States Army during World War II from 1943 to 1945. He was sent to the European Theater where he participated in the Normandy landings in June 1944. After the end of the war, Evers was honorably discharged as a sergeant. In 1948, Evers enrolled at Alcorn Agricultural and Mechanical College (a historically black college, now Alcorn State University), majoring in business administration. He also competed on the debate, football, and track teams, sang in the choir, and was junior class president. Evers earned his Bachelor of Arts in 1952. On December 24, 1951, Evers married classmate Myrlie Beasley. Together they had three children: Darrell Kenyatta, Reena Denise, and James Van Dyke Evers. Activism The couple moved to Mound Bayou, Mississippi, a town developed by African Americans, where Evers became a salesman for T. R. M. Howard's Magnolia Mutual Life Insurance Company. He was also president of the Regional Council of Negro Leadership (RCNL), which began to organize actions for civil rights; Evers helped organize the RCNL's boycott of gasoline stations that denied blacks the use of the stations' restrooms. He and his brother, Charles, attended the RCNL's annual conferences in Mound Bayou between 1952 and 1954, which drew crowds of 10,000 or more. In 1954, following the U.S. Supreme Court decision that segregated public schools were unconstitutional, Evers applied to the state-supported University of Mississippi Law School, but his application was rejected due to his race. Evers submitted his application as part of a test case by the NAACP. On November 24, 1954, Evers was named as the NAACP's first field secretary for Mississippi. In this position, he helped organize boycotts and set up new local chapters of the NAACP. Evers was also involved with James Meredith's efforts to enroll in the University of Mississippi in the early 1960s. Evers also encouraged Dr. Gilbert Mason Sr. in his organizing of the Biloxi wade-ins from 1959 to 1963, protests against segregation of the city's public beaches on the Mississippi Gulf Coast. Evers conducted actions to help integrate Jackson's privately owned buses and tried to integrate the public parks. Evers led voter registration drives and used boycotts to integrate Leake County schools and the Mississippi State Fair. Evers' civil rights leadership, along with his investigative work, made him a target of white supremacists. Following the Brown v. Board of Education decision, local whites founded the White Citizens' Council in Mississippi, and numerous local chapters were started, to resist the integration of schools and facilities. In the weeks before Evers was killed, he encountered new levels of hostility. Evers' public investigations into the 1955 lynching of Chicago teenager Emmett Till in Mississippi, and his vocal support of Clyde Kennard, had made Evers a prominent black leader. On May 28, 1963, a Molotov cocktail was thrown into the carport of his home. On June 7, 1963, Evers was nearly run down by a car after he came out of the NAACP office in Jackson, Mississippi. Assassination Evers lived with the constant threat of death. A large white supremacist population and the Ku Klux Klan were present in Jackson and its suburbs. The risk was so high that before his death, Evers and his wife, Myrlie, had trained their children on what to do in case of a shooting, bombing, or other kind of attack on their lives. Evers, who was regularly followed home by at least two FBI cars and a police car, arrived at his home on the morning of his death without an escort. None of his usual protection was present, for reasons unspecified by the FBI or local police. There has been speculation that many members of the police force at the time were members of the Klan. In the early morning of Wednesday, June 12, 1963, just hours after President John F. Kennedy's nationally televised Civil Rights Address, Evers pulled into his driveway after returning from a meeting with NAACP lawyers. His family had worried for his safety that day, and Evers himself had warned his wife that he felt in greater danger than usual. Emerging from his car and carrying NAACP T-shirts that read "Jim Crow Must Go", Evers was struck in the back with a bullet fired from an Eddystone Enfield 1917 rifle; the bullet passed through his heart. Initially thrown to the ground by the impact of the shot, Evers rose and staggered before collapsing outside his front door. His wife, Myrlie, was the first to find him. Evers was taken to the local hospital in Jackson, where he was initially refused entry because of his race. Evers' family explained who he was, and he was admitted; Evers died in the hospital 50 minutes later, three weeks shy of his 38th birthday. Evers was the first black man to be admitted to an all-white hospital in Mississippi. Mourned nationally, Evers was buried on June 19 in Arlington National Cemetery, where he received full military honors before a crowd of more than 3,000 people. After Evers was assassinated, an estimated 5,000 people marched from the Masonic Temple on Lynch Street to the Collins Funeral Home on North Farish Street in Jackson. Allen Johnson, Reverend Martin Luther King Jr., and other civil rights leaders led the procession. The Mississippi police came to the non-violent protest armed with riot gear and rifles. While tensions were initially high in the stand-off between police and marchers, both in Jackson and in many similar marches around the state, leaders of the movement maintained non-violence among their followers. Trials On June 21, 1963, Byron De La Beckwith, a fertilizer salesman and member of the Citizens' Council (and later of the Ku Klux Klan), was arrested for Evers' murder. District Attorney and future governor Bill Waller prosecuted De La Beckwith. All-white juries in February and April 1964 deadlocked on De La Beckwith's guilt and failed to reach a verdict. At the time, most black people were still disenfranchised by Mississippi's constitution and voter registration practices; this meant they were also excluded from juries, which were drawn from the pool of registered voters. Myrlie Evers did not give up the fight for the conviction of her husband's killer. She waited until a new judge had been assigned in the county to take her case against De La Beckwith back into the courtroom. In 1994, De La Beckwith was prosecuted by the state based on new evidence. Bobby DeLaughter was the prosecutor. During the trial, the body of Evers was exhumed for an autopsy. His body was embalmed, and was in such good condition that his son was allowed to view his father's remains for the first time in 30 years. De La Beckwith was convicted of murder on February 5, 1994 and sentenced to life in prison, after having lived as a free man for much of the three decades following the killing. He had been imprisoned from 1977 to 1980 on separate charges, conspiring to murder A. I. Botnick. In 1997, De La Beckwith appealed his conviction in the Evers case but the Mississippi Supreme Court upheld it and the U.S. Supreme Court declined to hear it. He died at the age of 80 in prison on January 21, 2001. Legacy Evers was memorialized by leading Mississippi and national authors James Baldwin, Margaret Walker, Eudora Welty, and Anne Moody. In 1963, Evers was posthumously awarded the Spingarn Medal by the NAACP. In 1969, Medgar Evers College was established in Brooklyn, New York, as part of the City University of New York. Evers' widow, Myrlie Evers, co-wrote the 1967 book For Us, the Living with William Peters. In 1983, a television movie was made based on the book. Celebrating Evers's life and career, it starred Howard Rollins Jr. and Irene Cara as Medgar and Myrlie Evers, airing on PBS. The film won the Writers Guild of America award for Best Adapted Drama. In 1969, a community pool in the Central District neighborhood of Seattle, Washington, was named after Evers, honoring his life. On June 28, 1992, the city of Jackson, Mississippi, erected a statue in honor of Evers. All of Delta Drive (part of U.S. Highway 49) in Jackson was renamed in his honor. In December 2004, the Jackson City Council changed the name of the city's airport to Jackson–Medgar Wiley Evers International Airport in Evers' honor. Evers' widow, Myrlie Evers, became a noted activist in her own right, eventually serving as national chairperson of the NAACP. Myrlie also founded the Medgar Evers Institute in 1998, with the initial goal of preserving and advancing the legacy of her husband's life's work. Anticipating the commemoration of the 50th anniversary of the assassination of Medgar Evers and recognizing the international leadership role of Myrlie Evers, the Institute's board of directors changed the organization's name to the Medgar and Myrlie Evers Institute. Evers' brother, Charles Evers, returned to Jackson in July 1963, and served briefly with the NAACP in his slain brother's place. Charles remained involved in Mississippi civil rights activities for many years, and in 1969, was the first African-American mayor elected in the state. He died on July 22, 2020, at the age of 97. On the 40th anniversary of Evers' assassination, hundreds of civil rights veterans, government officials, and students from across the country gathered around his grave site at Arlington National Cemetery to celebrate his life and legacy. Barry Bradford and three students—Sharmistha Dev, Jajah Wu, and Debra Siegel, formerly of Adlai E. Stevenson High School in Lincolnshire, Illinois—planned and hosted the commemoration in his honor. Evers was the subject of the students' research project. In October 2009, Navy Secretary Ray Mabus, a former Mississippi governor, announced that , a , would be named in the activist's honor. The ship was christened by Myrlie Evers-Williams on November 12, 2011. In June 2013, a statue of Evers was erected at his alma mater, Alcorn State University, to commemorate the 50th anniversary of Evers' death. Alumni and guests from around the world gathered to recognize his contributions to American society. Evers was also honored in a tribute at Arlington National Cemetery on the 50th anniversary of his death. Former President Bill Clinton, Attorney General Eric Holder, Navy Secretary Ray Mabus, Senator Roger Wicker, and NAACP President Benjamin Jealous all spoke commemorating Evers. Evers's widow, Myrlie Evers-Williams, spoke of his contributions to the advancement of civil rights: Medgar was a man who never wanted adoration, who never wanted to be in the limelight. He was a man who saw a job that needed to be done and he answered the call and the fight for freedom, dignity and justice not just for his people but all people. Evers was identified as a Freedom hero by The My Hero Project. In 2017, the Medgar and Myrlie Evers House was named as a National Historic Landmark. In 2019, the site was designated a National Monument. The Route 3 Bridge over the Hackensack River is dedicated to Evers. In popular culture Music Musician Bob Dylan wrote his song "Only a Pawn in Their Game" about the assassination on July 2, 1963, on what would have been Evers' 38th birthday. Nina Simone wrote and sang "Mississippi Goddam" about the Evers case. Phil Ochs referred to Evers in the song "Love Me, I'm a Liberal" and wrote the songs "Another Country" and "Too Many Martyrs" (also titled "The Ballad of Medgar Evers") in response to the killing. Malvina Reynolds referenced Evers's murder in her song, "It Isn't Nice". Matthew Jones and the Student Nonviolent Coordinating Committee Freedom Singers recorded a version of the latter song. Wadada Leo Smith's album Ten Freedom Summers contains a track called "Medgar Evers: A Love-Voice of a Thousand Years' Journey for Liberty and Justice". Jackson C. Frank's self-titled debut album, released in 1965, also includes a reference to Medgar Evers in the song "Don't Look Back". Essays and books Eudora Welty's short story, "Where Is the Voice Coming From?", in which the speaker is the imagined assassin of Medgar Evers, was published in The New Yorker in July 1963. Attorney Bobby DeLaughter wrote a first-person narrative article entitled "Mississippi Justice" published in Reader's Digest about his experiences as state prosecutor in the murder trial. He added to this account in a book, Never Too Late: A Prosecutor's Story of Justice in the Medgar Evers Case (2001). Film Evers was portrayed by Howard Rollins in the 1983 television film For Us the Living: The Medgar Evers Story. The 1996 film Ghosts of Mississippi, directed by Rob Reiner, explores the 1994 trial of De La Beckwith in which prosecutor DeLaughter of the Hinds County District Attorney's office secured a conviction in state court. Beckwith and DeLaughter were played by James Woods and Alec Baldwin, respectively, with Whoopi Goldberg as Myrlie Evers. Medgar was portrayed by James Pickens Jr. The film was based on a book of the same name. In the documentary film I Am Not Your Negro (2016), Evers is one of three Black activists (the other two are Martin Luther King Jr. and Malcolm X) who are the focus of reminiscences by author James Baldwin, who recounts the circumstances of and his reaction to Evers' assassination. In the 2011 film The Help, a clip of Evers speaking for civil rights is shown on TV, quickly followed by news of his assassination, and a glimpse of an article by his widow published in Life magazine. The 2020 documentary film "The Evers" features interviews with his surviving family members. The 2022 film Till depicts Evers (played by Tosin Cole) assisting Mamie Till-Bradley (Danielle Deadwyler) seek justice for the murder of her son, Emmett Till (Jalyn Hall). Television A 2021 episode of Extra History from Extra Credits talks about Evers, his activism, and assassination. See also List of civil rights leaders References Further reading Bruce, Catherine Fleming (2019 [2016]). The Sustainers: Being, Building and Doing Good through Activism in the Sacred Spaces of Civil Rights, Human Rights and Social Movements. Tnovsa LLC. . External links SNCC Digital Gateway: Medgar Evers, Documentary website created by the SNCC Legacy Project and Duke University, telling the story of the Student Nonviolent Coordinating Committee & grassroots organizing from the inside-out JFK First Draft Condolence Letter to Medgar Evers's Widow, June 12, 1963 Shapell Manuscript Foundation Audio recording of T. R. M. Howard's eulogy at the memorial service for Medgar Evers, June 15, 1963, Jackson, Mississippi. Medgar Evers in the U.S. Federal Census American Civil Rights Pioneers FBI article: Civil Rights in the '60s: Justice for Medgar Evers Medgar Evers's FBI file hosted at the Internet Archive Medgar Evers Fund Collected Records held at Swarthmore College Peace Collection 1925 births 1963 deaths 1963 murders in the United States African-American activists African-American history of Mississippi Alcorn State Braves football players Alcorn State University alumni American terrorism victims Assassinated American civil rights activists Burials at Arlington National Cemetery Deaths by firearm in Mississippi Ku Klux Klan crimes in Mississippi Male murder victims Military personnel from Mississippi Murdered African-American people NAACP activists People from Decatur, Mississippi People from Mound Bayou, Mississippi People murdered in Mississippi Players of American football from Mississippi Racially motivated violence against African Americans Spingarn Medal winners United States Army non-commissioned officers United States Army personnel of World War II
A drawing of twin mountains (Indonesian: pemandangan gunung kembar, "twin mountain view", or pemandangan gunung legendaris, "legendary mountain view") is a drawing pattern commonly made by Indonesian kindergarten and primary school students. The drawing is often produced by students who are asked by their teacher to draw natural features. The drawing is typically characterized by a road stretching between vast fields of rice that leads toward two mountains on the horizon, with the sun nestled in the space between the two peaks. Other objects commonly added by students include clouds, trees, grass (or paddy fields), people (or paddy farmers), a house (the farmer's), and birds seen from afar. The significance of the drawing is to demonstrate the tendency of children to compose symmetrical scenes that consist of asymmetrical features, as well as a tendency to imitate their peers. History The template for the drawing originates from Yogyakartan artist Tino Sidin, the host of the children's drawing program Gemar Menggambar, which aired on TVRI in the 1980s. One of the drawings produced by Sidin contained the now iconic twin mountains and rice fields. Sidin's artwork proved to be so popular that Indonesian schoolchildren began to imitate the drawing, with teachers using his work as a reference for their students in the classroom. Mount Sindoro and Mount Sumbing, located in Central Java, are sometimes cited as the real-life basis for the drawing. Criticism Several critics have argued that the twin mountain drawing highlights issues in the educational system in Indonesia. Indonesian teachers and schools are perceived as monotonous, as students almost unanimously decide to draw twin mountains, and critics argue this shows that schools do not promote diversity and creativity. Many believe that more action should be taken by teachers to promote creativity among their students. The monotonous nature of schools also causes students to fear being different, forcing them to conform and draw the same imagery as their peers. The phenomenon also shows the dogmatic characteristics of Indonesian teachers, who are not open-minded to more creative choices made by students. Often, students are only allowed to follow the teacher's example, and critics argue that teachers should practice open-mindedness to allow students to produce imagery other than the twin mountains, when asked to draw natural features. See also Cool S, a similar phenomenon of a universally-drawn picture. References Indonesian art 20th-century drawings 21st-century drawings Doodling motifs
Muriel Frances Ellen Pelham-Johnson (1903-1998), informally known as PJ, was an educational administrator in Tanganyika. As Assistant Director of Education (Girls and Women), she supervised the growth of girl's education between 1939 and 1958. "A formidable personality and an intrepid traveller, she was a memorably outstanding figure" of pre-independence. She died on December 18, 1998. References 1903 births 1998 deaths Educational administrators Education in Tanzania British expatriates in Tanganyika (territory)
Arnold Skaaland (January 21, 1925 – March 13, 2007) was an American professional wrestler and professional wrestling manager. Following a stint in the United States Marine Corps during World War II, Skaaland began wrestling in 1946 under his real name. Given the nickname “Golden Boy,” he became a part of the World Wide Wrestling Federation in 1963, and in 1967, won the WWWF United States Tag Team Championship with Spiros Arion. In 1978, Skaaland retired from in-ring competition and transitioned into a manager; unlike normal managers, he managed faces instead of heels. Skaaland's most notable clients include Bruno Sammartino and Bob Backlund. He later became a road agent for the WWF once he stopped managing, and was inducted into the WWF Hall of Fame in 1994. Early life Skaaland served in the U.S. Marines during World War II. After a short-lived attempt to make a living through boxing, he decided to become a professional wrestler. Professional wrestling career Early career (1946–1963) Skaaland debuted in 1946 as "Arnold Skaaland". Though competing under his real name, he was billed early in his career as hailing from Norway. Performing throughout the northeastern United States, Skaaland gained the nickname "The Golden Boy" and was known as a small, agile wrestler who relied on speed, wits, and toughness in the ring rather than size and strength. In the late 1950s, he wrestled in Georgia under the ring name Bobby Weaver. In the early 1960s, Skaaland unsuccessfully challenged both Pat O'Connor and "Nature Boy" Buddy Rogers for the NWA World Heavyweight Championship. In 1962, he refereed a high-profile match between Freddie Blassie and Rikidōzan in Japan. World Wide Wrestling Federation/World Wrestling Federation (1963–1994) Wrestling appearances (1963–1978) In 1963, Skaaland was a part of the newly created, New York City-based World Wide Wrestling Federation. On June 1, 1967, he collected his only title as one half of the WWWF United States Tag Team Champions, when Tony Parisi gave his half of the title to Skaaland. Skaaland and his partner, Spiros Arion, soon lost the titles to The Sicilians (Lou Albano and Tony Altimore) on July 10, 1967, in Atlantic City, New Jersey. Arion and Bruno Sammartino rewon the belts two weeks later, and retired them. In addition to wrestling, Skaaland was a shareholder of the Capitol Wrestling Corporation, the parent company of the WWWF, and a business partner of WWWF Chairman Vince McMahon Sr. Skaaland was responsible for producing WWWF shows in the Westchester County Center in Westchester County, New York, and serving as an agent for André the Giant. Managerial appearances Skaaland managed Bruno Sammartino and Bob Backlund, with both men winning the WWF World Heavyweight Championship under his tutelage. In 1978, Skaaland retired from regular wrestling, though he occasionally appeared as a late substitute for wrestlers that couldn't make a show. Pro Wrestling Illustrated named Skaaland Manager of the Year for 1978 and 1979. Backlund's lengthy reign ended on December 26, 1983, when Skaaland threw in the towel while Backlund was trapped in the camel clutch, the finishing move of challenger The Iron Sheik. It was also rumored that Backlund begged authorities for a rematch. Skaaland appeared in the 1987 music video for the title track from Piledriver - The Wrestling Album 2, "Piledriver" by Koko B. Ware as the foreman of a construction site. In 1994, he was inducted into the WWF Hall of Fame class of 1994 for managing both Sammartino and Backlund to the (W)WWF World Heavyweight Championship. He appeared on WWF television later that year, with Backlund attacking him in order to consolidate his heel turn. Personal life Skaaland was married to Betty Skaaland. He had three sons from her: Edward Patrick Skaaland, James Allen Skaaland, and George Skaaland (the latter of whom briefly competed as a wrestler in his own right in the mid-1980s). It was said that Skaaland was the only guy who could somewhat keep up with Andre the Giant when it came to drinking. Death Skaaland died on March 13, 2007, with his wife Betty Skaaland by his side, and had been sick for some time. He is interred at Gate of Heaven Cemetery in Hawthorne, New York. Championships and accomplishments Cauliflower Alley Club Other honoree (1994) Pro Wrestling Illustrated PWI Manager of the Year (1978, 1979) World Wide Wrestling Federation / World Wrestling Federation WWWF United States Tag Team Championship (1 time) - with Spiros Arion WWF Hall of Fame (Class of 1994) Slammy Award (1 time) Lifetime Achievement Award (1997) References External links 1925 births 2007 deaths American male professional wrestlers People from White Plains, New York Professional wrestlers from New York (state) Professional wrestling managers and valets Professional wrestling trainers Sportspeople from Westchester County, New York WWE Hall of Fame inductees United States Marine Corps personnel of World War II Burials at Gate of Heaven Cemetery (Hawthorne, New York) 20th-century professional wrestlers WWWF United States Tag Team Champions
Jega is a Local Government Area in Kebbi State, Nigeria. Its headquarters are in the town of Jega. It has an area of 891 km and a population of 193,352 at the 2006 census. 3 2 Target population Jega LGA has an estimated population of 193,352 people as at 2006 National population Census. Projected using 3.1% as an annual increase: 3 mm x 193,352 =253,291 (projected population of 2016) From the 2006 NPC, JegaLGA has the population sizeof 193,3 52 persons. Hence; ’3.1/100 = 0.031 X 193,352 =5,994 x 10 years = 59939 + 193,352 = 253, 291 (projected population of Jega LGA in 2016). Jega has produced many prominent people in Nigeria, One of such is Professor Attahiru Jega, former INEC Chairman The postal code of the area is 863. Climate The temperature in the wet season is hot, oppressive, and mostly cloudy, while in the dry season it's sweltering and partly cloudy. References Local Government Areas in Kebbi State
Tmesisternus phaleratus is a species of beetle in the family Cerambycidae. It was described by James Thomson in 1865. References phaleratus Beetles described in 1865
Stephen James Philibin (born April 11, 1998), better known by his stage name Steve James, is an American record producer, songwriter and DJ. Career Steve James was born in Johnstown, Pennsylvania. He began learning the piano at the age of four, classically trained. He was introduced to progressive house music by his brother and was inspired to pursue electronic music production after seeing Avicii live, at the age of 14. James began experimenting with Ableton at age 15 and found early success with his remix of ZHU's "Faded," which was the top remix of 2014 on Sirius XM's BPM Station. In the summer of 2015, James took a trip to Los Angeles, California and was introduced to Jason Boyd (Poo Bear). Upon their first meeting, James played Poo Bear an instrumental idea on the piano, which lead to them co-writing and co-producing the title track on Justin Bieber's fourth studio album, 'Purpose. The album has since gone 3× Platinum in the US (RIAA) and 4× Platinum in Canada. Following the release of "Purpose", James left Richland High School, passed the GED test, and returned to LA to pursue music full-time. In November 2015, James released his debut single, "Renaissance", on Seeking Blue and briefly supported the Chainsmokers on their Friendzone tour. After meeting Martin Garrix in early 2016, James and Garrix collaborated on "In the Name of Love". In March 2016, James snuck into Ultra Music Festival 2016 to watch Garrix premiere the song, as millions streamed the performance live. "In the Name of Love" has since charted in over 30 countries. James' premiered his second single, "In My Head" in July 2016, on Martin Garrix's 1st episode of STMPD Radio with Zane Lowe. Throughout the rest of 2016, James supported Garrix, Matoma, and Vanic on their worldwide tours. James has since been seen working in the studio with Martin Garrix, Oliver Heldens, Morgan Page, Matthew Koma, and Lights, among others. Discography Singles Songwriting and production Remixes References External links Website 1998 births Living people American DJs Record producers from Pennsylvania Electronic dance music DJs
Michael Hartley (born 7 June 1993) is a professional Australian rules footballer who most recently played for the Hawthorn Football Club in the Australian Football League (AFL). Early life An athletic youngster who excelled in a range of sports, including cricket, basketball and athletics but most notably high jump where he was ranked third in Australia at the age of 12. First played Australian Football as a fifteen-year-old for Penrith. He was signed by Collingwood as an NSW Scholarship player at the age of 16. Hartley was originally recruited to the club via the NSW Scholarship program in 2007. He represented NSW at the 2011 U18 National Championships, where he impressed Collingwood enough for them to Rookie listed him with selection No. 87 in the Rookie Draft. Collingwood (2012-2013) Hartley spent 2 years on Collingwood's rookie list. Hartley played five games at VFL level before injuring a shoulder that forced him to miss the rest of the 2012 season. He required more surgery to both shoulders and missed the entire 2013 season but was delisted that year. After his stint at Collingwood, Hartley had played two seasons for Coburg. In 2015 he won the club's best and fairest and was selected in the VFL team of the year. Essendon He was recruited by the Essendon Football Club with the 68th overall selection in the 2015 national draft. He made his debut in round 2 of the 2016 AFL season in the club's win against Melbourne at the Melbourne Cricket Ground. He kicked his first AFL goal in the win. He played 19 games in his first season with the club, taking advantage of the season-long bans inflicted because of the Essendon Football Club supplements saga. He played 17 matches out of the possible 23 Essendon matches in 2017. After only managing 7 games at AFL level in 2018 and 2019. Hartley was offered a one-year contract extension to remain with the Bombers; he declined this offer to explore his opportunities elsewhere. He was selected by Hawthorn in the 2019 preseason draft. Hawthorn At the conclusion of the 2019 AFL Premiership season, Hartley turned down Essendon's offer of a one-year contract. Instead opting to try his luck in the preseason draft, where he was drafted to the Hawthorn Football Club and given a two-year deal. Hartley was assigned guernsey number 27 for the 2020 season. Hartley was delisted at the end of the 2021 season. Statistics |- style=background:#EAEAEA | 2012 || || 47 | 0 || — || — || — || — || — || — || — || — || — || — || — || — || — || — || 0 |- | 2013 || || 47 | 0 || — || — || — || — || — || — || — || — || — || — || — || — || — || — || 0 |- style=background:#EAEAEA | 2016 || || 36 | 19 || 1 || 1 || 117 || 71 || 188 || 77 || 59 || 0.1 || 0.1 || 6.2 || 3.7 || 9.9 || 4.1 || 3.1 || 0 |- | 2017 || || 36 | 18 || 0 || 0 || 122 || 90 || 212 || 87 || 45 || 0.0 || 0.0 || 6.8 || 5.0 || 11.8 || 4.8 || 2.5 || 0 |- style=background:#EAEAEA | 2018 || || 36 | 4 || 0 || 0 || 35|| 15 || 50 || 21 || 6 || 0.0 || 0.0 || 8.8 || 3.8 || 12.5 || 5.3 || 1.5 || 0 |- | 2019 || || 36 | 3 || 0 || 0 || 28 || 15 || 43 || 17 || 6 || 0.0 || 0.0 || 9.3 || 5.0 || 14.3 || 5.7 || 2.0 || 0 |- style=background:#EAEAEA | 2020 || || 27 | 2 || 0 || 0 || 20 || 8 || 28 || 3 || 5 || 0.0 || 0.0 || 10.0 || 4.0 || 14.0 || 1.5 || 2.5 || 0 |- | 2021 || || 27 | 3 || 1 || 1 || 39 || 17 || 56 || 14 || 5 || 0.3 || 0.3 || 13.0 || 5.7 || 18.7 || 4.7 || 1.7 || 0 |- class="sortbottom" ! colspan=3| Career ! 49 !! 2 !! 2 !! 361 !! 216 !! 577 !! 219 !! 126 !! 0.0 !! 0.0 !! 7.4 !! 4.4 !! 11.8 !! 4.5 !! 2.6 !! 0 |} Notes References External links 1993 births Living people Essendon Football Club players Hawthorn Football Club players Coburg Football Club players Australian rules footballers from New South Wales Box Hill Football Club players Australian rules footballers from Sydney
Elachista gormella is a moth of the family Elachistidae. It is found on the Iberian Peninsula and in France, Italy, the Czech Republic, Slovakia, Hungary and Ukraine. References gormella Moths described in 1987 Moths of Europe
Widerøe Flight 710, commonly known as the Torghatten Accident (), was a controlled flight into terrain into the mountain of Torghatten in Brønnøy, Norway. The Widerøe-operated de Havilland Canada Dash 7 crashed on 6 May 1988 at 20:29:30 during approach to Brønnøysund Airport, Brønnøy. All thirty-six people on board LN-WFN were killed; the crash remains the deadliest accident involving the Dash 7 and the deadliest in Northern Norway. The direct cause of the accident was that the aircraft had descended from at instead of from the airport. An investigation found several shortcomings in the airline's operating procedures, in particular lack of proper cockpit communication and mutual control of the descent and approach plans. This was in part caused by the airline electing to not follow the sterile cockpit rule and that a passenger was sitting in a cockpit jump seat during the flight. The investigating commission also found lack of proper pilot training in the airline. Flight 710 was the second of four Widerøe accidents between 1982 and 1993, all of which revealed shortcomings in the airline's operations and internal control. Aircraft The accident aircraft was a four-engine de Havilland Canada DHC-7 Dash 7 Series 102, with serial number 28, built in 1980. It was bought used by Widerøe in 1985 and registered as LN-WFN on 8 November 1985. Its certificate of airworthiness was last renewed on 4 November 1987 and was valid until 30 November 1988. The aircraft had operated 16,934 hours and 32,347 cycles prior to its last flight. The last A-check took place on 15 April 1988, after which the aircraft had flown 147 hours and 30 cycles. Flight deck crew The captain was 58-year-old Bjørn Hanssen, a resident of Bodø. He held a D-certificate issued April 8, 1981 and was last renewed on December 11, 1987. He took his initial license in 1949 and had worked as a pilot for Widerøe since April 1, 1960. At the time of his last renewal, he had flown 19,886 hours, of which 2,849 hours were with the Dash 7. He had completed periodical flight training with the Dash 7 on March 8, 1988. He had just returned to Norway following a six-week vacation in Spain. The first officer was 31-year-old Johannes Andal, a resident of Bømlo. He held a C-certificate, which limited him to being first officer on the Dash 7. The certificate was issued on January 5, 1987 and had been valid for the Dash 7 since February 23, 1988. He had started his flight training in 1977 and had completed it in the United States in 1979. He was hired as a pilot for Widerøe on February 6, 1986, originally serving on the de Havilland Canada DHC-6 Twin Otter. He was checked out as first officer on the Dash 7 in February 1988. He had a total flight time of 6,458 hours, of which 85 were on the Dash 7. The flight attendant was 28 years old and had worked for Widerøe since 1983. Flight The aircraft had been used during the morning of May 6 on a multi-leg flight from Bodø Airport to Trondheim Airport, Værnes and back. It had then flown back to Trondheim where it changed crew. They had arrived at Trondheim with a flight at 18:50 on May 5 and left the hotel in Trondheim at 16:15 on May 6. Flight 710 was scheduled to fly from Trondheim via Namsos Airport, Høknesøra; Brønnøysund Airport, Brønnøy; and Sandnessjøen Airport, Stokka. It departed Værnes after a 90-minute delay at 19:23 due technical problems with another aircraft. Flight 710 had a crew of three: a captain, a first officer and a flight attendant. The aircraft was packed and therefore a jump seat in the cockpit was used by a passenger, bringing the number of people on board to 52. The aircraft made a stop-over at Namsos, where sixteen of the passengers disembarked. This reduced the number of passengers on board to thirty-three, but the passenger occupying the jump seat continued to sit there on the next leg. The captain was the pilot flying for the segment. The aircraft departed Namsos at 20:07 and contacted Trondheim Air Traffic Control Center (ATCC) at 20:13 to receive permission to ascend to flight level 90 (FL 90), which was received. During the flight, the passenger in the jump seat held a conversation with the captain and asked several questions regarding the operations. The first officer did not participate in this discussion, and it was he who conducted radio contact with air traffic control and the airline's operations center. The first officer contacted the airline at 20:16 and informed that they expected to arrive at 20:32. At 20:20:29, the aircraft asked permission from Trondheim ATCC to switch to Brønnøysund Aerodrome Flight Information Service (AFIS), which was granted. The aircraft announced at 20:20:42 that they would start the descent and would switch to Brønnøysund AFIS. Contact was made at 20:22:34, at which time the aircraft announced it was from the airport and at FL 80. AFIS informed that there were no known aircraft in the area and that runway 22 was in use; wind was from southeast, visibility, a light shower and . At 20:23:22 the first officer held a 62-second conversation with the airline ordering a taxi for one of the passengers so he could reach his connecting ferry. The captain asked for the descent checklist at 20:24:24. The fasten seat belt sign was switched on and the flight attendant started the process of preparing the cabin for landing. At 20:24:46 the captain, as part of the checklist, informed the first officer that they would go down to at Torghatten and then down to . This was followed first by a partially inaudible conversation between the captain and the first officers, which included if they were to fill fuel, and then an inaudible conversation between the captain and the jump seat passenger. The direction of the VHF omnidirectional radio range (VOR) and distance measuring equipment (DME) at Brønnøysund was checked at 20:26:37. The approach checklist was started at 20:27:01, at which time the aircraft's altitude reached . The first point on the checklist was not readable, but the last three were. At 20:27:32 the captain asked for flaps and landing gear, which were immediately deployed by the first officer and resulted in the aircraft gaining of altitude. The landing gears were confirmed locked at 20:28:00. Four seconds later the passenger asked the captain if there were reserve systems which could be used if the landing gear did not deploy properly. At this point the aircraft started the descent from . AFIS asked for the aircraft's position at 20:28:10, and the first officer responded at 20:28:13 that it was away. He asked AFIS for a wind check, and AFIS responded that it was from 220 degrees and . The first officer confirmed the information at 20:28:24. The aircraft reached altitude and remained at that height for the rest of the flight. A short conversation was initiated by the passenger at 20:28:55. Three seconds later, the captain asked for "25 degrees flaps and props fully fine". This was confirmed by the first officer two seconds later. The pre-landing checklist was completed between 20:29:04 and :19. The autopilot had been used since 25 seconds after take-off from Namsos and was used for the remainder of the flight. From 20:29:21 all four engines showed increasing torque and immediately before the crash the aircraft had shifted its angle from −2.5 degrees to 5 degrees. At 20:29:29 the ground proximity warning system showed 'minimum'. The aircraft crashed into the western side of Torghatten at 20:29:30 at elevation. The aircraft flew into the mountain at an angle of 15 to 20 degrees, with the starboard side towards the mountain. The aircraft was ascending at a seven-degree angle, plus/minus one degree. The tip of the starboard wing was the first to hit the mountain, followed by engine number four (the right-most). The engine was immediately torn off and the aircraft started to rotate. The aircraft started being torn in the back rib of the starboard wing. Then the nose and port wing from engine number two (the inner) hit a depression in the mountain-face, causing engine number one to loosen from its nacelle and the port wing to break between the engines. At the same time the aircraft's body was broken in two. The aircraft's forward movement stopped, the wreck pieces rotated with the vertical stabilizer away from the mountain-side, the port wing caught on fire and exploded and the rest of the aircraft fell down the slope. On the way down, the starboard wing caught on fire. Cause The commission found the cause of the crash was that the approach was started too early and that the aircraft therefore came below the height of the terrain. No specific reason for the early approach was found, although there were several non-compliances by the crew members to regulations and procedures. Specifically, the commission pointed to the lack of internal control which would have identified operation shortcomings and the lack of proper cockpit procedures, especially regarding callouts. There were no technical faults to the aircraft, and the pilots had full control of the aircraft at the time of the collision, making it a controlled flight into terrain. Interviews with random pilots in Widerøe showed that the airline had shortcomings in its training procedures, in part because it lacked a Dash 7 simulator. There was a culture in the airline to deviate from cockpit procedures and cooperation. The flight plans often made procedures for mutual control of procedures impractical, and they were commonly skipped. The commission was of the impression that Widerøe's transition from an all-Twin Otter airline to also operate the more demanding Dash 7 was not properly carried out, which had resultant shortcomings in the training and operating procedures. All checklists during the flight were followed correctly. However, the pilots did not elect a method of double-control of the descent and approach, such as by using briefings and callouts. The pilots had several non-compliances to regulations in their descent. This included using "Torghatten" during the captain's briefing, despite no marking on the map using this name, nor one being located close to the mountain. The aircraft was supposed to have levelled out at , but instead this took place at . The next descent was started at instead of from the airport and the aircraft thus came under permitted altitude. The aircraft was using instrument flight rules (IFR) and Torghatten was covered in fog. The visibility was within the permitted range of IFR. The commission found five errors on Widerøe's maps which could have influenced the accident. This included a formulation which gave the impression that DMR was not in use; a closed "Torget" marker beacon was still on the maps; a vertical flight plan from Lekan was not included; the height limitations in the accident area were noted through comments rather than through a graphical presentation; and confusion as to when the timing of final approach should start. The commission also criticized the airline for its checklists instructing the pilots to tune one of the VHF channels to the company frequency during descent, at a time when non-safety-related communication is unwanted. Because the aircraft was fully booked, a passenger was allowed to sit in the jump seat in the cockpit. The passenger had no connection with the airline, but was granted permission by the captain via an acquaintance in the airline. Several of the other passengers were employees in Widerøe and should—according to the airline's rules—instead have been seated there. From Namsos to Brønnøysund there were available seats in the cabin, but the jump seat passenger continued to sit in the cockpit. The commission felt that the passenger's conversation with the captain drew his attention and concentration away from his duties at a critical point of the flight. This also disrupted communication between the two pilots, resulting in the mutual control being disrupted. Salvage and investigation The aircraft crashed into Torghatten, which is located south-west of Brønnøysund Airport. The mountain is tall and is a distinct height in an area which is otherwise rather flat. The aircraft hit the western side of the mountain at a point where the terrain is forty degrees steep. The center line of the flight path is from Torghatten. The wreck was spread over an area below the point of impact. AFIS made several attempts to call up the aircraft. It received a call from a resident close to Torghatten which said they had heard aircraft noise followed by a crash. Brønnøysund Fire Department and an ambulance helicopter with a doctor was dispatched to Torghatten. The rescue work was made difficult by low clouds, small fires and explosions. The terrain was difficult and the lack of daylight made assisting the situation difficult. A helicopter with medical personnel and the airport direct arrived at 21:25, while a meeting place for the next of kin was established at the airport. At 23:30 the police stated that there was no hope of finding survivors and the scene changed from a search to an investigation scene. Due to the fog it was not possible to verify that all people had been killed until the next day. Seventy-five soldiers from the Home Guard participated in the salvage. The Accident Investigation Board Norway was informed about the accident at 21:10. Four members of the investigation commission were appointed, consisting of leader Lieutenant General Wilhelm Mohr, Pilot Hallvard Vikholt, Lieutenant Colonel Asbjørn Stein and Chief-of-Police Arnstein Øverkil. Because of poor weather conditions, the commission was not assembled in Brønnøy until 15:00 on 7 May. The same day the National Criminal Investigation Service arrived to assist AIBN. Six people appointed by the Canadian Aviation Safety Board, including representatives from de Havilland Canada and Pratt & Whitney Canada, were sent to aid the investigation. Four representatives from Widerøe were available for consultation with the commission. The investigation commission was later supplemented by Psychologist Grethe Myhre and Øverkil replaced by Arne Huuse. The VOR/DME system was tested by the Civil Aviation Administration on 7 May and found to be working correctly. AIBN established a base of operations at the hangar at Brønnøysund Airport and used a helicopter to freight the pieces of the wreck there and bodies to Trondheim University Hospital for identification. Technical investigations started on 9 May. The aircraft was equipped with a flight data recorder and a cockpit voice recorder. Both were found intact and were decoded at the Air Accidents Investigation Branch in the United Kingdom. Improper use of the microphone made it difficult to hear the captain's voice, but it was possible to reconstruct the conversations and line of events. A memorial service was held on 10 May and was attended by Prime Minister Gro Harlem Brundtland. The last Home Guard personnel concluded their work on 11 May and the police concluded their investigations at Torghatten on 13 May. In May 2013 the investigation board was made aware that two passengers each had their Mobira NMT-450 mobile telephone with them on the flights. As this had not been mentioned in the original report, AIBN conducted a review of the issue and especially if the telephones could have influenced the vertical navigation. They concluded in December that this was not the case, as there were no indications of interferences and that there are no instances where electromagnetic interference has been a contributing cause to an aviation accident. Aftermath Flight 710 was the second fatal and write-off accident of a Dash 7, and remains the deadliest. It was at the time the third-deadliest aviation accident in Norwegian history, after the 1961 Holtaheia Vickers Viking crash and Braathens SAFE Flight 239 in 1972. It has since become the fourth-deadliest by Vnukovo Airlines Flight 2801. It remains the deadliest accident in Northern Norway. The commission recommended that Widerøe update its maps for Brønnøysund, review and improve its landing procedures, improve its internal control procedures to ensure that pilots follow the airline's flight operation regulations, and introduce the Sterile Cockpit Rule. The commission recommended that the Civil Aviation Administration change the flight paths at Brønnøysund to increase the altitude around Torghatten. Flight 710 was the second of four fatal Widerøe accidents which occurred between 1982 and 1993. In the first accident, Flight 933, a poor cockpit culture had also been discovered, but little was followed up, in part because of a conspiracy theory which surfaced regarding a collision with a fighter jet. Also in the following two major Widerøe accidents, Flight 893 in 1990 and Flight 744 in 1993, the investigation uncovered operational shortcomings. The press had an aggressive coverage of the accident. Several major press organizations attended the memorial service, and newspapers published close-up pictures of crying next of kin on their front pages. The Norwegian Press Complaints Commission, a committee appointed by the newspapers themselves, acquitted Dagbladet after a complaint for their aggressive image use. However, the accident coverage started an internal debate among journalists about their coverage of major accidents. The conclusion was that private sorrow was not to be covered in the media, and since then they have had a strict self-enforcement of such a policy. Brønnøysund Airport installed the SCAT-I satellite-based landing system on 29 October 2007. Avinor's Steinar Hamar stated at the opening ceremony that the system would have prevented both Flight 710 and Flight 744 at Namsos Airport in 1993. The roll-out, taking place at most of Avinor's regional airports, is scheduled for completion in 2013. References Citations Bibliography Aviation accidents and incidents in Norway Aviation accidents and incidents in 1988 Accidents and incidents involving the de Havilland Canada Dash 7 Widerøe accidents and incidents Brønnøy 1988 in Norway Airliner accidents and incidents involving controlled flight into terrain May 1988 events in Europe
Pamela Marrone is a serial entrepreneur in agriculture biotechnology and biological pesticides. She is one of 22 women who founded and led companies to be listed on public stock exchanges She held more than 500 patents. She also serves on a number of company boards and is on serval advisory councils. She currently live in Davis, California with her husband, Mick Rogers. Early life and education Pamela grow up in southern Connecticut. Pamela received her bachelor of science in Entomology with honors and distinction from Cornell University in 1978 and a doctor of philosophy in Entomology with specialization from North Carolina State University 1983. She led the insect biology and control groups in Monsanto from 1983 to 1990 and was recruited by Novo Nordisk to start a biopesticide subsidiary. Career Entotech, Inc Pamela served as president and business unit head for Entotech, a Novo Nordisk subsidiary from 1990 to 1995 before it was sold to Abbott. AgraQuest, Inc Pamela founded AgraQuest in 1995. She served as CEO, chairman and President until 2006 when it is acquired by Bayer Crop Science for $425 million plus milestone payment. Marrone Bio Innovations, Inc Pamela founded Marrone Bio Innovations (NASDAQ: MBII), a pest management and plant health company in 2006. It went public on NASDAQ in 2013. She stepped down as CEO in 2022. Invasive Species Control Corporation and Foundation Pamela and former Marrone Bio Innovation president Jim Boyd launched Invasive Species Foundation and Invasive Species Control Corp in 2022. Award and Recognition References Year of birth missing (living people) Living people Cornell University alumni
Montigena is a genus of flowering plant in the legume family Fabaceae. It includes the sole species Montigena novae-zelandiae, known more commonly the scree pea, a dicotyledonous herb endemic to the South Island of New Zealand. The plant is small and woody, arising from thin, branched stems that extend to the surface from a deeply buried root stock. The flowers vary from purple to brown, while fruits appear between January and April. M. novae-zelandiae was previously classified as Swainsona novae-zelandiae until 1998 when the genus Montigena was created based on the morphological features of the plant. Under the New Zealand Threat Classification System, it is classified as "At Risk - Declining". Its decline is predicted to be from 10% to 50% from a population of from 20,000 to 100,000 mature plants. Further comments are that it is sparse and that there are recruitment failures. Montigena is one of the four genera of native legumes in New Zealand; the other three are Carmichaelia, Clianthus, and Sophora. References Galegeae Monotypic Fabaceae genera Taxa named by Joseph Dalton Hooker Endemic flora of New Zealand Flora of the South Island Plants described in 1864
Pilipinas Kay Ganda () was a short-lived advertising campaign made by the Department of Tourism to promote tourism in the Philippines. Launched in 2010, it replaced the WOW Philippines campaign that was launched in 2002. The tourism slogan and the associated logo used for the campaign were controversial and received mostly negative reception from the Filipino public, even leading to the resignation of the country's then-Tourism Secretary, Alberto Lim. Pilipinas Kay Ganda was eventually replaced with "It's More Fun in the Philippines!". Conception The advertising agency Campaigns & Grey had advisory capacity over the Pilipinas Kay Ganda campaign, designing the campaign's logo and theme. The agency designed the campaign materials free of charge in support of President Benigno Aquino III's administration. The agency claimed that the released logo was just a study and was released prematurely by the Department of Tourism. Plagiarism controversy The Pilipinas Kay Ganda campaign logo design was criticized for alleged plagiarism. Discussions on social media pointed out and suspected that the campaign logo was plagiarized from Poland's tourism campaign, "Polska" (). The logos of Polska and Pilipinas Kay Ganda's font were similar. Both the letter "L" of the campaign slogans were stylized into trees. The difference is that Pilipinas Kay Ganda's letter "L" was stylized into a coconut tree with a smiley face as opposed to Polska's "L" which was stylized into a generic tree. Tourism Secretary Alberto Lim acknowledged that the Philippine campaign slogan bares some similarities with the Polska logo and commented that the Philippine campaign logo was more colourful. Tourism Undersecretary Enteng Romano, in a text message forwarded by Palace Spokesperson Abi Valte, denied that the Philippine campaign logo was plagiarized and that the logo has enough elements to be distinct from Poland's campaign logo. See also Advertising and marketing controversies in the Philippines References 2010 in the Philippines Philippine tourism campaigns Filipino advertising slogans Department of Tourism (Philippines) Works involved in plagiarism controversies Advertising and marketing controversies 2010 introductions Controversies in the Philippines