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; }
```
|
```python
#
#
# 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.
# ==============================================================================
r"""Build Visual WakeWords Dataset with images and labels for person/not-person.
This script generates the Visual WakeWords dataset annotations from
the raw COCO dataset and converts them to TFRecord.
Visual WakeWords Dataset derives from the COCO dataset to design tiny models
classifying two classes, such as person/not-person. The COCO annotations
are filtered to two classes: foreground_class_of_interest and background
( for e.g. person and not-person). Bounding boxes for small objects
with area less than 5% of the image area are filtered out.
The resulting annotations file has the following fields, where
the image and categories fields are same as COCO dataset, while the annotation
field corresponds to the foreground_class_of_interest/background class and
bounding boxes for the foreground_class_of_interest class.
images{"id", "width", "height", "file_name", "license", "flickr_url",
"coco_url", "date_captured",}
annotations{
"image_id", object[{"category_id", "area", "bbox" : [x,y,width,height],}]
"count",
"label"
}
categories[{
"id", "name", "supercategory",
}]
The TFRecord file contains the following features:
{ image/height, image/width, image/source_id, image/encoded,
image/class/label_text, image/class/label,
image/object/class/text,
image/object/bbox/ymin, image/object/bbox/xmin, image/object/bbox/ymax,
image/object/bbox/xmax, image/object/area
image/filename, image/format, image/key/sha256}
For classification models, you need the image/encoded and image/class/label.
Please note that this tool creates sharded output files.
Example usage:
Add folder tensorflow/models/research/slim to your PYTHONPATH,
and from this folder, run the following commands:
bash download_mscoco.sh path-to-mscoco-dataset
TRAIN_IMAGE_DIR="path-to-mscoco-dataset/train2014"
VAL_IMAGE_DIR="path-to-mscoco-dataset/val2014"
TRAIN_ANNOTATIONS_FILE="path-to-mscoco-dataset/annotations/instances_train2014.json"
VAL_ANNOTATIONS_FILE="path-to-mscoco-dataset/annotations/instances_val2014.json"
python datasets/build_visualwakewords_data.py --logtostderr \
--train_image_dir="${TRAIN_IMAGE_DIR}" \
--val_image_dir="${VAL_IMAGE_DIR}" \
--train_annotations_file="${TRAIN_ANNOTATIONS_FILE}" \
--val_annotations_file="${VAL_ANNOTATIONS_FILE}" \
--output_dir="${OUTPUT_DIR}" \
--small_object_area_threshold=0.005 \
--foreground_class_of_interest='person'
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import os
import tensorflow as tf
from datasets import build_visualwakewords_data_lib
flags = tf.app.flags
tf.flags.DEFINE_string('train_image_dir', '', 'Training image directory.')
tf.flags.DEFINE_string('val_image_dir', '', 'Validation image directory.')
tf.flags.DEFINE_string('train_annotations_file', '',
'Training annotations JSON file.')
tf.flags.DEFINE_string('val_annotations_file', '',
'Validation annotations JSON file.')
tf.flags.DEFINE_string('output_dir', '/tmp/', 'Output data directory.')
tf.flags.DEFINE_float(
'small_object_area_threshold', 0.005,
'Threshold of fraction of image area below which small'
'objects are filtered')
tf.flags.DEFINE_string(
'foreground_class_of_interest', 'person',
'Build a binary classifier based on the presence or absence'
'of this object in the scene (default is person/not-person)')
FLAGS = flags.FLAGS
tf.logging.set_verbosity(tf.logging.INFO)
def main(unused_argv):
# Path to COCO dataset images and annotations
assert FLAGS.train_image_dir, '`train_image_dir` missing.'
assert FLAGS.val_image_dir, '`val_image_dir` missing.'
assert FLAGS.train_annotations_file, '`train_annotations_file` missing.'
assert FLAGS.val_annotations_file, '`val_annotations_file` missing.'
visualwakewords_annotations_train = os.path.join(
FLAGS.output_dir, 'instances_visualwakewords_train2014.json')
visualwakewords_annotations_val = os.path.join(
FLAGS.output_dir, 'instances_visualwakewords_val2014.json')
visualwakewords_labels_filename = os.path.join(FLAGS.output_dir,
'labels.txt')
small_object_area_threshold = FLAGS.small_object_area_threshold
foreground_class_of_interest = FLAGS.foreground_class_of_interest
# Create the Visual WakeWords annotations from COCO annotations
if not tf.gfile.IsDirectory(FLAGS.output_dir):
tf.gfile.MakeDirs(FLAGS.output_dir)
build_visualwakewords_data_lib.create_visual_wakeword_annotations(
FLAGS.train_annotations_file, visualwakewords_annotations_train,
small_object_area_threshold, foreground_class_of_interest,
visualwakewords_labels_filename)
build_visualwakewords_data_lib.create_visual_wakeword_annotations(
FLAGS.val_annotations_file, visualwakewords_annotations_val,
small_object_area_threshold, foreground_class_of_interest,
visualwakewords_labels_filename)
# Create the TF Records for Visual WakeWords Dataset
if not tf.gfile.IsDirectory(FLAGS.output_dir):
tf.gfile.MakeDirs(FLAGS.output_dir)
train_output_path = os.path.join(FLAGS.output_dir, 'train.record')
val_output_path = os.path.join(FLAGS.output_dir, 'val.record')
build_visualwakewords_data_lib.create_tf_record_for_visualwakewords_dataset(
visualwakewords_annotations_train,
FLAGS.train_image_dir,
train_output_path,
num_shards=100)
build_visualwakewords_data_lib.create_tf_record_for_visualwakewords_dataset(
visualwakewords_annotations_val,
FLAGS.val_image_dir,
val_output_path,
num_shards=10)
if __name__ == '__main__':
tf.app.run()
```
|
Garrison is a village in Butler County, Nebraska, United States. The population was 54 at the 2010 census.
History
Garrison was laid out ca. the late 1870s when the railroad was extended to that point. It was named for abolitionist William Lloyd Garrison.
A post office was established in Garrison in 1880, and remained in operation until it was discontinued in 1965.
Geography
According to the United States Census Bureau, the village has a total area of , all land.
Demographics
2010 census
As of the census of 2010, there were 54 people, 23 households, and 15 families living in the village. The population density was . There were 28 housing units at an average density of . The racial makeup of the village was 100.0% White. Hispanic or Latino of any race were 1.9% of the population.
There were 23 households, of which 26.1% had children under the age of 18 living with them, 47.8% were married couples living together, 17.4% had a male householder with no wife present, and 34.8% were non-families. 26.1% of all households were made up of individuals, and 13% had someone living alone who was 65 years of age or older. The average household size was 2.35 and the average family size was 2.93.
The median age in the village was 40.5 years. 22.2% of residents were under the age of 18; 5.7% were between the ages of 18 and 24; 26% were from 25 to 44; 33.4% were from 45 to 64; and 13% were 65 years of age or older. The gender makeup of the village was 61.1% male and 38.9% female.
2000 census
As of the census of 2000, there were 67 people, 27 households, and 14 families living in the village. The population density was . There were 31 housing units at an average density of . The racial makeup of the village was 95.52% White and 4.48% Native American.
There were 27 households, out of which 40.7% had children under the age of 18 living with them, 48.1% were married couples living together, 3.7% had a female householder with no husband present, and 48.1% were non-families. 40.7% of all households were made up of individuals, and 18.5% had someone living alone who was 65 years of age or older. The average household size was 2.48 and the average family size was 3.71.
In the village, the population was spread out, with 35.8% under the age of 18, 3.0% from 18 to 24, 31.3% from 25 to 44, 16.4% from 45 to 64, and 13.4% who were 65 years of age or older. The median age was 38 years. For every 100 females, there were 86.1 males. For every 100 females age 18 and over, there were 95.5 males.
As of 2000 the median income for a household in the village was $32,917, and the median income for a family was $51,000. Males had a median income of $31,250 versus $26,500 for females. The per capita income for the village was $17,317. There were no families and 9.2% of the population living below the poverty line, including no under eighteens and none of those over 64.
References
Villages in Butler County, Nebraska
Villages in Nebraska
|
"Star Light, Star Bright" is an English language nursery rhyme. It has a Roud Folk Song Index number of 16339.
Lyrics
The lyrics usually conform to the following:
Star light, star bright,
First star I see tonight;
I wish I may, I wish I might
Have the wish I wish tonight.
Origins
The superstition of hoping for wishes granted when seeing a shooting or falling star may date back to the ancient world. Wishing on the first star seen may also predate this rhyme, which first began to be recorded in late nineteenth-century America. The song and tradition seem to have reached Britain by the early twentieth century and have since spread worldwide.
In popular culture
It is used in the 1940 Disney film Pinocchio and related Disney media.
It is used in the 1953 Sci-Fi film It Came from Outer Space.
The first half is featured in the chorus of Madonna's 1983 song Lucky Star.
It is partially quoted in the song "Take Me Away" on Blue Öyster Cult's 1983 album The Revölution by Night.
The rhyme is quoted and referenced on Metallica’s 1996 single “King Nothing”, released for the album Load.
In Puss in Boots: The Last Wish, it is used as the plot's basis, the quest for the Wishing Star, in addition to providing deeper meaning to the film's central themes. It is read verbatim in the opening and repeated later on.
It is also quoted in Nicki Minaj's 2023 song Last Time I Saw You.
Notes
American nursery rhymes
Songs about nights
|
Gustavo de Jesus Quintero Morales, better known as "El Loko", (23 December 1939 – 18 December 2016) was a Colombian singer-songwriter. He is considered one of the great representatives of the Colombian tropical music.
Early life
Quintero studied at the Édgar Poe Restrepo school in Medellín and from an early age he has shown his musical skills. He participated in choirs of churches and received classes at the school of Fine Arts in Medellín. "El Loko", as he was known, studied Economics at the University of Antioquia, which he didn't finish. He was called "Loko" for his stage antics.
Career
When he lived in Cali, he formed the band Los Gatos. He was also a singer with The Teen Agers. Upon his return to Medellín he formed the group Los Hispanos. Then he left Los Hispanos (Codiscos), with Rodolfo Aicardi replacing him, and formed Los Graduados.
"Asi Empezaron Papa Y Mama" was a famous dance song of Los Graduados. He was the first showman of Colombian tropical music.
Quintero is one of the most imitated artists in both style and music, many musical groups dedicating themselves to perform his music during the Christmas season.
Death
Quintero had had several health problems and complications throughout his life. His death occurred on the Sunday of 18 December 2016 at 1:40 in the morning at the Las Americas Clinic in Medellín to stomach cancer.
Songs
La Cinta Verde
Asi Empezaron Papa Y Mama
Ese Muerto no Lo Cargo Yo (Don Goyo)
Fantasia Nocturna (Lucerito)
Carita De Angel
La Pelea Del siglo
La Banda Del Vecino
La Maestranza
Juanito Preguntón
Quinceañera
El Coquero
References
Gustavo Quintero Codiscos
Gustavo Quintero – detalles Codiscos
Gustavo Quintero – Productos Info Discos Fuentes
Gustavo Quintero Discos Fuentes
Gustavo Quintero Discos Fuentes
Gustavo Quintero ajustó 50 años de poner a bailar a los colombianos en diciembre
Aconsejo de rionegro con gustavo el loco quintero y las glorias del deporte rionegro
Los Mejores, Los Hispanos, Los Graduados
Los graduados iTunes
Gustavo Y Su Combo Gran Colombia – Gustavo Quintero
External links
Official video of the La Pelea Del Siglo
Official video of the El Aguardientosky
Official video of the El Adios
Official video of the Asi Empezaron Papa Y Mama
1939 births
2016 deaths
Colombian singer-songwriters
Colombian male singer-songwriters
Musicians from Medellín
20th-century Colombian male singers
21st-century Colombian male singers
Deaths from cancer in Colombia
Deaths from stomach cancer
|
"Bitter Heart" is a song by British new wave duo Seona Dancing, released as a single in 1983. It is a David Bowie-style new wave pop song, sung by a then-unknown Ricky Gervais with synthesizers provided by Bill Macrae. The song peaked at No. 79 on the UK Singles Chart, and remained in the top 100 for 3 weeks.
Music video
A video was made in 1983. It has had considerable play in recent years on talk shows interviewing Gervais and has been played on "'80s flashback" shows. The plot of the video is a girl in a wedding dress who was about to get married and has just had her husband leave her, after which she becomes angry and destroys most of the objects in the room.
Cover versions
In August 2012, British pop group Super 8 Cynics released a cover of the song through Manchester record label Longevity Records.
In September 2023, Los Angeles band Sacred Skin released a cover of the song via Artoffact Records.
References
1983 songs
1983 singles
Seona Dancing songs
Songs written by Ricky Gervais
London Records singles
|
Çayköy is a village in the Hamamözü District, Amasya Province, Turkey. Its population is 114 (2021).
References
Villages in Hamamözü District
|
Four ships of Royal Navy have been named HMS Malta after the Mediterranean island:
was a Spanish 10-gun schooner built and launched in the United States of America in 1797. The British captured her in 1800 and renamed her HMS Gozo in December 1800. She was sold in 1804.
was an 80-gun third rate, originally the French ship , captured from France in 1800. She was assigned to harbour service in 1831 and broken up in 1840.
was a paddle steamer originally called Britannia and purchased in 1854. She was sold in 1856.
was to have been the lead ship of the s. She was laid down in 1944 but construction was cancelled in 1945.
See also
, three ships of the Royal Navy named for the Latin name of Malta.
References
Royal Navy ship names
|
Fall of the Mohicans (/ Uncas, The End of a Race, or ) is a 1965 Spanish-Italian historical western adventure film directed by Mateo Cano and starring Jack Taylor, Paul Muller and Sara Lezana. The film is based on James Fenimore Cooper's 1826 novel The Last of the Mohicans, but made in the style of a Spaghetti Western. It was shot on location in the Tabernas Desert of Almería Another adaptation of the story The Last Tomahawk was released the same year by Germany's Constantin Film.
Story
In 1757 French troops take Fort William Henry. British Colonel Munro and his two daughters are captured by the Marques of Montcalm and offered to the Huron chief Cunning Fox.
Cast
Jack Taylor as Duncan Edward
Paul Muller as Colonel Munro
Sara Lezana as Cora Munro
Daniel Martín as Uncas
José Manuel Martín as Cunning Fox
Barbara Loy as Alice Munro
Luis Induni as Hawkeye
José Marco as Chingachgook
Carlos Casaravilla as Tamerind
Rufino Inglés as Doctor
Modesto Blanch as Brancourt
Pedro Rodríguez de Quevedo as General Webb
Alfonso del Real as Higgins
José Riesgo as Soldier
Lorenzo Robledo as Commander
Pedro Fenollar as French Officer
Pastor Serrador as Marquis de Montcalm
Carlos Casaravilla as Tamenund
References
Bibliography
Bertil O. Österberg. Colonial America on Film and Television: A Filmography. McFarland, 15 Apr 2009.
External links
1965 films
Films based on The Last of the Mohicans
1960s Italian-language films
Spaghetti Western films
1965 Western (genre) films
1960s historical adventure films
Italian historical adventure films
Spanish historical adventure films
Films set in 1757
Films directed by Mateo Cano
Films shot in Almería
1960s Italian films
Italian-language Spanish films
|
Küçükevren is a village in the Enez District of Edirne Province in Turkey. The village had a population of 193 in 2022.
References
Villages in Enez District
|
Chinook was a counterculture underground newspaper published weekly in Denver, Colorado from Aug. 21, 1969 to Jan. 21, 1972. It was a member of the Underground Press Syndicate. A total of 117 issues were printed. In 1972 it merged with Boulder magazine to become The Straight Creek Journal, which considered itself an alternative press rather than an underground press publication, publishing weekly from Feb. 10, 1972 to Aug. 7, 1980. According to Abe Peck in his memoir Uncovering the Sixties, the original underground Chinook started to fall apart after a number of staffers left to become followers of Guru Maharaj Ji, who visited Denver and established a mission there in late 1971.
From Chinook, Vol 3, No 18, Issue 83:
Staff: Patick Dolan (editor), Kevin Tannenbaum (managing editor), John Loquidis (music), Milton Tea (music), Cosmic Joe (news, calendar). Steve Levince (City), Mike Wheelock and Lini Lieberman (food), Paul Salazar (astrologer), Swami Sivanand (swami), Dan Yurman (housing) Carl Stone, photography).
Other Contributors to Chinook included Chip Berlet.
The last issue published was on Valentines Day 1972. The folded (half-tabloid) back cover was by artist John Fish. The open tabloid full front page was by artist Layne Catherine Anderson.
See also
List of underground newspapers of the 1960s counterculture
Notes
Alternative weekly newspapers published in the United States
Newspapers established in 1969
Publications disestablished in 1972
|
Austria-Hungary national bandy team made an appearance at the 1913 European Bandy Championships, which were played in Davos, Switzerland. Some years later, Austria-Hungary dissolved due to the outcome of the First World War.
References
Austria-Hungary
Sport in Austria-Hungary
Bandy in Hungary
|
```java
package redstar.onboarding.adapter;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.view.ViewPager;
import android.view.View;
import android.widget.ImageView;
import java.util.ArrayList;
import java.util.List;
/**
* Created by Eoin on 8/8/16.
*/
public class SceneTransformer implements ViewPager.PageTransformer {
public interface SceneChangeListener {
void enterScene(@Nullable ImageView sharedElement, float position);
void centerScene(@Nullable ImageView sharedElement);
void exitScene(@Nullable ImageView sharedElement, float position);
void notInScene();
}
private List<SceneChangeListener> mSceneChangeListeners = new ArrayList<>();
private ImageView mSharedElement;
public void transformPage(@NonNull View view, float position) {
//cancel view pagers natural scroll
view.setTranslationX(view.getWidth() * -position);
for (int scene = 0; scene < mSceneChangeListeners.size(); scene++) {
// get the shared element from the first fragment
if (view.getTag().equals(0) && mSharedElement == null) {
mSharedElement = (ImageView) view.findViewWithTag("shared_element");
}
// callback to fragment based on the tag set when the fragment is created
if (view.getTag().equals(scene)) {
makeSceneCallbacks(mSceneChangeListeners.get(scene), position);
}
}
}
public void addSceneChangeListener(@NonNull SceneChangeListener sceneChangeListener) {
mSceneChangeListeners.add(sceneChangeListener);
}
private void makeSceneCallbacks(SceneChangeListener sceneChangeListener, float position) {
if (centerScene(position)) {
sceneChangeListener.centerScene(mSharedElement);
} else if (enterScene(position)) {
sceneChangeListener.enterScene(mSharedElement, position);
} else if (exitScene(position)) {
sceneChangeListener.exitScene(mSharedElement, position);
} else if (notInScene(position)) {
sceneChangeListener.notInScene();
}
}
private boolean centerScene(float position) {
return position == 0.0F;
}
private boolean exitScene(float position) {
return position > -1.0f && position < 0.0f;
}
private boolean enterScene(float position) {
return position < 1.0f && position > 0;
}
private boolean notInScene(float position) {
return position <= -1.0F || position >= 1.0F;
}
}
```
|
Bridge Cafe was a historic restaurant and bar located at 279 Water Street in the South Street Seaport area of Manhattan, New York City, United States. The site was originally home to "a grocery and wine and porter bottler", opened in 1794, and has been home to a series of drinking and eating establishments. In the nineteenth century, the building was described in city directories variously as a grocery, a porterhouse, or a liquor establishment. Henry Williams operated a brothel there from 1847 to 1860 and the prostitutes were listed in the New York City census of 1855. In 1888, the building's exterior was altered to its present form. The building was damaged during Hurricane Sandy, and the restaurant remains closed . Until its closure, it was the city's oldest continuous business establishment, though the name and ownership had changed numerous times. It had most recently been under the same ownership since 1979, when the former McCormick’s, a bar frequented by local fishmongers, was purchased by Jack Weprin and converted into The Bridge Cafe, a white tablecloth establishment.
While in office, Mayor Edward I. Koch regularly had dinner at Bridge Cafe and declared it to be his favorite restaurant.
New York considered it to be one of New York City's Top 5 Historic Bars in 2005.
A 2020 report states that "it unfortunately closed after Hurricane Sandy inundated the building in 2012 and has remained closed ever since". A reconstruction did commence but a report in March 2020 stated that owner Adam Weprin had encountered difficulties; at that time, he said that "'Unfortunately, many factors will play a part in the opening. In addition to replacing the floors, there are other costly repairs' ... but he remained committed to a reopening.
References
External links
Drinking establishments in Manhattan
Defunct restaurants in Manhattan
South Street Seaport
1794 establishments in New York (state)
Restaurants established in 1794
|
Milan Majstorović (; born 21 February 2005) is a Serbian football player who plays as a centre-back for Russian club Dynamo Moscow.
Club career
On 17 August 2022, Majstorović signed a contract with Russian Premier League club Dynamo Moscow, beginning in February 2023. He made his RPL debut for Dynamo on 11 March 2023 in a game against Krasnodar. On 14 May 2023, Majstorović suffered an ACL tear and will have to miss an extended period of time recovering from surgery.
International career
Majstorović represented Serbia at the 2022 UEFA European Under-17 Championship, where they reached the semi-finals.
Career statistics
References
External links
2005 births
Living people
Footballers from Novi Sad
Serbian men's footballers
Serbia men's youth international footballers
Men's association football defenders
FK Vojvodina players
FC Dynamo Moscow players
Russian Premier League players
Serbian expatriate men's footballers
Expatriate men's footballers in Russia
Serbian expatriate sportspeople in Russia
|
```smalltalk
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.CodeAnalysis;
namespace Pchp.CodeAnalysis
{
/// <summary>
/// Level of optimization.
/// </summary>
public enum PhpOptimizationLevel : int
{
/// <summary><see cref="OptimizationLevel.Debug"/></summary>
Debug = 0,
O1, O2, O3, O4, O5, O6, O7, O8, O9,
Ox = Release,
/// <summary><see cref="OptimizationLevel.Release"/></summary>
Release = O9,
}
/// <summary>
/// Helper methods for the <see cref="PhpOptimizationLevel"/>.
/// </summary>
internal static class PhpOptimizationLevelExtension
{
public static OptimizationLevel AsOptimizationLevel(this PhpOptimizationLevel level)
=> level != PhpOptimizationLevel.Debug ? OptimizationLevel.Release : OptimizationLevel.Debug;
public static PhpOptimizationLevel AsPhpOptimizationLevel(this OptimizationLevel level)
=> level != OptimizationLevel.Debug ? PhpOptimizationLevel.Release : PhpOptimizationLevel.Debug;
public static int GraphTransformationCount(this PhpOptimizationLevel level) => level.IsDebug() ? 0 : ((int)level - 1); // O2 .. O9
public static bool IsDebug(this PhpOptimizationLevel level) => level == PhpOptimizationLevel.Debug;
public static bool IsRelease(this PhpOptimizationLevel level) => level != PhpOptimizationLevel.Debug;
}
}
```
|
Blackhorse Base Camp (also known as LZ Blackhorse or simply Xuân Lộc) is a former U.S. Army base and current People's Army of Vietnam (PAVN) base near the town of Xuân Lộc in Đồng Nai Province in southern Vietnam.
History
Blackhorse was established in late October 1966 as the base camp for the 11th Armored Cavalry Regiment (11th ACR). The camp was located on the main highway, QL-2 (now QL-56) 13 km southwest of Xuân Lộc and 28 km north of Nui Dat. The camp took its name from the black horse shoulder sleeve insignia of the 11th ACR.
The 11th ACR had its headquarters at Blackhorse from March 1967 until January 1969.
Other units stationed at Blackhorse included:
57th Medical Detachment (Helicopter Ambulance) (UH-1H Iroquois)
7th Surgical Hospital (August 1966 – October 1969)
135th Assault Helicopter Company with RAN (Dec, 67- Nov 68)
2nd Battalion, 35th Artillery (Mid 1966 – April 1970)
1st Battalion, 83rd Artillery (October 1966 – March 1968)
199th Light Infantry Brigade (September 1969 – July 1970) comprising:
2nd Battalion, 3rd Infantry
3rd Battalion, 7th Infantry
4th Battalion, 12th Infantry
1st Battalion, 5th Infantry (August 1970 – April 1971)
2nd Battalion, 12th Infantry (July–December 1970)
2nd Brigade, 25th Infantry Division (December 1970 – April 1971) comprising:
3rd Battalion, 22nd Infantry
1st Battalion, 27th Infantry
2nd Battalion, 27th Infantry
The base was turned over to the Army of the Republic of Vietnam 18th Division on 24 October 1969.
Current use
The base remains in use by the PAVN as a base for the 302nd Infantry Division, a component of the 7th Military Region (Vietnam People's Army). The address is 302 Sư Đoàn 88, Long Giao, Cẩm Mỹ.
References
Installations of the United States Army in South Vietnam
Military installations of the Socialist Republic of Vietnam
Buildings and structures in Đồng Nai province
|
```yaml
{{- /*
*/}}
{{- if .Values.rbac.create }}
apiVersion: {{ include "common.capabilities.rbac.apiVersion" . }}
kind: RoleBinding
metadata:
name: {{ template "common.names.fullname" . }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: {{ template "common.names.fullname" . }}
subjects:
- kind: ServiceAccount
name: {{ template "redis.serviceAccountName" . }}
{{- end }}
```
|
Sarsina () is an Italian town situated in the province of Forlì-Cesena, Emilia-Romagna, northern Italy. Its territory is included in the Tuscan-Romagnolo Apennines.
History
Ancient Sarsina or Sassina was a town of the Umbri. Captured by Cornelius Scipio in 271 BC, it became later a municipium of the Roman empire. In 266 BC Roman consuls celebrated a triumph over the Sassinates. It is mentioned in the Fasti, and in the enumeration of the Italian allies of the Romans in 225 BCE the Umbri and Sassinates are mentioned, on an equal footing, as providing 20,000 men between them. It is possible that the tribus Sapinia (the name of which is derived from the river Sapis) mentioned by Livy in the account of the Roman marches against the Boii in 201 BC and 196 BC formed a part of the Sassinates.
The playwright Plautus was native of Sassina. The town had a strategic importance, as inscriptions, preserved in the local museum, show. Its milk is frequently mentioned; it was the centre of a pasture district and it provided a number of recruits for the Praetorian Guard.
In the 10th century the bishops obtained the temporal sovereignty of the city and the surrounding district, which thus became a prince-bishopric. From 1327 until 1400 it was disputed for by the Ordelaffi of Forlì, the popes and the bishops. In the fifteenth century it was subject in turn to the Malatesta family of Cesena, and then to the Malatesta branch of Rimini, from whom it was taken by Cesare Borgia (1500–03), on whose death it was captured by the Venetians (1503–09).
In 1518 it was enfeoffed to the Pio di Meldola, passing later to the Aldobrandini.
Main sights
The city contains remains of several ancient buildings, one of which probably was the public baths. Furthermore, remains of temples and fortifications have been found, as well as a number of urns, pillars, bronze objects, etc.
The Sarsina cathedral was probably constructed around the years 1000–08, has been chosen as its official year of construction, so that there were festivities in 2008.
Ennio Morricone on 25 August 2008 conducted his newest composition Vuoto d'anima piena, a work for vocals, an orchestra of 40 and a choir of 60 persons, in the cathedral-basilica for the first time. The text is based on texts by the Persian mystic Rumi.
The adjacent Sanctuary of San Vicinio (Saint Vicinius) is a place of veneration.
Economy
Besides agriculture and cattle breeding, the principal employments of the population are the sulphur and manganese industries. There are some charcoal deposits and sulphur springs.
Twin towns
Grebenstein, Germany
Lezoux, France
Lopik, the Netherlands
See also
Bishopric of Sassina
Sources
References
External links
Official website
City of Sarsina
|
Nothobranchius is a genus of small, freshwater killifish, classified in the family Nothobranchiidae in the order Cyprinodontiformes. There are about a hundred species in the genus, many with very small distributions. They are primarily native to East Africa from Sudan to northern South Africa, whereas a dozen species are found in the upper Congo River Basin; the greatest species richness is in Tanzania.
Nothobranchius typically inhabit ephemeral pools that are filled only during the monsoon season, and show extreme life-history adaptations to survive the dry season. When their habitats dry up, the adult fish die and the eggs survive encased in the clay during the dry season. The embryos survive the dry season by entering diapause, facilitated by their specialized eggs that have a very hard chorion and are resistant to desiccation and hypoxia. These species reach maturity very quickly once diapause is broken and have a very short life span; one species, Nothobranchius furzeri, reaches maturity in 17 days and seldom lives beyond 6 months.
Etymology
From Greek νοθοσ / nothos: false, spurious, and βράγχια / bránchia: gill.
Species
There are currently 96 recognized species in this genus:
Nothobranchius albertinensis Nagy, Watters & Bellstedt, 2020
Nothobranchius albimarginatus Watters, Wildekamp & Cooper, 1998
Nothobranchius angelae Watters, Nagy & Bellstedt, 2019
Nothobranchius annectens Watters, Wildekamp & Cooper, 1998
Nothobranchius attenboroughi Nagy, Watters & Bellstedt, 2020
Nothobranchius balamaensis Bragança & Chakona, 2022
Nothobranchius bellemansi Valdesalici, 2014
Nothobranchius bojiensis Wildekamp & Haas, 1992 (Boji Plains nothobranchius)
Nothobranchius boklundi Valdesalici, 2010
Nothobranchius brieni Poll, 1938
Nothobranchius capriviensis Watters, Wildekamp & Shidlovskiy, 2015 (Caprivi nothobranchius)
Nothobranchius cardinalis Watters, Cooper & Wildekamp, 2008 (Cardinal nothobranchius)
Nothobranchius chochamandai Nagy, 2014
Nothobranchius cooperi Nagy, Watters & Bellstedt, 2017
Nothobranchius derhami Valdesalici & Amato, 2019
Nothobranchius ditte Nagy, 2018
Nothobranchius eggersi Seegers, 1982
Nothobranchius elongatus Wildekamp, 1982 (Elongate nothobranchius)
Nothobranchius elucens Nagy, 2021
Nothobranchius fasciatus Wildekamp & Haas, 1992
Nothobranchius flagrans Nagy, 2014
Nothobranchius flammicomantis Wildekamp, Watters & Sainthouse, 1998
Nothobranchius foerschi Wildekamp & Berkenkamp, 1979
Nothobranchius furzeri Jubb, 1971 (Turquoise killifish)
Nothobranchius fuscotaeniatus Seegers, 1997
Nothobranchius geminus Wildekamp, Watters & Sainthouse, 2002
Nothobranchius guentheri (Pfeffer, 1893) (Red-tail nothobranchius)
Nothobranchius hassoni Valdesalici & Wildekamp, 2004
Nothobranchius hengstleri Valdesalici, 2007
Nothobranchius hoermanni Nagy, Watters & Bellstedt, 2020
Nothobranchius insularis Costa, 2017
Nothobranchius interruptus Wildekamp & Berkenkamp, 1979 (Kikambala nothobranchius)
Nothobranchius itigiensis Nagy, Watters & Bellstedt, 2020
Nothobranchius ivanovae Valdesalici, 2012
Nothobranchius janpapi Wildekamp, 1977
Nothobranchius jubbi Wildekamp & Berkenkamp, 1979
Nothobranchius kadleci Reichard, 2010
Nothobranchius kafuensis Wildekamp & Rosenstock, 1989 (Kafue killifish)
Nothobranchius kardashevi Valdesalici, 2012
Nothobranchius kilomberoensis Wildekamp, Watters & Sainthouse, 2002
Nothobranchius kirki Jubb, 1969 (Red-fin nothobranchius)
Nothobranchius korthausae Meinken, 1973
Nothobranchius krammeri Valdesalici & Hengstler, 2008
Nothobranchius krysanovi Shidlovskiy, Watters & Wildekamp, 2010
Nothobranchius kwalensis W. J. E. M. Costa, 2019
Nothobranchius lourensi Wildekamp, 1977
Nothobranchius lucius Wildekamp, Shidlovskiy & Watters, 2009
Nothobranchius luekei Seegers, 1984
Nothobranchius makondorum Wildekamp, Shidlovskiy & Watters, 2009
Nothobranchius malaissei Wildekamp, 1978
Nothobranchius matanduensis Watters, Nagy & Bellstedt, 2020
Nothobranchius melanospilus (Pfeffer, 1896) (Black-spotted nothobranchius)
Nothobranchius microlepis (Vinciguerra, 1897) (Small-scaled nothobranchius)
Nothobranchius milvertzi Nagy, 2014
Nothobranchius mkuziensis (Fowler, 1934)
Nothobranchius moameensis Nagy, Watters & Bellstedt, 2020
Nothobranchius neumanni (Hilgendorf, 1905)
Nothobranchius niassa Valdesalici, Bills, Dorn, Reichwald & Cellerino, 2012
Nothobranchius nikiforovi Nagy, Watters & Raspopova, 2021
Nothobranchius nubaensis Valdesalici, Bellemans, Kardashev & Golubtsov, 2009
Nothobranchius occultus Valdesalici, 2014
Nothobranchius ocellatus (Seegers, 1985)
Nothobranchius oestergaardi Valdesalici & Amato, 2011
Nothobranchius orthonotus (Peters, 1844) (Spotted killifish)
Nothobranchius ottoschmidti Watters, Nagy & Bellstedt, 2019
Nothobranchius palmqvisti (Lönnberg, 1907)
Nothobranchius patrizii (Vinciguerra, 1927) (Blue nothobranchius)
Nothobranchius pienaari Shidlovskiy, Watters & Wildekamp, 2010
Nothobranchius polli Wildekamp, 1978
Nothobranchius prognathus Costa, 2019
Nothobranchius rachovii Ahl, 1926 (Blue-fin nothobranchius)
Nothobranchius robustus Ahl, 1935 (Red victoria nothobranchius)
Nothobranchius rosenstocki Valdesalici & Wildekamp, 2005
Nothobranchius rubripinnis Seegers, 1986
Nothobranchius rubroreticulatus Blache & Miton, 1960
Nothobranchius rungwaensis Watters, Nagy & Bellstedt, 2019
Nothobranchius ruudwildekampi Costa, 2009
Nothobranchius sagittae Wildekamp, Watters & Shidlovskiy, 2014
Nothobranchius sainthousei Nagy, Cotterill & Bellstedt, 2016
Nothobranchius seegersi Valdesalici & Kardashev, 2011
Nothobranchius serengetiensis Wildekamp, Watters & Shidlovskiy, 2014
Nothobranchius skeltoni Watters, Nagy & Bellstedt, 2019
Nothobranchius sonjae Watters, Nagy & Bellstedt, 2019
Nothobranchius steinforti Wildekamp, 1977
Nothobranchius streltsovi Valdesalici (sv), 2016
Nothobranchius symoensi Wildekamp, 1978
Nothobranchius taeniopygus Hilgendorf, 1891 (Striped nothobranchius)
Nothobranchius taiti Nagy, 2019
Nothobranchius torgashevi Valdesalici, 2015
Nothobranchius ugandensis Wildekamp, 1994 (Uganda nothobranchius)
Nothobranchius usanguensis Wildekamp, Watters & Shidlovskiy, 2014
Nothobranchius venustus Nagy, Watters & Bellstedt, 2020
Nothobranchius virgatus Chambers, 1984
Nothobranchius vosseleri Ahl, 1924 (Pangani nothobranchius)
Nothobranchius wattersi Ng'oma, Valdesalici, Reichwald & Cellerino, 2013
Nothobranchius willerti Wildekamp, 1992 (Mnanzini nothobranchius)
References
Nothobranchiidae
Freshwater fish genera
Taxa named by Wilhelm Peters
|
Florence Sireau-Gossiaux (born 25 May 1966) is a paralympic athlete from France competing mainly in category T52 sprint events.
Biography
Gossiaux first competed in the Paralympics in 1988 in the 100m, 200m, 400m, 800m and 1500m winning a silver in the 800m. At the next games in 1992 she again competed in the 100m, 200m 400m and 800m and this time won a silver in the 100m and a bronze in 800m. After missing the 1996 games she next competed in the 2000 Summer Paralympics in the 100m winning a bronze medal and the 300m and 400m.
References
External links
1966 births
Living people
People from L'Isle-Adam, Val-d'Oise
Sportspeople from Val-d'Oise
Paralympic athletes for France
Athletes (track and field) at the 1988 Summer Paralympics
Athletes (track and field) at the 1992 Summer Paralympics
Athletes (track and field) at the 2000 Summer Paralympics
Paralympic silver medalists for France
Paralympic bronze medalists for France
Medalists at the 1988 Summer Paralympics
Medalists at the 1992 Summer Paralympics
Medalists at the 2000 Summer Paralympics
Paralympic medalists in athletics (track and field)
French wheelchair racers
20th-century French women
|
St. Mary's Cathedral is the seat of the Roman Catholic Diocese of Badulla. It was established on 13 September 1881. The annual feast is held on the 2nd Sunday of October. The current church was built by the Rev. Fr. Peter Farina, OSB in the 1950s.
St. Mary's Cathedral featured on Christmas postal stamps and were issued by the Sri Lankan government in 2009.
References
1881 establishments in Asia
19th-century establishments in Ceylon
Roman Catholic churches completed in 1881
Roman Catholic cathedrals in Sri Lanka
Churches in Badulla District
20th-century Roman Catholic church buildings in Sri Lanka
|
```smalltalk
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Kubernetes = Pulumi.Kubernetes;
return await Deployment.RunAsync(() =>
{
var bar = new Kubernetes.Core.V1.Pod("bar", new()
{
ApiVersion = "v1",
Metadata = new Kubernetes.Types.Inputs.Meta.V1.ObjectMetaArgs
{
Namespace = "foo",
Name = "bar",
Labels =
{
{ "app.kubernetes.io/name", "cilium-agent" },
{ "app.kubernetes.io/part-of", "cilium" },
{ "k8s-app", "cilium" },
},
},
Spec = new Kubernetes.Types.Inputs.Core.V1.PodSpecArgs
{
Containers = new[]
{
new Kubernetes.Types.Inputs.Core.V1.ContainerArgs
{
Name = "nginx",
Image = "nginx:1.14-alpine",
Ports = new[]
{
new Kubernetes.Types.Inputs.Core.V1.ContainerPortArgs
{
ContainerPortValue = 80,
},
},
Resources = new Kubernetes.Types.Inputs.Core.V1.ResourceRequirementsArgs
{
Limits =
{
{ "memory", "20Mi" },
{ "cpu", "0.2" },
},
},
},
new Kubernetes.Types.Inputs.Core.V1.ContainerArgs
{
Name = "nginx2",
Image = "nginx:1.14-alpine",
Ports = new[]
{
new Kubernetes.Types.Inputs.Core.V1.ContainerPortArgs
{
ContainerPortValue = 80,
},
},
Resources = new Kubernetes.Types.Inputs.Core.V1.ResourceRequirementsArgs
{
Limits =
{
{ "memory", "20Mi" },
{ "cpu", "0.2" },
},
},
},
},
},
});
// Test that we can assign from a constant without type errors
var kind = bar.Kind;
});
```
|
The Deutsche Telekom eavesdropping controversy became public at the end of May 2008 through an article in the German weekly Der Spiegel. The prosecutor in Bonn has initiated investigations against eight former members of Deutsche Telekom's advisory board, executive board and former employees. The investigation focuses on alleged eavesdropping against journalists and members of the supervisory executive boards of Deutsche Telekom, allegedly initiated by then chairman of the supervisory board Klaus Zumwinkel and then CEO . The objective of the eavesdropping was to find out who had leaked confidential information about planned lay-offs and acquisitions to the media in 2005 and 2006. According to German law half the members of the advisory board of large publicly listed companies have to be representatives of the employees. These were apparently suspected of having leaked the information.
René Obermann, CEO of Deutsche Telekom, cooperated with the public prosecutor, handing over relevant information and allowing his offices to be searched. Moreover, Obermann called on the prestigious former federal judge Dr. to assist Deutsche Telekom in handling the scandal.
A member of the German Bundestag compared the possible impact of the scandal in Germany to the Spiegel affair of 1962. On 24 October 2008, the Big Brother Award 2008 in the category Workplace and Communications was awarded to Telekom for the scandal.
References
2008 scandals
Surveillance scandals
Information privacy
Telecommunications in Germany
Deutsche Telekom
Telephone tapping
2008 in Germany
|
```c++
#ifndef BOOST_MP11_FUNCTION_HPP_INCLUDED
#define BOOST_MP11_FUNCTION_HPP_INCLUDED
//
//
// See accompanying file LICENSE_1_0.txt or copy at
// path_to_url
#include <boost/mp11/integral.hpp>
#include <boost/mp11/utility.hpp>
#include <boost/mp11/detail/mp_list.hpp>
#include <boost/mp11/detail/mp_count.hpp>
#include <boost/mp11/detail/mp_plus.hpp>
#include <boost/mp11/detail/mp_min_element.hpp>
#include <type_traits>
namespace boost
{
namespace mp11
{
// mp_void<T...>
namespace detail
{
template<class... T> struct mp_void_impl
{
using type = void;
};
} // namespace detail
template<class... T> using mp_void = typename detail::mp_void_impl<T...>::type;
// mp_and<T...>
#if BOOST_WORKAROUND( BOOST_MSVC, < 1910 )
namespace detail
{
template<class... T> struct mp_and_impl;
} // namespace detail
template<class... T> using mp_and = mp_to_bool< typename detail::mp_and_impl<T...>::type >;
namespace detail
{
template<> struct mp_and_impl<>
{
using type = mp_true;
};
template<class T> struct mp_and_impl<T>
{
using type = T;
};
template<class T1, class... T> struct mp_and_impl<T1, T...>
{
using type = mp_eval_if< mp_not<T1>, T1, mp_and, T... >;
};
} // namespace detail
#else
namespace detail
{
template<class L, class E = void> struct mp_and_impl
{
using type = mp_false;
};
template<class... T> struct mp_and_impl< mp_list<T...>, mp_void<mp_if<T, void>...> >
{
using type = mp_true;
};
} // namespace detail
template<class... T> using mp_and = typename detail::mp_and_impl<mp_list<T...>>::type;
#endif
// mp_all<T...>
#if BOOST_WORKAROUND( BOOST_MSVC, < 1920 ) || BOOST_WORKAROUND( BOOST_GCC, < 70300 )
template<class... T> using mp_all = mp_bool< mp_count_if< mp_list<T...>, mp_not >::value == 0 >;
#elif defined( BOOST_MP11_HAS_FOLD_EXPRESSIONS )
template<class... T> using mp_all = mp_bool<(static_cast<bool>(T::value) && ...)>;
#else
template<class... T> using mp_all = mp_and<mp_to_bool<T>...>;
#endif
// mp_or<T...>
namespace detail
{
template<class... T> struct mp_or_impl;
} // namespace detail
template<class... T> using mp_or = mp_to_bool< typename detail::mp_or_impl<T...>::type >;
namespace detail
{
template<> struct mp_or_impl<>
{
using type = mp_false;
};
template<class T> struct mp_or_impl<T>
{
using type = T;
};
template<class T1, class... T> struct mp_or_impl<T1, T...>
{
using type = mp_eval_if< T1, T1, mp_or, T... >;
};
} // namespace detail
// mp_any<T...>
#if defined( BOOST_MP11_HAS_FOLD_EXPRESSIONS ) && !BOOST_WORKAROUND( BOOST_GCC, < 70300 )
template<class... T> using mp_any = mp_bool<(static_cast<bool>(T::value) || ...)>;
#else
template<class... T> using mp_any = mp_bool< mp_count_if< mp_list<T...>, mp_to_bool >::value != 0 >;
#endif
// mp_same<T...>
namespace detail
{
template<class... T> struct mp_same_impl;
template<> struct mp_same_impl<>
{
using type = mp_true;
};
template<class T1, class... T> struct mp_same_impl<T1, T...>
{
using type = mp_all<std::is_same<T1, T>...>;
};
} // namespace detail
template<class... T> using mp_same = typename detail::mp_same_impl<T...>::type;
// mp_less<T1, T2>
template<class T1, class T2> using mp_less = mp_bool<(T1::value < 0 && T2::value >= 0) || ((T1::value < T2::value) && !(T1::value >= 0 && T2::value < 0))>;
// mp_min<T...>
template<class T1, class... T> using mp_min = mp_min_element<mp_list<T1, T...>, mp_less>;
// mp_max<T...>
template<class T1, class... T> using mp_max = mp_max_element<mp_list<T1, T...>, mp_less>;
} // namespace mp11
} // namespace boost
#endif // #ifndef BOOST_MP11_FUNCTION_HPP_INCLUDED
```
|
The 1924 All-Ireland Senior Football Championship Final was the 37th All-Ireland Final and the deciding match of the 1924 All-Ireland Senior Football Championship, an inter-county Gaelic football tournament for the top teams in Ireland.
Match
Summary
The Hogan Stand and a new scoreboard were unveiled at Croke Park for this final. Con Brosnan scored the winning point.
Dublin would not win another All-Ireland football title until 1942.
It was the first of three All-Ireland football titles won by Kerry in the 1920s, which made them joint "team of the decade" with Dublin who also won three.
Details
References
All-Ireland Senior Football Championship Final
All-Ireland Senior Football Championship Final, 1924
All-Ireland Senior Football Championship finals
Dublin county football team matches
Kerry county football team matches
|
```javascript
// taken from path_to_url
// originally written by Charlie Robbins, path_to_url
var test = require('tap').test
var toNerfDart = require('../../lib/config/nerf-dart.js')
function validNerfDart (uri, valid) {
if (!valid) valid = '//registry.npmjs.org/'
test(uri, function (t) {
t.equal(toNerfDart(uri), valid)
t.end()
})
}
validNerfDart('path_to_url
validNerfDart('path_to_url
validNerfDart('path_to_url
validNerfDart('path_to_url
validNerfDart('path_to_url#random-hash')
validNerfDart('path_to_url#random-hash')
validNerfDart(
'path_to_url
'//relative.couchapp.npm/design/-/rewrite/'
)
validNerfDart(
'path_to_url
'//relative.couchapp.npm:8080/design/-/rewrite/'
)
validNerfDart(
'path_to_url
'//relative.couchapp.npm:8080/design/-/rewrite/'
)
```
|
Simi Valley Unified School District (SVUSD) is a school district in Ventura County, California. The district serves students from the city of Simi Valley, the census-designated place of Santa Susana, and other adjacent unincorporated areas. SVUSD operates 18 elementary schools, three middle schools, four high schools (including two comprehensive schools, one magnet school, and one continuation school), one adult school, and one independent study school. During the 2014–15 school year, the district's enrollment numbered about 18,000. The current superintendent is Dr. Hani Youssef, who has served since July 2022.
History
Ninth grade move to high schools, Santa Susana High opening
Throughout its early history, the Simi Valley Unified School District educated ninth graders at its junior high schools. This changed in the mid-1990s, when the school board approved a controversial plan to move ninth graders to its high schools. To offset the lower enrollment at the junior high schools, the district converted one of the then four junior high campuses into a magnet high school. Sequoia Junior High School reopened as Santa Susana High School in 1996.
Declining enrollment and school closures
Beginning in 1995, the Simi Valley Unified School District considered closing schools due to what was then early on-set declining enrollment. Simi Elementary School, in the 1990s, was already considered first for school closure due to high maintenance costs and its small size. Other schools considered at the time were Sycamore, Mountain View, and Justin elementary schools. Ultimately, the district voted to not close any school due to backlash from the community, as they had previously closed four schools prior in the 1980s.
Enrollment declines in Simi Valley and the state of California continued into the 2000s. Following a peak of 22,000 in 2003, the number of students in the district reduced to 18,000 in 2013. In response, a committee consisting of administrators, teachers, parents, and community members recommended closing three schools. On January 14, 2014, after hearing public testimony, the committee decided not to close any schools and disbanded.
On January 31, 2014, Simi Elementary School was notified of possible relocation of the school due to the overall condition and safety of the campus. The school was built in 1926 as the first in Simi Valley; Ventura County has named it a Historical Landmark. The issues at hand regarding the facility and infrastructure are:
Broken water mains
Possible broken sewer line under a classroom which has caused the floor to sink
Gas lines underground which are old and brittle causing periodic gas leaks
Deteriorating roofs
A septic tank which is in danger of collapsing
Potential asbestos
Potential rust in water lines
Potential mold
Potential lead
The Inspection was contracted through LI & Associates, Inc. who has been monitoring the infrastructure and safety of the school since November 12, 2012. In the latest report dated January 7, 2014, the company, regarding the administrative building, stated, "During process of our seismic retrofit design on this building, we learned that this building does not have a valid DSA permit. Therefore, this building cannot be used by student per California State regulations."
Due to the cost of needed repairs to the Simi Elementary campus, SVUSD decided to close Simi Elementary. On February 4, 2014, the board voted 4–1 to relocate Simi Elementary to the Mountain View Elementary campus as of February 18, 2014; the school continued to function as a separate school until the end of the 2013–14 school year.
In the fall of the 2014-15 school year, SVUSD made a recommendation to close Abraham Lincoln and Justin elementary schools due to a decline in enrollment and approved the closure in January 2015. Monte Vista School is using the Lincoln campus and Justin
Early Learners Academy is using the Justin campus.
Random drug testing
The SVUSD board voted in 2014 to offer random drug testing of high school students whose parents or legal guardians voluntarily sign them up. In 2002, the U.S. Supreme Court upheld the constitutionality of mandatory drug testing by public schools of students participating in extracurricular activities.
Schools
Elementary schools
Arroyo Elementary School
Atherwood Elementary School
Berylwood Elementary School
Crestview Elementary School
Big Springs Elementary School
Garden Grove Elementary School
Hollow Hills Fundamental School
Katherine Elementary School
Knolls Elementary School
Madera Elementary School
Mountain View Elementary School
Park View Elementary School
Santa Susana Elementary School
Sycamore Elementary School
Township Elementary School
Vista Fundamental School
White Oak Elementary School
Wood Ranch Elementary School
Former elementary schools
Abraham Lincoln Elementary School (1959–2015)
Simi Elementary School (1927–2015)
Walnut Grove Elementary School (1963-1983)
Justin Elementary School
Belwood Elementary School
Middle schools
Hillside Middle School
Sinaloa Middle School
Valley View Middle School
Former middle schools
Sequoia Junior High School (1970–1996, now Santa Susana High School)
High schools
Royal High School
Santa Susana High School
Simi Valley High School
Adult schools
Simi Institute for Careers and Education
Alternative/independent schools
Apollo Continuation School
Monte Vista School (K—12 Independent Study-Homeschool)
Justin Early Learners Academy (Preschool)
Notes
References
External links
School districts in Ventura County, California
|
William Elder (fl. 1680-1700), was a Scottish engraver who worked in London, where he was employed mainly by booksellers.
Works
He engraved many portraits as frontispieces, but was expert as an engraver of writing; his engraved portraits are mostly copied from older engravings. Among these were those of:
Ben Jonson, prefixed to the folio edition of his works (1692) and copied from Vaughan's engraving in the first edition (1616);
John Ray, from a drawing by William Faithorne, prefixed to his Wisdom of God manifested in the Creation (1701);
Theodore de Mayerne;
Dr. Richard Morton, from a picture by Orchard;
Charles Snell, writing-master, from a picture by Hargrave;
William Sancroft, John Pearson, the Earl of Oxford, and others.
He also engraved the plates in John Savage's edition of Richard Knolles and Paul Rycaut's History of the Turks (2 vols. London, 1701). He engraved his own portrait twice, once in a fur cap from a crayon drawing, and again in a wig.
References
Attribution
Year of birth missing
Year of death missing
17th-century engravers
Scottish engravers
|
```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;
}
}
```
|
Jason J. Servis (born April 2, 1957) is an American trainer of Thoroughbred racehorses. He is best known for having trained Maximum Security, who finished first in the 2019 Kentucky Derby but was disqualified for interference.
He is a brother of trainer John Servis, of Smarty Jones fame.
In March 2020, Servis was arrested after having been indicted along with 27 other people by federal authorities on charges related to manufacturing, procuring, distributing and administering illegal substances to racehorses. Servis' trial was scheduled to begin in early 2023, but in December 2022 he accepted a plea deal from the U.S. District Attorney's Office by pleading guilty to two new charges of misbranding and adulterating chemical substances intended to be used in racehorses. The original charges, which carried a potential prison term of 25 years, were dropped. On July 26, 2023, Servis was sentenced to four years in prison, fined $30,000, and ordered to pay restitution. He is scheduled to begin serving his sentence on November 1, 2023.
References
1957 births
Living people
American horse trainers
People from Charles Town, West Virginia
|
The Satin Girl is a 1923 American silent drama film directed by Arthur Rosson and starring Mabel Forrest, Norman Kerry and Marc McDermott. The main themes of the film are amnesia and brainwashing. Lenore Vance, the main character, loses her memory due to shock. A wicked uncle reprograms her into a robber.
Plot
The story revolves around a young woman named Lenore Vance (Mabel Forrest), who loses her memory after witnessing the death of her father Silas Gregg (William H Turner). She commits a series of robberies due to being brainwashed by her elderly, reclusive, chemist uncle named Fargo (Marc Mac Dermott). She later becomes the person of interest in the murder of her father, being labelled by the authorities as "The Satin Girl". A physician named Dr. Richard Taunton (Norman Kerry) meets Lenore at a party thrown by Millie Brown-Potter (Kate Lester), and becomes infatuated with her. After discovering that Lenore has taken pieces of jewelry from himself and Mrs. Potter, he uses a piece of evidence left behind to investigate the crimes himself, and makes the discovery that Fargo is the one who killed Silas. The police are notified, but they discover that he has committed suicide upon arriving at his house. It is later revealed to the audience that the entire story is in a book that Lenore is reading.
Cast
Mabel Forrest as Lenore Vance
Norman Kerry as Dr. Richard Taunton
Marc McDermott as Fargo Gregg
Clarence Burton as Moran
Florence Lawrence as Sylvia
Kate Lester as Millie Brown-Potter
Reed House as Norton Pless
William H. Turner as Silas Gregg
Walter Stephens as Harg
Reception
The film received high praise for its casting upon release. C.S Sewell of The Moving Picture World writes: "Norman Kerry is well cast as the young physician and Marc McDermott is effective as the master-criminal. Mabel Forrest does good work as the girl. The remainder of the cast is satisfactory." One reviewer from Variety says: "Mabel Forrest can act, and does so with skill and intelligence. Then there's Marc McDermott, a character actor who classes with the very best of the screen's handful of the good ones. Norman Kerry gives a dignified portrayal of the M.D., and the contributory parts are unusually well played."
References
Bibliography
Connelly, Robert B. The Silents: Silent Feature Films, 1910-36, Volume 40, Issue 2. December Press, 1998.
External links
1923 films
1923 drama films
1920s English-language films
American silent feature films
Silent American drama films
American black-and-white films
Films directed by Arthur Rosson
Films with screenplays by George H. Plympton
Films about amnesia
Films about mind control
1920s American films
English-language drama films
|
El Pueblo (The People) was a Spanish daily newspaper, the central organ of the Syndicalist Party during the 1930s. The paper had its headquarters in Valencia. It had a moderate republican political stance.
References
Defunct newspapers published in Spain
Mass media in Valencia
Daily newspapers published in Spain
Publications with year of establishment missing
Spanish-language newspapers
|
Lesheng may refer to the following:
Lesheng Township (乐胜乡), a township in Da'an, Jilin, China
Yu Lesheng, a character in the Chinese television series Sinful Debt
Losheng Sanatorium, a sanatoriumfor lepers in Xinzhuang District, New Taipei, Taiwan
Ding Mocun (1901 – 1947), also known as Ding Lesheng (丁勒生; pinyin: Dīng Lèshēng), a politician in the early Republic of China
Huilong metro station, secondary station name Losheng, a station in the Taipei MRT
|
Marie-Rose Carême is a French professional football manager.
Career
Since 2010 he was a head coach of the ASC Le Geldar. From 2013 to 2018 he coached the French Guiana national football team together with Jaïr Karam.
References
External links
Year of birth missing (living people)
Living people
French football managers
French Guiana national football team managers
Place of birth missing (living people)
2017 CONCACAF Gold Cup managers
|
```java
package org.locationtech.jts.triangulate;
import org.locationtech.jts.geom.Geometry;
import junit.textui.TestRunner;
import test.jts.GeometryTestCase;
public class VoronoiDiagramBuilderTest extends GeometryTestCase {
public static void main(String args[]) {
TestRunner.run(VoronoiDiagramBuilderTest.class);
}
public VoronoiDiagramBuilderTest(String name) { super(name); }
public void testClipEnvelope() {
Geometry sites = read("MULTIPOINT ((50 100), (50 50), (100 50), (100 100))");
Geometry clip = read("POLYGON ((0 0, 0 200, 200 200, 200 0, 0 0))");
Geometry voronoi = voronoiDiagram(sites, clip);
assertTrue(voronoi.getEnvelopeInternal().equals(clip.getEnvelopeInternal()));
}
public void testClipEnvelopeBig() {
Geometry sites = read("MULTIPOINT ((50 100), (50 50), (100 50), (100 100))");
Geometry clip = read("POLYGON ((-1000 1000, 1000 1000, 1000 -1000, -1000 -1000, -1000 1000))");
Geometry voronoi = voronoiDiagram(sites, clip);
assertTrue(voronoi.getEnvelopeInternal().equals(clip.getEnvelopeInternal()));
}
private static final double TRIANGULATION_TOLERANCE = 0.0;
public static Geometry voronoiDiagram(Geometry sitesGeom, Geometry clipGeom)
{
VoronoiDiagramBuilder builder = new VoronoiDiagramBuilder();
builder.setSites(sitesGeom);
if (clipGeom != null)
builder.setClipEnvelope(clipGeom.getEnvelopeInternal());
builder.setTolerance(TRIANGULATION_TOLERANCE);
Geometry diagram = builder.getDiagram(sitesGeom.getFactory());
return diagram;
}
}
```
|
```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();
});
});
});
```
|
Salaqi railway station is a station of Jingbao Railway in Inner Mongolia.
See also
List of stations on Jingbao railway
Railway stations in Inner Mongolia
Railway stations in China opened in 1922
|
The 1897–98 Irish League was the 8th edition of the Irish League, the highest level of league competition in Irish football.
The league comprised 6 teams, and Linfield won the championship.
League standings
Results
References
Northern Ireland - List of final tables (RSSSF)
1897-98
1897–98 domestic association football leagues
Lea
|
```objective-c
/* speex_types.h taken from libogg */
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2002 *
* by the Xiph.Org Foundation path_to_url *
* *
********************************************************************
function: #ifdef jail to whip a few platforms into the UNIX ideal.
last mod: $Id$
********************************************************************/
/**
@file speex_types.h
@brief Speex types
*/
#ifndef _SPEEX_TYPES_H
#define _SPEEX_TYPES_H
#if defined(_WIN32)
# if defined(__CYGWIN__)
# include <_G_config.h>
typedef _G_int32_t spx_int32_t;
typedef _G_uint32_t spx_uint32_t;
typedef _G_int16_t spx_int16_t;
typedef _G_uint16_t spx_uint16_t;
# elif defined(__MINGW32__)
typedef short spx_int16_t;
typedef unsigned short spx_uint16_t;
typedef int spx_int32_t;
typedef unsigned int spx_uint32_t;
# elif defined(__MWERKS__)
typedef int spx_int32_t;
typedef unsigned int spx_uint32_t;
typedef short spx_int16_t;
typedef unsigned short spx_uint16_t;
# else
/* MSVC/Borland */
typedef __int32 spx_int32_t;
typedef unsigned __int32 spx_uint32_t;
typedef __int16 spx_int16_t;
typedef unsigned __int16 spx_uint16_t;
# endif
#elif defined(__MACOS__)
# include <sys/types.h>
typedef SInt16 spx_int16_t;
typedef UInt16 spx_uint16_t;
typedef SInt32 spx_int32_t;
typedef UInt32 spx_uint32_t;
#elif (defined(__APPLE__) && defined(__MACH__)) /* MacOS X Framework build */
# include <sys/types.h>
typedef int16_t spx_int16_t;
typedef u_int16_t spx_uint16_t;
typedef int32_t spx_int32_t;
typedef u_int32_t spx_uint32_t;
#elif defined(__BEOS__)
/* Be */
# include <inttypes.h>
typedef int16_t spx_int16_t;
typedef u_int16_t spx_uint16_t;
typedef int32_t spx_int32_t;
typedef u_int32_t spx_uint32_t;
#elif defined (__EMX__)
/* OS/2 GCC */
typedef short spx_int16_t;
typedef unsigned short spx_uint16_t;
typedef int spx_int32_t;
typedef unsigned int spx_uint32_t;
#elif defined (DJGPP)
/* DJGPP */
typedef short spx_int16_t;
typedef int spx_int32_t;
typedef unsigned int spx_uint32_t;
#elif defined(R5900)
/* PS2 EE */
typedef int spx_int32_t;
typedef unsigned spx_uint32_t;
typedef short spx_int16_t;
#elif defined(__SYMBIAN32__)
/* Symbian GCC */
typedef signed short spx_int16_t;
typedef unsigned short spx_uint16_t;
typedef signed int spx_int32_t;
typedef unsigned int spx_uint32_t;
#elif defined(CONFIG_TI_C54X) || defined (CONFIG_TI_C55X)
typedef short spx_int16_t;
typedef unsigned short spx_uint16_t;
typedef long spx_int32_t;
typedef unsigned long spx_uint32_t;
#elif defined(CONFIG_TI_C6X)
typedef short spx_int16_t;
typedef unsigned short spx_uint16_t;
typedef int spx_int32_t;
typedef unsigned int spx_uint32_t;
#else
# include <speex/speex_config_types.h>
#endif
#endif /* _SPEEX_TYPES_H */
```
|
Jonathan Shainin is a journalist and former editor of the Guardian long read. For several years, he was at The New Yorker as a staff writer and fact-checker. Between 2010 and 2013, he acted as senior editor at The Caravan in Delhi before returning to The New Yorker to take up ta position as news editor. Shainin was the editor of the Long Read from its inception in 2014. As editor of the Long Read at The Guardian, Shainin expanded the section and helped to bring back the long form article into a large British newspaper. Shainin has said that 'longform stories tend to defy the theory of short attention spans online.'
In 2002, Shainin co-authored The Other Israel: Voices of Refusal and Dissent, with Roane Carey and Tom Segev. It was published by The New Press.
References
External links
Jonathan Shainin on The Guardian
Jonathan Shainin on The New Yorker
British journalists
British newspaper editors
The Guardian people
The New Yorker people
The New Yorker staff writers
Year of birth missing (living people)
Living people
|
The women's 48 kg competition of the judo events at the 2011 Pan American Games in Guadalajara, Mexico, was held on October 29 at the CODE II Gymanasium. The defending champion was Yanet Bermoy of Cuba.
Schedule
All times are Central Standard Time (UTC-6).
Results
Legend
1st number = Ippon
2nd number = Waza-ari
3rd number = Yuko
Bracket
Repechage round
Two bronze medals were awarded.
References
External links
W48
2011
Pan American Games W48
|
Merriamoceros is an extinct genus of pronghorn. It is known from a single species, which is also the type species, M. coronatus.
Discovery and naming
The type specimen (UCMP 20052) that defines this species is named Merriamoceros coronatus taking after its discoverer, J.M. Merriam. It is known from a partial skull (a single fragmentary horn or antler). Remains of Merriamoceros were found in rock formations dating to the Early Miocene period, 15.9 to 13.6 million years ago. Its type locality is Barstow, which is in a Barstovian terrestrial horizon in the Barstow Formation of California.
Merriamoceros was originally named as a subspecies of Ramoceros, but later J. T. Gregory elevated it to a generic level, stating that its palmate style horns were distinct characteristics and required a separate classification. The developmental series discussed by C. Frick further supports the hypothesis of homology between the horns of Ramoceros and Merriamoceros, with young Merriamoceros presenting three horns, reminiscent of those of Paramoceros. The horn ontogeny of these two separate genera marks an evolutionarily distinct lineage.
Description
Merriamoceros was a prehistoric relative of modern pronghorn (Antilocapra americana), which is a species of artiodactyl mammal indigenous to interior western and central North America. Its remains were found in California, and were characterized by a small body size and palmate horns. It is the oldest known member of the Antilocapridae family, also known as the pronghorns. It was closely related to Ramoceros and Merycodus.
It was, like its relatives, a quadruped herbivore and grazed on the grassy plains of its time. It is not known if Merriamoceros had any predators and much is still unknown about its paleobiology, but it is assumed that it was similar to the present day pronghorn and its extinct relatives. Merriamoceros was covered in a short fur and was likely a good runner. Merriamoceros had some of the most intricate cranial appendages in the family, where the tines were on top and along the outside edges of the horns. Like related species, these were likely initially covered in skin, which gradually rubbed off to expose the bone.
References
Miocene mammals of North America
Miocene even-toed ungulates
Prehistoric pronghorns
Prehistoric even-toed ungulate genera
|
Evergreen School District may refer to:
Evergreen Elementary School District in San Jose, California
Evergreen Local School District in Fulton County, Ohio
Evergreen Public Schools in Clark County, Washington
Evergreen School District No. 50 in Evergreen, Montana
Evergreen Park Community High School District 231 in Evergreen Park, Illinois
Evergreen Park Elementary School District 124 in Evergreen Park, Illinois
See also
Evergreen School (disambiguation)
Evergreen High School (disambiguation)
|
Koringa (also known as Coringa, ) is a branch of the Godavari River flowing in the East Godavari District of Andhra Pradesh, India.
History
The river was also historically known as the Coringa, Koringa, Corangi, Coringuy.
Geography
The Goutami Godavari is the Eastern branch of the Godavari river, that splits at Vijjeswaram, while the Vasista Godavari is the Western branch. Other main branch is Vainateya, which splits at Dowleswaram. Tulya, Atreya and Bharadwaja are minor tributaries.
See also
Yanam, Pondicherry
Godavari River
Rivers of Andhra Pradesh
Geography of East Godavari district
|
During the 2008–09 season Anderlecht competed in the Belgian First Division, Belgian Cup, and Champions League. Anderlecht competed in the Belgian Super Cup as cup-winners, but lost to Standard Liège.
After the 34 league matches, they ended with 77 points tied for first place. As Standard Liège had the same number of points and the same number of matches won, test matches were organised to determine the winner. Anderlecht drew 1–1 at home but then lost 1–0 at Standard and thus ended in second position. In the cup they were eliminated in the early rounds by Mechelen, who progressed on to lose the final.
Anderlecht failed to progress past the second qualifying round of UEFA Champions League.
Players
Transfers 2008-09
Players in
Players out
Loaned out
Competitions
Jupiler Pro League
Classification
Results summary
Results by round
Squad statistics
Squad
Appearances for competitive matches only
Note: during the summer transfer window, Kouyaté and Proto are loaned out while Lamah and Pareja were sold. During the winter transfer window, Goor was sold and Kanu was loaned out.
As of game played May 21, 2009
Scorers
Last updated on May 21, 2009.
Per Competition
Per Match
The list of matches is chronological, as presented at the list of competitive matches.
A '-' denotes the player was at that time not on the books of Anderlecht.
Disciplinary record
Competitive Matches
See also
List of R.S.C. Anderlecht seasons
Notes
R.S.C. Anderlecht seasons
Anderlecht
|
```objective-c
/*
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef API_AUDIO_CODECS_G711_AUDIO_ENCODER_G711_H_
#define API_AUDIO_CODECS_G711_AUDIO_ENCODER_G711_H_
#include <memory>
#include <vector>
#include "absl/types/optional.h"
#include "api/audio_codecs/audio_codec_pair_id.h"
#include "api/audio_codecs/audio_encoder.h"
#include "api/audio_codecs/audio_format.h"
#include "rtc_base/system/rtc_export.h"
namespace webrtc {
// G711 encoder API for use as a template parameter to
// CreateAudioEncoderFactory<...>().
struct RTC_EXPORT AudioEncoderG711 {
struct Config {
enum class Type { kPcmU, kPcmA };
bool IsOk() const {
return (type == Type::kPcmU || type == Type::kPcmA) &&
frame_size_ms > 0 && frame_size_ms % 10 == 0 && num_channels >= 1;
}
Type type = Type::kPcmU;
int num_channels = 1;
int frame_size_ms = 20;
};
static absl::optional<AudioEncoderG711::Config> SdpToConfig(
const SdpAudioFormat& audio_format);
static void AppendSupportedEncoders(std::vector<AudioCodecSpec>* specs);
static AudioCodecInfo QueryAudioEncoder(const Config& config);
static std::unique_ptr<AudioEncoder> MakeAudioEncoder(
const Config& config,
int payload_type,
absl::optional<AudioCodecPairId> codec_pair_id = absl::nullopt);
};
} // namespace webrtc
#endif // API_AUDIO_CODECS_G711_AUDIO_ENCODER_G711_H_
```
|
The International Day for the Eradication of Poverty is an international observance celebrated each year on October 17 throughout the world. The first commemoration, "World Day to Overcome Poverty" took place in Paris, France, in 1987 when 100,000 people gathered on the Human Rights and Liberties Plaza at the Trocadéro to honour victims of poverty, hunger, violence, and fear at the unveiling of a commemorative stone by Joseph Wresinski, founder of the International Movement ATD Fourth World. In 1992, four years after Wresinski's death, the United Nations officially designated October 17 as the International Day for the Eradication of Poverty.
The October 17 Commemorative Stone, that Father Joseph Wesinski unveiled at the Trocadero Plaza in 1987 is recognised as a symbol of humanity, which enshrines his words
To date, there is a total of 53 replicas of the Commemorative Stone around the world including countries like Belgium, Burkina Faso, Canada, Germany, Philippines, Portugal Reunion Island, Switzerland, the UK and the USA. Replicas of the commemorative stone can also be found at the Council of Europe in Strasbourg and the United Nations headquarters in New York.
The International Day for the Eradication of Poverty promotes dialogue and understanding between people living in poverty and their communities, and society at large. “It represents an opportunity to acknowledge the efforts and struggles of people living in poverty, a chance for them to make their concerns heard and a moment to recognise that poor people are in the forefront in the fight against poverty.” (United Nations, Report of the Secretary General, A/61/308, para. 58).
The International Committee for October 17 was launched in 2008 to promote the International Day for the Eradication of Poverty in its founding spirit. The composition of the committee is unique with members including people with lived experience of extreme poverty and human rights defenders engaged in the fight against poverty. Every year, the International Committee engages in a consultation process through the Forum on Overcoming Poverty to select a theme for the annual observance of October 17 by the UN with input from people with lived experience of poverty.
Purpose and philosophy
Early in his career as an activist, Wresinski recognized that governments often ignored the plight of those living in poverty, leading to feelings of rejection, shame, and humiliation. As a result, one of the primary goals of the Day is to recognize the struggles of the impoverished and to make their voices heard by governments and citizens. Participation by the poorest of people is an important aspect of the observance of the Day.
See also
International Year of the Child
Poverty reduction
References
External links
International Day for the Eradication of Poverty (UN official site)
October 17, World Day to Overcome Extreme Poverty
International Movement ATD Fourth World
International day for eradication of poverty theme
Poverty activism
Eradication of poverty
October observances
1987 introductions
|
Chrysactinia acerosa is a Mexican species of flowering plant in the family Asteraceae. It is native to the states of Nuevo León and San Luis Potosí of northeastern Mexico.
Chrysactinia acerosa is a small evergreen subshrub rarely more than 20 cm (8 inches) tall. It is branched, with very narrow, needle-like leaves. Flower heads have yellow ray flowers and yellow disc flowers. Achenes are black. The species grows in dry locations in desert regions.
References
External links
Photo of herbarium specimen collected in Nuevo León
Flora of Northeastern Mexico
Tageteae
Plants described in 1916
|
The M43 motorway () is a Hungarian motorway that runs from the junction with the M5 Motorway west of Szeged to the Romanian border at Nagylak via Makó. Since 2015 it connects Hungary with Romania as the first border crossing on a motorway between the two countries.
Openings timeline
1: Szeged; M5 – Szeged-north (3 km): 2005.12.10.
2/A: Szeged-north – Szeged-Sándorfalva (4.4 km): 2010.04.01.
2/B: Szeged-Sándorfalva – Szeged-Hódmezővásárhely (3.3 km): 2010.10.07.
2/C: Szeged-Hódmezővásárhely – Makó (23.9 km): 2011.04.09.
3: Makó – Csanádpalota ( border) (23.1 km): 2015.07.11.
Junctions, exits and rest area
The route is full length motorway. The maximum speed limit is 130km/h, with (2x2 lane road with stop lane).
Maintenance
The operation and maintenance of the road by Hungarian Public Road Nonprofit Pte Ltd Co. This activity is provided by this highway engineer.
near Makó, kilometre trench 35
Payment
From February 1, 2016, the M43 motorway is fully charged. The motorway can be used instead of the national sticker with the following county stickers:
European Route(s)
Significant artifacts
Bridge
Ferenc Móra Bridge (; ) over Tisza river
See also
Roads in Hungary
Transport in Hungary
International E-road network
External links
National Toll Payment Services Plc. (in Hungarian, some information also in English)
Hungarian Public Road Non-Profit Ltd. (Magyar Közút Nonprofit Zrt.)
National Infrastructure Developer Ltd.
43
|
Pseudochromis dutoiti is a species of ray-finned fish
from the Western Indian Ocean: In the north from Pakistan, south to Durban, South Africa which is a member of the family Pseudochromidae. This species reaches a length of .
References
Smith, M.M., 1986. Pseudochromidae. p. 539-541. In M.M. Smith and P.C. Heemstra (eds.) Smiths' sea fishes. Springer-Verlag, Berlin.
dutoiti
Taxa named by J. L. B. Smith
Fish described in 1955
|
Plumbaginales is an order of flowering plants. The order is recognized by several systems, such as the Wettstein system, last revised in 1935, the Engler system, in its update of 1964 and the Cronquist system, 1981. Its circumscription is typically:
order Plumbaginales
family Plumbaginaceae
Cronquist placed this order in his subclass Caryophyllidae of three orders.
References
Historically recognized angiosperm orders
|
How Stella Got Her Groove Back is a 1998 American romantic comedy-drama film directed by Kevin Rodney Sullivan, adapted from Terry McMillan's best-selling 1996 novel of the same title. The film stars Angela Bassett, Taye Diggs (in his film debut), Whoopi Goldberg, and Regina King. The original music score was composed by Michel Colombier.
Plot
Stella Payne, a very successful 40-year-old stockbroker, is a single parent raising her 11-year-old son Quincy in Marin County, California. Her friends and family chastise her for being without a relationship for too long.
Stella sends Quincy to his father's for two weeks and then, seeing an ad for Jamaican vacations, spontaneously calls her best friend from college, Delilah Abraham in New York City to propose a visit. While declining to join her, her friend instead persuades her to take a first-class vacation to Montego Bay, Jamaica.
As Stella soaks in the beauty of the island on her first morning there, she encounters a handsome young islander at breakfast. Winston Shakespeare is a chef's assistant and twenty years her junior, but very interested in her. He suggests they meet later at the hotel's disco pajama party.
Winston's pursuit of Stella turns into a blossoming romance that is abruptly interrupted when a chef hires him as an assistant, which prevents her from seeing him for the rest of her trip. On her return to California, she discovers that a merger with another company has phased out her job.
Winston convinces Stella to return, which she does with Quincy and his cousin. Delilah gives her a supportive call, then Stella is taken to meet his mother, who shames her as they are the same age. That, along with a call from Delilah's oncologist, forces her to take personal inventory of her life.
Stella flies to New York to be with the dying Delilah. When removing cancer from one part of her body, the surgeon finds a metastasis in her liver. The two friends are able to spend some time together in the hospital room before Delilah dies. Winston comes to New York for the funeral and then flies with Stella and her companions to California.
Upon arriving home Stella's family, and even her ex, welcome Winston. After a short while, tensions rise and they fight. He thinks she's ashamed to be seen with him and he finds her controlling, and she grows annoyed with his immaturity and youthful taste. Winston surprises her by fixing up her carpentry workshop.
Stella's old brokerage calls try to lure her back with the offer of a vice-president's position and a $275,000 salary, which she turns down to try to found her own firm. Amidst all her stress, Winston proposes. Stella temporises and dithers over her decision.
After a week without an answer, Winston announces that he intends to go back to Jamaica and enroll in medical school, and takes a taxi to the airport. Stella intercepts him in the terminal and says yes to his proposal, having realized the need for balance between love and companionship and her responsibilities as a mother.
Cast
Angela Bassett as Stella Payne
Taye Diggs as Winston Shakespeare
Whoopi Goldberg as Delilah Abraham
Regina King as Vanessa
Suzzanne Douglas as Angela
Michael J. Pagan as Quincy Payne
Sicily as Chantel
Richard Lawson as Jack
Barry Shabaka Henley as Buddy
Lee Weaver as Nate
Glynn Turman as Dr. Shakespeare
Phyllis Yvonne Stickney as Mrs. Shakespeare
Denise Hunt as Ms. Thang
James Pickens, Jr. as Walter Payne
Carl Lumbly as Judge Spencer Boyle
Victor Garber (uncredited) as Isaac
Reception
Critical reception was mixed.
On Rotten Tomatoes, the film has an approval rating of 50% based on 50 reviews, with an average rating of 5.5/10. The website's critics consensus reads: "Angela Bassett gracefully breezes through a hot summer fling without much conflict or ado, leaving us wondering when -- or if -- she's ever getting that groove back." On Metacritic, the film has a score of 56 out of 100, based on reviews from 23 critics, indicating "mixed or average reviews". Audiences surveyed by CinemaScore gave the film a grade A−.
Box office
In its opening weekend, Stella grossed $11,318,919, ranking #2 in the domestic box office behind Saving Private Ryans fourth weekend. The film would go on to gross $36,672,941 domestically and an additional $1,605,781 overseas for a worldwide total of $39,278,722, from an estimated $20 million budget.
25th Anniversary
A panel with Angela Bassett and director Kevin Rodney Sullivan took place at the Tribeca Film Festival in June 2023. The two reflected on their experiences, offering insights into their acting and directorial decisions.
Soundtrack
A soundtrack containing mostly R&B and reggae was released on August 11, 1998, by MCA Records. It peaked at number eight on the Billboard 200 and number three on the Top R&B/Hip-Hop Albums chart, and was certified gold on September 22, 1998.
Accolades
1999 Acapulco Black Film Festival
Best Actress – Angela Bassett (won)
Best Actor – Taye Diggs (nominated)
Best Actress – Whoopi Goldberg (won)
Best Director – Kevin Rodney Sullivan (nominated)
Best Film (won)
Best Screenplay – Terry McMillan (nominated)
Best Soundtrack (won)
1999 NAACP Image Awards
Outstanding Lead Actress in a Motion Picture – Angela Bassett (won)
Outstanding Motion Picture (won)
Outstanding Supporting Actress in a Motion Picture – Whoopi Goldberg (won)
Outstanding Youth Actor/Actress – Michael J. Pagan (won)
See also
Shirley Valentine
References
External links
1998 films
1998 comedy-drama films
1998 directorial debut films
1990s buddy comedy-drama films
1990s female buddy films
1998 romantic comedy-drama films
20th Century Fox films
African-American romantic comedy-drama films
American buddy comedy-drama films
American female buddy films
1990s English-language films
Films about vacationing
Films based on American novels
Films based on romance novels
Films directed by Kevin Rodney Sullivan
Films scored by Michel Colombier
Films set in Jamaica
Films set in San Francisco
Films shot in Jamaica
Films shot in Los Angeles County, California
Films shot in San Francisco
Films with screenplays by Ronald Bass
1990s American films
|
The Guilds of the City of Dublin were associations of trade and craft practitioners, with regulatory, mutual benefit and shared religious purposes. In their eventual number they were sometimes called the "25 minor corporations", in contrast to the city's principal authority, the Dublin Corporation). They operated in various forms from near the time of the Norman invasion of Ireland - the Merchants’ Guild existed in some form by 1192 - until the mid-19th century, and a few of which have descendent operations to the present day.
The guild system in Ireland was first established under a royal charter from Prince John in 1192. It largely ceased between 1840 and 1845, but subsequently some guilds developed residual activities.
The Guilds elected 96 of the up to 144 members of the Common Council, the lower house of the City Assembly, the governing body of Dublin Corporation, with 31 seats controlled by the Merchants Guild, and each of the others electing 2, 3 or 4 Common Councillors. The remainder of the Common Council consisted of up to 48 Sheriffs' Peers, former holders of the office of Sheriff of Dublin City, while the upper house of the Assembly was the Board of Aldermen, with 24 aldermen, the Lord Mayor of Dublin, elected from a slate of nominated aldermen, and two Sheriffs, who had to have a certain level of property value.
List of Guilds of the City of Dublin
See also
Guild
Guildhall
Livery company
Brotherhood of Saint George - a short-lived Dublin military guild
References
Notes
Guilds in Ireland
Economy of Dublin (city)
|
Ken Flaton (June 28, 1940 – November 7, 2004) was an American professional poker player who was born in New York City, New York and settled in Henderson, Nevada after serving in the US Army.
Flaton won a World Series of Poker (WSOP) bracelet in 1983 in the $1,000 seven-card stud event. He also finished in the money of the $10,000 no limit hold'em main event in 1986 (28th), 1988 (23rd), 1990 (31st), and 1997 (18th).
Flaton won the first United States Poker Championship in 1996 and competed in the World Poker Tour (WPT).
Both Flaton and his peers have suggested that seven-card stud was his best game.
Flaton died in November 2004 at St. Rose Dominican Hospital – Siena Campus, aged 64. He died of a heart attack, although he was suffering from lung cancer at the time, despite being a non-smoker.
His total live tournament winnings were at least $2,575,000. His 39 cashes at the WSOP accounted for $568,525 of his lifetime winnings.
Nickname
Flaton got his nickname, "Skyhawk", when fellow professional Stu Ungar, after seeing Flaton spread his arms and then rake in the pot while in a poker tournament, commented that Flaton "swooped down on piles of chips like a 'skyhawk.'"
References
1940 births
2004 deaths
American poker players
World Series of Poker bracelet winners
Sportspeople from New York City
|
A turbo generator is an electric generator connected to the shaft of a steam turbine or gas turbine for the generation of electric power. Large steam-powered turbo generators provide the majority of the world's electricity and are also used by steam-powered turbo-electric ships.
Small turbo-generators driven by gas turbines are often used as auxiliary power units (APU, mainly for aircraft).
History
The first turbo-generators were electric generators powered by water turbines. The first Hungarian water turbine was designed by the engineers of the Ganz Works in 1866; industrial-scale production with dynamo generators started only in 1883. Engineer Charles Algernon Parsons demonstrated a DC steam-powered turbo generator using a dynamo in 1887, and by 1901 had supplied the first large industrial AC turbo generator of megawatt power to a plant in Eberfeld, Germany.
Turbo generators were also used on steam locomotives as a power source for coach lighting and water pumps for heating systems.
Construction features
Turbo generators are used for high shaft rotational speeds, typical of steam and gas turbines. The rotor of a turbo generator is a non-salient pole type usually with two poles.
The normal speed of a turbo generator is 1500 or 3000 rpm with four or two poles at 50 Hz (1800 or 3600 rpm with four or two poles at 60 Hz). The rotating parts of a turbo generator are subjected to high mechanical stresses because of the high operation speed. To make the rotor mechanically resistant in large turbo-alternators, the rotor is normally forged from solid steel and alloys like chromium-nickel-steel or chromium-nickel-molybdenum are used. The overhang of windings at the periphery will be secured by steel retaining rings. Heavy non-magnetic metal wedges on top of the slots hold the field windings against centrifugal forces. Hard composition insulating materials, like mica and asbestos, are normally used in the slots of rotor. These material can withstand high temperatures and high crushing forces.
The stator of large turbo generators may be built of two or more parts while in smaller turbo-generators it is built up in one complete piece.
Hydrogen-cooled turbo generator
Based on the air-cooled turbo generator, gaseous hydrogen first went into service as the coolant in a hydrogen-cooled turbo generator in October 1937, at the Dayton Power & Light Co. in Dayton, Ohio. Hydrogen is used as the coolant in the rotor and sometimes the stator, allowing an increase in specific utilization and a 99.0% efficiency. Because of the high thermal conductivity, high specific heat and low density of hydrogen gas, this is the most common type in its field today. The hydrogen can be manufactured on-site by electrolysis.
The generator is hermetically sealed to prevent escape of the hydrogen gas. The absence of oxygen in the atmosphere within significantly reduces the damage of the windings' insulation by eventual corona discharges. The hydrogen gas is circulated within the rotor enclosure, and cooled by a gas-to-water heat exchanger.
See also
Alternator
Thermal power station
Notes
References
External links
Small Turbo-generator for DG & Hybrids
Electrical generators
Turbines
|
```xml
import * as React from 'react';
import Icon from '../icon';
import type { IconProps } from '../icon';
const SvgWarningCircle = (props: IconProps, svgRef?: React.Ref<SVGSVGElement>) => {
const newProps = { ...props, name: 'SvgWarningCircle' };
return React.createElement(Icon, {
...newProps,
component: () => (
<svg
width="1em"
height="1em"
viewBox="0 0 1000 1000"
fill="currentColor"
focusable={false}
aria-hidden="true"
ref={svgRef}
>
<g fillRule="evenodd">
<g>
<path
d="M499.938 937.383c241.594 0 437.445-195.851 437.445-437.445 0-241.595-195.851-437.446-437.445-437.446-241.595 0-437.446 195.851-437.446 437.446 0 241.594 195.851 437.445 437.446 437.445zm0 62.492C223.83 999.875 0 776.045 0 499.938 0 223.83 223.83 0 499.938 0c276.107 0 499.937 223.83 499.937 499.938 0 276.107-223.83 499.937-499.937 499.937z"
fillRule="nonzero"
/>
<path d="M459.326 227.299c-.144-6.462 4.47-11.701 11.242-11.701h64.988c6.353 0 11.394 4.913 11.242 11.7l-9.254 414.045c-.144 6.462-5.632 11.7-11.563 11.7h-45.838c-6.241 0-11.411-4.912-11.563-11.7l-9.254-414.044zm43.736 556.978c-24.16 0-43.744-19.585-43.744-43.745 0-24.159 19.585-43.744 43.744-43.744 24.16 0 43.745 19.585 43.745 43.744 0 24.16-19.585 43.745-43.745 43.745z" />
</g>
</g>
</svg>
),
});
};
const ForwardRef = React.forwardRef(SvgWarningCircle);
export default ForwardRef;
```
|
List of notable Nivkh (Gilyak) settlements in Sakhalin Island and the Lower Amur River. Prior to 1905 settlements are listed from north to south in their geographical categories with most settlement names in the Nivkh language or in the only know given Russian name.
Nivkh population in 2002
According to the Russian Census of 2002 most Nivkhs have lived in following districts: Ulchsky, Nikolayevsky of Khabarovsk Krai and Alexandrovsk-Sakhalinsky, Nogliksky, Okhinsky of Sakhalin Oblast. Some Nivkhs live outside of their native area in big citites of Khabarovsk, Yuzhno-Sakhalinsk and Poronaysk.
Nivkh settlements before 1905
Amur Estuary
Nikolaevsk
Lazatev
West Sakhalin Coast
Tamlavo
Ngyl'vo
Valuevo
Langry
Chingai
Pyrki
Pogibi
Uandi
Ytyk'
Viakhtu
Khoe
Tangi
Arkovo
Port Aleksandrovsk
Sakhalin Bay
Rybnoe
Visk'vo
Pomyt'
Nil'vo
Matnyr'
Ngyd'
Koibgervo
East Sakhalin Coast
Khankes'
Urkdt'
Pil'tun (island)
Kakervo
Kharkor'vo
Chaivo
Lad'vo
Tyrmyts'
Vachi
Mil'kovo
Tagry
Lub'vo
Lung'yo
Nappi
Ngamb'vo
Tym River
Yukyr'
Chkharvo
Slavo
Uskovo
Tymovo
Rykovskoe
Footnotes
References
Black, Lydia (1973) Nivkh (Gilyak) of Sakhalin and the Lower Amur. Arctic Anthropology. Volume 10 No.1 p. 94
Shternberg, Lev Iakovlevich and Bruce Grant. (1999) The Social Organization of the Gilyak. New York: American Museum of Natural History. Seattle: University of Washington Press
External links
The Nivkhs from The Red Book
Nivkh
Lists of place names
Sakhalin
Khabarovsk Krai
Rural localities in Khabarovsk Krai
Geography of Sakhalin Oblast
|
```xml
jest.mock('../insertable-streams')
jest.mock('simple-peer')
jest.mock('../window')
import React from 'react'
import ReactDOM from 'react-dom'
import TestUtils from 'react-dom/test-utils'
import { Provider } from 'react-redux'
import { applyMiddleware, createStore } from 'redux'
import SimplePeer from 'simple-peer'
import { getDesktopStream, MediaKind, DisplayMediaConstraints, toggleDevice } from '../actions/MediaActions'
import { removeLocalStream, StreamTypeCamera, StreamTypeDesktop, AddLocalStreamPayload } from '../actions/StreamActions'
import { DialState, DIAL_STATE_IN_CALL, MEDIA_ENUMERATE, MEDIA_STREAM, MEDIA_TRACK, MEDIA_TRACK_ENABLE, PEER_ADD } from '../constants'
import reducers from '../reducers'
import { LocalStream } from '../reducers/streams'
import { middlewares, Store } from '../store'
import { MediaStream, MediaStreamTrack } from '../window'
import Toolbar, { ToolbarProps } from './Toolbar'
import { deferred } from '../deferred'
import { insertableStreamsCodec } from '../insertable-streams'
import { makeAction } from '../async'
import { MediaConstraint } from '../reducers/media'
import { blackTrack } from '../__mocks__/window'
import { sidebarPanelChat } from '../actions/SidebarActions'
interface StreamState {
cameraStream: LocalStream | null
desktopStream: LocalStream | null
}
class ToolbarWrapper extends React.PureComponent<ToolbarProps, StreamState> {
state = {
cameraStream: null,
desktopStream: null,
}
render () {
return <Toolbar
sidebarPanel={this.props.sidebarPanel}
sidebarVisible={this.props.sidebarVisible}
dialState={this.props.dialState}
nickname={this.props.nickname}
onToggleSidebar={this.props.onToggleSidebar}
onHangup={this.props.onHangup}
onGetDesktopStream={this.props.onGetDesktopStream}
onRemoveLocalStream={this.props.onRemoveLocalStream}
messagesCount={this.props.messagesCount}
desktopStream={this.state.desktopStream || this.props.desktopStream}
/>
}
}
let node: Element
let onToggleChat: jest.Mock<() => void>
let onHangup: jest.Mock<() => void>
let onGetDesktopStream: jest.MockedFunction<typeof getDesktopStream>
let onRemoveLocalStream: jest.MockedFunction<typeof removeLocalStream>
let desktopStream: LocalStream | undefined
let dialState: DialState
const nickname = 'john'
async function render (store: Store) {
dialState = DIAL_STATE_IN_CALL
onToggleChat = jest.fn()
onHangup = jest.fn()
onGetDesktopStream = jest.fn().mockImplementation(() => Promise.resolve())
onRemoveLocalStream = jest.fn()
const div = document.createElement('div')
await new Promise<ToolbarWrapper>(resolve => {
ReactDOM.render(
<Provider store={store}>
<ToolbarWrapper
ref={instance => resolve(instance!)}
dialState={dialState}
sidebarVisible
sidebarPanel={sidebarPanelChat}
onHangup={onHangup}
onToggleSidebar={onToggleChat}
messagesCount={1}
nickname={nickname}
desktopStream={desktopStream}
onGetDesktopStream={onGetDesktopStream}
onRemoveLocalStream={onRemoveLocalStream}
/>
</Provider>,
div,
)
})
node = div
}
describe('components/Toolbar', () => {
let store: Store
beforeEach(async () => {
store = createStore(reducers, applyMiddleware(...middlewares))
await render(store)
})
describe('handleChatClick', () => {
it('toggle chat', () => {
expect(onToggleChat.mock.calls.length).toBe(0)
const button = node.querySelector('.toolbar-btn-chat')!
TestUtils.Simulate.click(button)
expect(onToggleChat.mock.calls.length).toBe(1)
})
})
describe('handleFullscreenClick', () => {
it('toggle fullscreen', () => {
const button = node.querySelector('.fullscreen')!
TestUtils.Simulate.click(button)
expect(button.classList.contains('on')).toBe(false)
})
})
describe('handleHangoutClick', () => {
it('hangout', () => {
const button = node.querySelector('.hangup')!
TestUtils.Simulate.click(button)
expect(window.location.href).toBe('path_to_url
})
})
describe('onHangup', () => {
it('calls onHangup callback', () => {
expect(onHangup.mock.calls.length).toBe(0)
const hangup = node.querySelector('.hangup')!
expect(hangup).toBeDefined()
TestUtils.Simulate.click(hangup)
expect(onHangup.mock.calls.length).toBe(1)
})
})
describe('desktop sharing menu', () => {
let track1: MediaStreamTrack
let track2: MediaStreamTrack
beforeEach(() => {
onGetDesktopStream.mockImplementation(makeAction(
MEDIA_STREAM,
async (
constraints: DisplayMediaConstraints = {audio: true, video: false},
) => {
track1 = new MediaStreamTrack()
track2 = new MediaStreamTrack()
const stream = new MediaStream()
stream.addTrack(track1)
stream.addTrack(track2)
const payload: AddLocalStreamPayload = {
stream: stream,
type: StreamTypeDesktop,
}
return payload
},
))
})
it('starts desktop sharing with audio', async () => {
const menu = node.querySelector('.stream-desktop')!
expect(menu).toBeDefined()
TestUtils.Simulate.click(menu)
const shareDesktop = node.querySelectorAll('.stream-desktop-menu li')[1]
expect(shareDesktop).toBeTruthy()
TestUtils.Simulate.click(shareDesktop)
expect(onRemoveLocalStream.mock.calls.length).toBe(0)
expect(onGetDesktopStream.mock.calls).toEqual([[ {
audio: true,
video: true,
} ]])
})
it('starts video-only desktop sharing', async () => {
const menu = node.querySelector('.stream-desktop')!
expect(menu).toBeDefined()
TestUtils.Simulate.click(menu)
const shareDesktop = node.querySelectorAll('.stream-desktop-menu li')[2]
expect(shareDesktop).toBeTruthy()
TestUtils.Simulate.click(shareDesktop)
expect(onRemoveLocalStream.mock.calls.length).toBe(0)
expect(onGetDesktopStream.mock.calls).toEqual([[ {
audio: false,
video: true,
} ]])
})
it('stops desktop sharing', async () => {
const stream = new MediaStream()
desktopStream = {
stream,
streamId: stream.id,
type: StreamTypeDesktop,
mirror: false,
}
await render(store)
const menu = node.querySelector('.stream-desktop')!
expect(menu).toBeDefined()
TestUtils.Simulate.click(menu)
const shareDesktop = node.querySelectorAll('.stream-desktop-menu li')[0]
expect(shareDesktop).toBeTruthy()
TestUtils.Simulate.click(shareDesktop)
expect(onRemoveLocalStream.mock.calls)
.toEqual([[ desktopStream.stream, StreamTypeDesktop ]])
expect(onGetDesktopStream.mock.calls.length).toBe(0)
})
it('stops desktop sharing before switching streams', async () => {
const stream = new MediaStream()
desktopStream = {
stream,
streamId: stream.id,
type: StreamTypeDesktop,
mirror: false,
}
await render(store)
const menu = node.querySelector('.stream-desktop')!
expect(menu).toBeDefined()
TestUtils.Simulate.click(menu)
const shareDesktop = node.querySelectorAll('.stream-desktop-menu li')[1]
expect(shareDesktop).toBeTruthy()
TestUtils.Simulate.click(shareDesktop)
expect(onRemoveLocalStream.mock.calls)
.toEqual([[ desktopStream.stream, StreamTypeDesktop ]])
expect(onGetDesktopStream.mock.calls).toEqual([[ {
audio: true,
video: true,
} ]])
})
})
describe('share / copy invitation url', () => {
let promise: Promise<string>
beforeEach(() => {
promise = new Promise<string>(resolve => {
(navigator.clipboard as any) = {}
navigator.clipboard.writeText = async text => {
resolve(text)
}
})
})
it('copies invite url using navigator.clipboard', async () => {
await render(store)
const copyUrl = node.querySelector('.copy-url')!
expect(copyUrl).toBeDefined()
TestUtils.Simulate.click(copyUrl)
const result = await promise
expect(result).toMatch(/john has invited you/)
})
it('opens share dialog when available', async () => {
let res: (value: any) => void
const p = new Promise<any>(resolve => res = resolve)
;(navigator as any).share = (value: any) => res(value)
await render(store)
const copyUrl = node.querySelector('.copy-url')!
expect(copyUrl).toBeDefined()
TestUtils.Simulate.click(copyUrl)
expect(await p).toEqual({
title: 'Peer Call',
text: 'john has invited you to a meeting on Peer Calls',
url: jasmine.stringMatching(/^http/),
})
})
})
})
describe('components/Toolbar track dropdowns', () => {
let store: Store
let stream: MediaStream
let peer: SimplePeer.Instance
const peerId = 'peer-1'
let [ promise, resolve ] = deferred<void>()
beforeEach(async () => {
peer = new SimplePeer()
stream = new MediaStream()
;[promise, resolve ] = deferred<void>()
const _reducers: typeof reducers = (state, action) => {
if (
action.type === MEDIA_TRACK_ENABLE ||
action.type === MEDIA_TRACK &&
(action as any).status === 'resolved'
) {
resolve()
}
return reducers(state, action)
}
store = createStore(
_reducers,
applyMiddleware(...middlewares),
)
store.dispatch({
type: PEER_ADD,
payload: {
peerId: peerId,
peer,
},
})
store.dispatch({
type: MEDIA_ENUMERATE,
status: 'resolved',
payload: [{
id: 'cam1',
name: 'Camera',
type: 'videoinput',
}, {
id: 'mic1',
name: 'Microphone',
type: 'audioinput',
}],
})
await render(store)
})
describe('mic and camera dropdowns', () => {
let audioTrack: MediaStreamTrack
let videoTrack: MediaStreamTrack
beforeEach(() => {
audioTrack = new MediaStreamTrack()
;(audioTrack.kind as any) = 'audio'
videoTrack = new MediaStreamTrack()
;(videoTrack.kind as any) = 'video'
window.navigator.mediaDevices.getUserMedia =
async (constraints: MediaStreamConstraints) => {
const stream = new MediaStream()
if (!constraints.audio && !constraints.video) {
// mimic browser behavior
throw new Error('Audio or video must be defined')
}
if (constraints.audio) {
stream.addTrack(audioTrack)
}
if (constraints.video) {
stream.addTrack(videoTrack)
}
return stream
}
})
function getDevices(kind: MediaKind): Element[] {
const button = node.querySelector('.dropdown .' + kind)!
const items = button.parentElement!.querySelectorAll('li.device')
expect(items).toBeDefined()
return Array.from(items)
}
function getQualityButtons(): Element[] {
const button = node.querySelector('.dropdown .video')!
const items = button.parentElement!.querySelectorAll('li.quality')
expect(items).toBeDefined()
return Array.from(items)
}
describe('no local stream', () => {
it('track disable does nothing when no local stream', async () => {
const devices = getDevices('video')
// add track
TestUtils.Simulate.click(devices[1])
await promise
;[promise, resolve] = deferred<void>()
// disable track
TestUtils.Simulate.click(devices[0])
await promise
;[promise, resolve] = deferred<void>()
// enable
TestUtils.Simulate.click(devices[1])
await promise
})
})
describe('existing camera stream', () => {
beforeEach(() => {
store.dispatch({
type: MEDIA_STREAM,
payload: {
stream,
type: StreamTypeCamera,
},
status: 'resolved',
})
})
describe('no old track => new track', () => {
beforeEach(() => {
store.dispatch(toggleDevice({ kind: 'audio', enabled: false }))
store.dispatch(toggleDevice({ kind: 'video', enabled: false }))
})
it('adds a track to existing peer stream', async () => {
const device = getDevices('video')[2]
TestUtils.Simulate.click(device)
await promise
const addTrack = store.getState()
.peers[peerId].instance.addTrack as jest.Mock
expect(addTrack.mock.calls).toEqual([[ videoTrack, stream ]])
})
})
describe('old track => ', () => {
let oldTrack: MediaStreamTrack
let devices: Element[]
beforeEach(async () => {
store.dispatch(toggleDevice({ kind: 'audio', enabled: false }))
store.dispatch(toggleDevice({ kind: 'video', enabled: false }))
devices = getDevices('video')
TestUtils.Simulate.click(devices[1])
await promise
;[promise, resolve] = deferred<void>()
oldTrack = videoTrack
videoTrack = new MediaStreamTrack()
;(videoTrack as any).kind = 'video'
})
describe('new track', () => {
it('replaces peer track with new track in same stream', async () => {
TestUtils.Simulate.click(devices[2])
// blank track
await promise
;[promise, resolve] = deferred<void>()
// new track
await promise
const replaceTrack =
store.getState().peers[peerId].instance.replaceTrack as jest.Mock
expect(JSON.stringify(replaceTrack.mock.calls))
.toEqual(JSON.stringify([
[ oldTrack, blackTrack, stream ],
[ blackTrack, videoTrack, stream ],
]))
})
})
async function disableTrack() {
expect(oldTrack.enabled).toBe(true)
TestUtils.Simulate.click(devices[0])
await promise
expect(oldTrack.enabled).toBe(false)
expect(stream.getTracks()).toEqual([ oldTrack ])
}
describe('no new track (mute) and unmute', () => {
it('disables existing track when no new track', async () => {
await disableTrack()
})
})
describe('enable (unmute)', () => {
beforeEach(async () => {
await disableTrack()
;[promise, resolve] = deferred<void>()
})
it('enables existing track when previous track clicked', async () => {
expect(oldTrack.enabled).toBe(false)
TestUtils.Simulate.click(devices[1])
await promise
expect(oldTrack.enabled).toBe(true)
expect(stream.getTracks()).toEqual([ oldTrack ])
})
})
describe('change quality', () => {
it('changes constraint and replaces track', async () => {
const quality = getQualityButtons()
expect(quality.length).toBe(4)
TestUtils.Simulate.click(quality[0])
// blank track
await promise
;[promise, resolve] = deferred<void>()
// new track
await promise
const replaceTrack =
store.getState().peers[peerId].instance.replaceTrack as jest.Mock
expect(JSON.stringify(replaceTrack.mock.calls))
.toEqual(JSON.stringify([
[ oldTrack, blackTrack, stream ],
[ blackTrack, videoTrack, stream ],
]))
expect(store.getState().media.video).toEqual({
constraints: {
facingMode: 'user',
width: 320,
height: 240,
},
enabled: true,
})
})
})
})
describe('mic', () => {
const expected: MediaConstraint[] = [
{enabled: false, constraints: {}},
{enabled: true, constraints: {}},
{enabled: true, constraints: {deviceId: 'mic1'}},
]
it('switches microphone', () => {
const button = node.querySelector(
'.dropdown .audio .device-button-dropdown',
)!
const items = getDevices('audio')
expect(items.length).toBe(3)
items.forEach((item, i) => {
expect(button).toBeTruthy()
TestUtils.Simulate.click(button)
TestUtils.Simulate.click(item)
expect(store.getState().media.audio).toEqual(expected[i])
// TODO test for getMediaStream
})
})
})
describe('camera', () => {
const expected: MediaConstraint[] = [
{enabled: false, constraints: {
facingMode:'user',
width: 320,
height: 240,
}},
{enabled: true, constraints: {
facingMode:'user',
width: 320,
height: 240,
}},
{enabled: true, constraints: {
deviceId: 'cam1',
width: 320,
height: 240,
}},
]
it('switches camera', () => {
const button = node.querySelector(
'.dropdown .video .device-button-dropdown',
)!
const items = getDevices('video')
expect(items.length).toBe(3)
items.forEach((item, i) => {
expect(button).toBeTruthy()
TestUtils.Simulate.click(button)
TestUtils.Simulate.click(item)
expect(store.getState().media.video).toEqual(expected[i])
// TODO test for getMediaStream
})
})
})
})
})
describe('encryption-dialog', () => {
beforeEach(() => {
(insertableStreamsCodec.setPassword as jest.Mock).mockClear()
})
it('should toggle dialog', () => {
let dialog = node.querySelector('.encryption-dialog-visible')
expect(dialog).toBeNull()
const button = node.querySelector('.encryption')!
TestUtils.Simulate.click(button)
dialog = node.querySelector('.encryption-dialog-visible')
expect(dialog).not.toBeNull()
TestUtils.Simulate.click(button)
dialog = node.querySelector('.encryption-dialog-visible')
expect(dialog).toBeNull()
})
it('should set and disable encryption', () => {
(insertableStreamsCodec as any).mockSuccess(true)
const button = node.querySelector('.encryption')!
const input = node
.querySelector('.encryption-dialog .encryption-key') as HTMLInputElement
const password = 'p455w0rd'
input.value = password
TestUtils.Simulate.keyUp(input, { key: 'Enter' } as any)
expect(
(insertableStreamsCodec.setPassword as jest.Mock).mock.calls,
).toEqual([[ password ]])
expect(button.classList.contains('encryption-enabled')).toBe(true)
input.value = ''
TestUtils.Simulate.keyUp(input, { key: 'a' } as any) // does nothing
TestUtils.Simulate.keyUp(input, { key: 'Enter' } as any)
expect(
(insertableStreamsCodec.setPassword as jest.Mock).mock.calls,
).toEqual([[ password ], [ '' ]])
expect(button.classList.contains('encryption-enabled')).toBe(false)
})
it('should not succeed when worker is not started', () => {
(insertableStreamsCodec as any).mockSuccess(false)
const button = node.querySelector('.encryption')!
const input = node
.querySelector('.encryption-dialog .encryption-key') as HTMLInputElement
const password = 'p455w0rd'
input.value = password
TestUtils.Simulate.keyUp(input, { key: 'Enter' } as any)
expect(
(insertableStreamsCodec.setPassword as jest.Mock).mock.calls,
).toEqual([[ password ]])
expect(button.classList.contains('encryption-enabled')).toBe(false)
})
})
})
```
|
```smalltalk
// <auto-generated />
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using WorkflowCore.Persistence.MySQL;
namespace WorkflowCore.Persistence.MySQL.Migrations
{
[DbContext(typeof(MysqlContext))]
partial class MysqlPersistenceProviderModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("Relational:MaxIdentifierLength", 64)
.HasAnnotation("ProductVersion", "5.0.8");
modelBuilder.Entity("WorkflowCore.Persistence.EntityFramework.Models.PersistedEvent", b =>
{
b.Property<long>("PersistenceId")
.ValueGeneratedOnAdd()
.HasColumnType("bigint");
b.Property<string>("EventData")
.HasColumnType("longtext");
b.Property<Guid>("EventId")
.HasColumnType("char(36)");
b.Property<string>("EventKey")
.HasMaxLength(200)
.HasColumnType("varchar(200)");
b.Property<string>("EventName")
.HasMaxLength(200)
.HasColumnType("varchar(200)");
b.Property<DateTime>("EventTime")
.HasColumnType("datetime(6)");
b.Property<bool>("IsProcessed")
.HasColumnType("tinyint(1)");
b.HasKey("PersistenceId");
b.HasIndex("EventId")
.IsUnique();
b.HasIndex("EventTime");
b.HasIndex("IsProcessed");
b.HasIndex("EventName", "EventKey");
b.ToTable("Event");
});
modelBuilder.Entity("WorkflowCore.Persistence.EntityFramework.Models.PersistedExecutionError", b =>
{
b.Property<long>("PersistenceId")
.ValueGeneratedOnAdd()
.HasColumnType("bigint");
b.Property<DateTime>("ErrorTime")
.HasColumnType("datetime(6)");
b.Property<string>("ExecutionPointerId")
.HasMaxLength(100)
.HasColumnType("varchar(100)");
b.Property<string>("Message")
.HasColumnType("longtext");
b.Property<string>("WorkflowId")
.HasMaxLength(100)
.HasColumnType("varchar(100)");
b.HasKey("PersistenceId");
b.ToTable("ExecutionError");
});
modelBuilder.Entity("WorkflowCore.Persistence.EntityFramework.Models.PersistedExecutionPointer", b =>
{
b.Property<long>("PersistenceId")
.ValueGeneratedOnAdd()
.HasColumnType("bigint");
b.Property<bool>("Active")
.HasColumnType("tinyint(1)");
b.Property<string>("Children")
.HasColumnType("longtext");
b.Property<string>("ContextItem")
.HasColumnType("longtext");
b.Property<DateTime?>("EndTime")
.HasColumnType("datetime(6)");
b.Property<string>("EventData")
.HasColumnType("longtext");
b.Property<string>("EventKey")
.HasMaxLength(100)
.HasColumnType("varchar(100)");
b.Property<string>("EventName")
.HasMaxLength(100)
.HasColumnType("varchar(100)");
b.Property<bool>("EventPublished")
.HasColumnType("tinyint(1)");
b.Property<string>("Id")
.HasMaxLength(50)
.HasColumnType("varchar(50)");
b.Property<string>("Outcome")
.HasColumnType("longtext");
b.Property<string>("PersistenceData")
.HasColumnType("longtext");
b.Property<string>("PredecessorId")
.HasMaxLength(100)
.HasColumnType("varchar(100)");
b.Property<int>("RetryCount")
.HasColumnType("int");
b.Property<string>("Scope")
.HasColumnType("longtext");
b.Property<DateTime?>("SleepUntil")
.HasColumnType("datetime(6)");
b.Property<DateTime?>("StartTime")
.HasColumnType("datetime(6)");
b.Property<int>("Status")
.HasColumnType("int");
b.Property<int>("StepId")
.HasColumnType("int");
b.Property<string>("StepName")
.HasMaxLength(100)
.HasColumnType("varchar(100)");
b.Property<long>("WorkflowId")
.HasColumnType("bigint");
b.HasKey("PersistenceId");
b.HasIndex("WorkflowId");
b.ToTable("ExecutionPointer");
});
modelBuilder.Entity("WorkflowCore.Persistence.EntityFramework.Models.PersistedExtensionAttribute", b =>
{
b.Property<long>("PersistenceId")
.ValueGeneratedOnAdd()
.HasColumnType("bigint");
b.Property<string>("AttributeKey")
.HasMaxLength(100)
.HasColumnType("varchar(100)");
b.Property<string>("AttributeValue")
.HasColumnType("longtext");
b.Property<long>("ExecutionPointerId")
.HasColumnType("bigint");
b.HasKey("PersistenceId");
b.HasIndex("ExecutionPointerId");
b.ToTable("ExtensionAttribute");
});
modelBuilder.Entity("WorkflowCore.Persistence.EntityFramework.Models.PersistedScheduledCommand", b =>
{
b.Property<long>("PersistenceId")
.ValueGeneratedOnAdd()
.HasColumnType("bigint");
b.Property<string>("CommandName")
.HasMaxLength(200)
.HasColumnType("varchar(200)");
b.Property<string>("Data")
.HasMaxLength(500)
.HasColumnType("varchar(500)");
b.Property<long>("ExecuteTime")
.HasColumnType("bigint");
b.HasKey("PersistenceId");
b.HasIndex("ExecuteTime");
b.HasIndex("CommandName", "Data")
.IsUnique();
b.ToTable("ScheduledCommand");
});
modelBuilder.Entity("WorkflowCore.Persistence.EntityFramework.Models.PersistedSubscription", b =>
{
b.Property<long>("PersistenceId")
.ValueGeneratedOnAdd()
.HasColumnType("bigint");
b.Property<string>("EventKey")
.HasMaxLength(200)
.HasColumnType("varchar(200)");
b.Property<string>("EventName")
.HasMaxLength(200)
.HasColumnType("varchar(200)");
b.Property<string>("ExecutionPointerId")
.HasMaxLength(200)
.HasColumnType("varchar(200)");
b.Property<string>("ExternalToken")
.HasMaxLength(200)
.HasColumnType("varchar(200)");
b.Property<DateTime?>("ExternalTokenExpiry")
.HasColumnType("datetime(6)");
b.Property<string>("ExternalWorkerId")
.HasMaxLength(200)
.HasColumnType("varchar(200)");
b.Property<int>("StepId")
.HasColumnType("int");
b.Property<DateTime>("SubscribeAsOf")
.HasColumnType("datetime(6)");
b.Property<string>("SubscriptionData")
.HasColumnType("longtext");
b.Property<Guid>("SubscriptionId")
.HasMaxLength(200)
.HasColumnType("char(200)");
b.Property<string>("WorkflowId")
.HasMaxLength(200)
.HasColumnType("varchar(200)");
b.HasKey("PersistenceId");
b.HasIndex("EventKey");
b.HasIndex("EventName");
b.HasIndex("SubscriptionId")
.IsUnique();
b.ToTable("Subscription");
});
modelBuilder.Entity("WorkflowCore.Persistence.EntityFramework.Models.PersistedWorkflow", b =>
{
b.Property<long>("PersistenceId")
.ValueGeneratedOnAdd()
.HasColumnType("bigint");
b.Property<DateTime?>("CompleteTime")
.HasColumnType("datetime(6)");
b.Property<DateTime>("CreateTime")
.HasColumnType("datetime(6)");
b.Property<string>("Data")
.HasColumnType("longtext");
b.Property<string>("Description")
.HasMaxLength(500)
.HasColumnType("varchar(500)");
b.Property<Guid>("InstanceId")
.HasMaxLength(200)
.HasColumnType("char(200)");
b.Property<long?>("NextExecution")
.HasColumnType("bigint");
b.Property<string>("Reference")
.HasMaxLength(200)
.HasColumnType("varchar(200)");
b.Property<int>("Status")
.HasColumnType("int");
b.Property<int>("Version")
.HasColumnType("int");
b.Property<string>("WorkflowDefinitionId")
.HasMaxLength(200)
.HasColumnType("varchar(200)");
b.HasKey("PersistenceId");
b.HasIndex("InstanceId")
.IsUnique();
b.HasIndex("NextExecution");
b.ToTable("Workflow");
});
modelBuilder.Entity("WorkflowCore.Persistence.EntityFramework.Models.PersistedExecutionPointer", b =>
{
b.HasOne("WorkflowCore.Persistence.EntityFramework.Models.PersistedWorkflow", "Workflow")
.WithMany("ExecutionPointers")
.HasForeignKey("WorkflowId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Workflow");
});
modelBuilder.Entity("WorkflowCore.Persistence.EntityFramework.Models.PersistedExtensionAttribute", b =>
{
b.HasOne("WorkflowCore.Persistence.EntityFramework.Models.PersistedExecutionPointer", "ExecutionPointer")
.WithMany("ExtensionAttributes")
.HasForeignKey("ExecutionPointerId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("ExecutionPointer");
});
modelBuilder.Entity("WorkflowCore.Persistence.EntityFramework.Models.PersistedExecutionPointer", b =>
{
b.Navigation("ExtensionAttributes");
});
modelBuilder.Entity("WorkflowCore.Persistence.EntityFramework.Models.PersistedWorkflow", b =>
{
b.Navigation("ExecutionPointers");
});
#pragma warning restore 612, 618
}
}
}
```
|
Charles Lyman "Poss" Parsons (born May 3, 1892) was an American college football player and coach. He served as the Colorado School of Mines in 1916 and Colorado College from 1919 to 1921.
He was the sports editor at the Denver Post from 1922–1941, and was posthumously inducted into the Colorado Sports Hall of Fame (Class of 1982).
References
External links
Sports-Reference College Football Coach profile
Sports-Reference College Basketball Coach profile
1892 births
Year of death missing
Basketball coaches from Iowa
Iowa Hawkeyes football players
Colorado College Tigers football coaches
Colorado College Tigers men's basketball coaches
Colorado Mines Orediggers football coaches
Players of American football from Iowa City, Iowa
|
The 1879 South Warwickshire by-election was fought on 21 February 1879. The byelection was fought due to the incumbent Conservative MP, Earl of Yarmouth, becoming comptroller of the Household. It was retained by the unopposed Earl of Yarmouth.
References
1879 elections in the United Kingdom
1879 in England
19th century in Warwickshire
By-elections to the Parliament of the United Kingdom in Warwickshire constituencies
Unopposed by-elections to the Parliament of the United Kingdom in English constituencies
|
The Bisexual is a comedy-drama television series created by Desiree Akhavan and Rowan Riley and starring Akhavan, Maxine Peake, and Brian Gleeson. The series, a co-production between British television network Channel 4 and American streaming service Hulu, debuted on 10 October 2018 in the United Kingdom and on 16 November 2018 in the United States.
Premise
New Yorker Leila lives in London in a seemingly perfect decade-long relationship with her girlfriend and business partner Sadie. However, Leila discovers that she is actually bisexual and begins to explore her orientation. Though she struggles to come out to her friends, Leila makes a drastic decision with unexpected consequences.
Cast and characters
Desiree Akhavan as Leila
Maxine Peake as Sadie Smith
Brian Gleeson as Gabe
Saskia Chana as Deniz
Episodes
Reception
The Bisexual has an approval rating of 90 percent on review aggregator website Rotten Tomatoes, based on 30 reviews. Heather Hogan at Autostraddle called the show "brilliant", adding that, "Akhavan's characters absolutely do not always do or say The Right Thing, but her writing is overflowing with compassion". Clarisse Loughrey at The Independent gave the show four stars out of five, opining that the show is "what British comedy needs to break through the stereotypes and move forward". Lucy Mangan of The Guardian described the show as "neither funny nor dramatic", giving it only two stars out of five.
In February 2023, TIME named The Bisexual as one of the Best TV Rom-Coms of the Streaming Era.
References
External links
2018 British television series debuts
2018 British television series endings
2010s British comedy-drama television series
2010s British LGBT-related television series
2010s British television miniseries
Bisexuality-related television series
Channel 4 television dramas
Hulu original programming
English-language television shows
Female bisexuality in fiction
|
```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 Cubs Win Flag is a victory flag that is flown at Wrigley Field after every Chicago Cubs home win. The flag is variously referred to by approximately a dozen names, combining: either Cubs or Chicago Cubs; Win, W, White, White W, or W Win; and flag, banner or banner flag. Other common names for the symbol include Chicago Cubs W Flag and Chicago Cubs Win Banner Flag. It has become an important symbol for fans, and tradition of flying a win or loss flag over the stadium began soon after the construction of the scoreboard in 1937.
The flag has used two different color schemes with the letter "W" on a solid background, and there is a loss indicator flag with a letter "L". Additionally, the flags have been complemented by different color schemes of indicator lights. The flag is also changed after each Cubs win. The flag has become a very symbolic emblem for devout Cubs fans. Some retailers sell slightly different versions that also have the Cubs logo at the bottom.
Detail
Flying a flag over Wrigley Field to denote wins and losses is a longstanding tradition. Currently, the Win Flag is composed of a large blue letter "W" on a white background while the Loss Flag is a large white letter "L" on a blue background. Early in the 21st century, the phrase "White flag time at Wrigley!" was used to explain that the Cubs had just won that day's home game. More recently, at least as early as the 2015 season, the Cubs have used the phrase "Fly the W!"; an accompanying social media hashtag "#FlyTheW" has been heavily promoted by the team and its fans. The flag is raised by a scoreboard crew member immediately after the completion of a game, and in the case of a doubleheader split, both flags are flown.
It is customary to fly flags from sunrise until sunset, unless they are directly illuminated. At the beginning of each day, the cross-shaped "masthead" atop the center field scoreboard displays the American flag at the top, and three strands of flags bearing the colors and nicknames of each of the National League clubs, one strand per Division in order of that day's standings. Immediately after the game, one of the strands of flags is lowered, and either the W or the L-lettered flag is raised in its place. The W-lettered flag is raised on the left field side of the board, above the blue light that also indicates a win. The L-lettered flag is raised on the right field side of the board, above the white light that indicates a loss. Once the Win or Loss Flag has been raised, the other flags are lowered and also stowed away inside the scoreboard.
The symbolism of the flag now serves a wide variety of purposes. It is commonly reproduced in dimensions, and car flag versions are also sold. The flag is also available in dimension versions. The flag has become a celebratory symbol for Chicago Cubs fans who purchase reproductions and take them to games at home and on the road to show support. The fans wave them after victories at Wrigley Field, and they hang them in the stands during playoff series. Some fans fly a win flag in place of or in addition to the Flag of the United States on days when the Cubs win. Since 1998, the flags have become ever more popular, with demand reaching a level where they are sold at Wrigley Field. In 2007, with the Cubs in playoff contention for the first time in 3 years, the Cubs' victory tune, Go Cubs Go! became more popular among the fans. Due to the song's growing popularity, after wins at home, Cubs TV broadcasters Len Kasper and Bob Brenly would have their microphones shut off, while the camera pans around the stadium to view the jubilant fans as Go Cubs Go! plays in the background. After fans discovered this, they started purchasing "W" flags and waving them after wins at home as an attempt to get on TV. However, in seasons when the Cubs are performing poorly the tradition has led to parody and satire, such as stories of the Cubs retiring the win flag due to signs of neglect.
While not having the popularity of the Win Flag, the Loss Flag has become increasingly popular with clubs who traditionally have rivalries with the Cubs, such as the St. Louis Cardinals, Milwaukee Brewers, or Chicago White Sox. Fans of those teams wave the blue flag after their team defeats the Cubs at Busch Stadium or Guaranteed Rate Field. However, because of the enormous fan base that the Cubs hold, it is not uncommon to see fans at games on the road waving their "W" flags during Cubs wins on the road. Another of the Cubs' rivals, the Pittsburgh Pirates, actually co-opted the Cubs Win Flag for themselves by waving a Jolly Roger pirate flag after each Pirates win.
The flag is known by many names, with none being more prevalent than the rest, and may often be referred to by more than one name by the same manufacturer. "Chicago Cubs W Win Flag" is the name used on Amazon.com, however the company also refers to the flag as Chicago Cubs 'W' Banner Flag in their marketplace section. CubWorld.com also refers to the flag by the name Chicago Cubs 'W' Banner Flag. Other retailers use the names Cubs Win W Flag, Chicago Cubs Win 3' x 5' Flag, Cubs W Flag, or (Chicago Cubs) W Flag in the case of Sports Fan Warehouse. One retailer even sells an item called the Chicago Cubs W Fan Banner. Another retailer sells two versions of the flag listed as Chicago Cubs Win W Flag and Chicago Cubs Win Flag, yet its advertisements mentions celebrating a Cub win with the Chicago Cubs White "W" Flag. An alternate version that has the Chicago Cubs logo beneath the W can be found under the name Chicago Cubs Win W Banner.
History
The Cubs' then-owner Philip K. Wrigley ordered the reconstruction of the bleachers and the building of the manually operated scoreboard in 1937. The scoreboard's "masthead" was in place by 1938, displaying the American flag at the top and flags representing the eight clubs of the National League on the left and right strands of the masthead, four apiece. In the 1940s, the practice of raising the Win/Loss flags was begun.
The flags were originally a white "W" on a blue flag and a blue "L" on a white flag. This matched what was then the color scheme of the Cubs "team flags" that flew on the foul poles, and the many little "W.F." flags that flew on the grandstand roof (all of them serving to give the players a sense of the wind speed and direction). Ernie Banks was the first Cub to have his number retired on August 22, 1982, and his number 14 has been flown in blue on a white flag (echoing the pattern of a Cubs home uniform shirt) on the left field foul pole ever since. On August 13, 1987, Billy Williams had his number retired and it flew with the same color scheme, on the right field foul pole. The scheme of the Cubs Win flag was reversed in the early 1980s. The change in the flag color scheme matched the Win flag color with the honored colors of the retired number flags, as the white-on-blue Cubs "team flag" was retired. Subsequent retired Cubs numbers for Ron Santo, Ryne Sandberg and Ferguson Jenkins/Greg Maddux also match this color scheme.
In addition to the flags, Wrigley authorized Bill Veeck, the leader of the bleacher reconstruction project, to add colored lights on the crossbar of the masthead so that the Chicago 'L' passengers would be able to see the outcome of Cubs home games after sunset. In his autobiography, Veeck remembered the colors as green for a win and red for a loss. Hartell's book acknowledges Veeck's comments, but reports that contemporary newspapers stated that the colors of the lights were blue and white, as they are now. Eventually the original lights on the masthead were replaced by lights directly on the top of scoreboard, still visible from outside Wrigley field. The lights complement the flags by helping night time passersby learn the result of that day's Cubs game at a glance. The current blue and white Win/Loss lights were added atop the scoreboard in 1978, while the "Wintrust W" light on the left-field video board was implemented in 2015.
On April 23, 2008, the Cubs won for the 10,000th time in the history of the franchise on the road against the Colorado Rockies. Like the 9,000th win, the 10,000th win came in a 7–6 victory at Coors Field. The Cubs were the second franchise to achieve 10,000 regular season wins; the San Francisco Giants/New York Giants were the first. The franchise flew a special 10,000th win flag along with a Cubs Win flag to commemorate the landmark achievement for the franchise. This was unusual not just for the 10,000th win, but also for flying the flag in reference to a road game. The special flag flew from the afternoon of April 24, 2008, until immediately prior to the next home game on April 29, 2008, at 7:05pm against the Milwaukee Brewers. After the flag was taken down, it was autographed by all members of the 2008 Chicago Cubs and auctioned off for charity.
Sources
References
External links
Chicago Cubs
Flags of Illinois
Sports paraphernalia
Victory
|
```smalltalk
using System.Collections.Generic;
using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;
namespace Xamarin.Forms.Controls.Issues
{
#if UITEST
[NUnit.Framework.Category(Core.UITests.UITestCategories.Bugzilla)]
#endif
[Preserve(AllMembers = true)]
[Issue(IssueTracker.Bugzilla, 33268, "Picker is broken on Windows Phone 8.1", PlatformAffected.WinRT)]
public class Bugzilla33268 : TestTabbedPage
{
protected override void Init()
{
Children.Add(new Bugzilla33268ListView());
Children.Add(new Simple());
Children.Add(new Bugzilla33268NoListView());
}
}
[Preserve(AllMembers = true)]
public class Simple : TestContentPage
{
protected override void Init()
{
Title = "Simple";
var fiveItemPicker = new Picker { Title = "Picker With 4 Items" };
for (var i = 1; i <= 4; i++)
{
fiveItemPicker.Items.Add("Sample Option " + i);
}
Content = new StackLayout
{
BackgroundColor = Color.Green,
VerticalOptions = LayoutOptions.Start,
Children = {
fiveItemPicker
}
};
}
}
[Preserve(AllMembers = true)]
public class Bugzilla33268NoListView : TestContentPage
{
protected override void Init()
{
Title = "No ListView";
var fiveItemLabel = new Label
{
Text =
"The picker below should display four items when opened. If you open it and all four items are not visible, this test has failed."
};
var fiveItemPicker = new Picker { Title = "Picker With 4 Items" };
for (var i = 1; i <= 4; i++)
{
fiveItemPicker.Items.Add("Sample Option " + i);
}
var sixItemLabel = new Label
{
Text =
"The picker below should display full screen when opened. If you open it and it's not full screen, this test has failed."
};
var sixItemPicker = new Picker { Title = "Picker With 6 Items" };
for (var i = 1; i <= 6; i++)
{
sixItemPicker.Items.Add("Sample Option " + i);
}
Content = new StackLayout
{
Children = {
fiveItemLabel,
fiveItemPicker,
sixItemLabel,
sixItemPicker
}
};
}
}
[Preserve(AllMembers = true)]
public class Bugzilla33268ListView : TestContentPage
{
protected override void Init()
{
Title = "ListView";
var listItems = new List<string> { "One" };
var listView = new ListView
{
Header = "Pickers in a ListView",
ItemTemplate = new DataTemplate(typeof(PickerCell)),
ItemsSource = listItems
};
Content = new StackLayout
{
Children = {
listView
}
};
}
[Preserve(AllMembers = true)]
internal class PickerCell : ViewCell
{
public PickerCell()
{
var cellWrapper = new StackLayout();
var stack = new StackLayout();
var fiveItemLabel = new Label
{
Text =
"The picker below should display five items when opened. If you open it and all five items are not visible, this test has failed."
};
var fiveItemPicker = new Picker { Title = "Picker With 5 Items" };
for (var i = 1; i <= 5; i++)
{
fiveItemPicker.Items.Add("Sample Option " + i);
}
var sixItemLabel = new Label
{
Text =
"The picker below should display full screen when opened. If you open it and it's not full screen, this test has failed."
};
var sixItemPicker = new Picker { Title = "Picker With 6 Items" };
for (var i = 1; i <= 6; i++)
{
sixItemPicker.Items.Add("Sample Option " + i);
}
stack.Orientation = StackOrientation.Vertical;
stack.Children.Add(fiveItemLabel);
stack.Children.Add(fiveItemPicker);
stack.Children.Add(sixItemLabel);
stack.Children.Add(sixItemPicker);
cellWrapper.VerticalOptions = LayoutOptions.StartAndExpand;
cellWrapper.Children.Add(stack);
View = cellWrapper;
}
}
}
}
```
|
Bruce Hunter may refer to:
Bruce Hunter (poet) (born 1952), Canadian poet, novelist and teacher
Bruce Hunter (politician) (born 1955), Iowa State Representative
Bruce Hunter (actor) (born 1961), Canadian actor and comedian
Bruce Hunter (swimmer) (1939–2018), American swimmer
Bruce Hunter (rugby union) (born 1950), New Zealand rugby union player
|
Lippersdorf-Erdmannsdorf is a municipality in the district Saale-Holzland, in Thuringia, Germany.
References
Municipalities in Thuringia
Saale-Holzland-Kreis
|
Impossible is a magic and illusion show which received its world premiere in London's West End at the Noël Coward Theatre on 24 July 2015. The production features a line-up of magicians who each specialise in different magical disciplines, supported by a team of assistants. The show was created by producer Jamie Hendry and directed by Lloyd Wood and Anthony Owen with original music by Ryan Martin and Michael Bradley.
Productions
West End (2015)
The production made its world premiere at the Noël Coward Theatre in London'sWest End on 24 July 2015. In June 2015, it was announced that the cast would include Jonathan Goodwin (escapologist), Luís de Matos, Jamie Allan (magician), Ali Cook, Chris Cox (magician), Ben Hart (magician) and Katherine Mills. The production received mostly positive reviews.
UK Tour (2016)
In November 2015, it was announced that the production would tour the UK, opening at the Mayflower Theatre, Southampton on 3 February 2016. A major cast change took place with Josephine Lee, Magical Bones and Lee Thompson joining the cast, with Luís de Matos, Ali Cook, Jamie Allan (magician) and Aaron Crow all leaving.
Beirut (2016)
A production opened on 5 May 2016 at the Forum de Beyrouth in Beirut.
West End (2016)
In May 2016, it was announced that the production would return to London's West End and to the Noël Coward Theatre, opening on 13 July 2016. Sabine van Diemen joined the production.
Dubai (2016)
In September 2016, the production became the first West End show ever to open at the Dubai Opera.
Singapore (2017)
In March 2017, the production opened at the Kallang Theatre in Singapore.
Manila (2017-18)
On Christmas Day 2017 the production opened at the Smart Araneta Coliseum in Manila.
Principal Magicians
Box office
During its five-week West End run in 2015 Impossible recouped its costs of just under £1 million.
National TV Appearances
The One Show - 8 July 2016 - A live performance by Ben Hart (magician) of close up magic and the transportation of an audience member.
This Morning - 12 July 2016 - Jonathan Goodwin was interviewed by Holly Willoughby and Phillip Schofield. Magical Bones performed his signature backflip routine.
References
Magic shows
2015 works
|
List of wear Orders, decorations, and medals of the Kingdom of Hungary in 1944.
Sources
See also
Orders, decorations, and medals of Hungary
References
|
```objective-c
/*
* Tencent is pleased to support the open source community by making
* WCDB available.
*
* All rights reserved.
*
*
* 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.
*/
#define __WCDB_PROPERTY_TYPE(className, propertyName) \
decltype([className new].propertyName)
#define __WCDB_PROPERTY_IMP(propertyName) +(const WCTProperty &) propertyName;
#define __WCDB_SYNTHESIZE_IMP(className, propertyName, columnName) \
+(const WCTProperty &) propertyName \
{ \
static const WCTProperty s_property( \
columnName, className.class, \
__WCDB_BINDING(className) \
.addColumnBinding<__WCDB_PROPERTY_TYPE( \
className, propertyName)>(WCDB_STRINGIFY(propertyName), \
columnName)); \
return s_property; \
} \
static const auto UNUSED_UNIQUE_ID = [](WCTPropertyList &propertyList) { \
propertyList.push_back(className.propertyName); \
return nullptr; \
}(__WCDB_PROPERTIES(className));
#define __WCDB_SYNTHESIZE_DEFAULT_IMP(className, propertyName, columnName, \
defaultValue) \
__WCDB_SYNTHESIZE_IMP(className, propertyName, columnName) \
static const auto UNUSED_UNIQUE_ID = [](WCTBinding *binding) { \
binding->getColumnBinding(className.propertyName) \
->makeDefault<__WCDB_PROPERTY_TYPE(className, propertyName)>( \
defaultValue); \
return nullptr; \
}(&__WCDB_BINDING(className));
```
|
Kaki District () is in Dashti County, Bushehr province, Iran.
At the 2006 census, its population was 22,798 in 4,764 households. The following census in 2011 counted 23,157 people in 5,895 households. At the latest census in 2016, the district had 25,283 inhabitants living in 7,058 households.
References
Districts of Bushehr Province
Populated places in Dashti County
|
Herman Kiefer Hospital was a city-owned hospital in Detroit Michigan, from 1911 to 2013. It was founded to serve as a public health hospital; to combat rampant infectious diseases, such as tuberculosis, diphtheria, scarlet fever, mumps, measles, and other diseases. It was named after Herman Kiefer, a prominent local physician known for treating the poor.
History
The first public health facility on the site was opened in 1886 as a smallpox hospital on the outskirts of the city. In 1892 it burned down in a fire deemed "suspicious.". Over the next twenty years several "tent" hospitals were constructed on the site, each dedicated to treating a specific infectious disease—scarlet fever, diphtheria and tuberculosis. In 1909, six more tents were added, causing plans to begin to build a permanent structure.
The first permanent structures, pavilions, designed by architect George Mason, opened in 1911. By the mid 1920s Detroit voters approved a $3-million bond issue, to build a brick and cement hospital. This building, designed by Albert Kahn in Neo-Romanesque Revival style, was 424,000 square feet, and had 500 beds in single, or double, rooms, instead of the, then standard, 10 bed wards. This new building opened in December 1928. By 1932 it had 1,200 beds.
Hospital
The hospital was the primary health care facility of the City of Detroit from its founding to closure. During its 75 years it treated the poorest citizens of the city. For the first 35 years most patients had infectious diseases. In 1953 a 250-bed addition was added to treat tuberculosis. By the end of the sixties, the era of infectious diseases was over due to antibiotics. In 1928 there were 1,756 deaths from infectious diseases, in 1969 there were under 100. During 1970s, the patient population changed to the very old, the indigent, and those who had social problems.
In 1951, the Rehabilitation Institute of Metropolitan Detroit was founded at Herman Kiefer Hospital. The Kiefer Hospital was the main treatment facility for polio in Detroit, which was rampant at that time. Polio patients are often paralyzed, and the Kiefer naturally provided their polio patients with rehabilitation. It was also the site of the Metropolitan Detroit Polio Foundation, which merged with the Rehabilitation Institute in 1953. These two partners soon realized they needed a building of their own to house all their services. As a result, in 1958, the Rehabilitation Institute moved to a newly built hospital at the Detroit Medical Center.
Closure
By the early 21st century the Kiefer was acting almost entirely as a public health facility, dispensing free vaccinations. With the City of Detroit was facing bankruptcy, the mayor, David Bing, decided that the one million dollar maintenance cost of the aging building could not be afforded. Bing closed the hospital, transferring its public health services to a private nonprofit which operated throughout the city from neighborhood facilities. Under Mayor Mike Duggan The Detroit Health Department was reformed under the leadership of Dr. Abdul El-Sayed and now operates essential local public health services.
Redevelopment
In June 2015, plans were announced for the redevelopment of the building, and other buildings in the complex, into a mixed use residential, business, and commercial center.
See also
Herman Kiefer
References
External links
Redevelopment of massive empty Herman-Kiefer building in Detroit in the works—MLive, June 18, 2015
Hospital buildings completed in 1928
Hospitals in Detroit
1928 establishments in Michigan
Defunct hospitals in Michigan
Hospitals disestablished in 2013
|
```java
/*
* Tencent is pleased to support the open source community by making
* Tencent GT (Version 2.4 and subsequent versions) available.
*
* Notwithstanding anything to the contrary herein, any previous version
* of Tencent GT shall not be subject to the license hereunder.
* All right, title, and interest, including all intellectual property rights,
* in and to the previous version of Tencent GT (including any and all copies thereof)
* shall be owned and retained by Tencent and subject to the license under the
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software distributed
*/
package com.tencent.wstt.gt;
import android.os.Parcel;
/**
* aidlParcelable
* @author yoyoqin
*
*/
public class PerfDigitalEntry extends AidlEntry {
long logTime;
int validLen; // TLVL
long[] datas;
QueryPerfEntry queryEntry;
/**
*
* AIDL
* functionId
*/
public PerfDigitalEntry() {
validLen = 1;
datas = new long[1];
}
public PerfDigitalEntry(Parcel parcel) {
setFunctionId(parcel.readInt());
logTime = parcel.readLong();
validLen = parcel.readInt();
datas = new long[validLen];
parcel.readLongArray(datas);
queryEntry = parcel.readParcelable(getClass().getClassLoader());
}
public long getLogTime() {
return logTime;
}
public void setLogTime(long logTime) {
this.logTime = logTime;
}
public int getValidLen() {
return validLen;
}
public long getData() {
return datas[0];
}
public void setData(long data) {
this.datas[0] = data;
}
public long[] getDatas() {
return datas;
}
public void setDatas(long[] datas) {
this.datas = datas;
this.validLen = datas.length;
}
public QueryPerfEntry getQueryEntry() {
return queryEntry;
}
public void setQueryEntry(QueryPerfEntry queryEntry) {
this.queryEntry = queryEntry;
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel parcel, int flags) {
super.writeToParcel(parcel, flags);
parcel.writeLong(logTime);
parcel.writeInt(validLen);
parcel.writeLongArray(datas);
parcel.writeParcelable(queryEntry, flags);
}
/**
* AIDL
*/
public void readFromParcel(Parcel parcel) {
super.readFromParcel(parcel);
logTime = parcel.readLong();
validLen = parcel.readInt();
datas = new long[validLen];
parcel.readLongArray(datas);
queryEntry = parcel.readParcelable(getClass().getClassLoader());
}
public static final Creator<PerfDigitalEntry> CREATOR = new Creator<PerfDigitalEntry>() {
public PerfDigitalEntry createFromParcel(Parcel parcel) {
return new PerfDigitalEntry(parcel);
}
public PerfDigitalEntry[] newArray(int size) {
return new PerfDigitalEntry[size];
}
};
}
```
|
```html
<!DOCTYPE html>
<html>
<head>
<title>Tad</title>
<meta charset="UTF-8" />
</head>
<body>
<div id="app" class="full-height"></div>
</body>
<script src="tadapp.bundle.js"></script>
</html>
```
|
```objective-c
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_TRAP_HANDLER_TRAP_HANDLER_H_
#define V8_TRAP_HANDLER_TRAP_HANDLER_H_
#include <stdint.h>
#include <stdlib.h>
#include "src/base/build_config.h"
#include "src/common/globals.h"
#include "src/flags/flags.h"
namespace v8 {
namespace internal {
namespace trap_handler {
// TODO(eholk): Support trap handlers on other platforms.
#if V8_TARGET_ARCH_X64 && V8_OS_LINUX && !V8_OS_ANDROID
#define V8_TRAP_HANDLER_SUPPORTED true
#elif V8_TARGET_ARCH_X64 && V8_OS_WIN
#define V8_TRAP_HANDLER_SUPPORTED true
#elif V8_TARGET_ARCH_X64 && V8_OS_MACOSX
#define V8_TRAP_HANDLER_SUPPORTED true
#elif V8_TARGET_ARCH_X64 && V8_OS_FREEBSD
#define V8_TRAP_HANDLER_SUPPORTED true
#else
#define V8_TRAP_HANDLER_SUPPORTED false
#endif
struct ProtectedInstructionData {
// The offset of this instruction from the start of its code object.
// Wasm code never grows larger than 2GB, so uint32_t is sufficient.
uint32_t instr_offset;
// The offset of the landing pad from the start of its code object.
//
// TODO(eholk): Using a single landing pad and store parameters here.
uint32_t landing_offset;
};
const int kInvalidIndex = -1;
/// Adds the handler data to the place where the trap handler will find it.
///
/// This returns a number that can be used to identify the handler data to
/// ReleaseHandlerData, or -1 on failure.
int V8_EXPORT_PRIVATE RegisterHandlerData(
Address base, size_t size, size_t num_protected_instructions,
const ProtectedInstructionData* protected_instructions);
/// Removes the data from the master list and frees any memory, if necessary.
/// TODO(mtrofin): We can switch to using size_t for index and not need
/// kInvalidIndex.
void V8_EXPORT_PRIVATE ReleaseHandlerData(int index);
#if V8_OS_WIN
#define THREAD_LOCAL __declspec(thread)
#elif V8_OS_ANDROID
// TODO(eholk): fix this before enabling for trap handlers for Android.
#define THREAD_LOCAL
#else
#define THREAD_LOCAL __thread
#endif
extern bool g_is_trap_handler_enabled;
// Enables trap handling for WebAssembly bounds checks.
//
// use_v8_handler indicates that V8 should install its own handler
// rather than relying on the embedder to do it.
bool EnableTrapHandler(bool use_v8_handler);
inline bool IsTrapHandlerEnabled() {
DCHECK_IMPLIES(g_is_trap_handler_enabled, V8_TRAP_HANDLER_SUPPORTED);
return g_is_trap_handler_enabled;
}
extern THREAD_LOCAL int g_thread_in_wasm_code;
// Return the address of the thread-local {g_thread_in_wasm_code} variable. This
// pointer can be accessed and modified as long as the thread calling this
// function exists. Only use if from the same thread do avoid race conditions.
V8_NOINLINE V8_EXPORT_PRIVATE int* GetThreadInWasmThreadLocalAddress();
// On Windows, asan installs its own exception handler which maps shadow
// memory. Since our exception handler may be executed before the asan exception
// handler, we have to make sure that asan shadow memory is not accessed here.
DISABLE_ASAN inline bool IsThreadInWasm() { return g_thread_in_wasm_code; }
inline void SetThreadInWasm() {
if (IsTrapHandlerEnabled()) {
DCHECK(!IsThreadInWasm());
g_thread_in_wasm_code = true;
}
}
inline void ClearThreadInWasm() {
if (IsTrapHandlerEnabled()) {
DCHECK(IsThreadInWasm());
g_thread_in_wasm_code = false;
}
}
bool RegisterDefaultTrapHandler();
V8_EXPORT_PRIVATE void RemoveTrapHandler();
size_t GetRecoveredTrapCount();
} // namespace trap_handler
} // namespace internal
} // namespace v8
#endif // V8_TRAP_HANDLER_TRAP_HANDLER_H_
```
|
"Deja Vu" is a song by American rapper and singer Post Malone featuring Canadian singer Justin Bieber. It was released through Republic Records as the fourth single from the former's debut studio album Stoney on September 9, 2016. The first collaboration between the two artists, they wrote the song alongside Matthew Tavares, Kaan Güneşberk, FKi 1st, Louis Bell, Carl Rosen, Julkeyz, & producers Frank Dukes and Vinylz.
Background
Before collaborating, Malone opened for Bieber on the Purpose World Tour, to support Bieber's fourth studio album, Purpose (2015), which led to the two artists developing a friendship. Malone was halfway through recording Stoney producer Frank Dukes played him an unfinished instrumental that he had come up with. In January 2016, Bieber visited Malone in the studio, in which he heard the beat and wanted to get on the song. Bieber immediately took to the beat and ended up recording his vocals, what would become the finished version of "Deja Vu" in the booth, with him and Malone going back and forth with ideas. After Bieber finished, Malone put the song together with the help of Bell and the others who were involved. Bell referred to the session as a high-pressure situation that "kept [him] on [his] toes" while he engineered and recorded the track. "Deja Vu" leaked online a day before its official release.
Composition and lyrics
"Deja Vu" is a laid-back pop song with a deep R&B groove involving "wistful, detuned guitar riffs". It opens with a church organ that backs the track. Several critics made comparisons to Drake's "Hotline Bling" in regards to the song's sound. In particular, The Faders David Renshaw said it "has an almost 'Hotline Bling'-esque tempo", while Madeline Roth of MTV News, Danny Schwartz of HotNewHipHop, and Billboards Colin Stutz noted similarities between the two with the song's start. In a different comparison, Dana Getz of Entertainment Weekly wrote that it "features a slow fizz, cha-cha inflected beat akin to a drowsier take on Drake's 'One Dance.
"Deja Vu" is about an on-and-off-again love where "Malone helms sluggish, lovesick verses". An echoed coo accompanies Malone and Bieber as they sing the hook, with the latter repeating before delivering his verse: "Tell me is that deja vu? / 'Cause you want me and I want you."
Credits and personnel
Post Malone – lead vocals, songwriting
Justin Bieber – featured vocals, songwriting
Frank Dukes – production, songwriting, programming, percussion
Vinylz – production, songwriting
Matthew Tavares – songwriting, guitar, bass guitar, keyboards
Kaan Güneşberk – songwriting, background vocals
FKi 1st – songwriting
Louis Bell – songwriting
Carl Rosen – songwriting
Julkeyz – songwriting
Manny Marroquin – mixing
Louis Bell – recording
Alex Pavone – other contributions
Charts
Certifications
Release history
References
External links
Lyrics of this song at Genius
2016 singles
2016 songs
Republic Records singles
Post Malone songs
Justin Bieber songs
Songs written by Frank Dukes
Song recordings produced by Vinylz
Songs written by Vinylz
Songs written by Post Malone
Songs written by Louis Bell
Songs written by Justin Bieber
Song recordings produced by Frank Dukes
Songs written by Matthew Tavares
|
```smalltalk
#if ASP_CORE
using Audit.Core;
using Microsoft.AspNetCore.Http;
namespace Audit.Mvc
{
public static class ControllerExtensions
{
/// <summary>
/// Gets the current Audit Scope.
/// </summary>
/// <param name="controller">The MVC controller.</param>
/// <returns>The current Audit Scope or NULL.</returns>
public static AuditScope GetCurrentAuditScope(this Microsoft.AspNetCore.Mvc.ControllerBase controller)
{
return AuditAttribute.GetCurrentScope(controller.HttpContext);
}
/// <summary>
/// Gets the current Audit Scope.
/// </summary>
/// <param name="httpContext">The HTTP context.</param>
/// <returns>The current Audit Scope or NULL.</returns>
public static AuditScope GetCurrentAuditScope(this HttpContext httpContext)
{
return AuditAttribute.GetCurrentScope(httpContext);
}
/// <summary>
/// Gets the current Audit Scope.
/// </summary>
/// <param name="page">The razor page.</param>
/// <returns>The current Audit Scope or NULL.</returns>
public static AuditScope GetCurrentAuditScope(this Microsoft.AspNetCore.Mvc.RazorPages.PageModel page)
{
return AuditAttribute.GetCurrentScope(page.HttpContext);
}
}
}
#endif
```
|
```python
import copy
import urllib3
import jwt
from CommonServerPython import *
# Disable insecure warnings
urllib3.disable_warnings()
PARAMS = demisto.params()
# Remove trailing slash to prevent wrong URL path to service
SERVER = PARAMS['url'][:-1] \
if (PARAMS['url'] and PARAMS['url'].endswith('/')) else PARAMS['url']
# Should we use SSL
USE_SSL = not PARAMS.get('insecure', False)
# Service base URL
BASE_URL = SERVER + '/xapi/v1/'
APPLICATION_ID = PARAMS.get('application_id')
PRIVATE_KEY = PARAMS.get('private_key')
# Headers to be sent in requests
REQUEST_HEADERS = {
'Content-Type': 'application/json'
}
OUTPUTS = {
'get_endpoint_by_id': {
'ID': 'guid',
'Name': 'name',
'Domain': 'domain',
'Platform': 'platform',
'ScanStatus': 'scanStatus',
'Status': 'status',
'IP': 'ip',
'ComputerSid': 'computerSid',
'IsCompromised': 'compromised',
'OsVersion': 'osVersion',
'OsProductType': 'osProductType',
'OsProductName': 'osProductName',
'Is64': 'is64',
'LastSeen': 'lastSeen',
'LastUser': 'lastUser'
},
'endpoint_files_retrieve': {
'OperationID': 'operationId'
},
'endpoint_isolate': {
'OperationID': 'operationId'
},
'endpoint_scan': {
'OperationID': 'operationId'
},
'event_bulk_update_status': {
'EventID': 'eventGuid'
},
'hashes_blacklist_status': {
'SHA256': 'hash',
'BlacklistStatus': 'status'
},
'event_quarantine_result': {
'SHA256': 'fileHash',
'FilePath': 'filePath'
},
'endpoint_scan_result': {
'FileScanned': 'filesScanned',
'FilesFailed': 'filesFailed',
'MalwareFound': 'malwareFound'
}
}
def create_headers(with_auth):
"""Create headers for the http_request
Args:
with_auth: True
Returns:
Headers.
"""
headers = copy.deepcopy(REQUEST_HEADERS)
if with_auth:
token = generate_auth_token().decode('utf-8')
headers['Authorization'] = f'Bearer {token}'
return headers
def extract_and_validate_http_response(response, operation_err_message, test=False):
"""
Args:
response: raw response
operation_err_message: error message to present in case of error
test: boolean value, true if test
Returns:
Error if response is faulty.
"""
try:
response.raise_for_status()
return response.json() if not test else response.content
except requests.exceptions.HTTPError:
try:
err_message = response.json().get('message')
except Exception:
try:
err_obj = json.loads(xml2json(response.text))
err_message = demisto.get(err_obj, 'Error.Message')
except Exception:
err_message = 'Could not parse error'
return_error(f'{operation_err_message}: \n{err_message}')
def http_request(method, url_suffix, plain_url=False, params=None, data=None, operation_err=None, parse_response=True,
with_auth=True):
"""Generic http call to Traps
Args:
method: request method.
url_suffix: URL suffix.
plain_url: full URL.
params: request params.
data: request data.
operation_err: operation error to log the user.
parse_response: boolean value, if parsing the response is needed.
with_auth: boolean value, do we need to authenticate the request.
Returns:
Result from the API.
"""
try:
result = requests.request(
method,
BASE_URL + url_suffix if not plain_url else url_suffix,
verify=USE_SSL,
params=params,
data=json.dumps(data) if data else data,
headers=create_headers(with_auth),
)
except requests.exceptions.ConnectionError:
return_error('Error connecting to Traps server. Please check your connection and you server address')
if parse_response:
result = extract_and_validate_http_response(result, operation_err, plain_url)
return result
def health_check():
"""Performs basic health check on the server.
Returns:
Error if not ok.
"""
path = f'{SERVER}/xapi/health-check'
server_status = http_request('GET', path, plain_url=True).decode('utf-8')
if server_status == '"Ok"':
return
raise Exception(f'Server health-check failed. Status returned was: {server_status}')
def generate_auth_token():
"""Generate a token using jwt.
Returns:
token.
"""
key = PRIVATE_KEY
data = {'appId': APPLICATION_ID}
token = jwt.encode(data, key, algorithm='RS256')
return token
def parse_data_from_response(resp_obj, operation_name=None):
"""Response raw data.
Args:
resp_obj: raw_data.
operation_name: operation name.
Returns:
parsed data.
"""
new_data_obj = {} # type: dict
outputs_obj = OUTPUTS[operation_name]
for key, val in outputs_obj.items():
if val in resp_obj:
new_data_obj[key] = resp_obj.get(val)
return new_data_obj
def get_endpoint_by_id(endpoint_id):
"""Get endpoint data by sending a GET request.
Args:
endpoint_id: endpoint ID.
Returns:
endpoint data.
"""
path = f'agents/{endpoint_id}'
endpoint_data = http_request('GET', path, operation_err=f'Get endpoint {endpoint_id} failed')
return parse_data_from_response(endpoint_data, 'get_endpoint_by_id'), endpoint_data
def endpoint_files_retrieve(endpoint_id, file_name, event_id):
"""Retrieve a file from the endpoint by sending a POST request.
Args:
endpoint_id: endpoint ID.
file_name: File name.
event_id: Event ID.
Returns:
Operation data.
"""
path = f'agents/{endpoint_id}/files-retrieve'
data = {
'incidentId': event_id,
'files': [
{
"path": file_name
}
]
}
resp = http_request('POST', path, data=data,
operation_err=f'Files retrieve command on endpoint {endpoint_id} failed')
operation_obj = parse_data_from_response(resp, 'endpoint_files_retrieve')
operation_obj.update({
'EndpointID': endpoint_id,
'Type': 'files-retrieve'
})
return operation_obj
def endpoint_scan(endpoint_id):
"""Initiate a scan on an endpoint by sending a POST request.
Args:
endpoint_id: endpoint ID.
Returns:
Operation data.
"""
path = f'agents/{endpoint_id}/scan'
response = http_request('POST', path, operation_err=f'Scanning endpoint: {endpoint_id} failed')
operation_obj = parse_data_from_response(response, 'endpoint_scan')
operation_obj.update({
'EndpointID': endpoint_id,
'Type': 'endpoint-scan'
})
return operation_obj, response
def endpoint_scan_result(operation_id):
"""Initiate the SAM operation for retrieving the scan result.
Args:
operation_id: operation ID.
Returns:
scan data.
"""
status, additional_data = sam_operation(operation_id, 'Could not get scan results')
scan_data = parse_data_from_response(additional_data.get('scanData'),
'endpoint_scan_result') if additional_data else {}
scan_data['Status'] = status
scan_data['OperationID'] = operation_id
return scan_data
def update_event_status(event_ids, status):
"""Update event or events status by sending a POST request.
Args:
event_ids: event IDs.
status: status.
Returns:
API response.
"""
path = 'events/status'
data = {
"guids": event_ids,
"status": status
}
response = http_request('PATCH', path, data=data, operation_err=f'Update events {event_ids} status failed')
return response
def update_event_comment(event_id, comment):
"""Update event comment by sending a POST request.
Args:
event_id: event ID.
comment: comment.
"""
path = f'events/{event_id}/comment'
data = {
"comment": comment
}
http_request('POST', path, data=data, operation_err=f'Update event: {event_id} comment failed')
def event_update(event_id, status, comment):
"""Initiate update of an event.
Args:
event_id: event ID.
status: status.
comment: comment.
Returns:
Error if not successful.
"""
if not status and not comment:
raise Exception('Please add a status or a comment. Neither was given.')
if status:
response = update_event_status([event_id], status)
if response.get('failed'):
raise Exception(f'Update status for event: {event_id} has failed.')
if comment:
update_event_comment(event_id, comment)
def event_bulk_update_status(event_ids, status):
"""Initiate update of events statuses.
Args:
event_ids: event IDs.
status: status.
Returns:
Update statuses.
"""
ids_obj = update_event_status(event_ids, status)
results = {
'UpdateSuccess': list(
map(lambda id_obj: parse_data_from_response(id_obj, 'event_bulk_update_status'), ids_obj.get('succeeded'))),
'UpdateFail': list(
map(lambda id_obj: parse_data_from_response(id_obj, 'event_bulk_update_status'), ids_obj.get('failed'))),
'UpdateIgnored': list(
map(lambda id_obj: parse_data_from_response(id_obj, 'event_bulk_update_status'), ids_obj.get('ignored')))
}
return results
def hash_blacklist(hash_id):
"""Add hash to a blacklist by sending a POST request.
Args:
hash_id: Hash.
Returns:
status.
"""
path = f'hashes/{hash_id}/blacklist'
result = http_request('POST', path, operation_err=f'Failed to blacklist {hash_id}')
return result.get('status')
def remove_hash_from_blacklist(hash_id):
"""Remove hash to a blacklist by sending a POST request.
Args:
hash_id: Hash.
Returns:
status.
"""
path = f'hashes/{hash_id}/blacklist-remove'
result = http_request('POST', path, operation_err=f'Failed to remove {hash_id} from blacklist')
return result.get('status')
def hashes_blacklist_status(hash_ids):
"""Get hashes blacklisting status by sending a POST request.
Args:
hash_ids: Hashes.
Returns:
Hashes and blacklisting data.
"""
path = 'hashes/blacklist-status'
data = {
'hashes': hash_ids
}
ids_obj = http_request('POST', path, data=data, operation_err='Failed to get hashes status')
result = list(map(lambda id_obj: parse_data_from_response(id_obj, 'hashes_blacklist_status'), ids_obj))
return result
def event_quarantine(event_id):
"""Quarantine an event by sending a POST request.
Args:
event_id: event ID.
Returns:
Data regarding the event and the quarantine operation.
"""
path = f'events/{event_id}/quarantine'
resp = http_request('POST', path, operation_err=f'Quarantine event {event_id} failed')
message_ids = resp.get('operationId').get('samMessageIds')
operations = []
for op_id in message_ids:
operations.append({
'EventID': event_id,
'Type': 'event-quarantine',
'OperationID': op_id
})
return operations
def endpoint_isolate(endpoint_id):
"""Isolate an endpoint by sending a POST request.
Args:
endpoint_id: endpoint ID.
Returns:
Data regarding the endpoint and the isolation operation.
"""
path = f'agents/{endpoint_id}/isolate'
resp = http_request('POST', path, operation_err=f'Isolation of endpoint: {endpoint_id} failed')
operation_obj = parse_data_from_response(resp, 'endpoint_isolate')
operation_obj.update({
'EndpointID': endpoint_id,
'Type': 'endpoint-isolate'
})
return operation_obj
def sam_operation(operation_id, operation_err):
"""
This functions invokes an API call to the sam operation endpoint on Traps server to get the operation status and/or
results.
:param operation_id: the operation on which to get the status/results
:param operation_err: The error to return in case of a failure (changes according to the command fired.)
:return:
status: the status of the operation.
additional_data: additional data regarding the operation (like scan results)
"""
path = f'sam/operations/{operation_id}'
result = http_request('GET', path, operation_err=operation_err)
summary_data = result.get('summaryData')
if summary_data and (summary_data.get('incompatible') or summary_data.get('samExists')):
if operation_err == 'Could not get scan results': # Get scan result
requested_scans = int(summary_data.get('requested', 0))
incompatible_scans = int(summary_data.get('incompatible', 0))
sam_exists_scans = int(summary_data.get('samExists', 0))
if requested_scans <= incompatible_scans + sam_exists_scans:
raise Exception(f'{operation_err}.\nRequested scans number: {requested_scans}.\n'
f'Incompatible scans number: {requested_scans}.\n'
f'Sam exists scans number: {sam_exists_scans}.')
raise Exception(f'{operation_err}')
if result.get('summaryData').get('samExists'):
return 'ignored', None
for status_obj in result.get('statuses'):
if status_obj.get('count') > 0:
return status_obj.get('status'), result.get('additionalData')
raise Exception(f'{operation_err}: Could not retrieve status')
def endpoint_isolate_status(operation_id):
"""Initiate the SAM operation for endpoint isolation status.
Args:
operation_id: operation ID.
Returns:
endpoint status, operation ID
"""
status, _ = sam_operation(operation_id, 'Could not get endpoint isolate status')
return {'Status': status, 'OperationID': operation_id}
def event_quarantine_result(operation_id):
"""Initiate the SAM operation for quarantine result.
Args:
operation_id: operation ID.
Returns:
quarantine data.
"""
status, additional_data = sam_operation(operation_id, 'Could not get event quarantine status')
quarantine_data = parse_data_from_response(additional_data.get('quarantineData'),
'event_quarantine_result') if additional_data else {}
quarantine_data['Status'] = status
quarantine_data['OperationID'] = operation_id
return quarantine_data
def endpoint_files_retrieve_result(operation_id):
"""Initiate the SAM operation for file retrieving.
Args:
operation_id: operation ID.
Returns:
file as an entry, status, operation_id.
"""
status, additional_data = sam_operation(operation_id, 'Failed to get file retrieve results')
if status == 'finished':
file_info = additional_data.get('uploadData')
file_name = file_info.get('fileName')
url = file_info.get('downloadUrl')
data = http_request('GET', url, plain_url=True, operation_err='Unable to download file.', with_auth=False)
demisto.results(fileResult(filename=file_name, data=data))
return {'Status': status, 'OperationID': operation_id}
def test_module_command():
"""Performs basic GET request to check if the API is reachable and authentication is successful.
Returns:
ok if successful.
"""
health_check()
result = http_request('GET', 'agents/1', parse_response=False)
if result.status_code == 403:
raise Exception('Error connecting to server. Check your Application ID and Private key')
demisto.results('ok')
def get_endpoint_by_id_command():
"""Get endpoint data.
Returns:
Demisto Outputs.
"""
args = demisto.args()
endpoint_id = args.get('endpoint_id')
endpoint_data, raw_data = get_endpoint_by_id(endpoint_id)
human_readable = tableToMarkdown(f'Endpoint {endpoint_id} data:', endpoint_data, headerTransform=pascalToSpace)
context = {'Traps.Endpoint(val.ID == obj.ID)': createContext(endpoint_data)}
return_outputs(human_readable, context, raw_response=raw_data)
def endpoint_files_retrieve_command():
"""Initiate retrieving of files from an endpoint.
Returns:
Demisto Outputs.
"""
args = demisto.args()
endpoint_id = args.get('endpoint_id')
file_name = args.get('file_name')
event_id = args.get('event_id')
operation_obj = endpoint_files_retrieve(endpoint_id, file_name, event_id)
human_readable = tableToMarkdown(f'Files retrieve command on endpoint: {endpoint_id} received', operation_obj,
headerTransform=pascalToSpace)
context = {'Traps.FileRetrieve(val.OperationID == obj.OperationID)': operation_obj}
return_outputs(human_readable, context, operation_obj)
def endpoint_files_retrieve_result_command():
"""Retrieve files from an endpoint result.
Returns:
Demisto Outputs.
"""
args = demisto.args()
operation_id = args.get('operation_id')
status_obj = endpoint_files_retrieve_result(operation_id)
human_readable = f'### File retrieval status is: {status_obj.get("Status")}'
context = {'Traps.FileRetrieveResult(val.OperationID == obj.OperationID)': status_obj}
return_outputs(human_readable, context)
def endpoint_scan_command():
"""Initiate scan on an endpoint.
Returns:
Demisto Outputs.
"""
args = demisto.args()
endpoint_id = args.get('endpoint_id')
# check that running a scan is possible
_, raw_data = get_endpoint_by_id(endpoint_id)
scan_status = raw_data.get('scanStatus')
if scan_status and scan_status in ['pending', 'in_progress']:
raise Exception(f'Could not initiate a scan on the endpoint {endpoint_id}'
f' because endpoint scan status is {scan_status}.')
operation_obj, raw_data = endpoint_scan(endpoint_id)
human_readable = tableToMarkdown(f'Scan command on endpoint: {endpoint_id} received', operation_obj,
headerTransform=pascalToSpace)
context = {'Traps.Scan(val.OperationID == obj.OperationID)': operation_obj}
return_outputs(human_readable, context, raw_data)
def endpoint_scan_result_command():
"""Retrieve endpoint scan results.
Returns:
Demisto Outputs.
"""
args = demisto.args()
operation_id = args.get('operation_id')
status_obj = endpoint_scan_result(operation_id)
context = {'Traps.ScanResult(val.OperationID == obj.OperationID)': status_obj}
human_readable = tableToMarkdown(f'Status of scan operation: {operation_id}', status_obj,
headerTransform=pascalToSpace)
return_outputs(human_readable, context, status_obj)
def event_update_command():
"""Update an event.
Returns:
Demisto Outputs.
"""
args = demisto.args()
event_id = args.get('event_id')
status = args.get('status')
comment = args.get('comment')
event_update(event_id, status, comment)
human_readable = f'### Event: {event_id} was updated'
human_readable += f'\n##### New status: {status}' if status else ''
human_readable += f'\n##### New comment: {comment}' if comment else ''
return_outputs(human_readable, None, {})
def event_bulk_update_status_command():
"""Update events.
Returns:
Demisto Outputs.
"""
args = demisto.args()
event_ids = argToList(args.get('event_ids'))
status = args.get('status')
results = event_bulk_update_status(event_ids, status)
human_readable = tableToMarkdown('Successfully updated', results.get('UpdateSuccess'),
headerTransform=pascalToSpace)
human_readable += tableToMarkdown('Failed to update', results.get('UpdateFail'), headerTransform=pascalToSpace)
human_readable += tableToMarkdown('Ignored', results.get('UpdateIgnored'), headerTransform=pascalToSpace)
return_outputs(human_readable, {}, {})
def event_quarantine_command():
"""Quarantine an event.
Returns:
Demisto Outputs.
"""
args = demisto.args()
event_id = args.get('event_id')
operations = event_quarantine(event_id)
human_readable = tableToMarkdown(f'Quarantine command on event: {event_id} received', operations,
headerTransform=pascalToSpace)
context = {'Traps.Quarantine(val.OperationID == obj.OperationID)': operations}
return_outputs(human_readable, context, operations)
def event_quarantine_result_command():
"""Check quarantine event status.
Returns:
Demisto Outputs.
"""
args = demisto.args()
operation_id = args.get('operation_id')
status_obj = event_quarantine_result(operation_id)
context = {'Traps.QuarantineResult(val.OperationID == obj.OperationID)': status_obj}
human_readable = tableToMarkdown(f'Status of quarantine operation: {operation_id}',
status_obj, headerTransform=pascalToSpace)
return_outputs(human_readable, context, status_obj)
def hash_blacklist_command():
"""Add a hash to a blacklist.
Returns:
Demisto Outputs.
"""
args = demisto.args()
hash_id = args.get('hash_id')
status = hash_blacklist(hash_id)
context = {} # type: dict
if status == 'success':
human_readable = f'#### Successfully blacklisted: {hash_id}'
status_obj = {
'SHA256': hash_id,
'BlacklistStatus': 'blacklisted'
}
context = {'Traps.File(val.SHA256 == obj.SHA256)': status_obj}
elif status == 'ignore':
human_readable = f'#### Hash: {hash_id} already appears in blacklist'
else:
human_readable = f'#### Failed to blacklist: {hash_id}'
return_outputs(human_readable, context, status)
def hash_blacklist_remove_command():
"""Remove a hash from blacklist.
Returns:
Demisto Outputs.
"""
args = demisto.args()
hash_id = args.get('hash_id')
status = remove_hash_from_blacklist(hash_id)
context = {} # type: dict
if status == 'success':
human_readable = f'#### Successfully removed {hash_id} from blacklist'
status_obj = {
'SHA256': hash_id,
'BlacklistStatus': 'none'
}
context = {'Traps.File(val.SHA256 == obj.SHA256)': status_obj}
else:
human_readable = f'#### Failed to remove {hash_id} from blacklist:'
return_outputs(human_readable, context, status)
def hashes_blacklist_status_command():
"""Check hash blacklist status.
Returns:
Demisto Outputs.
"""
args = demisto.args()
hash_ids = args.get('hash_ids').split(',')
ids_obj = hashes_blacklist_status(hash_ids)
human_readable = tableToMarkdown('Hashes status:', ids_obj, headerTransform=pascalToSpace)
context = {'Traps.File(val.SHA256 == obj.SHA256)': ids_obj}
return_outputs(human_readable, context, ids_obj)
def endpoint_isolate_command():
"""Isolate an endpoint.
Returns:
Demisto Outputs.
"""
args = demisto.args()
endpoint_id = args.get('endpoint_id')
operation_obj = endpoint_isolate(endpoint_id)
human_readable = tableToMarkdown(f'Isolate command on endpoint {endpoint_id} received', operation_obj,
headerTransform=pascalToSpace)
context = {'Traps.Isolate(val.OperationID == obj.OperationID)': operation_obj}
return_outputs(human_readable, context, operation_obj)
def endpoint_isolate_status_command():
"""Check endpoint isolation status.
Returns:
Demisto Outputs.
"""
args = demisto.args()
operation_id = args.get('operation_id')
isolate_status = endpoint_isolate_status(operation_id)
human_readable = f'### Isolate status is: {isolate_status.get("Status")}'
context = {'Traps.IsolateResult(val.OperationID == obj.OperationID)': isolate_status}
return_outputs(human_readable, context, isolate_status)
def main():
"""
Initiate integration command
"""
# Remove proxy if not set to true in params
handle_proxy()
command = demisto.command()
LOG(f'Command being called is {command}.')
try:
if command == 'test-module':
test_module_command()
elif command == 'traps-get-endpoint-by-id':
get_endpoint_by_id_command()
elif command == 'traps-endpoint-files-retrieve':
endpoint_files_retrieve_command()
elif command == 'traps-endpoint-files-retrieve-result':
endpoint_files_retrieve_result_command()
elif command == 'traps-endpoint-scan':
endpoint_scan_command()
elif command == 'traps-endpoint-scan-result':
endpoint_scan_result_command()
elif command == 'traps-event-update':
event_update_command()
elif command == 'traps-event-bulk-update-status':
event_bulk_update_status_command()
elif command == 'traps-hash-blacklist':
hash_blacklist_command()
elif command == 'traps-hash-blacklist-remove':
hash_blacklist_remove_command()
elif command == 'traps-hashes-blacklist-status':
hashes_blacklist_status_command()
elif command == 'traps-event-quarantine':
event_quarantine_command()
elif command == 'traps-event-quarantine-result':
event_quarantine_result_command()
elif command == 'traps-endpoint-isolate':
endpoint_isolate_command()
elif command == 'traps-endpoint-isolate-status':
endpoint_isolate_status_command()
else:
raise NotImplementedError(f'Command {command} was not implemented.')
except Exception as err:
return_error(err)
if __name__ in ["__builtin__", "builtins", "__main__"]:
main()
```
|
Randall Lavender (born 1956) is a nationally and internationally exhibited American artist, writer, educator, and arts administrator who has worked in Los Angeles since the early 1980s. He led Otis College of Art and Design during 2019 and 2020, after holding academic leadership positions there for 15 years. His paintings and sculptures are included in numerous public and private collections.
Life and education
Lavender was born and raised in Southern California. His father was novelist and musical composer William Lavender; his grandfather was Viennese émigré composer and USC music professor Ernest Kanitz. Lavender studied art at the Riverside, California, Art Museum and at John W. North High School in Riverside, California. He attended California State University, Fullerton, where he studied ceramics and glassblowing with sculptor Jerry Rothman, earning a B.A. in Art in 1979. He completed an M.F.A. in Sculpture in 1981 at Claremont Graduate University in Claremont, California, under mentor Roland Reiss.
After graduate school, Lavender and his fellow student, sculptor John Frame, joined with architectural designer Eve Steele and artist/building contractor Lynn Roylance to develop a 14,000sf artists-in-residence project in the part of downtown Los Angeles that became known as the "L.A. art colony." In 1981, Lavender moved to Vanderbilt University in Nashville, Tennessee, where he was Assistant Professor and developed the school’s first sculpture curriculum and studio space.
Lavender returned to his Los Angeles studio in 1983, later relocating it to the Santa Fe Art Colony.
Painting and sculpture
Lavender’s work displayed stylistic evolution over the years. Early works, featured in Newcomers '79 at Los Angeles' Municipal Art Gallery, were painted figurative tableaux blending two-dimensional imagery with three-dimensional form, and including "sculptural objects that combined contrasting materials." His 1981 move to Vanderbilt began "a crucial time of reevaluation and reexamination in his artistic development ... [and] an integration in his work," as he shifted to mixed-media tableaux and pictorial works with reliefs, in “an overall dissolution of media boundaries." One critic saw the pieces as "psychological dramas in which … ideas are realized through a variety of media ... [that] allude to the diversity of human nature...." The work included three series of sculptural and pictorial tableaux: Frames of Mind explored the five stages of grief discussed by Elisabeth Kübler-Ross. Conflicting Ideals focused on four systems of idealization—art, nature, science and technology. An unnamed series set the international symbols for Man and Woman in unexpected scenarios.Travel to Italy and study of works by the Old Masters gave Lavender new inspiration, and also raised questions about late Modernism's penchant for throwing out the "old" in favor of the "new." He began exploring the Western traditional language of realist figurative painting in embodying contemporary themes, working with oil on panel. In 1986 Lavender joined with L.A. art dealer Jan Turner, who hosted a solo exhibition of his new paintings as a West Coast counterpart to New York's emerging neoclassicism. The work was said by Los Angeles Times art critic William Wilson to show that “something as presumably cerebral as conceptual art has roots in emotion ... [making] the point that universal myth and private striving are the same thing." Lavender joined Tortue Gallery in Santa Monica, California, in 1988. Along with Lavender’s human figures, subsequent paintings began to feature architectural, landscape, and animal subjects, such as “Owl,” reproduced in the art-historical anthology ZOO: Animals in Art.In 1994 Lavender was one of seven artists in beyondappearance, an exhibition "presenting gifted L.A. artists who get less than their due because of the prejudice of fashion .... All place high value on traditional craftsmanship .... address[ing] aspects of life and art that are timeless and without conscious style." Lavender’s work In beyondappearance were seen by one critic as "the wry conversion of clinical study to poignant fable ... the outcome of a dialectic between observed truth and latent enigma ...."
Teaching and research
Lavender joined the faculty of Otis College of Art and Design in 1983, teaching in their Foundation (first year) program. Seeing the variations in his students’ learning processes led him to research, and to publish on, learning theory and its applications in the art studio-classroom. His work on three-dimensional design curricula, in FATE in Review: Foundations in Art Theory and Education (2001), held that aesthetic fundamentals (formal training) and accompanying skill-building are crucial to the early phase of an artist's or designer's higher education. A broader view of design education issues, looking also at two-dimensional design curricula, appeared in "The Subordination of Aesthetic Fundamentals in College Art Instruction" in Journal of Aesthetic Education (2003). Further research focused on educational psychology and attribution theory, during which Lavender conducted a formal study centered on a cohort of college art and design students. With two psychologists, Selena T. Nguyen-Rodriguez, Ph.D. and Donna Spruijt-Metz, Ph.D., he published "Teaching the Whole Student: Perceived Academic Control in College Art Instruction" in Studies in Art Education: A Journal of Issues and Research (2010). Lavender also contributed to a volume of essays published for fashion design students, writing on the meaning of jeans in Garb: A Fashion and Culture Reader(2007).
Lavender served as Assistant and Associate Chair in the Otis Foundation Program, and as Professor. In 2005 he was honored with the Otis College Teaching Excellence Award.
Higher education leadership
In 2010 Lavender was appointed Interim Co-Provost at Otis College, along with colleague Debra Ballard. A year later he became Vice Provost, teaming with incoming College Provost Kerry Walk, Ph.D. He led Otis campus planning for a major expansion that added new studios, shop space, classrooms and student housing facilities. After Dr. Walk became Interim President in 2014, Lavender became Provost. He testified before the California Legislative Joint Committee on the Arts on the Otis Report on the Creative Economy, led the College's first academic collective bargaining, and developed a new comprehensive academic plan and strategic planning process. He left the Provost position late in 2018 to return to his studio.
In early 2019 Lavender was asked by the Otis College Board of Trustees to become Interim President, and served until June 2020. He shepherded to completion the school's new five-year College Strategic Plan; its successful WASC and NASAD re-accreditation reviews, and recruitment for a new Provost and a CFO. In early 2020, Lavender led the Otis response to COVID-19 and State-mandated shutdowns, including campus closure, a switch to online education, and conversion of end-of-school-year Annual Exhibition and Commencement ceremonies to virtual form.
Lavender was named Professor Emeritus at Otis College in 2021.
Exhibitions
Selected solo shows
1995, 1993, 1991, 1989 Tortue Gallery, Santa Monica, California
1990 Riverside Art Museum, Riverside, California
1987 Jan Turner Gallery, Los Angeles, California
1984 Art Gallery, Santa Monica College, Santa Monica, California
1983 Conflicting Ideals, Fine Arts Center at Cheekwood, Nashville, Tennessee
Selected group shows
2010 Selections from the Permanent Collection, Groves Gallery, Oceanside Museum of Art, Oceanside, California.
2000 Representing L.A.; Pictorial Currents in Contemporary Southern California Art, Frye Art Museum, Seattle, Washington; 2001 Art Museum of South Texas, Corpus Christi, Texas.
1996 Imaginary Realities: Surrealism Then and Now, Louis Stern Fine Arts, Los Angeles, California.
1995 beyondappearance, Oliver Art Center, California College of Arts, Oakland, California.
1994 beyondappearance, Armory Center for the Arts, Pasadena, California.
1989 California Artists from the Frederick R. Weisman Foundation Collection, Phinney Gallery, Annenberg Art Wing, Palm Springs Art Museum, Palm Springs, California.
1987 Contemporary Humanism: Reconfirmation of the Figure, Visual Arts Center, California State University, Fullerton.
1986 Selections from the Frederick R. Weisman Foundation Collection, Centre National des Arts Plastiques, Paris, France.
1986 Museu Calouste Gulbenkian, Lisbon, Portugal
Collections holding works by Lavender include the Frederick R. Weisman Foundation, Oceanside Museum of Art, and Laguna Art Museum as well as many private collections. He also held part-time teaching positions at Claremont Graduate University and California State Polytechnic University, Pomona.
References
External links
Video: California Joint Legislative Committee on the Arts
Official Website: randalllavender.com
American contemporary artists
Otis College of Art and Design faculty
1956 births
Living people
|
```php
<?php
namespace Spatie\SchemaOrg;
use Spatie\SchemaOrg\Contracts\AutomotiveBusinessContract;
use Spatie\SchemaOrg\Contracts\AutoWashContract;
use Spatie\SchemaOrg\Contracts\LocalBusinessContract;
use Spatie\SchemaOrg\Contracts\OrganizationContract;
use Spatie\SchemaOrg\Contracts\PlaceContract;
use Spatie\SchemaOrg\Contracts\ThingContract;
/**
* A car wash business.
*
* @see path_to_url
*
*/
class AutoWash extends BaseType implements AutoWashContract, AutomotiveBusinessContract, LocalBusinessContract, OrganizationContract, PlaceContract, ThingContract
{
/**
* For a [[NewsMediaOrganization]] or other news-related [[Organization]], a
* statement about public engagement activities (for news media, the
* newsrooms), including involving the public - digitally or otherwise --
* in coverage decisions, reporting and activities after publication.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $actionableFeedbackPolicy
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function actionableFeedbackPolicy($actionableFeedbackPolicy)
{
return $this->setProperty('actionableFeedbackPolicy', $actionableFeedbackPolicy);
}
/**
* A property-value pair representing an additional characteristic of the
* entity, e.g. a product feature or another characteristic for which there
* is no matching property in schema.org.
*
* Note: Publishers should be aware that applications designed to use
* specific schema.org properties (e.g. path_to_url
* path_to_url path_to_url ...) will typically
* expect such data to be provided using those properties, rather than using
* the generic property/value mechanism.
*
* @param \Spatie\SchemaOrg\Contracts\PropertyValueContract|\Spatie\SchemaOrg\Contracts\PropertyValueContract[] $additionalProperty
*
* @return static
*
* @see path_to_url
*/
public function additionalProperty($additionalProperty)
{
return $this->setProperty('additionalProperty', $additionalProperty);
}
/**
* An additional type for the item, typically used for adding more specific
* types from external vocabularies in microdata syntax. This is a
* relationship between something and a class that the thing is in.
* Typically the value is a URI-identified RDF class, and in this case
* corresponds to the
* use of rdf:type in RDF. Text values can be used sparingly, for cases
* where useful information can be added without their being an appropriate
* schema to reference. In the case of text values, the class label should
* follow the schema.org [style
* guide](path_to_url
*
* @param string|string[] $additionalType
*
* @return static
*
* @see path_to_url
*/
public function additionalType($additionalType)
{
return $this->setProperty('additionalType', $additionalType);
}
/**
* Physical address of the item.
*
* @param \Spatie\SchemaOrg\Contracts\PostalAddressContract|\Spatie\SchemaOrg\Contracts\PostalAddressContract[]|string|string[] $address
*
* @return static
*
* @see path_to_url
*/
public function address($address)
{
return $this->setProperty('address', $address);
}
/**
* The number of completed interactions for this entity, in a particular
* role (the 'agent'), in a particular action (indicated in the statistic),
* and in a particular context (i.e. interactionService).
*
* @param \Spatie\SchemaOrg\Contracts\InteractionCounterContract|\Spatie\SchemaOrg\Contracts\InteractionCounterContract[] $agentInteractionStatistic
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function agentInteractionStatistic($agentInteractionStatistic)
{
return $this->setProperty('agentInteractionStatistic', $agentInteractionStatistic);
}
/**
* The overall rating, based on a collection of reviews or ratings, of the
* item.
*
* @param \Spatie\SchemaOrg\Contracts\AggregateRatingContract|\Spatie\SchemaOrg\Contracts\AggregateRatingContract[] $aggregateRating
*
* @return static
*
* @see path_to_url
*/
public function aggregateRating($aggregateRating)
{
return $this->setProperty('aggregateRating', $aggregateRating);
}
/**
* An alias for the item.
*
* @param string|string[] $alternateName
*
* @return static
*
* @see path_to_url
*/
public function alternateName($alternateName)
{
return $this->setProperty('alternateName', $alternateName);
}
/**
* Alumni of an organization.
*
* @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $alumni
*
* @return static
*
* @see path_to_url
*/
public function alumni($alumni)
{
return $this->setProperty('alumni', $alumni);
}
/**
* An amenity feature (e.g. a characteristic or service) of the
* Accommodation. This generic property does not make a statement about
* whether the feature is included in an offer for the main accommodation or
* available at extra costs.
*
* @param \Spatie\SchemaOrg\Contracts\LocationFeatureSpecificationContract|\Spatie\SchemaOrg\Contracts\LocationFeatureSpecificationContract[] $amenityFeature
*
* @return static
*
* @see path_to_url
*/
public function amenityFeature($amenityFeature)
{
return $this->setProperty('amenityFeature', $amenityFeature);
}
/**
* The geographic area where a service or offered item is provided.
*
* @param \Spatie\SchemaOrg\Contracts\AdministrativeAreaContract|\Spatie\SchemaOrg\Contracts\AdministrativeAreaContract[]|\Spatie\SchemaOrg\Contracts\GeoShapeContract|\Spatie\SchemaOrg\Contracts\GeoShapeContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[]|string|string[] $areaServed
*
* @return static
*
* @see path_to_url
*/
public function areaServed($areaServed)
{
return $this->setProperty('areaServed', $areaServed);
}
/**
* An award won by or for this item.
*
* @param string|string[] $award
*
* @return static
*
* @see path_to_url
*/
public function award($award)
{
return $this->setProperty('award', $award);
}
/**
* Awards won by or for this item.
*
* @param string|string[] $awards
*
* @return static
*
* @see path_to_url
*/
public function awards($awards)
{
return $this->setProperty('awards', $awards);
}
/**
* A short textual code (also called "store code") that uniquely identifies
* a place of business. The code is typically assigned by the
* parentOrganization and used in structured URLs.
*
* For example, in the URL
* path_to_url the code "3047"
* is a branchCode for a particular branch.
*
* @param string|string[] $branchCode
*
* @return static
*
* @see path_to_url
*/
public function branchCode($branchCode)
{
return $this->setProperty('branchCode', $branchCode);
}
/**
* The larger organization that this local business is a branch of, if any.
* Not to be confused with (anatomical) [[branch]].
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $branchOf
*
* @return static
*
* @see path_to_url
*/
public function branchOf($branchOf)
{
return $this->setProperty('branchOf', $branchOf);
}
/**
* The brand(s) associated with a product or service, or the brand(s)
* maintained by an organization or business person.
*
* @param \Spatie\SchemaOrg\Contracts\BrandContract|\Spatie\SchemaOrg\Contracts\BrandContract[]|\Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $brand
*
* @return static
*
* @see path_to_url
*/
public function brand($brand)
{
return $this->setProperty('brand', $brand);
}
/**
* A contact point for a person or organization.
*
* @param \Spatie\SchemaOrg\Contracts\ContactPointContract|\Spatie\SchemaOrg\Contracts\ContactPointContract[] $contactPoint
*
* @return static
*
* @see path_to_url
*/
public function contactPoint($contactPoint)
{
return $this->setProperty('contactPoint', $contactPoint);
}
/**
* A contact point for a person or organization.
*
* @param \Spatie\SchemaOrg\Contracts\ContactPointContract|\Spatie\SchemaOrg\Contracts\ContactPointContract[] $contactPoints
*
* @return static
*
* @see path_to_url
*/
public function contactPoints($contactPoints)
{
return $this->setProperty('contactPoints', $contactPoints);
}
/**
* The basic containment relation between a place and one that contains it.
*
* @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $containedIn
*
* @return static
*
* @see path_to_url
*/
public function containedIn($containedIn)
{
return $this->setProperty('containedIn', $containedIn);
}
/**
* The basic containment relation between a place and one that contains it.
*
* @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $containedInPlace
*
* @return static
*
* @see path_to_url
*/
public function containedInPlace($containedInPlace)
{
return $this->setProperty('containedInPlace', $containedInPlace);
}
/**
* The basic containment relation between a place and another that it
* contains.
*
* @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $containsPlace
*
* @return static
*
* @see path_to_url
*/
public function containsPlace($containsPlace)
{
return $this->setProperty('containsPlace', $containsPlace);
}
/**
* For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement
* describing (in news media, the newsrooms) disclosure and correction
* policy for errors.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $correctionsPolicy
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function correctionsPolicy($correctionsPolicy)
{
return $this->setProperty('correctionsPolicy', $correctionsPolicy);
}
/**
* The currency accepted.
*
* Use standard formats: [ISO 4217 currency
* format](path_to_url e.g. "USD"; [Ticker
* symbol](path_to_url for
* cryptocurrencies, e.g. "BTC"; well known names for [Local Exchange
* Trading
* Systems](path_to_url
* (LETS) and other currency types, e.g. "Ithaca HOUR".
*
* @param string|string[] $currenciesAccepted
*
* @return static
*
* @see path_to_url
*/
public function currenciesAccepted($currenciesAccepted)
{
return $this->setProperty('currenciesAccepted', $currenciesAccepted);
}
/**
* A relationship between an organization and a department of that
* organization, also described as an organization (allowing different urls,
* logos, opening hours). For example: a store with a pharmacy, or a bakery
* with a cafe.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $department
*
* @return static
*
* @see path_to_url
*/
public function department($department)
{
return $this->setProperty('department', $department);
}
/**
* A description of the item.
*
* @param \Spatie\SchemaOrg\Contracts\TextObjectContract|\Spatie\SchemaOrg\Contracts\TextObjectContract[]|string|string[] $description
*
* @return static
*
* @see path_to_url
*/
public function description($description)
{
return $this->setProperty('description', $description);
}
/**
* A sub property of description. A short description of the item used to
* disambiguate from other, similar items. Information from other properties
* (in particular, name) may be necessary for the description to be useful
* for disambiguation.
*
* @param string|string[] $disambiguatingDescription
*
* @return static
*
* @see path_to_url
*/
public function disambiguatingDescription($disambiguatingDescription)
{
return $this->setProperty('disambiguatingDescription', $disambiguatingDescription);
}
/**
* The date that this organization was dissolved.
*
* @param \DateTimeInterface|\DateTimeInterface[] $dissolutionDate
*
* @return static
*
* @see path_to_url
*/
public function dissolutionDate($dissolutionDate)
{
return $this->setProperty('dissolutionDate', $dissolutionDate);
}
/**
* Statement on diversity policy by an [[Organization]] e.g. a
* [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement
* describing the newsrooms diversity policy on both staffing and
* sources, typically providing staffing data.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $diversityPolicy
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function diversityPolicy($diversityPolicy)
{
return $this->setProperty('diversityPolicy', $diversityPolicy);
}
/**
* For an [[Organization]] (often but not necessarily a
* [[NewsMediaOrganization]]), a report on staffing diversity issues. In a
* news context this might be for example ASNE or RTDNA (US) reports, or
* self-reported.
*
* @param \Spatie\SchemaOrg\Contracts\ArticleContract|\Spatie\SchemaOrg\Contracts\ArticleContract[]|string|string[] $diversityStaffingReport
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function diversityStaffingReport($diversityStaffingReport)
{
return $this->setProperty('diversityStaffingReport', $diversityStaffingReport);
}
/**
* The Dun & Bradstreet DUNS number for identifying an organization or
* business person.
*
* @param string|string[] $duns
*
* @return static
*
* @see path_to_url
*/
public function duns($duns)
{
return $this->setProperty('duns', $duns);
}
/**
* Email address.
*
* @param string|string[] $email
*
* @return static
*
* @see path_to_url
*/
public function email($email)
{
return $this->setProperty('email', $email);
}
/**
* Someone working for this organization.
*
* @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $employee
*
* @return static
*
* @see path_to_url
*/
public function employee($employee)
{
return $this->setProperty('employee', $employee);
}
/**
* People working for this organization.
*
* @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $employees
*
* @return static
*
* @see path_to_url
*/
public function employees($employees)
{
return $this->setProperty('employees', $employees);
}
/**
* Statement about ethics policy, e.g. of a [[NewsMediaOrganization]]
* regarding journalistic and publishing practices, or of a [[Restaurant]],
* a page describing food source policies. In the case of a
* [[NewsMediaOrganization]], an ethicsPolicy is typically a statement
* describing the personal, organizational, and corporate standards of
* behavior expected by the organization.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $ethicsPolicy
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function ethicsPolicy($ethicsPolicy)
{
return $this->setProperty('ethicsPolicy', $ethicsPolicy);
}
/**
* Upcoming or past event associated with this place, organization, or
* action.
*
* @param \Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $event
*
* @return static
*
* @see path_to_url
*/
public function event($event)
{
return $this->setProperty('event', $event);
}
/**
* Upcoming or past events associated with this place or organization.
*
* @param \Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $events
*
* @return static
*
* @see path_to_url
*/
public function events($events)
{
return $this->setProperty('events', $events);
}
/**
* The fax number.
*
* @param string|string[] $faxNumber
*
* @return static
*
* @see path_to_url
*/
public function faxNumber($faxNumber)
{
return $this->setProperty('faxNumber', $faxNumber);
}
/**
* A person who founded this organization.
*
* @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $founder
*
* @return static
*
* @see path_to_url
*/
public function founder($founder)
{
return $this->setProperty('founder', $founder);
}
/**
* A person who founded this organization.
*
* @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $founders
*
* @return static
*
* @see path_to_url
*/
public function founders($founders)
{
return $this->setProperty('founders', $founders);
}
/**
* The date that this organization was founded.
*
* @param \DateTimeInterface|\DateTimeInterface[] $foundingDate
*
* @return static
*
* @see path_to_url
*/
public function foundingDate($foundingDate)
{
return $this->setProperty('foundingDate', $foundingDate);
}
/**
* The place where the Organization was founded.
*
* @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $foundingLocation
*
* @return static
*
* @see path_to_url
*/
public function foundingLocation($foundingLocation)
{
return $this->setProperty('foundingLocation', $foundingLocation);
}
/**
* A person or organization that supports (sponsors) something through some
* kind of financial contribution.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $funder
*
* @return static
*
* @see path_to_url
*/
public function funder($funder)
{
return $this->setProperty('funder', $funder);
}
/**
* A [[Grant]] that directly or indirectly provide funding or sponsorship
* for this item. See also [[ownershipFundingInfo]].
*
* @param \Spatie\SchemaOrg\Contracts\GrantContract|\Spatie\SchemaOrg\Contracts\GrantContract[] $funding
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function funding($funding)
{
return $this->setProperty('funding', $funding);
}
/**
* The geo coordinates of the place.
*
* @param \Spatie\SchemaOrg\Contracts\GeoCoordinatesContract|\Spatie\SchemaOrg\Contracts\GeoCoordinatesContract[]|\Spatie\SchemaOrg\Contracts\GeoShapeContract|\Spatie\SchemaOrg\Contracts\GeoShapeContract[] $geo
*
* @return static
*
* @see path_to_url
*/
public function geo($geo)
{
return $this->setProperty('geo', $geo);
}
/**
* Represents a relationship between two geometries (or the places they
* represent), relating a containing geometry to a contained geometry. "a
* contains b iff no points of b lie in the exterior of a, and at least one
* point of the interior of b lies in the interior of a". As defined in
* [DE-9IM](path_to_url
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoContains
*
* @return static
*
* @see path_to_url
*/
public function geoContains($geoContains)
{
return $this->setProperty('geoContains', $geoContains);
}
/**
* Represents a relationship between two geometries (or the places they
* represent), relating a geometry to another that covers it. As defined in
* [DE-9IM](path_to_url
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoCoveredBy
*
* @return static
*
* @see path_to_url
*/
public function geoCoveredBy($geoCoveredBy)
{
return $this->setProperty('geoCoveredBy', $geoCoveredBy);
}
/**
* Represents a relationship between two geometries (or the places they
* represent), relating a covering geometry to a covered geometry. "Every
* point of b is a point of (the interior or boundary of) a". As defined in
* [DE-9IM](path_to_url
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoCovers
*
* @return static
*
* @see path_to_url
*/
public function geoCovers($geoCovers)
{
return $this->setProperty('geoCovers', $geoCovers);
}
/**
* Represents a relationship between two geometries (or the places they
* represent), relating a geometry to another that crosses it: "a crosses b:
* they have some but not all interior points in common, and the dimension
* of the intersection is less than that of at least one of them". As
* defined in [DE-9IM](path_to_url
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoCrosses
*
* @return static
*
* @see path_to_url
*/
public function geoCrosses($geoCrosses)
{
return $this->setProperty('geoCrosses', $geoCrosses);
}
/**
* Represents spatial relations in which two geometries (or the places they
* represent) are topologically disjoint: "they have no point in common.
* They form a set of disconnected geometries." (A symmetric relationship,
* as defined in [DE-9IM](path_to_url
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoDisjoint
*
* @return static
*
* @see path_to_url
*/
public function geoDisjoint($geoDisjoint)
{
return $this->setProperty('geoDisjoint', $geoDisjoint);
}
/**
* Represents spatial relations in which two geometries (or the places they
* represent) are topologically equal, as defined in
* [DE-9IM](path_to_url "Two geometries are
* topologically equal if their interiors intersect and no part of the
* interior or boundary of one geometry intersects the exterior of the
* other" (a symmetric relationship).
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoEquals
*
* @return static
*
* @see path_to_url
*/
public function geoEquals($geoEquals)
{
return $this->setProperty('geoEquals', $geoEquals);
}
/**
* Represents spatial relations in which two geometries (or the places they
* represent) have at least one point in common. As defined in
* [DE-9IM](path_to_url
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoIntersects
*
* @return static
*
* @see path_to_url
*/
public function geoIntersects($geoIntersects)
{
return $this->setProperty('geoIntersects', $geoIntersects);
}
/**
* Represents a relationship between two geometries (or the places they
* represent), relating a geometry to another that geospatially overlaps it,
* i.e. they have some but not all points in common. As defined in
* [DE-9IM](path_to_url
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoOverlaps
*
* @return static
*
* @see path_to_url
*/
public function geoOverlaps($geoOverlaps)
{
return $this->setProperty('geoOverlaps', $geoOverlaps);
}
/**
* Represents spatial relations in which two geometries (or the places they
* represent) touch: "they have at least one boundary point in common, but
* no interior points." (A symmetric relationship, as defined in
* [DE-9IM](path_to_url
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoTouches
*
* @return static
*
* @see path_to_url
*/
public function geoTouches($geoTouches)
{
return $this->setProperty('geoTouches', $geoTouches);
}
/**
* Represents a relationship between two geometries (or the places they
* represent), relating a geometry to one that contains it, i.e. it is
* inside (i.e. within) its interior. As defined in
* [DE-9IM](path_to_url
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoWithin
*
* @return static
*
* @see path_to_url
*/
public function geoWithin($geoWithin)
{
return $this->setProperty('geoWithin', $geoWithin);
}
/**
* The [Global Location Number](path_to_url (GLN, sometimes also
* referred to as International Location Number or ILN) of the respective
* organization, person, or place. The GLN is a 13-digit number used to
* identify parties and physical locations.
*
* @param string|string[] $globalLocationNumber
*
* @return static
*
* @see path_to_url
*/
public function globalLocationNumber($globalLocationNumber)
{
return $this->setProperty('globalLocationNumber', $globalLocationNumber);
}
/**
* A credential awarded to the Person or Organization.
*
* @param \Spatie\SchemaOrg\Contracts\EducationalOccupationalCredentialContract|\Spatie\SchemaOrg\Contracts\EducationalOccupationalCredentialContract[] $hasCredential
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function hasCredential($hasCredential)
{
return $this->setProperty('hasCredential', $hasCredential);
}
/**
* Indicates whether some facility (e.g. [[FoodEstablishment]],
* [[CovidTestingFacility]]) offers a service that can be used by driving
* through in a car. In the case of [[CovidTestingFacility]] such facilities
* could potentially help with social distancing from other
* potentially-infected users.
*
* @param bool|bool[] $hasDriveThroughService
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function hasDriveThroughService($hasDriveThroughService)
{
return $this->setProperty('hasDriveThroughService', $hasDriveThroughService);
}
/**
* A URL to a map of the place.
*
* @param \Spatie\SchemaOrg\Contracts\MapContract|\Spatie\SchemaOrg\Contracts\MapContract[]|string|string[] $hasMap
*
* @return static
*
* @see path_to_url
*/
public function hasMap($hasMap)
{
return $this->setProperty('hasMap', $hasMap);
}
/**
* Specifies a MerchantReturnPolicy that may be applicable.
*
* @param \Spatie\SchemaOrg\Contracts\MerchantReturnPolicyContract|\Spatie\SchemaOrg\Contracts\MerchantReturnPolicyContract[] $hasMerchantReturnPolicy
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function hasMerchantReturnPolicy($hasMerchantReturnPolicy)
{
return $this->setProperty('hasMerchantReturnPolicy', $hasMerchantReturnPolicy);
}
/**
* Indicates an OfferCatalog listing for this Organization, Person, or
* Service.
*
* @param \Spatie\SchemaOrg\Contracts\OfferCatalogContract|\Spatie\SchemaOrg\Contracts\OfferCatalogContract[] $hasOfferCatalog
*
* @return static
*
* @see path_to_url
*/
public function hasOfferCatalog($hasOfferCatalog)
{
return $this->setProperty('hasOfferCatalog', $hasOfferCatalog);
}
/**
* Points-of-Sales operated by the organization or person.
*
* @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $hasPOS
*
* @return static
*
* @see path_to_url
*/
public function hasPOS($hasPOS)
{
return $this->setProperty('hasPOS', $hasPOS);
}
/**
* Indicates a ProductReturnPolicy that may be applicable.
*
* @param \Spatie\SchemaOrg\Contracts\ProductReturnPolicyContract|\Spatie\SchemaOrg\Contracts\ProductReturnPolicyContract[] $hasProductReturnPolicy
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function hasProductReturnPolicy($hasProductReturnPolicy)
{
return $this->setProperty('hasProductReturnPolicy', $hasProductReturnPolicy);
}
/**
* The identifier property represents any kind of identifier for any kind of
* [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides
* dedicated properties for representing many of these, either as textual
* strings or as URL (URI) links. See [background
* notes](/docs/datamodel.html#identifierBg) for more details.
*
* @param \Spatie\SchemaOrg\Contracts\PropertyValueContract|\Spatie\SchemaOrg\Contracts\PropertyValueContract[]|string|string[] $identifier
*
* @return static
*
* @see path_to_url
*/
public function identifier($identifier)
{
return $this->setProperty('identifier', $identifier);
}
/**
* An image of the item. This can be a [[URL]] or a fully described
* [[ImageObject]].
*
* @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[]|string|string[] $image
*
* @return static
*
* @see path_to_url
*/
public function image($image)
{
return $this->setProperty('image', $image);
}
/**
* The number of interactions for the CreativeWork using the WebSite or
* SoftwareApplication. The most specific child type of InteractionCounter
* should be used.
*
* @param \Spatie\SchemaOrg\Contracts\InteractionCounterContract|\Spatie\SchemaOrg\Contracts\InteractionCounterContract[] $interactionStatistic
*
* @return static
*
* @see path_to_url
* @link path_to_url
*/
public function interactionStatistic($interactionStatistic)
{
return $this->setProperty('interactionStatistic', $interactionStatistic);
}
/**
* A flag to signal that the item, event, or place is accessible for free.
*
* @param bool|bool[] $isAccessibleForFree
*
* @return static
*
* @see path_to_url
*/
public function isAccessibleForFree($isAccessibleForFree)
{
return $this->setProperty('isAccessibleForFree', $isAccessibleForFree);
}
/**
* The International Standard of Industrial Classification of All Economic
* Activities (ISIC), Revision 4 code for a particular organization,
* business person, or place.
*
* @param string|string[] $isicV4
*
* @return static
*
* @see path_to_url
*/
public function isicV4($isicV4)
{
return $this->setProperty('isicV4', $isicV4);
}
/**
* An organization identifier as defined in ISO 6523(-1). Note that many
* existing organization identifiers such as
* [leiCode](path_to_url [duns](path_to_url
* and [vatID](path_to_url can be expressed as an ISO 6523
* identifier by setting the ICD part of the ISO 6523 identifier
* accordingly.
*
* @param string|string[] $iso6523Code
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function iso6523Code($iso6523Code)
{
return $this->setProperty('iso6523Code', $iso6523Code);
}
/**
* Keywords or tags used to describe some item. Multiple textual entries in
* a keywords list are typically delimited by commas, or by repeating the
* property.
*
* @param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $keywords
*
* @return static
*
* @see path_to_url
*/
public function keywords($keywords)
{
return $this->setProperty('keywords', $keywords);
}
/**
* Of a [[Person]], and less typically of an [[Organization]], to indicate a
* topic that is known about - suggesting possible expertise but not
* implying it. We do not distinguish skill levels here, or relate this to
* educational content, events, objectives or [[JobPosting]] descriptions.
*
* @param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[]|string|string[] $knowsAbout
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function knowsAbout($knowsAbout)
{
return $this->setProperty('knowsAbout', $knowsAbout);
}
/**
* Of a [[Person]], and less typically of an [[Organization]], to indicate a
* known language. We do not distinguish skill levels or
* reading/writing/speaking/signing here. Use language codes from the [IETF
* BCP 47 standard](path_to_url
*
* @param \Spatie\SchemaOrg\Contracts\LanguageContract|\Spatie\SchemaOrg\Contracts\LanguageContract[]|string|string[] $knowsLanguage
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function knowsLanguage($knowsLanguage)
{
return $this->setProperty('knowsLanguage', $knowsLanguage);
}
/**
* The latitude of a location. For example ```37.42242``` ([WGS
* 84](path_to_url
*
* @param float|float[]|int|int[]|string|string[] $latitude
*
* @return static
*
* @see path_to_url
*/
public function latitude($latitude)
{
return $this->setProperty('latitude', $latitude);
}
/**
* The official name of the organization, e.g. the registered company name.
*
* @param string|string[] $legalName
*
* @return static
*
* @see path_to_url
*/
public function legalName($legalName)
{
return $this->setProperty('legalName', $legalName);
}
/**
* An organization identifier that uniquely identifies a legal entity as
* defined in ISO 17442.
*
* @param string|string[] $leiCode
*
* @return static
*
* @see path_to_url
*/
public function leiCode($leiCode)
{
return $this->setProperty('leiCode', $leiCode);
}
/**
* The location of, for example, where an event is happening, where an
* organization is located, or where an action takes place.
*
* @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[]|\Spatie\SchemaOrg\Contracts\PostalAddressContract|\Spatie\SchemaOrg\Contracts\PostalAddressContract[]|\Spatie\SchemaOrg\Contracts\VirtualLocationContract|\Spatie\SchemaOrg\Contracts\VirtualLocationContract[]|string|string[] $location
*
* @return static
*
* @see path_to_url
*/
public function location($location)
{
return $this->setProperty('location', $location);
}
/**
* An associated logo.
*
* @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[]|string|string[] $logo
*
* @return static
*
* @see path_to_url
*/
public function logo($logo)
{
return $this->setProperty('logo', $logo);
}
/**
* The longitude of a location. For example ```-122.08585``` ([WGS
* 84](path_to_url
*
* @param float|float[]|int|int[]|string|string[] $longitude
*
* @return static
*
* @see path_to_url
*/
public function longitude($longitude)
{
return $this->setProperty('longitude', $longitude);
}
/**
* Indicates a page (or other CreativeWork) for which this thing is the main
* entity being described. See [background
* notes](/docs/datamodel.html#mainEntityBackground) for details.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $mainEntityOfPage
*
* @return static
*
* @see path_to_url
*/
public function mainEntityOfPage($mainEntityOfPage)
{
return $this->setProperty('mainEntityOfPage', $mainEntityOfPage);
}
/**
* A pointer to products or services offered by the organization or person.
*
* @param \Spatie\SchemaOrg\Contracts\OfferContract|\Spatie\SchemaOrg\Contracts\OfferContract[] $makesOffer
*
* @return static
*
* @see path_to_url
*/
public function makesOffer($makesOffer)
{
return $this->setProperty('makesOffer', $makesOffer);
}
/**
* A URL to a map of the place.
*
* @param string|string[] $map
*
* @return static
*
* @see path_to_url
*/
public function map($map)
{
return $this->setProperty('map', $map);
}
/**
* A URL to a map of the place.
*
* @param string|string[] $maps
*
* @return static
*
* @see path_to_url
*/
public function maps($maps)
{
return $this->setProperty('maps', $maps);
}
/**
* The total number of individuals that may attend an event or venue.
*
* @param int|int[] $maximumAttendeeCapacity
*
* @return static
*
* @see path_to_url
*/
public function maximumAttendeeCapacity($maximumAttendeeCapacity)
{
return $this->setProperty('maximumAttendeeCapacity', $maximumAttendeeCapacity);
}
/**
* A member of an Organization or a ProgramMembership. Organizations can be
* members of organizations; ProgramMembership is typically for individuals.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $member
*
* @return static
*
* @see path_to_url
*/
public function member($member)
{
return $this->setProperty('member', $member);
}
/**
* An Organization (or ProgramMembership) to which this Person or
* Organization belongs.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\ProgramMembershipContract|\Spatie\SchemaOrg\Contracts\ProgramMembershipContract[] $memberOf
*
* @return static
*
* @see path_to_url
*/
public function memberOf($memberOf)
{
return $this->setProperty('memberOf', $memberOf);
}
/**
* A member of this organization.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $members
*
* @return static
*
* @see path_to_url
*/
public function members($members)
{
return $this->setProperty('members', $members);
}
/**
* The North American Industry Classification System (NAICS) code for a
* particular organization or business person.
*
* @param string|string[] $naics
*
* @return static
*
* @see path_to_url
*/
public function naics($naics)
{
return $this->setProperty('naics', $naics);
}
/**
* The name of the item.
*
* @param string|string[] $name
*
* @return static
*
* @see path_to_url
*/
public function name($name)
{
return $this->setProperty('name', $name);
}
/**
* nonprofitStatus indicates the legal status of a non-profit organization
* in its primary place of business.
*
* @param \Spatie\SchemaOrg\Contracts\NonprofitTypeContract|\Spatie\SchemaOrg\Contracts\NonprofitTypeContract[] $nonprofitStatus
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function nonprofitStatus($nonprofitStatus)
{
return $this->setProperty('nonprofitStatus', $nonprofitStatus);
}
/**
* The number of employees in an organization, e.g. business.
*
* @param \Spatie\SchemaOrg\Contracts\QuantitativeValueContract|\Spatie\SchemaOrg\Contracts\QuantitativeValueContract[] $numberOfEmployees
*
* @return static
*
* @see path_to_url
*/
public function numberOfEmployees($numberOfEmployees)
{
return $this->setProperty('numberOfEmployees', $numberOfEmployees);
}
/**
* The general opening hours for a business. Opening hours can be specified
* as a weekly time range, starting with days, then times per day. Multiple
* days can be listed with commas ',' separating each day. Day or time
* ranges are specified using a hyphen '-'.
*
* * Days are specified using the following two-letter combinations:
* ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.
* * Times are specified using 24:00 format. For example, 3pm is specified
* as ```15:00```, 10am as ```10:00```.
* * Here is an example: ```<time itemprop="openingHours" datetime="Tu,Th
* 16:00-20:00">Tuesdays and Thursdays 4-8pm</time>```.
* * If a business is open 7 days a week, then it can be specified as
* ```<time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday,
* all day</time>```.
*
* @param string|string[] $openingHours
*
* @return static
*
* @see path_to_url
*/
public function openingHours($openingHours)
{
return $this->setProperty('openingHours', $openingHours);
}
/**
* The opening hours of a certain place.
*
* @param \Spatie\SchemaOrg\Contracts\OpeningHoursSpecificationContract|\Spatie\SchemaOrg\Contracts\OpeningHoursSpecificationContract[] $openingHoursSpecification
*
* @return static
*
* @see path_to_url
*/
public function openingHoursSpecification($openingHoursSpecification)
{
return $this->setProperty('openingHoursSpecification', $openingHoursSpecification);
}
/**
* For an [[Organization]] (often but not necessarily a
* [[NewsMediaOrganization]]), a description of organizational ownership
* structure; funding and grants. In a news/media setting, this is with
* particular reference to editorial independence. Note that the
* [[funder]] is also available and can be used to make basic funder
* information machine-readable.
*
* @param \Spatie\SchemaOrg\Contracts\AboutPageContract|\Spatie\SchemaOrg\Contracts\AboutPageContract[]|\Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $ownershipFundingInfo
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function ownershipFundingInfo($ownershipFundingInfo)
{
return $this->setProperty('ownershipFundingInfo', $ownershipFundingInfo);
}
/**
* Products owned by the organization or person.
*
* @param \Spatie\SchemaOrg\Contracts\OwnershipInfoContract|\Spatie\SchemaOrg\Contracts\OwnershipInfoContract[]|\Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[] $owns
*
* @return static
*
* @see path_to_url
*/
public function owns($owns)
{
return $this->setProperty('owns', $owns);
}
/**
* The larger organization that this organization is a [[subOrganization]]
* of, if any.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $parentOrganization
*
* @return static
*
* @see path_to_url
*/
public function parentOrganization($parentOrganization)
{
return $this->setProperty('parentOrganization', $parentOrganization);
}
/**
* Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.
*
* @param string|string[] $paymentAccepted
*
* @return static
*
* @see path_to_url
*/
public function paymentAccepted($paymentAccepted)
{
return $this->setProperty('paymentAccepted', $paymentAccepted);
}
/**
* A photograph of this place.
*
* @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[]|\Spatie\SchemaOrg\Contracts\PhotographContract|\Spatie\SchemaOrg\Contracts\PhotographContract[] $photo
*
* @return static
*
* @see path_to_url
*/
public function photo($photo)
{
return $this->setProperty('photo', $photo);
}
/**
* Photographs of this place.
*
* @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[]|\Spatie\SchemaOrg\Contracts\PhotographContract|\Spatie\SchemaOrg\Contracts\PhotographContract[] $photos
*
* @return static
*
* @see path_to_url
*/
public function photos($photos)
{
return $this->setProperty('photos', $photos);
}
/**
* Indicates a potential Action, which describes an idealized action in
* which this thing would play an 'object' role.
*
* @param \Spatie\SchemaOrg\Contracts\ActionContract|\Spatie\SchemaOrg\Contracts\ActionContract[] $potentialAction
*
* @return static
*
* @see path_to_url
*/
public function potentialAction($potentialAction)
{
return $this->setProperty('potentialAction', $potentialAction);
}
/**
* The price range of the business, for example ```$$$```.
*
* @param string|string[] $priceRange
*
* @return static
*
* @see path_to_url
*/
public function priceRange($priceRange)
{
return $this->setProperty('priceRange', $priceRange);
}
/**
* A flag to signal that the [[Place]] is open to public visitors. If this
* property is omitted there is no assumed default boolean value.
*
* @param bool|bool[] $publicAccess
*
* @return static
*
* @see path_to_url
*/
public function publicAccess($publicAccess)
{
return $this->setProperty('publicAccess', $publicAccess);
}
/**
* The publishingPrinciples property indicates (typically via [[URL]]) a
* document describing the editorial principles of an [[Organization]] (or
* individual, e.g. a [[Person]] writing a blog) that relate to their
* activities as a publisher, e.g. ethics or diversity policies. When
* applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are
* those of the party primarily responsible for the creation of the
* [[CreativeWork]].
*
* While such policies are most typically expressed in natural language,
* sometimes related information (e.g. indicating a [[funder]]) can be
* expressed using schema.org terminology.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $publishingPrinciples
*
* @return static
*
* @see path_to_url
*/
public function publishingPrinciples($publishingPrinciples)
{
return $this->setProperty('publishingPrinciples', $publishingPrinciples);
}
/**
* A review of the item.
*
* @param \Spatie\SchemaOrg\Contracts\ReviewContract|\Spatie\SchemaOrg\Contracts\ReviewContract[] $review
*
* @return static
*
* @see path_to_url
*/
public function review($review)
{
return $this->setProperty('review', $review);
}
/**
* Review of the item.
*
* @param \Spatie\SchemaOrg\Contracts\ReviewContract|\Spatie\SchemaOrg\Contracts\ReviewContract[] $reviews
*
* @return static
*
* @see path_to_url
*/
public function reviews($reviews)
{
return $this->setProperty('reviews', $reviews);
}
/**
* URL of a reference Web page that unambiguously indicates the item's
* identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or
* official website.
*
* @param string|string[] $sameAs
*
* @return static
*
* @see path_to_url
*/
public function sameAs($sameAs)
{
return $this->setProperty('sameAs', $sameAs);
}
/**
* A pointer to products or services sought by the organization or person
* (demand).
*
* @param \Spatie\SchemaOrg\Contracts\DemandContract|\Spatie\SchemaOrg\Contracts\DemandContract[] $seeks
*
* @return static
*
* @see path_to_url
*/
public function seeks($seeks)
{
return $this->setProperty('seeks', $seeks);
}
/**
* The geographic area where the service is provided.
*
* @param \Spatie\SchemaOrg\Contracts\AdministrativeAreaContract|\Spatie\SchemaOrg\Contracts\AdministrativeAreaContract[]|\Spatie\SchemaOrg\Contracts\GeoShapeContract|\Spatie\SchemaOrg\Contracts\GeoShapeContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $serviceArea
*
* @return static
*
* @see path_to_url
*/
public function serviceArea($serviceArea)
{
return $this->setProperty('serviceArea', $serviceArea);
}
/**
* A slogan or motto associated with the item.
*
* @param string|string[] $slogan
*
* @return static
*
* @see path_to_url
*/
public function slogan($slogan)
{
return $this->setProperty('slogan', $slogan);
}
/**
* Indicates whether it is allowed to smoke in the place, e.g. in the
* restaurant, hotel or hotel room.
*
* @param bool|bool[] $smokingAllowed
*
* @return static
*
* @see path_to_url
*/
public function smokingAllowed($smokingAllowed)
{
return $this->setProperty('smokingAllowed', $smokingAllowed);
}
/**
* The special opening hours of a certain place.
*
* Use this to explicitly override general opening hours brought in scope by
* [[openingHoursSpecification]] or [[openingHours]].
*
* @param \Spatie\SchemaOrg\Contracts\OpeningHoursSpecificationContract|\Spatie\SchemaOrg\Contracts\OpeningHoursSpecificationContract[] $specialOpeningHoursSpecification
*
* @return static
*
* @see path_to_url
*/
public function specialOpeningHoursSpecification($specialOpeningHoursSpecification)
{
return $this->setProperty('specialOpeningHoursSpecification', $specialOpeningHoursSpecification);
}
/**
* A person or organization that supports a thing through a pledge, promise,
* or financial contribution. E.g. a sponsor of a Medical Study or a
* corporate sponsor of an event.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $sponsor
*
* @return static
*
* @see path_to_url
*/
public function sponsor($sponsor)
{
return $this->setProperty('sponsor', $sponsor);
}
/**
* A relationship between two organizations where the first includes the
* second, e.g., as a subsidiary. See also: the more specific 'department'
* property.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $subOrganization
*
* @return static
*
* @see path_to_url
*/
public function subOrganization($subOrganization)
{
return $this->setProperty('subOrganization', $subOrganization);
}
/**
* A CreativeWork or Event about this Thing.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $subjectOf
*
* @return static
*
* @see path_to_url
* @link path_to_url
*/
public function subjectOf($subjectOf)
{
return $this->setProperty('subjectOf', $subjectOf);
}
/**
* The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US
* or the CIF/NIF in Spain.
*
* @param string|string[] $taxID
*
* @return static
*
* @see path_to_url
*/
public function taxID($taxID)
{
return $this->setProperty('taxID', $taxID);
}
/**
* The telephone number.
*
* @param string|string[] $telephone
*
* @return static
*
* @see path_to_url
*/
public function telephone($telephone)
{
return $this->setProperty('telephone', $telephone);
}
/**
* A page providing information on how to book a tour of some [[Place]],
* such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate
* setting, as well as other kinds of tours as appropriate.
*
* @param string|string[] $tourBookingPage
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function tourBookingPage($tourBookingPage)
{
return $this->setProperty('tourBookingPage', $tourBookingPage);
}
/**
* For an [[Organization]] (typically a [[NewsMediaOrganization]]), a
* statement about policy on use of unnamed sources and the decision process
* required.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $unnamedSourcesPolicy
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function unnamedSourcesPolicy($unnamedSourcesPolicy)
{
return $this->setProperty('unnamedSourcesPolicy', $unnamedSourcesPolicy);
}
/**
* URL of the item.
*
* @param string|string[] $url
*
* @return static
*
* @see path_to_url
*/
public function url($url)
{
return $this->setProperty('url', $url);
}
/**
* The Value-added Tax ID of the organization or person.
*
* @param string|string[] $vatID
*
* @return static
*
* @see path_to_url
*/
public function vatID($vatID)
{
return $this->setProperty('vatID', $vatID);
}
}
```
|
Mahdaviat () is a religious term in Shia Islam translating to "Mahdiism" or "belief in the Mahdi". It may refer to
Mahdiism in Islam in general
the Mahdavia ("Mahdiist") sect established in India in the 16th century
See also
People claiming to be the Mahdi
Mahdavi (disambiguation)
Mahdi (disambiguation)
|
```smalltalk
namespace Veldrid.OpenGL.ManagedEntryList
{
internal class SetVertexBufferEntry : OpenGLCommandEntry
{
public uint Index;
public DeviceBuffer Buffer;
public SetVertexBufferEntry(uint index, DeviceBuffer buffer)
{
Index = index;
Buffer = buffer;
}
public SetVertexBufferEntry() { }
public SetVertexBufferEntry Init(uint index, DeviceBuffer buffer)
{
Index = index;
Buffer = buffer;
return this;
}
public override void ClearReferences()
{
Buffer = null;
}
}
}
```
|
```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>
```
|
In Kabbalah, Adam Kadmon (, ʾāḏām qaḏmōn, "Primordial Man") also called Adam Elyon (, ʾāḏām ʿelyōn, "Most High Man"), or Adam Ila'ah (, ʾāḏām ʿīllāʾā "Supreme Man"), sometimes abbreviated as A"K (, ʾA.Q.), is the first of Four Worlds that came into being after the contraction of God's infinite light. Adam Kadmon is not the same as the physical Adam Ha-Rishon.
In Lurianic Kabbalah, the description of Adam Kadmon is anthropomorphic. Nonetheless, Adam Kadmon is divine light without vessels, i.e., pure potential. In the human psyche, Adam Kadmon corresponds to the yechidah, the collective essence of the soul.
In Judaism
Philo
The first to use the expression "original man," or "heavenly man," was Philo, in whose view the , or , "as being born in the image of God, has no participation in any corruptible or earthlike essence; whereas the earthly man is made of loose material, called a lump of clay." The heavenly man, as the perfect image of the Logos, is neither man nor woman, but an incorporeal intelligence purely an idea; while the earthly man, who was created by God later, is perceptible to the senses and partakes of earthly qualities. Philo is evidently combining philosophy and Midrash, Plato and the rabbis.
Setting out from the duplicate biblical account of Adam, who was formed in the image of God (), and of the first man, whose body God formed from the earth (), he combines with it the Platonic theory of forms; taking the primordial Adam as the idea, and the created man of flesh and blood as the "image." That Philo's philosophic views are grounded on the Midrash, and not vice versa, is evident from his seemingly senseless statement that the "heavenly man," the οὐράνιος ἄνθρωπος (who is merely an idea), is "neither man nor woman." This doctrine, however, becomes quite intelligible in view of the following ancient Midrash.
Midrash
The remarkable contradiction between Genesis 1:27 and Genesis 2:7 could not escape the attention of the Pharisees, for whom the Bible was a subject of close study. In explaining the various views concerning Eve's creation, they taught that Adam was created as a man-woman (androgynos), explaining "" () as "male and female" instead of "man and woman," and that the separation of the sexes arose from the subsequent operation upon Adam's body, as related in the Scripture. This explains Philo's statement that the original man was neither man nor woman.
This doctrine concerning the Logos, as also that of man made "in the likeness," although tinged with true Philonic coloring, is also based on the theology of the Pharisees. Genesis Rabbah:
This contains the kernel of Philo's philosophical doctrine of the creation of the original man. He calls him the idea of the earthly Adam, while with the rabbis the spirit () of Adam not only existed before the creation of the earthly Adam, but was preexistent to the whole of creation. From the preexisting Adam, or Messiah, to the Logos is merely a step.
Kabbalah
In Kabbalah, before creation began, all that existed was God's Infinite Light. The first stage of creation began when God contracted His Infinite Light to create the vacuum. Then a ray of divine light penetrated the vacuum and the persona of Adam Kadmon was projected into the vacuum. The first stage of Adam Kadmon was in the form of ten concentric circles (igulim), which emanated from the ray. The ray of light was then enclothed by the anthropomorphic form of Adam Kadmon (), which is a realm of infinite divine light without vessels, constrained by its potential to create future Existence. Adam Kadmon is sometimes referred to as Adam Ila'a (Aramaic: "upper man") or Adam Elyon (Hebrew: "upper man").
The soul of Adam HaRishon ("the first man") was the supreme essence of mankind. It contained within it all subsequent souls. In the midrash, he is sometimes referred to as Adam HaKadmoni ("the ancient man"), Adam Tata'a (Aramaic: "lower man") or Adam Tachton (Hebrew: "lower man").
The anthropomorphic name of Adam Kadmon denotes that it contains both the ultimate divine purpose for creation, i.e., mankind, as well as an embodiment of the Sefirot (divine attributes). Adam Kadmon is paradoxically both "Adam" and divine ("Kadmon-Primary").
Adam Kadmon preceded the manifestation of the Four Worlds, Atzilut ("emanation"), Beriah ("creation"), Yetzirah ("formation") and Asiyah ("action"). Whereas each of the Four Worlds is represented by one letter of the divine four-lettered name of God, Adam Kadmon is represented by the transcendental cusp of the first letter Yud.
In the system of the sefirot, Adam Kadmon corresponds to Keter ("crown"), the divine will that motivated creation.
The two versions of Kabbalistic theosophy, the "medieval/classic/Zoharic" (systemised by Moshe Cordovero) and the more comprehensive Lurianic, describe the process of descending worlds differently. For Cordovero, the sefirot, Adam Kadmon and the Four Worlds evolve sequentially from the Ein Sof (divine infinity). For Luria, creation is a dynamic process of divine exile-rectification enclothement, where Adam Kadmon is preceded by the Tzimtzum (Divine "contraction") and followed by Shevira (the "shattering" of the sefirot).
Closely related to the Philonic doctrine of the heavenly Adam is the Adam Ḳadmon (called also Adam 'Ilaya, the "high man," the "heavenly man") of the Zohar, whose conception of the original man can be deduced from the following passages: "The form of man is the image of everything that is above [in heaven] and below [upon earth]; therefore did the Holy Ancient [God] select it for His own form."
As with Philo the Logos is the original image of man, or the original man, so in the Zohar the heavenly man is the embodiment of all divine manifestations: the ten Sefirot, the original image of man. The heavenly Adam, stepping forth out of the highest original darkness, created the earthly Adam. In other words, the activity of the original essence manifested itself in the creation of man, who at the same time is the image of the heavenly man and of the universe, just as with Plato and Philo the idea of man, as microcosm, embraces the idea of the universe or macrocosm.
The conception of Adam Ḳadmon becomes an important factor in the later Kabbalah of Isaac Luria. Adam Ḳadmon is with him no longer the concentrated manifestation of the Sefirot, but a mediator between the En-Sof ("infinite") and the Sefirot. The En-Sof, according to Luria, is so utterly incomprehensible that the older Kabbalistic doctrine of the manifestation of the En-Sof in the Sefirot must be abandoned. Hence he teaches that only the Adam Ḳadmon, who arose in the way of self-limitation by the En-Sof, can be said to manifest himself in the Sefirot. This theory of Luria is treated by Ḥayyim Vital in "'Eẓ Ḥayyim; Derush 'Agulim we-Yosher" (Treatise on Circles and the Straight Line).
Gnosticism
The Primeval Man (Protanthropos, Adam) occupies a prominent place in several Gnostic systems. In the Coptic Nag Hammadi texts, the archetypical Adam is known as Pigeradamas or Geradamas. According to Irenaeus the Aeon Autogenes emits the true and perfect Anthrôpos, also called Adamas; he has a helpmate, "Perfect Knowledge", and receives an irresistible force, so that all things rest in him. Others say there is a blessed and incorruptible and endless light in the power of Bythos; this is the Father of all things who is invoked as the First Man, who, with his Ennoia, emits "the Son of Man", or Euteranthrôpos.
According to Valentinus, Adam was created in the name of Anthrôpos and overawes the demons by the fear of the pre-existent man (). In the Valentinian syzygies and in the Marcosian system we meet in the fourth (originally the third) place Anthrôpos and Ecclesia.
In the Pistis Sophia the Aeon Jeu is called the First Man, he is the overseer of the Light, messenger of the First Precept, and constitutes the forces of the Heimarmene. In the Books of Jeu this "great Man" is the King of the Light-treasure, he is enthroned above all things and is the goal of all souls.
According to the Naassenes, the Protanthropos is the first element; the fundamental being before its differentiation into individuals. "The Son of Man" is the same being after it has been individualized into existing things and thus sunk into matter.
The Gnostic Anthrôpos, therefore, or Adamas, as it is sometimes called, is a cosmogonic element, pure mind as distinct from matter, mind conceived hypostatically as emanating from God and not yet darkened by contact with matter. This mind is considered as the reason of humanity, or humanity itself, as a personified idea, a category without corporeality, the human reason conceived as the World-Soul. The same idea, somewhat modified, occurs in Hermetic literature, especially the Poimandres.
In Manichaeism
A portion of these Gnostic teachings, when combined with Zoroastrianism, furnished Mani with his particular doctrine of the original man. He even retains the Jewish designations "Adam Kadmon" (= ) and "Nakhash Kadmon" (= ), as may be seen in Al-Fihrist. But, according to Mani, the original man is fundamentally distinct from the first father of the human race. He is a creation of the King of Light, and is therefore endowed with five elements of the kingdom of light; whereas Adam really owes his existence to the kingdom of darkness, and only escapes belonging altogether to the number of demons through the fact that he bears the likeness of the original man in the elements of light contained within him. The Gnostic doctrine of the identity of Adam, as the original man, with the Messiah appears in Mani in his teaching of the "Redeeming Christ," who has His abode in the sun and moon, but is identical with the original man. It also appears in this theory that Adam was the first of the sevenfold series of true prophets, comprising Adam, Seth, Noah, Abraham, Zoroaster, Buddha, and Jesus. The stepping-stone from the Gnostic original man to Manichaeism was probably the older Mandaean conception, which may have exercised great influence. Of this conception, however, there remains in the later Mandaean writings little more than the expression "Gabra Ḳadmaya" (Adam Ḳadmon).
In Mandaeism
Adam Kasia, also referred to using the portmanteau Adakas in the Ginza Rabba, means "the hidden Adam" in Mandaic. The hidden Adam is also called Adam Qadmaiia (The First Adam). In Mandaeism, it means the soul of the first man and the soul of every human. Adam Kasia shows many similarities with the Jewish idea of Adam Kadmon.
In other traditions
Outside of an Abrahamic context, the Cosmic Man is also an archetypical figure that appears in creation myths of a wide variety of cultures. Generally he is described as bestowing life upon all things, and is also frequently the physical basis of the world, such that after death parts of his body became physical parts of the universe. He also represents the oneness of human existence, or the universe.
For instance, in the Purusha sukta of the Rigveda, Purusha (Sanskrit , पुरुष "man," or "Cosmic Man") is sacrificed by the devas from the foundation of the world—his mind is the Moon, his eyes are the Sun, and his breath is the wind. He is described as having a thousand heads and a thousand feet.
In popular culture
One tradition associates Adam Kadmon or the biblical Adam and the figure of Cadmus in Greek mythology, both associated with dragons/serpents.
The Marvel Comics character Eternity has called himself Adam Qadmon.
In Persona 5 Royal, the Persona of the antagonist Takuto Maruki is named Adam Kadmon.
See also
Adam and Eve
Adam-God Doctrine
Original Sin
References
Attribution
External links
Adam Kadmon—The Divine Names
Two stages of Adam Kadmon
Adam Kadmon Primordial Man
Jewish mysticism
Kabbalah
Kabbalistic words and phrases
Elcesaites
Religious concepts related with Adam and Eve
Mythological first humans
|
```xml
import { isReadonly, reactive, shallowReactive, shallowRef } from 'vue'
import type { Ref } from 'vue'
import type { RouteLocation, RouteLocationNormalizedLoaded, Router, RouterScrollBehavior } from 'vue-router'
import { START_LOCATION, createMemoryHistory, createRouter, createWebHashHistory, createWebHistory } from 'vue-router'
import { createError } from 'h3'
import { isEqual, withoutBase } from 'ufo'
import type { PageMeta } from '../composables'
import { toArray } from '../utils'
import type { Plugin, RouteMiddleware } from '#app'
import { getRouteRules } from '#app/composables/manifest'
import { defineNuxtPlugin, useRuntimeConfig } from '#app/nuxt'
import { clearError, showError, useError } from '#app/composables/error'
import { navigateTo } from '#app/composables/router'
// @ts-expect-error virtual file
import { appManifest as isAppManifestEnabled } from '#build/nuxt.config.mjs'
// @ts-expect-error virtual file
import _routes from '#build/routes'
import routerOptions from '#build/router.options'
// @ts-expect-error virtual file
import { globalMiddleware, namedMiddleware } from '#build/middleware'
// path_to_url#L37
function createCurrentLocation (
base: string,
location: Location,
renderedPath?: string,
): string {
const { pathname, search, hash } = location
// allows hash bases like #, /#, #/, #!, #!/, /#!/, or even /folder#end
const hashPos = base.indexOf('#')
if (hashPos > -1) {
const slicePos = hash.includes(base.slice(hashPos))
? base.slice(hashPos).length
: 1
let pathFromHash = hash.slice(slicePos)
// prepend the starting slash to hash so the url starts with /#
if (pathFromHash[0] !== '/') { pathFromHash = '/' + pathFromHash }
return withoutBase(pathFromHash, '')
}
const displayedPath = withoutBase(pathname, base)
const path = !renderedPath || isEqual(displayedPath, renderedPath, { trailingSlash: true }) ? displayedPath : renderedPath
return path + (path.includes('?') ? '' : search) + hash
}
const plugin: Plugin<{ router: Router }> = defineNuxtPlugin({
name: 'nuxt:router',
enforce: 'pre',
async setup (nuxtApp) {
let routerBase = useRuntimeConfig().app.baseURL
if (routerOptions.hashMode && !routerBase.includes('#')) {
// allow the user to provide a `#` in the middle: `/base/#/app`
routerBase += '#'
}
const history = routerOptions.history?.(routerBase) ?? (import.meta.client
? (routerOptions.hashMode ? createWebHashHistory(routerBase) : createWebHistory(routerBase))
: createMemoryHistory(routerBase)
)
const routes = routerOptions.routes ? await routerOptions.routes(_routes) ?? _routes : _routes
let startPosition: Parameters<RouterScrollBehavior>[2] | null
const router = createRouter({
...routerOptions,
scrollBehavior: (to, from, savedPosition) => {
if (from === START_LOCATION) {
startPosition = savedPosition
return
}
if (routerOptions.scrollBehavior) {
// reset scroll behavior to initial value
router.options.scrollBehavior = routerOptions.scrollBehavior
if ('scrollRestoration' in window.history) {
const unsub = router.beforeEach(() => {
unsub()
window.history.scrollRestoration = 'manual'
})
}
return routerOptions.scrollBehavior(to, START_LOCATION, startPosition || savedPosition)
}
},
history,
routes,
})
if (import.meta.client && 'scrollRestoration' in window.history) {
window.history.scrollRestoration = 'auto'
}
nuxtApp.vueApp.use(router)
const previousRoute = shallowRef(router.currentRoute.value)
router.afterEach((_to, from) => {
previousRoute.value = from
})
Object.defineProperty(nuxtApp.vueApp.config.globalProperties, 'previousRoute', {
get: () => previousRoute.value,
})
const initialURL = import.meta.server
? nuxtApp.ssrContext!.url
: createCurrentLocation(routerBase, window.location, nuxtApp.payload.path)
// Allows suspending the route object until page navigation completes
const _route = shallowRef(router.currentRoute.value)
const syncCurrentRoute = () => { _route.value = router.currentRoute.value }
nuxtApp.hook('page:finish', syncCurrentRoute)
router.afterEach((to, from) => {
// We won't trigger suspense if the component is reused between routes
// so we need to update the route manually
if (to.matched[0]?.components?.default === from.matched[0]?.components?.default) {
syncCurrentRoute()
}
})
// path_to_url#L1283-L1289
const route = {} as RouteLocationNormalizedLoaded
for (const key in _route.value) {
Object.defineProperty(route, key, {
get: () => _route.value[key as keyof RouteLocation],
})
}
nuxtApp._route = shallowReactive(route)
nuxtApp._middleware = nuxtApp._middleware || {
global: [],
named: {},
}
const error = useError()
if (import.meta.client || !nuxtApp.ssrContext?.islandContext) {
router.afterEach(async (to, _from, failure) => {
delete nuxtApp._processingMiddleware
if (import.meta.client && !nuxtApp.isHydrating && error.value) {
// Clear any existing errors
await nuxtApp.runWithContext(clearError)
}
if (failure) {
await nuxtApp.callHook('page:loading:end')
}
if (import.meta.server && failure?.type === 4 /* ErrorTypes.NAVIGATION_ABORTED */) {
return
}
if (to.matched.length === 0) {
await nuxtApp.runWithContext(() => showError(createError({
statusCode: 404,
fatal: false,
statusMessage: `Page not found: ${to.fullPath}`,
data: {
path: to.fullPath,
},
})))
} else if (import.meta.server && to.redirectedFrom && to.fullPath !== initialURL) {
await nuxtApp.runWithContext(() => navigateTo(to.fullPath || '/'))
}
})
}
try {
if (import.meta.server) {
await router.push(initialURL)
}
await router.isReady()
} catch (error: any) {
// We'll catch 404s here
await nuxtApp.runWithContext(() => showError(error))
}
const resolvedInitialRoute = import.meta.client && initialURL !== router.currentRoute.value.fullPath
? router.resolve(initialURL)
: router.currentRoute.value
syncCurrentRoute()
if (import.meta.server && nuxtApp.ssrContext?.islandContext) {
// We're in an island context, and don't need to handle middleware or redirections
return { provide: { router } }
}
const initialLayout = nuxtApp.payload.state._layout
router.beforeEach(async (to, from) => {
await nuxtApp.callHook('page:loading:start')
to.meta = reactive(to.meta)
if (nuxtApp.isHydrating && initialLayout && !isReadonly(to.meta.layout)) {
to.meta.layout = initialLayout as Exclude<PageMeta['layout'], Ref | false>
}
nuxtApp._processingMiddleware = true
if (import.meta.client || !nuxtApp.ssrContext?.islandContext) {
type MiddlewareDef = string | RouteMiddleware
const middlewareEntries = new Set<MiddlewareDef>([...globalMiddleware, ...nuxtApp._middleware.global])
for (const component of to.matched) {
const componentMiddleware = component.meta.middleware as MiddlewareDef | MiddlewareDef[]
if (!componentMiddleware) { continue }
for (const entry of toArray(componentMiddleware)) {
middlewareEntries.add(entry)
}
}
if (isAppManifestEnabled) {
const routeRules = await nuxtApp.runWithContext(() => getRouteRules(to.path))
if (routeRules.appMiddleware) {
for (const key in routeRules.appMiddleware) {
if (routeRules.appMiddleware[key]) {
middlewareEntries.add(key)
} else {
middlewareEntries.delete(key)
}
}
}
}
for (const entry of middlewareEntries) {
const middleware = typeof entry === 'string' ? nuxtApp._middleware.named[entry] || await namedMiddleware[entry]?.().then((r: any) => r.default || r) : entry
if (!middleware) {
if (import.meta.dev) {
throw new Error(`Unknown route middleware: '${entry}'. Valid middleware: ${Object.keys(namedMiddleware).map(mw => `'${mw}'`).join(', ')}.`)
}
throw new Error(`Unknown route middleware: '${entry}'.`)
}
const result = await nuxtApp.runWithContext(() => middleware(to, from))
if (import.meta.server || (!nuxtApp.payload.serverRendered && nuxtApp.isHydrating)) {
if (result === false || result instanceof Error) {
const error = result || createError({
statusCode: 404,
statusMessage: `Page Not Found: ${initialURL}`,
})
await nuxtApp.runWithContext(() => showError(error))
return false
}
}
if (result === true) { continue }
if (result || result === false) {
return result
}
}
}
})
router.onError(async () => {
delete nuxtApp._processingMiddleware
await nuxtApp.callHook('page:loading:end')
})
nuxtApp.hooks.hookOnce('app:created', async () => {
try {
// #4920, #4982
if ('name' in resolvedInitialRoute) {
resolvedInitialRoute.name = undefined
}
await router.replace({
...resolvedInitialRoute,
force: true,
})
// reset scroll behavior to initial value
router.options.scrollBehavior = routerOptions.scrollBehavior
} catch (error: any) {
// We'll catch middleware errors or deliberate exceptions here
await nuxtApp.runWithContext(() => showError(error))
}
})
return { provide: { router } }
},
})
export default plugin
```
|
Lanier High School is the name of several high schools in the United States. Some include:
Juan Navarro High School, formerly Lanier High School, in Austin, Texas
Sidney Lanier High School in Montgomery, Alabama
Lanier High School (San Antonio, Texas)
Lanier High School (Jackson, Mississippi)
Lanier High School (Sugar Hill, Georgia)
Lanier High School in Macon, Georgia, now part of Central High School (Macon, Georgia)
|
```smalltalk
// The .NET Foundation licenses this file to you under the MIT license.
using System.Text;
using Microsoft.TemplateEngine.Abstractions;
using Microsoft.TemplateEngine.Core.Contracts;
using Microsoft.TemplateEngine.Core.Operations;
using Microsoft.TemplateEngine.Core.Util;
using Microsoft.TemplateEngine.Mocks;
using Microsoft.TemplateEngine.TestHelper;
using Xunit;
namespace Microsoft.TemplateEngine.Core.UnitTests
{
public class ChunkStreamReadTests : TestBase, IClassFixture<EnvironmentSettingsHelper>
{
private readonly IEngineEnvironmentSettings _engineEnvironmentSettings;
public ChunkStreamReadTests(EnvironmentSettingsHelper environmentSettingsHelper)
{
_engineEnvironmentSettings = environmentSettingsHelper.CreateEnvironment(hostIdentifier: this.GetType().Name, virtualize: true);
}
[Fact]
public void VerifyLongStreamNoReplacement()
{
Random rnd = new Random();
byte[] valueBytes = new byte[1024 * 1024];
rnd.NextBytes(valueBytes);
ChunkMemoryStream input = new ChunkMemoryStream(valueBytes, 512);
ChunkMemoryStream output = new ChunkMemoryStream(1024);
IOperationProvider[] operations = [];
EngineConfig cfg = new EngineConfig(_engineEnvironmentSettings.Host.Logger, VariableCollection.Root());
IProcessor processor = Processor.Create(cfg, operations);
processor.Run(input, output, 1024);
Assert.Equal(input.Length, output.Length);
input.Position = 0;
output.Position = 0;
int file1byte;
int file2byte;
do
{
file1byte = input.ReadByte();
file2byte = output.ReadByte();
}
while ((file1byte == file2byte) && (file1byte != -1));
Assert.Equal(0, file1byte - file2byte);
}
[Fact]
public void VerifyLongStreamWithReplacement()
{
string value = @"test value test";
string expected = @"test foo test";
StringBuilder valueBuilder = new StringBuilder();
StringBuilder expectedBuilder = new StringBuilder();
int repetitionsInMaxInMemoryBuffer = StreamProxy.MaxRecommendedBufferedFileSize / expected.Length;
for (int i = 0; i < repetitionsInMaxInMemoryBuffer + 1; i++)
{
valueBuilder.Append(value);
expectedBuilder.Append(expected);
}
value = valueBuilder.ToString();
expected = expectedBuilder.ToString();
byte[] valueBytes = Encoding.UTF8.GetBytes(value);
ChunkMemoryStream input = new ChunkMemoryStream(valueBytes, 10);
ChunkMemoryStream output = new ChunkMemoryStream(10);
IOperationProvider[] operations = { new Replacement("value".TokenConfig(), "foo", null, true) };
EngineConfig cfg = new EngineConfig(_engineEnvironmentSettings.Host.Logger, VariableCollection.Root());
IProcessor processor = Processor.Create(cfg, operations);
//Changes should be made
bool changed = processor.Run(input, output, 1000);
Verify(Encoding.UTF8, output, changed, value, expected);
}
[Fact]
public void VerifyLongStreamWithReplacementBeforeAfter()
{
string value = @"test valueA before valueA after valueB valueB";
string expected = @"test foo before valueA after bar valueB";
StringBuilder valueBuilder = new StringBuilder();
StringBuilder expectedBuilder = new StringBuilder();
int repetitionsInMaxInMemoryBuffer = StreamProxy.MaxRecommendedBufferedFileSize / expected.Length;
for (int i = 0; i < repetitionsInMaxInMemoryBuffer + 1; i++)
{
valueBuilder.Append(value);
expectedBuilder.Append(expected);
}
value = valueBuilder.ToString();
expected = expectedBuilder.ToString();
byte[] valueBytes = Encoding.UTF8.GetBytes(value);
ChunkMemoryStream input = new ChunkMemoryStream(valueBytes, 10);
ChunkMemoryStream output = new ChunkMemoryStream(10);
IOperationProvider[] operations =
{
new Replacement("valueA".TokenConfigBuilder().OnlyIfBefore(" before"), "foo", null, true),
new Replacement("valueB".TokenConfigBuilder().OnlyIfAfter("after "), "bar", null, true),
};
EngineConfig cfg = new EngineConfig(_engineEnvironmentSettings.Host.Logger, VariableCollection.Root());
IProcessor processor = Processor.Create(cfg, operations);
//Changes should be made
bool changed = processor.Run(input, output, 1000);
Verify(Encoding.UTF8, output, changed, value, expected);
}
[Fact]
public void VerifyConsumeWholeLine()
{
MockOperation o = new MockOperation(
null,
(IProcessorState state, int length, ref int position, int token) =>
{
state.ConsumeWholeLine(ref length, ref position);
return 0;
},
true,
"There"u8.ToArray());
EngineConfig cfg = new EngineConfig(_engineEnvironmentSettings.Host.Logger, new VariableCollection());
IProcessor processor = Processor.Create(cfg, o.Provider);
byte[] data = "Hello \r\n There \r\n You"u8.ToArray();
Stream input = new ChunkMemoryStream(data, 1);
Stream output = new ChunkMemoryStream(1);
bool changed = processor.Run(input, output, 5);
Verify(Encoding.UTF8, output, changed, "Hello \r\n There \r\n You", "Hello \r\n You");
}
}
}
```
|
Education in the Joseon dynasty of Korea was largely aimed at preparing students for government service. The ultimate goal of most students was successful passage of the state examinations, known as gwageo.
Educational institutions were extremely widespread in the country, and can be divided into public and private. The highest public institution was the Seonggyungwan, located in Seoul. Below this were the Sahak (사부학당), four schools providing technical training, and the hyanggyo, schools supported by each of the Eight Provinces. The hyanggyo soon fell into neglect, and for most of the Joseon period education was dominated by two types of private schools, seowon (preparatory schools mostly for the aristocracy) and seodang (private village schools providing elementary education).
Civil service examinations
The civil service examinations, known as gwageo, assessed a student's ability to interpret the Chinese classics, in terms of official Neo-Confucian ideology. The gwageo were divided into civil and military sections. The gwageo system had been set up in the Goryeo dynasty, but reached its peak in the Joseon period.
Noble status during the Joseon Dynasty was decided by education level; generally, passing court exams led to an easier path into upper class status. The upper class, referred to as yangban, was split into two groups: munban or mungwa, who were civilian officers and military officials.
Different types of exams existed based on official court positions; two preliminary civil service exams, sogwa, were followed by one higher civil service exam, daegwa. When combined, the three exams were known as mungwa. The sogwa consisted of two smaller exams, known as the saengwon-si, which examined Confucian classics, and the jinsa-si, which contained essay writing.
The military exam, mugwa, included military training and required proficiency in the Confucian classics, otherwise known as the Four Books and Three Classics, and knowledge in legislative theory.
The first mungwa exams were held in 1399, and from 1402 to 1894, 801 mugwa testing sessions were held. Approximately 15,150 people passed the mungwa, a higher form of civil service examination, daegwa, between 1392 and 1897.
Medical licensing examinations
Medical examinations, known as uigwa, were not a requirement for doctors treating civilians; the only requirement was an apprenticeship, after which civilian physicians were able to begin their medical work. Royal physicians and officers had to complete an examination, after which they gained their license. Such exams had to be passed before physicians could accept responsibility for the king’s health.
The examinations for medical licensing occurred until 1894, when the civil service examination agency was abolished. Up until then, all social status systems, the number of candidates, procedures, methods of testing, and agency were stringently enforced and maintained.
State-supported education
Seonggyungwan
The Seonggyungwan was the highest educational institution in Joseon, and attracted scholars from across the country. It was based on the Goryeo-period Gukjagam.
Confucian curriculum
The Korean Confucian curriculum was based on the Chinese educational system which had 15 or so primary works, and a large number of exegetical works, along with graded exams that were on set topics. All of these works were written in Chinese, the academic written language of Joseon. A common introductory textbook was the Lesser Learning, an exegetical work by Zhu Xi.
Sonbi
Among the forefront of the different social classes were the Sonbi, known as the gentleman-scholar, who were remembered for their devotion to Neo-Confucian studies. Typically, their social standing was upper-class. Commonly, they disciplined themselves in Confucian teachings, with the aim of improving their learning and character which would eventually render them capable of governing the general populace. Generally, the Sonbi aimed to become scholar-officials.
Education for the Sonbi began with the teaching of the lessons outlined by Seohak, specifically The Learning of the Young. Seohak was utilized as a moral training for young children and emphasized basic principles of principles of conduct, such as cleanliness and how to conduct oneself. Although moral training was conducted in all social classes, Sonbi, who were an upper-class, had their moral training emphasized.
Footnotes
Nahm (1996), p. 110.
Hong & Paik (2018)
Jung (1998)
References
See also
History of Korea
Education in North Korea
Education in South Korea
Korean Confucianism
|
```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 com.netflix.hollow.diff.ui.pages;
import com.netflix.hollow.diff.ui.HollowDiffUI;
import com.netflix.hollow.diff.ui.model.HollowDiffUIBreadcrumbs;
import com.netflix.hollow.diffview.HollowDiffHtmlKickstarter;
import com.netflix.hollow.diffview.HollowObjectView;
import com.netflix.hollow.tools.diff.HollowTypeDiff;
import com.netflix.hollow.ui.HollowUISession;
import java.util.ArrayList;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.apache.velocity.VelocityContext;
public class DiffObjectPage extends DiffPage {
public DiffObjectPage(HollowDiffUI diffUI) {
super(diffUI, "diff-object.vm");
}
@Override
protected void setUpContext(HttpServletRequest req, HollowUISession session, VelocityContext ctx) {
String type = req.getParameter("type");
int fromOrdinal = Integer.parseInt(req.getParameter("fromOrdinal"));
int toOrdinal = Integer.parseInt(req.getParameter("toOrdinal"));
int fieldIdx = -1;
if(req.getParameter("fieldIdx") != null)
fieldIdx = Integer.parseInt(req.getParameter("fieldIdx"));
ctx.put("typeName", type);
ctx.put("fromOrdinal", fromOrdinal);
ctx.put("toOrdinal", toOrdinal);
HollowObjectView diffView = diffUI.getHollowObjectViewProvider().getObjectView(req, session);
HollowDiffHtmlKickstarter htmlKickstarter = new HollowDiffHtmlKickstarter(diffUI.getBaseURLPath());
ctx.put("initialHtml", htmlKickstarter.initialHtmlRows(diffView));
ctx.put("breadcrumbs", getBreadcrumbs(type, fieldIdx, fromOrdinal, toOrdinal));
}
private List<HollowDiffUIBreadcrumbs> getBreadcrumbs(String type, int fieldIdx, int fromOrdinal, int toOrdinal) {
HollowTypeDiff typeDiff = getTypeDiff(type);
List<HollowDiffUIBreadcrumbs> breadcrumbs = new ArrayList<HollowDiffUIBreadcrumbs>();
breadcrumbs.add(new HollowDiffUIBreadcrumbs((diffUI.getDiffUIPath() == null || diffUI.getDiffUIPath().length() == 0) ?
"/" : diffUI.getDiffUIPath(), "Overview"));
breadcrumbs.add(new HollowDiffUIBreadcrumbs((diffUI.getDiffUIPath() == null || diffUI.getDiffUIPath().length() == 0) ?
"typediff?type=" + type : diffUI.getDiffUIPath() + "/typediff?type=" + type, type));
if(fieldIdx != -1) {
breadcrumbs.add(new HollowDiffUIBreadcrumbs((diffUI.getDiffUIPath() == null || diffUI.getDiffUIPath().length() == 0) ?
"fielddiff?type=" + type + "&fieldIdx=" + fieldIdx : diffUI.getDiffUIPath() + "/fielddiff?type=" + type + "&fieldIdx=" + fieldIdx, typeDiff.getFieldDiffs().get(fieldIdx).getFieldIdentifier().toString()));
}
String displayKey =
fromOrdinal != -1 ?
typeDiff.getMatcher().getKeyDisplayString(typeDiff.getFromTypeState(), fromOrdinal)
: typeDiff.getMatcher().getKeyDisplayString(typeDiff.getToTypeState(), toOrdinal);
breadcrumbs.add(new HollowDiffUIBreadcrumbs(null, displayKey));
return breadcrumbs;
}
}
```
|
The National Company Law Appellate Tribunal (NCLAT) is a tribunal which was formed by the Central Government of India under Section 410 of the Companies Act, 2013. The NCLAT was formed as a body with an appellate jurisdiction at the same time when NCLT was established as a major reform as per powers granted to the Ministry of Corporate Affairs in India,
The tribunal is responsible for hearing appeals from the orders of National Company Law Tribunal(s) (NCLT), starting on 1 June 2016.
The tribunal also hears appeals from orders issued by the Insolvency and Bankruptcy Board of India under Section 202 and Section 211 of IBC. It also hears appeals from any direction issued, decision made, or order passed by the Competition Commission of India (CCI) and the National Financial Reporting Authority (NFRA).
On 8 November 2021, Justice Ashok Bhushan has been appointed as the Chairperson of the Appellate Tribunal.
History and objective
National Company Law Appellate Tribunal was formed on 1 June 2016 under Companies Act'2013. The tribunal was formed as appellate authority to the aggrieved persons against the orders of National Company Law Tribunal which were passed under Section 61 of the Insolvency and Bankruptcy Code, 2016.
The decisions of National Company Law Appellate Tribunal are appellable in Supreme Court of India. National Company Law Appellate Tribunal has principle bench in Delhi and other one in Chennai.
Structure of NCLAT
The NCLAT includes a Chairperson, 3 judicial members, and 2 technical members. It consists of a total of not more than eleven members. Ashok Bhushan, retired judge of Supreme Court is the current chairman of National Company Law Appellate Tribunal.
Qualifications for Judicial member at National Company Law Appellate Tribunal:
Should be of 50 years old.
Served at least 5 years as District Judge or High Court Judge or has a minimum 10 years experience serving in any judicial authority.
Qualifications for Technical member at National Company Law Appellate Tribunal:
Should be of 50 years old.
Any person practicing as a chartered Accountant, cost accountant or company secretary for a period of 15 years.
Any person holding the rank of Secretary or Additional Secretary to the central government and is a member of the Indian Corporate Law Service or Indian Legal Service for more than 15 years.
Powers and functions
Following are the powers and functions of National Company Law Appellate Tribunal.
Orders issued by Competition Commission of India (CCI).
Orders issued by Insolvency and Bankruptcy Board of India.
References
Indian company law
|
Spencer Fullerton Baird (; February 3, 1823 – August 19, 1887) was an American naturalist, ornithologist, ichthyologist, herpetologist, and museum curator. Baird was the first curator to be named at the Smithsonian Institution. He eventually served as assistant Secretary of the Smithsonian from 1850 to 1878, and as Secretary from 1878 until 1887. He was dedicated to expanding the natural history collections of the Smithsonian which he increased from 6,000 specimens in 1850 to over 2 million by the time of his death. He published over 1,000 works during his lifetime.
Early life and education
Spencer Fullerton Baird was born in Reading, Pennsylvania in 1823. His mother was a member of the prominent Philadelphia Biddle family; he was a nephew of Speaker of the Pennsylvania Senate Charles B. Penrose and a first cousin, once removed, of U.S. Senator Boies Penrose and his distinguished brothers, Richard, Spencer, and Charles. He became a self-trained naturalist as a young man, learning about the field from his brother, William, who was a birder, and the likes of John James Audubon, who instructed Baird on how to draw scientific illustrations of birds. His father was also a big influence on Baird's interest in nature, taking Baird on walks and gardening with him. He died of cholera when Baird was ten years old. As a young boy he attended Nottingham Academy in Port Deposit, Maryland and public school in Carlisle, Pennsylvania.
Baird attended Dickinson College and earned his bachelor's and master's degrees, finishing the former in 1840. After graduation he moved to New York City with an interest in studying medicine at the Columbia University College of Physicians and Surgeons. He returned to Carlisle two years later. He taught natural history at Dickinson starting in 1845. While at Dickinson, he did research, participated in collecting trips, did specimen exchanges with other naturalists, and traveled frequently. He married Mary Helen Churchill in 1846. In 1848, their daughter, Lucy Hunter Baird, was born. He was awarded a grant, in 1848, from the Smithsonian Institution to explore bone caves and the natural history of southeastern Pennsylvania. In 1849 he was given $75 by the Smithsonian Institution to collect, pack and transport specimens for them. It was during this time that he met Smithsonian Secretary Joseph Henry. The two became close friends and colleagues. Throughout the 1840s Baird traveled extensively throughout the northeastern and central United States. Often traveling by foot, Baird hiked more than 2,100 miles in 1842 alone.
Professional career
Starting at the Smithsonian
In 1850, Baird became the first curator at the Smithsonian Institution and the Permanent Secretary for the American Association for the Advancement of Science, the latter which he served for three years. Upon his arrival in Washington, he brought two railroad box cars worth of his personal collection. Baird created a museum program for the Smithsonian, requesting that the organization focus on natural history in the United States. His program also allowed him to create a network of collectors through an exchange system. He asked that members of the Army and Navy collect rare animals and plant specimens from west of the Mississippi River and the Gulf of Mexico. In order to balance the collection, Baird sent duplicate specimens to other museums around the country, often exchanging the duplicates for specimens the Smithsonian needed. During the 1850s he described over 50 new species of reptiles, some by himself, and others with his student Charles Frédéric Girard. Their 1853 catalog of the Smithsonian's snake collection is a benchmark work in North American herpetology. Baird also was a mentor to herpetologist Robert Kennicott who died prematurely, at which point Baird left the field of herpetology to focus on larger projects.
Eventually, he became the Assistant Secretary, serving under Joseph Henry. As assistant, Baird helped develop a publication and journal exchange, that provided scientists around the world with publications they would have a hard time accessing. He supported the work of William Stimpson, Robert Kennicott, Henry Ulke and Henry Bryant. Between his start as Assistant Secretary and 1855, he worked with Joseph Henry to provide scientific equipment and needs to the United States and Mexican Boundary Survey. In 1855, he was elected to the American Philosophical Society. He received his Ph.D. in physical science in 1856 from Dickinson College. In 1857 and 1852 he acquired the collection of the National Institute for the Promotion of Science. However, the objects did not join the permanent collection of the Smithsonian until 1858. Baird attended the funeral of Abraham Lincoln in 1865, alongside Joseph Henry. In 1870, Baird was vacationing in Woods Hole, Massachusetts, where he developed an interest in maritime research. He went on to lead expeditions in Nova Scotia and New England.
United States Fish Commission and United States National Museum
On February 25, 1871, Ulysses S. Grant appointed Baird as the first Commissioner of Fish and Fisheries for the United States Fish Commission. He served in this position until his death. With Baird as Commissioner, the commission sought opportunities to restock rivers with salmon and lakes with other food fish and the depletion of food fish in coastal waters. Baird reported that humans were the reason for the decline of food fish in these coastal areas. Individuals with access to shoreline property used weirs, or nets, to capture large amounts of fish on the coast, which threatened the supply of fish on the coast. Baird used the U.S. Fish Commission to limit human impact through a compromise by prohibiting the capture of fish in traps from 6pm on Fridays until 6pm on Mondays. The Albatross research vessel was launched during his tenure, in 1882. He was highly active in developing fishing and fishery policies for the United States, and was instrumental in making Woods Hole the research venue it is today.
Baird became the manager of the United States National Museum in 1872. Baird told George Perkins Marsh that he sought to be the director of the National Museum and that he had intentions to expand on the collections within the museum en masse. He was the primary writer of A History of North American Birds, which was published in 1874 and continues to be an important publication in ornithology today. He created all of the United States federal exhibits in the Centennial Exposition, many of which won awards. When the exposition ended, Baird was successful in persuading other exhibitors to contribute the objects from their exhibits to the Smithsonian. In total, Baird left with sixty-two boxcars filled with 4,000 cartons of objects. Owing to the large number of objects collected, in 1879, Congress approved construction for the first National Museum building, which is now the Arts and Industries Building.
Second Secretary at the Smithsonian
Joseph Henry died on May 13, 1878 and on May 17, Baird became the second Secretary of the Smithsonian. Baird was allowed to live, rent free, in the Smithsonian Institution Building, but declined and had the east wing converted into workspace. He also had telephones installed throughout the building. That year, he was made a member of the Order of St. Olav by the King of Sweden. In 1880 Baird was elected a member of the American Antiquarian Society He oversaw the building of the new National Museum building, which opened in 1881. In September 1883, he was unanimously declared a founding member of the American Ornithologists' Union even though his duties prevented him from attending their first convention. During the February 1887, Baird went on leave due to "intellectual exertion". Samuel P. Langley served as Acting Secretary.
Death and legacy
Spencer Fullerton Baird died on August 19, 1887. Upon Baird's death, the Arts and Industries building was draped with a mourning cloth. John Wesley Powell spoke at Baird's funeral. Baird is buried at Oak Hill Cemetery.
Baird's sparrow, a migratory bird native to Canada, Mexico and the United States, is named after him. A medium-sized shorebird known as Baird's sandpiper is also named after him.
Baird Auditorium in the Smithsonian National Museum of Natural History is named in his honor. It is located on the National Mall side of the first floor of the museum.
Baird's wife, Mary, donated his stamp collection to the National Museum. His papers are held in the Smithsonian Institution Archives.
In 1946, Baird was one of four Smithsonian Secretaries featured in an exhibition about their lives and work curated by United States National Museum curator Theodore T. Belote. In 1922, the Baird Ornithological Club was founded and named after Baird. Spencer Baird Road in Woods Hole is named for him.
Eponymy
Natural world
The genus Bairdiella of drumfishes was named after him by Theodore Gill in 1861.
Baird's smooth-head, Alepocephalus bairdii Goode and Bean, 1879.
Lancer dragonet, Callionymus bairdi Jordan, 1888
Mottled sculpin, Cottus bairdii Girard, 1850.
Bumphead damselfish, Microspathodon bairdii (Gill, 1862).
Marlin-spike grenadier, Nezumia bairdii (Goode & Bean, 1877).
Baird's beaked whale, Berardius bairdii Stejneger, 1883.
Baird's pocket gopher, Geomys breviceps (Baird, 1855)
Prairie deer mouse, Peromyscus maniculatus bairdii (Hoy and Kennicott, 1857)
Baird's shrew, Sorex bairdi (Meriam, 1895)
Baird's tapir, Tapirus bairdii (Gill, 1865).
Baird's sparrow, Ammodramus bairdii (Audubon, 1844).
Baird's sandpiper, Calidris bairdii Coues, 1861.
Cuban ivory-billed woodpecker, Campephilus bairdii (now C. principalis bairdii), Cassin, 1863.
Baird's flycatcher, Myiodynastes bairdii Gambell, 1847.
Baird's trogon, Trogon bairdii Lawrence, 1868.
Tanner crab, Chionoecetes bairdi Rathbun, 1924.
Red lobster, Eunephrops bairdii S. I. Smith, 1885.
Baird's rat snake, Pantherophis bairdi (Yarrow, 1880).
Baird's patch-nosed snake, Salvadora bairdi Jan, 1860.
Author abbreviation in zoology
Baird
Sea vessel
M.V. Spencer F. Baird, Ocean-surveying ship.
Locations
The Lake Shasta Caverns were formerly named Baird Cave.
References
Further reading
Publications by Spencer Fullerton Baird
"Directions for Collecting, Preserving, and Transporting Specimens of Natural History." Annual Report of the Smithsonian Institution for the Year 1856. p. 235-253.
with Robert Ridgway and Thomas Mayo Brewer. A History Of North American Birds.
with Charles Frédéric Girard. Catalogue of North American Reptiles in the Museum of the Smithsonian Institution. Part I.—Serpents. Washington DC: Smithsonian Institution. xvi + 172 pp. (1853).
Publications about Baird
Allard, Dean C. Spencer Fullerton Baird and the U. S. Fish Commission: A Study in the History of American Science. Washington: The George Washington University (1967).
Belote, Theodore T. "The Secretarial Cases." Scientific Monthly. 58 (1946): 366–370.
Cockerell, Theodore D.A. "Spencer Fullerton Baird." Popular Science Monthly. 68 (1906): 63–83.
Dall, William Healey. "Spencer Fullerton Baird: a biography, including selections from his correspondence with Audubon, Agassiz, Dana, and others." Philadelphia: J.B. Lippincott Company (1915).
Goode, G. Brown. The Published Writings of Spencer Fullerton Baird, 1843-1882. Washington, D.C.: Government Printing Office (1883).
Ripley, S. Dillon. "The View From the Castle: Take two freight cars of specimens, add time and energy--eventually you'll get a natural history museum." Smithsonian. 1.11 (1971): 2.
Rivinus, Edward F. and Youssef, Elizabeth M. . Spencer F. Baird of the Smithsonian. Washington, D.C.: Smithsonian Institution Press (1992).
External links
Spencer F. Baird's Vision for a National Museum online exhibit at the Smithsonian Institution Archives
Spencer Baird and Ichthyology at the Smithsonian, 1850-1900 from the National Museum of Natural History
National Academy of Sciences Biographical Memoir
Spencer Fullerton Baird Index of Corresondents, 1850s - 1870s
1823 births
1887 deaths
American naturalists
American taxonomists
American ichthyologists
American ornithologists
Dickinson College alumni
Secretaries of the Smithsonian Institution
Members of the American Antiquarian Society
United States Fish Commission personnel
People from Carlisle, Pennsylvania
People from Reading, Pennsylvania
Burials at Oak Hill Cemetery (Washington, D.C.)
West Nottingham Academy alumni
Columbia University alumni
19th-century American zoologists
Members of the United States National Academy of Sciences
|
```xml
import { CommonModule } from "@angular/common";
import { Component, Input } from "@angular/core";
import { RouterModule } from "@angular/router";
import { JslibModule } from "@bitwarden/angular/jslib.module";
import { CipherType } from "@bitwarden/common/vault/enums";
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
import {
CardComponent,
SectionComponent,
SectionHeaderComponent,
TypographyModule,
} from "@bitwarden/components";
@Component({
selector: "app-item-history-v2",
templateUrl: "item-history-v2.component.html",
standalone: true,
imports: [
CommonModule,
JslibModule,
RouterModule,
CardComponent,
SectionComponent,
SectionHeaderComponent,
TypographyModule,
],
})
export class ItemHistoryV2Component {
@Input() cipher: CipherView;
get isLogin() {
return this.cipher.type === CipherType.Login;
}
}
```
|
Herbert Broughall Lipsham (29 April 1878 – 23 March 1932) was a professional footballer who won the 1902 FA Cup Final with Sheffield United.
Club career
Educated at the King's School, Chester Lipsham was a goal-scoring outside left. He began by playing in his home city with Chester St Oswalds before making his debut for Chester in the 1895–96 season. He was one of four brothers to play for Chester, with the others including Jack who went on to play for Liverpool.
After a spell with Rockferry, Lipsham joined Crewe Alexandra in the 1898–99 season as a professional and was an immediate success. So much so that Derby County, Notts County and Sheffield United showed an immediate interest in him.
Crewe were not anxious to part with him, but a substantial offer induced them to transfer him to Sheffield United in 1900. After that, he was an invaluable member of the successful Blades team of that period. A quiet, unassuming and well-behaved young man, he was famous for his hard-hit crosses, which produced a lot of goals for his central strikers. Lipsham played in the successful FA Cup Final team when Sheffield United beat Southampton 2–1 in a replay on 26 April 1902. He moved to Fulham in 1908.
Managerial career
Lipsham was appointed manager at Millwall on 4 May 1911, retaining the position until the First World War.
International career
Lipsham was capped by England against Wales on 3 March 1902, aged 23 years.
Other information
He also had a tobacconist shop at 142 Bramall Lane.
Lipsham was a member of the first management committee of the PFA and later moved to Canada where he became involved in the development of football.
Honours
Sheffield United
FA Cup winner: 1902
FA Cup finalist: 1901
References
External links
Biography on EnglandFootballOnline
Clarebrough, Denis. Sheffield United official matchday programme, March 1989.
1878 births
1932 deaths
Footballers from Chester
People educated at The King's School, Chester
English men's footballers
England men's international footballers
Sheffield United F.C. players
Crewe Alexandra F.C. players
Chester City F.C. players
Fulham F.C. players
Millwall F.C. players
English Football League players
English football managers
Millwall F.C. managers
English Football League representative players
Men's association football midfielders
|
```xml
import * as compose from 'lodash.flowright';
import {
IFilterParams,
IItem,
IOptions,
ItemsQueryResponse,
SaveMutation
} from '../../types';
import AddForm from './AddForm';
import ConformityChooser from '../../../conformity/containers/ConformityChooser';
import React from 'react';
import { gql } from '@apollo/client';
import { graphql } from '@apollo/client/react/hoc';
import { withProps } from '@erxes/ui/src/utils';
type IProps = {
search: (value: string, loadMore?: boolean) => void;
searchValue: string;
filterStageId?: (
stageId?: string,
boardId?: string,
pipelineId?: string
) => void;
perPage?: number;
stageId?: string;
boardId?: string;
pipelineId?: string;
showSelect?: boolean;
};
type FinalProps = {
itemsQuery: ItemsQueryResponse;
addMutation: SaveMutation;
} & IProps;
class ItemChooserContainer extends React.Component<
WrapperProps & FinalProps,
{ newItem?: IItem }
> {
constructor(props) {
super(props);
this.state = {
newItem: undefined
};
}
resetAssociatedItem = () => {
return this.setState({ newItem: undefined });
};
render() {
const { data, itemsQuery, search, perPage } = this.props;
const queryName = data.options.queriesName.itemsQuery;
const datas = itemsQuery[queryName] || [];
const renderName = item => {
return item.name || 'Unknown';
};
const getAssociatedItem = (newItem: IItem) => {
this.setState({ newItem });
};
const onLoadMore = () => {
return (
itemsQuery &&
itemsQuery.fetchMore({
variables: {
skip: datas.length
},
updateQuery: (prevResult, { fetchMoreResult }) => {
if (!fetchMoreResult || fetchMoreResult[queryName].length === 0) {
return prevResult;
}
const prevItems = prevResult[queryName] || [];
const prevItemIds = prevItems.map(item => item._id);
const fetchedItems: any[] = [];
for (const item of fetchMoreResult[queryName]) {
if (!prevItemIds.includes(item._id)) {
fetchedItems.push(item);
}
}
return {
...prevResult,
[queryName]: [...prevItems, ...fetchedItems]
};
}
})
);
};
const updatedProps = {
...this.props,
data: {
_id: data._id,
name: renderName(data),
datas: data.items,
mainTypeId: data.mainTypeId,
mainType: data.mainType,
isRelated: data.isRelated,
relType: data.options.type,
options: data.options
},
search,
onLoadMore,
clearState: () => search(''),
perPage: perPage || 10,
title: data.options.title,
renderName,
renderForm: formProps => (
<AddForm
{...formProps}
refetch={itemsQuery.refetch}
options={data.options}
boardId={this.props.boardId}
pipelineId={this.props.pipelineId}
stageId={this.props.stageId}
showSelect={true}
getAssociatedItem={getAssociatedItem}
/>
),
newItem: this.state.newItem,
resetAssociatedItem: this.resetAssociatedItem,
datas,
loading: itemsQuery.loading,
refetchQuery: data.options.queries.itemsQuery
};
return <ConformityChooser {...updatedProps} />;
}
}
const WithQuery = ({ options }) => {
return withProps<IProps>(
compose(
graphql<IProps & WrapperProps, ItemsQueryResponse, IFilterParams>(
gql(options.queries.itemsQuery),
{
name: 'itemsQuery',
options: ({ searchValue, stageId, data }) => {
return {
variables: {
search: searchValue,
stageId,
mainType: data.mainType,
mainTypeId: data.mainTypeId,
isRelated: data.isRelated,
relType: data.options.type,
sortField: 'createdAt',
sortDirection: -1
},
fetchPolicy: data.isRelated ? 'network-only' : 'cache-first'
};
}
}
)
)(ItemChooserContainer)
);
};
type WrapperProps = {
data: {
_id?: string;
name: string;
items: IItem[];
options: IOptions;
mainTypeId?: string;
mainType?: string;
isRelated?: boolean;
};
onSelect: (datas: IItem[]) => void;
showSelect?: boolean;
closeModal: () => void;
};
export default class Wrapper extends React.Component<
WrapperProps,
{
searchValue: string;
stageId?: string;
pipelineId?: string;
boardId?: string;
}
> {
private withQuery;
constructor(props) {
super(props);
this.state = { searchValue: '', stageId: '', boardId: '', pipelineId: '' };
this.withQuery = WithQuery({ options: props.data.options });
}
search = value => {
return this.setState({ searchValue: value });
};
filterStageId = (stageId, boardId, pipelineId) => {
return this.setState({ stageId, boardId, pipelineId });
};
render() {
const { searchValue, stageId, boardId, pipelineId } = this.state;
const Component = this.withQuery;
return (
<Component
{...this.props}
search={this.search}
searchValue={searchValue}
filterStageId={this.filterStageId}
stageId={stageId}
boardId={boardId}
pipelineId={pipelineId}
/>
);
}
}
```
|
Brett Quillen Claywell (born April 11, 1978, Greensboro, North Carolina) is an American actor best known for playing the roles of Tim Smith on The WB/CW series One Tree Hill, and Kyle Lewis on the ABC soap opera One Life to Live.
Biography
Claywell may be best-known for his portrayal of young medical student Kyle Lewis on ABC’s long-running daytime series, One Life to Live. He earned critical acclaim and national recognition, as well as a GLAAD award, for his turn as one of daytime’s most talked about actors of 2010.
Claywell began acting at a young age, starting his acting career in the Children’s theater in his hometown of Greensboro, North Carolina. He continued performing on the stage all the way up through college, where he studied theater at North Carolina State University while also earning a degree in Architecture. While at NC State he was a member of the Phi Delta Theta fraternity. Following his graduation, he moved to Wilmington, North Carolina to pursue a life as an actor. After a few brief appearances on the WB’s Dawson’s Creek, he won a role in the pilot of the CW’s One Tree Hill. He portrayed "Tim Smith" for three seasons on the show. He appeared in numerous episodes of the 2009 Joss Whedon show Dollhouse on FOX, where he appeared along lead actress Eliza Dushku. Claywell has made appearances in films, including The Final Season (in 2007), where he co-starred with Sean Astin, Powers Boothe, Rachael Leigh Cook and Michael Angarano.
In 2010, he ran his first New York City Marathon to raise money for an organization, which through soccer raises HIV and AIDS awareness in Africa. In 2011 he launched a website called 'Brett Claywell Photography'. In 2018 he was executive producing a basketball series titled "Streetball Stories".
Personal life
Claywell has two older siblings: a brother, Christopher, and a sister, Traci. Claywell is married to Tamara De Kauwe, with whom he has a son, Phoenix Harper Claywell and a daughter.
Filmography
References
External links
Brett Claywell on TV.com
1978 births
Living people
American male television actors
North Carolina State University alumni
Male actors from North Carolina
People from Greensboro, North Carolina
21st-century American male actors
|
```python
# your_sha256_hash___________
#
# Pyomo: Python Optimization Modeling Objects
# National Technology and Engineering Solutions of Sandia, LLC
# Under the terms of Contract DE-NA0003525 with National Technology and
# Engineering Solutions of Sandia, LLC, the U.S. Government retains certain
# rights in this software.
# your_sha256_hash___________
#
from pyomo.common.dependencies import attempt_import, UnavailableClass
cplex, cplex_available = attempt_import('cplex')
class IncumbentCallback_cplex(
cplex.callbacks.IncumbentCallback if cplex_available else UnavailableClass(cplex)
):
"""Inherent class in Cplex to call Incumbent callback."""
def __call__(self):
"""
This is an inherent function in LazyConstraintCallback in CPLEX.
This callback will be used after each new potential incumbent is found.
path_to_url
IncumbentCallback will be activated after Lazyconstraint callback, when the potential incumbent solution is satisfies the lazyconstraints.
TODO: need to handle GOA same integer combination check in lazyconstraint callback in single_tree.py
"""
mindtpy_solver = self.mindtpy_solver
opt = self.opt
config = self.config
if config.single_tree:
self.reject()
else:
temp = []
for var in mindtpy_solver.mip.MindtPy_utils.discrete_variable_list:
value = self.get_values(opt._pyomo_var_to_solver_var_map[var])
temp.append(int(round(value)))
mindtpy_solver.curr_int_sol = tuple(temp)
if mindtpy_solver.curr_int_sol in set(mindtpy_solver.integer_list):
self.reject()
```
|
```go
package internal
import (
"context"
"errors"
"github.com/rockbears/log"
"github.com/ovh/cds/sdk"
)
// V2Register Workers need to register to main api so they can run actions
func (w *CurrentWorker) V2Register(ctx context.Context, runJobID, region string) error {
var form sdk.WorkerRegistrationForm
log.Info(ctx, "Registering on %s", w.cfg.APIEndpoint)
form.Version = sdk.VERSION
form.OS = sdk.GOOS
form.Arch = sdk.GOARCH
worker, err := w.ClientV2().V2WorkerRegister(context.Background(), w.cfg.APIToken, form, region, runJobID)
if err != nil {
return sdk.WithStack(err)
}
if worker.ID == "" {
return sdk.WithStack(errors.New("worker registration failed"))
}
w.id = worker.ID
return nil
}
func (w *CurrentWorker) V2Unregister(ctx context.Context, region, runJobID string) error {
log.Info(ctx, "Unregistering worker")
w.id = ""
if err := w.ClientV2().V2WorkerUnregister(context.TODO(), region, runJobID); err != nil {
return err
}
return nil
}
```
|
Amos James Storkey (born 1971) is Professor of Machine Learning and Artificial Intelligence at the School of Informatics, University of Edinburgh.
Storkey studied mathematics at Trinity College, Cambridge and obtained his doctorate from Imperial College, London. In 1997 during his PhD, he worked on the Hopfield Network a form of recurrent artificial neural network popularized by John Hopfield in 1982. Hopfield nets serve as content-addressable ("associative") memory systems with binary threshold nodes and Storkey developed what became known as the "Storkey Learning Rule".
Subsequently, he has worked on approximate Bayesian methods, machine learning in astronomy, graphical models, inference and sampling, and neural networks.
Storkey joined the School of Informatics at the University of Edinburgh in 1999, was Microsoft Research Fellow from 2003 to 2004, appointed as reader in 2012, and to a personal chair in 2018. He is currently a Member of Institute for Adaptive and Neural Computation, Director of CDT in Data Science [2014-22] leading the Bayesian and Neural Systems Group. In December 2014, Clark and Storkey together published an innovative paper "Teaching Deep Convolutional Neural Networks to Play Go". Convolutional neural network (CNN, or ConvNet) is a class of deep neural networks, most commonly applied to analyzing visual imagery. Their paper showed that a Convolutional Neural Network trained by supervised learning from a database of human professional games could outperform GNU Go and win some games against Monte Carlo tree search Fuego 1.1 in a fraction of the time it took Fuego to play.
Most cited work
Antoniou A, Storkey A, Edwards H. Data augmentation generative adversarial networks. arXiv preprint arXiv:1711.04340. 2017 Nov 12. According to Google Scholar, it has been cited 490 times.
Burda Y, Edwards H, Storkey A, Klimov O. Exploration by random network distillation. arXiv preprint arXiv:1810.12894. 2018 Oct 30. According to Google Scholar, this paper has been cited 368 times
Burda Y, Edwards H, Pathak D, Storkey A, Darrell T, Efros AA. Large-scale study of curiosity-driven learning. arXiv preprint arXiv:1808.04355. 2018 Aug 13. According to Google Scholar, this paper has been cited 313 times
Everingham M, Zisserman A, Williams CK, Van Gool L, Allan M, Bishop CM, Chapelle O, Dalal N, Deselaers T, Dorkó G, Duffner S. The 2005 pascal visual object classes challenge. InMachine Learning Challenges Workshop 2005 Apr 11 (pp. 117–176). Springer, Berlin, Heidelberg. According to Google Scholar, this paper has been cited 306 times
Toussaint M, Storkey A. Probabilistic inference for solving discrete and continuous state Markov Decision Processes. InProceedings of the 23rd international conference on Machine learning 2006 Jun 25 (pp. 945–952). According to Google Scholar, this paper has been cited 217 times
References
1971 births
Living people
Alumni of Trinity College, Cambridge
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.