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; } ```
Ḥontoria is one of 28 parishes (administrative divisions) in Llanes, a municipality within the province and autonomous community of Asturias, in northern Spain. Villages Cardosu Hontoria Villaḥormes References Parishes in Llanes
Qezel Hajjilu (, also Romanized as Qezel Ḩājjīlū) is a village in Bash Qaleh Rural District, in the Central District of Urmia County, West Azerbaijan Province, Iran. At the 2006 census, its population was 225, in 64 families. References Populated places in Urmia County
Pepita Laguarda Batet (1919–1936), was a Catalan anarchist militiawoman who fought on the Aragon front during the Spanish Civil War. She was incorporated into the libertarian ranks without having yet reached adulthood and died in Uesca at the age of seventeen. She was the youngest soldier to die in combat during the war. Biography Born in Barcelona, Pepita Laguarda lived in the L'Hospitalet de Llobregat district of with her parents and three brothers. Her mother, Matilde Batet, was a working-class member of the Confederación Nacional del Trabajo (CNT) and introduced her to anarchist ideas. When the Spanish Civil War broke out in 1936, she signed up as a nurse at a hospital in Sarrià. She soon learned that volunteers were being recruited to fight in the combat zones. She decided to enlist, against the advice of her father, who accompanied her to the recruitment centre at the Mikhail Bakunin barracks in Pedralbes to try and change her mind, but to no avail. When she informed her boyfriend , also a CNT activist, of her decision, he decided to follow her into the war. The young couple took up arms as part of the Ascaso Column and left to fight on the Aragon Front. On 30 August, the attack on Uesca began. On 1 September 1936, having been fighting for hours, she was seriously wounded in the shoulder under fire at 5am. She rescued by the Red Cross, which transferred her to Vicién hospital for first aid. Her condition meant she had to be taken to Granyén hospital, where she died at 9.30am, in the arms of her companion. Juan informed Solidaridad Obrera of her passing, deeply moved by the death of his first love. He wrote about his relationship with Pepita in his autobiography, published in France in 1995. References Further reading 1919 births 1936 deaths 20th-century Spanish women Anarchists from Catalonia Female child soldiers Spanish anarchists Spanish military personnel killed in the Spanish Civil War (Republican faction) Spanish women of the Spanish Civil War (Republican faction)
Sport Lisboa e Benfica (), commonly known as Benfica, is a professional basketball team based in Lisbon, Portugal, that plays in the Liga Portuguesa de Basquetebol (LPB), where they are the current champions. Founded in 1927, it is the senior representative side of the basketball section of multi-sports club S.L. Benfica. In June 2007, the club decided to leave the professional top league, then known as LCB, and join the Proliga, a league organized by the Portuguese Basketball Federation. From 2008 onwards, they returned to the LPB after the federation took over the realms of the competition. Benfica is the most successful Portuguese club, having the record for most championships (29), cups (23), league cups (12), super cups (15), and other national competitions plus the Supertaça da Lusofonia, totalling 85 trophies. It is also the Portuguese team that advanced the furthest in the European top club championship, now known as EuroLeague. Some of their most memorable moments were European victories against clubs that have won the Euroleague, such as Virtus Bologna, Real Madrid, Cantù, Cibona, Joventut Badalona, Panathinaikos, Partizan, CSKA Moscow, and Varese. Along with its several youth teams, which play in their respective top division championships, Benfica also has a developmental basketball team, Benfica B, that plays in the Proliga, the second highest tier in Portugal. History Early years Created on 20 March 1927, the basketball team followed the steps of many other sports that were supported by the club, achieving great success almost immediately. The team established itself as a main contender by the 1940s and during the whole 1960s gained the status of championship favourite and was already the club with the most titles won. By this time the club had won eight national championships and eight cups. This dominating spell decreased the following decade until the early 1980s. In this time-span Benfica could only win two championships, in the 1969–70 and the 1974–75 season, but won four national cups, the second most prestigious Portuguese tournament, in 1969–70, 1971–72, 1972–73 and 1973–74. After these years, Benfica again dominated the national scene. Golden years The most successful period of the club was between 1985 and 1995. In eleven seasons, the team won ten national titles, seven of which in a row, five national cups, five league cups and six super cups, achieving the best season ever by a Portuguese basketball team in 1994–95 winning the Portuguese League, Portuguese League Cup, Portuguese Super Cup, Portuguese Basketball Cup and finishing the European Champions' Cup in the Top 16. One of the highlight from that European Champions' Cup season was a 22-point victory (102–80) against CSKA Moscow in Lisbon on 12 January 1995. Benfica also made successful international campaigns in the other seasons considering the budget the team had compared with other European big teams. Some of the most successful of those campaigns include the 1993–94, when Benfica was close to reach the Top 8, and for a third season in a row Benfica managed to reach the Top 16 again in the European Champions' Cup, in 1995–96, grabbing a win against Panathinaikos, the eventual champions. Decline in the late 1990s This period was followed by a dark era in which Benfica was internally overshadowed by Ovarense, Portugal Telecom and FC Porto. Even though this period is considered to be a dark one, Benfica did manage to reach the LPB final once as well as winning Super Cups and finishing runners-up in the national cup and in the league cup. Also noteworthy is an away win against Real Madrid, in the 1996–97 EuroCup, the same season the Spaniards won the competition. The team finally decided to withdraw from the top tier and applied for the second league, the Proliga, which was the highest division run by the Federação Portuguesa de Basquetebol. However the first division was folded and the LPB (league) was again being overviewed by the national federation. This allowed the team to make a comeback to the main league. Revival in the late 2000s After more than a decade without any titles and in the same season Benfica had made a return to the first league, the 2008–09 season, the team won the Portuguese League, with a perfect score of 100% wins during the regular season, becoming the second team in the world to do so, after Maccabi Tel Aviv in the 1970s, and thrashing Ovarense 4–0 in the best-of-four game final. Benfica won the championship again the following season with a 91% winning record in the regular stage and a 4–1 final against Porto. The recent success brought the team to participate in the EuroChallenge, thus marking the end of a mid-term long hiatus from Portuguese clubs in European basketball competitions. The following year, Benfica won the League Cup and the Super Cup but did not renew the championship as it lost 4–3 in the final to Porto. Recent years In the next season Benfica regained the title of Portuguese champion after defeating Porto in their home court Dragão Caixa (53–56) in the last best-of-five series game following a 2–2 playoff tie. Benfica retained the title the following season, having only lost two games, one in the regular season, and the other in the play-off final, which they won 3–1 against Académica de Coimbra, both defeats coming only in overtime. Overall Benfica won every title except the Cup, losing against Vitória de Guimarães in the final, amassing only three losses in the entire season in all competitions. On 23 May 2014, Benfica defeated Vitória de Guimarães (3–0) and conquered its 25th champions title (third consecutive), completing the domestic treble of League, Portuguese Cup and Hugo dos Santos Cup. In this season they won a total of 4 titles (including the 2013 Super Cup). In the 2014–15 season, Benfica returned to the European competitions, playing in EuroChallenge where they finished in third place of Group E. At domestic level, Benfica won all the five competitions. Starting the 2015–16 season, they won their fifth and fourth consecutive António Pratas Trophy, setting a club record of ten consecutive Portuguese trophies won. They achieved the domestic treble of League Cup, Portuguese Cup, and league title the next season. In September 2022, Benfica qualified for the regular season of the 2022–23 Basketball Champions League. It was the first time a Portuguese team entered the regular season of the league. Results in international competition Note: Benfica score is always listed first. Home arenas Benfica played its home basketball games at the Pavilhão dos Desportos, from 1946 to 1965. The club then played its home games at the Pavilhão da Luz, from 1965 to 2003. Since 2003, Benfica has hosted its home games at the Pavilhão Fidelidade, which has a seating capacity of 2,400 people. Honours Domestic competitions Portuguese League Winners (29) – record: 1939–40, 1945–46, 1946–47, 1960–61, 1961–62, 1962–63, 1963–64, 1964–65, 1969–70, 1974–75, 1984–85, 1985–86, 1986–87, 1988–89, 1989–90, 1990–91, 1991–92, 1992–93, 1993–94, 1994–95, 2008–09, 2009–10, 2011–12, 2012–13, 2013–14, 2014–15, 2016–17, 2021–22, 2022–23 Portuguese Cup Winners (23) – record: 1945–46, 1946–47, 1960–61, 1963–64, 1964–65, 1965–66, 1967–68, 1968–69, 1969–70, 1971–72, 1972–73, 1973–74, 1980–81, 1991–92, 1992–93, 1993–94, 1994–95, 1995–96, 2013–14, 2014–15, 2015–16, 2016–17, 2022–23 League Cup / Hugo dos Santos Cup Winners (12) – record: 1989–90, 1990–91, 1992–93, 1993–94, 1994–95, 1995–96, 2010–11, 2012–13, 2013–14, 2014–15, 2016–17, 2017–18 Portuguese Super Cup Winners (15) – record: 1985, 1989, 1991, 1994, 1995, 1996, 1998, 2009, 2010, 2012, 2013, 2014, 2015, 2017, 2023 Troféu António Pratas LPB Winners (5) – record: 2008–09, 2011–12, 2012–13, 2014–15, 2015–16 Troféu António Pratas Proliga Winners (1): 2007–08 International competitions Supertaça da Lusofonia Winners (1): 2010 Players Current roster Retired numbers Former players Players who won a league title with Benfica or who were picked in the NBA draft. Bruce Holland (4 seasons: 1977–81) Henrique Vieira (11 seasons: 1981–92) Carlos Lisboa (12 seasons: 1984–96) Mike Plowden (10 seasons: 1985–95) Jean-Jacques Conceição (8 seasons: 1988–96) Pedro Miguel (11 seasons: 1989–2000) José Carlos Guimarães (4 seasons: 1991–94, 1996–97) Steve Rocha (4 seasons: 1992–95, 1996–97) Carlos Seixas (7 seasons: 1992–99) Torgeir Bryn (1 season: 1994–95) Luís Silva (8 seasons: 1994–99, 2002–05) Sérgio Ramos (8 seasons: 1995–99, 2008–12) Brian Rewers (1 season: 1997–98) Mark Acres (1 season: 1997–98) Jamal Faulkner (3 seasons: 1997–99) Jamie Watson (1 season: 2002–03) Tomás Jofresa (1 season: 2003–04) Ben Davis (1 season: 2005–06) Ashante Johnson (3 seasons: 2005–07) Carlos Andrade (7 seasons: 2006–07, 2012–18) Corey Benjamin (1 season: 2006–07) Geno Carlisle (1 season: 2006–07) Tyson Wheeler (1 season: 2006–07) Miguel Minhava (7 seasons: 2006–13) Edson Ferreira (1 season: 2008–09) Rahein Brown (1 season: 2008–09) Seth Doliboa (5 seasons: 2008–09, 2011–2015) Cristóvão Cordeiro (2 seasons: 2008–10) João Santos (2 seasons: 2008–10) Miguel Barroca (2 seasons: 2008–10) António Tavares (3 seasons: 2008–11) Ben Reed (4 seasons: 2008–12) Diogo Carreira (8 seasons: 2008–16) Nick DeWitz (1 season: 2009–10) Will Frisby (1 season: 2009–10) Elvis Évora (4 seasons: 2009–13) Heshimu Evans (4 seasons: 2009–13) Carlos Ferreirinho (6 seasons: 2010–16) António Monteiro (1 season: 2011–12) Marcus Norris (1 season: 2011–12) Ted Scott (1 season: 2011–12) Fred Gentry (5 seasons: 2011–16) Lace Dunn (1 season: 2012–13) Ricky Franklin (1 season: 2012–13) Cláudio Fonseca (4 seasons: 2012–16) David Weaver (1 season: 2013–14) Artur Castela (2 seasons: 2013–16) Jobey Thomas (3 seasons: 2013–15) Mário Gil Fernandes (4 seasons: 2013–17) Ron Slay (1 season: 2014–15) Fábio Lima (4 seasons: 2014–15, 2018–21) Daequan Cook (1 season: 2015–16) Marko Loncovic (2 seasons: 2015–17) Nuno Oliveira (3 seasons: 2015–18) Derek Raivio (1 season: 2016–17) Carlos Morais (2 seasons: 2016–18) Neemias Queta (1 season: 2017–18) Quincy Miller (1 season: 2020–21) Head coaches Teotónio Lima (12 seasons: 1956–65, 1972–75) José Curado (3 seasons: 1984–87) Tim Shea (3 seasons: 1988–91) Mário Palma (6 seasons: 1991–97) Carlos Lisboa (10 seasons: 1997–99, 2011–17, 2019–21) Norberto Alves (2004–06, 2021–present) Henrique Vieira (5 seasons: 2007–11) José Ricardo (1 season: 2017–18) Arturo Álvarez (1 season: 2018–19) Women's honours Portuguese League Winners (2): 2020–21, 2021–22 Portuguese Cup Winners (2): 2020–21, 2021–22 Federation Cup Winners (2): 2021–22, 2022–23 Vítor Hugo Cup Winners (3): 2019–20, 2022–23, 2023–24 Portuguese Super Cup Winners (2):''' 2021, 2022 References Further reading External links Basketball Basketball teams established in 1927 Basketball teams in Portugal 1927 establishments in Portugal
Chiril may refer to: Chiril (name), a male given name Chiril, a village in Crucea Commune, Suceava County, Romania Chiril River (disambiguation), several rivers in Romania See also Chirilov, a surname Chirilovca (disambiguation)
Chondrilla is the scientific name shared by two genera of life-forms: Chondrilla (plant), a plant genus in family Asteraceae Chondrilla (sponge), a sea sponge genus
Cyanicula caerulea, commonly known as the eastern tiny blue china orchid, blue caladenia or blue fairy is a plant in the orchid family Orchidaceae and is endemic to eastern Australia. It has a single narrow leaf and a single blue flower. Description Cyanicula caerulea is a terrestrial, perennial, deciduous, herb with an underground tuber and a single, sparsely hairy leaf, long, wide and which usually lies flat on the ground. A single pale to dark blue, rarely white flower long and wide is borne on a stalk tall. The dorsal sepal is erect, long and about wide. The lateral sepals and petals are long, wide and spread like the fingers of a hand. The labellum is long, wide and blue with dark blue bars. The sides of the labellum curve upwards and the small tip turns downwards. There are two rows of yellow-tipped calli along the mid-line of the labellum. Flowering occurs from July to September. Taxonomy and naming Cyanicula caerulea was first formally described in 1810 by Robert Brown and the description was published in Prodromus florae Novae Hollandiae. In 2000, Stephen Hopper and Andrew Brown transferred the species to Cyanicula as C. caerulea. The specific epithet (caerulea) is a Latin word meaning "sky-blue". Distribution and habitat In Victoria, C. caerulea is mostly found in central areas growing in stony soil on rocky ridges but it also occurs in coastal heath in the east of the state. In New South Wales and the A.C.T. it grows in woodland and shrub on rocky ridges, mostly in the eastern half of the state. It also occurs in the south-east of Queensland. References caerulea Endemic orchids of Australia Orchids of New South Wales Orchids of Queensland Orchids of Victoria (state) Plants described in 1810
Below is the list of populated places in Ardahan Province, Turkey by districts. In the following lists, first place in each list is the administrative center of the district. Ardahan Ardahan Açıkyazı, Ardahan Ağzıpek, Ardahan Akyaka, Ardahan Alagöz, Ardahan Altaş, Ardahan Ardıçdere, Ardahan Aşağıkurtoğlu, Ardahan Bağdaşen, Ardahan Balıkçılar, Ardahan Bayramoğlu, Ardahan Beşiktaş, Ardahan Binbaşar, Ardahan Büyüksütlüce, Ardahan Çağlayık, Ardahan Çalabaş, Ardahan Çamlıçatak, Ardahan Çataldere, Ardahan Çatalköprü, Ardahan Çeğilli, Ardahan Çetinsu, Ardahan Çimenkaya, Ardahan Çobanlı, Ardahan Dağcı, Ardahan Dağevi, Ardahan Dedegül, Ardahan Değirmenli, Ardahan Derindere, Ardahan Edegül, Ardahan Gölgeli, Ardahan Gürçayır, Ardahan Güzçimeni, Ardahan Güzelyurt, Ardahan Hacıali, Ardahan Hasköy, Ardahan Höçvan, Ardahan Kartalpınar, Ardahan Kazlıköy, Ardahan Kıraç, Ardahan Kocaköy, Ardahan Köprücük, Ardahan Küçüksütlüce, Ardahan Lehimli, Ardahan Meşedibi, Ardahan Nebioğlu, Ardahan Ortageçit, Ardahan Otbiçen, Ardahan Ovapınar, Ardahan Ölçek, Ardahan Ömerağa, Ardahan Samanbeyli, Ardahan Sarıyamaç, Ardahan Sugöze, Ardahan Sulakyurt, Ardahan Taşlıdere, Ardahan Tazeköy, Ardahan Tepeler, Ardahan Tepesuyu, Ardahan Tunçoluk, Ardahan Uzunova, Ardahan Yanlızçam, Ardahan Yaylacık, Ardahan Yokuşdibi, Ardahan Yukarıkurtoğlu, Ardahan Çıldır Çıldır Ağıllı, Çıldır Akçakale, Çıldır Akçıl, Çıldır Akdarı, Çıldır Akkiraz, Çıldır Aşağıcambaz, Çıldır Aşıkşenlik, Çıldır Baltalı, Çıldır Başköy, Çıldır Damlıca, Çıldır Dirsekkaya, Çıldır Doğankaya, Çıldır Eskibeyrehatun, Çıldır Eşmepınar, Çıldır Gölbelen, Çıldır Gölebakan, Çıldır Güvenocak, Çıldır Karakale, Çıldır Kaşlıkaya, Çıldır Kayabeyi, Çıldır Kenarbel, Çıldır Kenardere, Çıldır Kotanlı, Çıldır Kurtkale, Çıldır Kuzukaya, Çıldır Meryemköy, Çıldır Öncül, Çıldır Övündü, Çıldır Sabaholdu, Çıldır Saymalı, Çıldır Sazlısu, Çıldır Semihaşakir, Çıldır Taşdeğirmen, Çıldır Yenibeyrehatun, Çıldır Yıldırımtepe, Çıldır Yukarıcambaz, Çıldır Damal Damal Burmadere, Damal Dereköy, Damal Eskikılıç, Damal İkizdere, Damal Otağlı, Damal Seyitören, Damal Tepeköy, Damal Göle Göle Arpaşen, Göle Balçeşme, Göle Bellitepe, Göle Budaklı, Göle Büyükaltınbulak, Göle Çakıldere, Göle Çakırüzüm, Göle Çalıdere, Göle Çardaklı, Göle Çayırbaşı, Göle Çobanköy, Göle Çullu, Göle Damlasu, Göle Dedekılıcı, Göle Dengeli, Göle Dereyolu, Göle Dölekçayır, Göle Durucasu, Göle Esenboğaz, Göle Esenyayla, Göle Eskidemirkapı, Göle Filizli, Göle Gedik, Göle Gülistan, Göle Günorta Hoşdülbent, Göle Kalecik, Göle Karlıyazı, Göle Kayaaltı, Göle Koyunlu, Göle Köprülü, Göle Kuytuca, Göle Kuzupınarı, Göle Küçükaltınbulak, Göle Mollahasan, Göle Okçu, Göle Samandöken, Göle Senemoğlu, Göle Serinçayır, Göle Sürügüden, Göle Tahtakıran, Göle Tellioğlu, Göle Toptaş, Göle *Uğurtaşı, Göle Yağmuroğlu, Göle Yanatlı, Göle Yavuzlar, Göle *Yeleçli, Göle Yenidemirkapı, Göle Yeniköy, Göle Yiğitkonağı, Göle Hanak Hanak Altınemek, Hanak Aşağıaydere, Hanak Baştoklu, Hanak Binbaşak, Hanak Börk, Hanak Çatköy, Hanak Çavdarlı, Hanak Çayağzı, Hanak Çiçeklidağ, Hanak Çimliçayır, Hanak Güneşgören, Hanak İncedere , Hanak Karakale, Hanak Koyunpınarı, Hanak Sazlıçayır, Hanak Serinkuyu, Hanak Sevimli, Hanak Sulakçayır, Hanak Yamaçyolu, Hanak Yamçılı, Hanak Yukarıaydere, Hanak Yünbüken, Hanak Posof Posof Akballı, Posof Alabalık, Posof Alköy, Posof Arılı, Posof Armutveren, Posof Asmakonak, Posof Aşıküzeyir, Posof Aşıkzülali, Posof Balgözü, Posof Baykent, Posof Binbaşıeminbey, Posof Çakırkoç, Posof Çambeli, Posof Çamyazı, Posof Çayırçimen, Posof Demirdöver, Posof Derindere, Posof Doğrular, Posof Erim, Posof Gönülaçan, Posof Gümüşkavak, Posof Günbatan, Posof Günlüce, Posof Gürarmut, Posof İncedere, Posof Kaleönü, Posof Kalkankaya, Posof Kayınlı, Posof Kırköy, Posof Kolköy, Posof Kopuzlu, Posof Kumlukoz, Posof Kurşunçavuş, Posof Özbaşı, Posof Sarıçiçek, Posof Sarıdarı, Posof Savaşır, Posof Söğütlükaya, Posof Süngülü, Posof Sütoluk, Posof Taşkıran, Posof Türgözü, Posof Uğurca, Posof Uluçam, Posof Yaylaaltı, Posof Yeniköy, Posof Yolağzı, Posof Yurtbaşı, Posof Yurtbekler, Posof References Ardahan Province Ardahan List
This is a list of cases reported in volume 65 (24 How.) of United States Reports, decided by the Supreme Court of the United States in 1860 and 1861. Nominative reports In 1874, the U.S. government created the United States Reports, and retroactively numbered older privately-published case reports as part of the new series. As a result, cases appearing in volumes 1–90 of U.S. Reports have dual citation forms; one for the volume number of U.S. Reports, and one for the volume number of the reports named for the relevant reporter of decisions (these are called "nominative reports"). Benjamin Chew Howard Starting with the 42nd volume of U.S. Reports, the Reporter of Decisions of the Supreme Court of the United States was Benjamin Chew Howard. Howard was Reporter of Decisions from 1843 to 1860, covering volumes 42 through 65 of United States Reports which correspond to volumes 1 through 24 of his Howard's Reports. As such, the dual form of citation to, for example, Christ Church v. Philadelphia County is 65 U.S. (24 How.) 300 (1861). Justices of the Supreme Court at the time of 65 U.S. (24 How.) The Supreme Court is established by Article III, Section 1 of the Constitution of the United States, which says: "The judicial Power of the United States, shall be vested in one supreme Court . . .". The size of the Court is not specified; the Constitution leaves it to Congress to set the number of justices. Under the Judiciary Act of 1789 Congress originally fixed the number of justices at six (one chief justice and five associate justices). Since 1789 Congress has varied the size of the Court from six to seven, nine, ten, and back to nine justices (always including one chief justice). Due to an unfilled vacancy, when the cases in 65 U.S. (24 How.) were decided the Court comprised only these eight members: Citation style Under the Judiciary Act of 1789 the federal court structure at the time comprised District Courts, which had general trial jurisdiction; Circuit Courts, which had mixed trial and appellate (from the US District Courts) jurisdiction; and the United States Supreme Court, which had appellate jurisdiction over the federal District and Circuit courts—and for certain issues over state courts. The Supreme Court also had limited original jurisdiction (i.e., in which cases could be filed directly with the Supreme Court without first having been heard by a lower federal or state court). There were one or more federal District Courts and/or Circuit Courts in each state, territory, or other geographical region. Bluebook citation style is used for case names, citations, and jurisdictions. "C.C.D." = United States Circuit Court for the District of . . . e.g.,"C.C.D.N.J." = United States Circuit Court for the District of New Jersey "D." = United States District Court for the District of . . . e.g.,"D. Mass." = United States District Court for the District of Massachusetts "E." = Eastern; "M." = Middle; "N." = Northern; "S." = Southern; "W." = Western e.g.,"C.C.S.D.N.Y." = United States Circuit Court for the Southern District of New York e.g.,"M.D. Ala." = United States District Court for the Middle District of Alabama "Ct. Cl." = United States Court of Claims The abbreviation of a state's name alone indicates the highest appellate court in that state's judiciary at the time. e.g.,"Pa." = Supreme Court of Pennsylvania e.g.,"Me." = Supreme Judicial Court of Maine List of cases in 65 U.S. (24 How.) Notes and references See also certificate of division External links Case reports in volume 65 (24 How.) from Library of Congress Case reports in volume 65 (24 How.) from Court Listener Case reports in volume 65 (24 How.) from the Caselaw Access Project of Harvard Law School Case reports in volume 65 (24 How.) from Google Scholar Case reports in volume 65 (24 How.) from Justia Case reports in volume 65 (24 How.) from Open Jurist Website of the United States Supreme Court United States Courts website about the Supreme Court National Archives, Records of the Supreme Court of the United States American Bar Association, How Does the Supreme Court Work? The Supreme Court Historical Society 1860 in United States case law 1861 in United States case law
Songlingornithidae is a family of basal euornitheans from the Early Cretaceous of China. All known specimens come from the Jiufotang Formation and the Yixian Formation, dating to the early Barremian and Aptian ages, 125–120 million years ago. The family Songlingornithidae was first named by Hou in 1997 to contain the type genus, Songlingornis. Clarke et al. (2006) was the first to find a close relationship between Songlingornis and the "yanornithids". The name was originally coined to reflect a close relationship between the two supposedly similar (but poorly preserved) genera Songlingornis and Chaoyangia. However, subsequent studies found that Chaoyangia was probably not closely related to Songlingornis. Instead, Songlingornis was found to be closely related to another group which had been given the name Yanornithidae—the name Songlingornithidae, having been named first, took precedence. Some later studies have also placed the hongshanornithids in this group. At least one study has found the Late Cretaceous Mongolian avialan Hollanda to be a member of the group as well. Phylogeny Below is a cladogram from Mayr (2017) showing the relationships between Songlingornithidae and other ornithuromorphs: A 2020 study by Wang et al. failed to recover a monophyletic Songlingornithidae, instead finding Yanornis to form a clade with the newly described genera Abitusavis and Similiyanornis, for which the name Yanornithidae was used: References Early Cretaceous dinosaurs of Asia Prehistoric dinosaur families
Boston Dynamics is an American engineering and robotics design company founded in 1992 as a spin-off from the Massachusetts Institute of Technology. Headquartered in Waltham, Massachusetts, Boston Dynamics has been owned by the Hyundai Motor Group since December 2020, but having only completed the acquisition in June 2021. Boston Dynamics develops of a series of dynamic highly mobile robots, including BigDog, Spot, Atlas, and Handle. Since 2019, Spot has been made commercially available, making it the first commercially available robot from Boston Dynamics, while the company has stated its intent to commercialize other robots as well, including Handle. History The company was founded by Marc Raibert, who spun the company off from the Massachusetts Institute of Technology in 1992. The company was an outgrowth of the Leg Laboratory, Raibert's research lab at MIT and Carnegie Mellon University. The Leg Laboratory helped establish the scientific basis for highly dynamic robots. These robots were inspired by the remarkable ability of animals to move with agility, dexterity, perception and intelligence, and the work there set the stage for the robots developed at Boston Dynamics. Nancy Cornelius was a co-founder of Boston Dynamics, having joined the company as its first employee. During her time there she served as an officer of the company, did engineering on many contracts, was CFO for 10 years, and later was VP in charge of engineering on several contracts. She retired after 21 years of service in 2013, when the company was acquired by Google. Robert Playter was also a co-founder of the company, joining a few months later, as soon as he completed his PhD thesis at MIT working with Raibert in the Leg Laboratory. Playter was COO at the company for many years and has been CEO since 2019. Early in the company's history, it worked with the American Systems Corporation under a contract from the Naval Air Warfare Center Training Systems Division (NAWCTSD) to replace naval training videos for aircraft launch operations with interactive 3D computer simulations featuring characters made with DI-Guy, software for realistic human simulation. Eventually the company started making physical robots—for example, BigDog was a quadruped robot designed for the U.S. military with funding from Defense Advanced Research Projects Agency (DARPA). On December 13, 2013, the company was acquired by Google X (later X, a subsidiary of Alphabet Inc.) for an unknown price, where it was managed by Andy Rubin until his departure from Google in 2014. Immediately before the acquisition, Boston Dynamics transferred their DI-Guy software product line to VT MÄK, a simulation software vendor based in Cambridge, Massachusetts. On June 8, 2017, Alphabet Inc. announced the sale of the company to Japan's SoftBank Group for an undisclosed sum. On April 2, 2019, Boston Dynamics acquired the Silicon Valley startup Kinema Systems. In December 2020, Hyundai Motor Group acquired an 80% stake in the company from SoftBank for approximately $880 million dollars. SoftBank Group retains about 20% through an affiliate. In June 2021, it was announced that Hyundai officially took a controlling stake in the company from SoftBank. In October 2022, the company signed a pledge saying it would not support any weaponization of its robotic creations. Boston Dynamics offered other robotics companies to join the pledge with 5 other firms signing as well. Products BigDog BigDog was a quadrupedal robot created in 2005 by Boston Dynamics, in conjunction with Foster-Miller, the Jet Propulsion Laboratory, and the Harvard University Concord Field Station. It was funded by DARPA in the hopes that it would be able to serve as a robotic pack mule to accompany soldiers in terrain too rough for vehicles, but the project was shelved after BigDog was deemed too loud to be used in combat. Instead of wheels, BigDog used four legs for movement, allowing it to move across surfaces that would defeat wheels. Called "the world's most ambitious legged robot", it was designed to carry alongside a soldier at , traversing rough terrain at inclines up to 35 degrees. Cheetah The Cheetah is a four-footed robot that gallops at , which as of August 2012 is a land speed record for legged robots. A similar but independently developed robot also known as Cheetah is made by MIT's Biomimetic Robotics Lab, which, by 2014, could jump over obstacles while running. By 2018 the robot was able to climb stairs. LittleDog Released around 2010, LittleDog is a small quadruped robot developed for DARPA by Boston Dynamics for research. Unlike BigDog, which is run by Boston Dynamics, LittleDog is intended as a testbed for other institutions. Boston Dynamics maintains the robots for DARPA as a standard platform. LittleDog has four legs, each powered by three electric motors. The legs have a large range of motion. The robot is strong enough for climbing and dynamic locomotion gaits. The onboard PC-level computer does sensing, actuator control and communications. LittleDog's sensors measure joint angles, motor currents, body orientation and foot/ground contact. Control programs access the robot through the Boston Dynamics Robot API. Onboard lithium polymer batteries allow for 30 minutes of continuous operation without recharging. Wireless communications and data logging support remote operation and data analysis. LittleDog development is funded by the DARPA Information Processing Technology Office. PETMAN PETMAN (Protection Ensemble Test Mannequin) is a bipedal device constructed for testing chemical protection suits. It is the first anthropomorphic robot that moves dynamically like a person. LS3 Legged Squad Support System (LS3), also known as AlphaDog, is a militarized version of BigDog. It is ruggedized for military use, with the ability to operate in hot, cold, wet, and dirty environments. According to Lt. Col. Joe Hitt and the US Marine Corps's program manager "The vision for LS3 is to combine the capabilities of a pack mule with the intelligence of a trained animal". LS3 is capable of reacting to visual or oral commands and uses an on board GPS system, along with computer vision (LIDAR and IR), to guide itself through terrain. Due to its ability to track oral commands, soldiers within the field found it difficult to hold a conversation with this bot in a vicinity because it would unknowingly follow commands not given to itself. Unlike its living counterparts, LS3 can march for 20 miles (32 km) before running out of fuel. The robot also doesn't suffer from the shortcomings of bleeding and falling over, a problem with many pack mules. Atlas The Agile Anthropomorphic Robot "Atlas" is a 5-foot (152.4 cm) bipedal humanoid robot, based on Boston Dynamics' earlier PETMAN humanoid robot, and designed for a variety of search and rescue tasks. In February 2016 Boston Dynamics published a YouTube video entitled "Atlas, The Next Generation" showing a new humanoid robot about 5' tall (152.4 cm). In the video, the robot is shown performing a number of tasks that would have been difficult or impossible for the previous generation of humanoid robots. A video posted to the Boston Dynamics channel of YouTube dated October 11, 2018, titled "Parkour Atlas", shows the robot easily running up 2' high steps onto a platform. Atlas is shown in a September 2019 YouTube video doing "More Parkour". Spot On June 23, 2016, Boston Dynamics revealed the four-legged canine-inspired Spot which only weighs 25 kg (55 pounds) and is lighter than their other products. In November 2017, a promotional video of the Spot using its forward claw to open a door for another robot reached #1 on YouTube, with over 2 million views. A later video the same month showed Spot persisting in attempting to open the door in the face of human interference. Viewers perceived the robot as "creepy" and "reminiscent of all kinds of sci-fi robots that wouldn't give up in their missions to seek and destroy". On May 11, 2018, CEO of Boston Dynamics Marc Raibert on TechCrunch Robotics Session 2018 announced that the Spot robot was in pre-production and preparing for commercial availability in 2019. On its website, Boston Dynamics highlights that Spot is the "quietest robot [they] have built." The company says it has plans with contract manufacturers to build the first 100 Spots later that year for commercial purposes, with them starting to scale production with the goal of selling Spot in 2019. However, in September 2019, journalists were informed that the robots will not be sold, but they will be given on lease to selected business partners. In November 2019 Massachusetts State Police became the first law enforcement agency to use Spot as a robot cop, as well as in the unit's bomb squad. Since January 23, 2020, Spot's SDK is available for anyone via GitHub. It will allow programmers to develop custom applications for Spot to do various actions that could be used across different industries. On June 16, 2020 Boston Dynamics made Spot available for the general public to purchase at a price of . On June 23, 2020, a lone Spot named 'Zeus' was used by SpaceX at their Boca Chica Starship Test Site to help contain sub-cooled liquid nitrogen and to inspect 'potentially dangerous' sites at and around the launchpad. On July 9, 2020, a team of Spot robots performed as cheerleaders in the stands at a baseball match between the Fukuoka SoftBank Hawks and the Rakuten Eagles, backed by a team of SoftBank Pepper Robots. Spot performed inspection tasks on the Skarv floating production storage and offloading vessel in November 2020. On March 18, 2022, artist Agnieszka Pilat sold a painting created by Spot for $40,000 at the home of Brian Boitano to benefit Ukrainian refugees. The painting, titled "Sunrise March," was created by applying paint on Spot's feet and having the robot rotate in circles. Handle Handle is a research robot with two flexible legs on wheels and two "hands" for manipulating or carrying objects. It can stand tall, travel at and jump vertically. It uses electric power to operate various electric and hydraulic actuators, with a range of about on one battery charge. Handle uses many of the same dynamics, balance and mobile manipulation principles found in the other robots by Boston Dynamics but, with only about 10 actuated joints, it is significantly less complex. Stretch On March 29, 2021, Boston Dynamics announced via a video on their YouTube channel the Stretch robot that was designed for warehouse automation. It has a square mobile base containing a set of wheels, a “perception mast” with cameras and other sensors, and a robotic arm with seven degrees of freedom and a suction pad array on the end that can grab and move boxes up to 23 kilograms (50 lbs) in weight. Pick Pick is a robot just like Stretch but fixed in a particular place. It is designed to carry boxes. It can identify a box in less than a second. It automatically disposes of the sheet of cardboard. Factory Safety Service Robot The Factory Safety Service Robot was unveiled on September 17, 2021. It was the first joint venture with Hyundai Motor Group. The robot is based on the existing Boston Dynamics robot Spot. Its integrated thermal camera and 3D LiDAR system help detect nearby people, monitor fire hazards, and recognize open and closed doors. In popular culture "Metalhead", a 2017 episode of Black Mirror, features killer-robot dogs resembling, and inspired by, Boston Dynamics robot dogs. In June 2019, a parody video went viral across social media in which a robot resembling Atlas was abused, before turning on its human attackers. The video turned out to be the work of Corridor Digital, who used the watermark "Bosstown Dynamics" instead of "Boston Dynamics". This video tricked many people, causing them to believe it was real. In Heroes of the Storm (2015), a multiplayer video game by Blizzard Entertainment, playable heroes are able to move quickly through the battleground by using a mount called "Project: D.E.R.P.A.", which references one of Boston Dynamics' quadrupedal robots. The HBO Show Silicon Valley has made two prominent references to the company ‒ an episode featured a robotics company called Somerville Dynamics, named after Somerville, a city that neighbors Boston; and the season premiere of Season 3 featured a real Boston Dynamics Spot robot, seen crossing a street. In 2022 the Spot robot was featured as a background extra in an episode of The Book of Boba Fett TV series. See also Biomimetics List of robotic dogs References External links Official website University spin-offs Robotics companies of the United States Technology companies based in the Boston area Manufacturing companies based in Massachusetts Companies based in Waltham, Massachusetts American companies established in 1992 Manufacturing companies established in 1992 Technology companies established in 1992 1992 establishments in Massachusetts Softbank portfolio companies Discontinued Google acquisitions Alphabet Inc. Hyundai Motor Group 2013 mergers and acquisitions 2017 mergers and acquisitions 2021 mergers and acquisitions American subsidiaries of foreign companies
```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; } } ```
Wilhelm Vöge (16 February 1868 – 30 December 1952) was a German art historian, the discoverer of the Reichenau School of painting and one of the most important medievalists of the early 20th century. Whitney Stoddard called him the "father of modern stylistic analysis" for medieval art. Life and work Vöge was born in Bremen. He studied art history under Anton Springer and Paul Clemen at the University of Leipzig, under Carl Justi, Karl Lamprecht and Henry Thode at the University of Bonn, where Aby Warburg and Hermann Ullmann were his classmates, and finally under Hubert Janitschek at the University of Strasbourg. In 1891 he wrote his groundbreaking Ph.D. dissertation on Ottonian painting, based on the Munich manuscript Cim. 58 ("the Evangelary of Otto III"), which established the group of painters known today as the Reichenau School (then however located in Trier). He became a friend of Heinrich Wölfflin. After a research trip in France, where he met the German medievalist Adolph Goldschmidt and the French scholars Gaston Maspero, Eugène Müntz, Camille Enlart, Paul Vitry, Albert Marignan and Louis Courajod, Vöge published a book on French medieval sculpture (Die Anfänge des monumentalen Stiles im Mittelalter, 1894). Then he went to Italy in order to write his Habilitationsschrift on Raphael and Donatello (1895). In 1896 he taught art history at the University at Strassburg. From 1897 to 1910 he worked at the Berlin Museum under Wilhelm von Bode. Specialized in Christian sculpture he published a study on the Museum's ivory sculpture (Die Elfenbeinbildwerke der königlichen Museen zu Berlin, 1900) and a large catalog entitled Beschreibung der Bildwerke der christlichen Epochen (published in 1910). In 1908 Vöge was recommended by Wölfflin for a chair at the University of Freiburg. There he founded the Institute of Art History, developing a library and a comprehensive photo collection. Among his students in Freiburg were Erwin Panofsky, who wrote his Ph.D. dissertation under Vöge in 1914, Friedrich Winkler, Kurt Badt, Walter Lehmann, Martin Heidegger and Hans Rupe In his book, Die Anfänge des monumentalen Stiles im Mittelalter (1894) Vöge identified and named the "Headmaster" of the west facade of Chartres cathedral, while in a later study he dubbed the Joseph and Visitation masters of Reims Cathedral. Though Vöge's approach attempted to impose a nineteenth-century conception of the individual artist on the very different social situation that pertained in the Middle Ages, it became a dominant paradigm for the study of all kinds of medieval art, especially Gothic sculpture. During World War I Vöge suffered severe insomnia diagnosed as a nervous breakdown in 1916. He resigned from his teaching position, succeeded by Hans Jantzen, and withdrew to Ballenstedt. He began publishing again in the 1930s, but the rise of the Nazis caused a mental and physical retreat. After World War II, he published a monograph on Jörg Syrlin (1950). He died in Ballenstedt, Germany. His research papers are housed at the Wilhelm-Vöge-Archiv in Freiburg. References Select publications Eine deutsche Malerschule um die Wende des ersten Jahrtausends. Ph.D dissertation, Bonn, 1891. "Kritische Studien zur Geschichte der Malerei in Deutschland im 10. und 11. Jahrhundert." Westdeutsche Zeitschrift für Geschichte und Kunst, vol. 7, 1891-1894. Die Anfänge des monumentalen Stiles im Mittelalter: Eine Untersuchung über die erste Blütezeit französischer Plastik. Strasbourg: Heitz, 1894. Raffael und Donatello: Ein Beitrag zur Entwicklungsgeschichte der italienischen Kunst. Strasbourg: Heitz, 1896. Die Elfenbeinbildwerke der königlichen Museen zu Berlin. Berlin: Spermann & Reimer, 1900. Die deutschen Bildwerke und die der anderen cisalpinen Länder. 2nd ed. Berlin: Reimer, 1910. "Die Bahnbrecher des Naturstudiums um 1200". Zeitschrift für bildende Kunst, vol. 25, 1914, pp. 193–216. Nicolas Hagnower, der Meister des Isenheimer Hochalters und seine Frühwerke. Freiberg im Breisgau: Urban, 1931. Jörg Syrlin der Ältere und sein Bildwerke. Berlin: Deutscher Verein für Kunstwissenschaft, 1950. Bildhauer des Mittelalters: Gesammelte Studien von Wilhelm Vöge. Berlin: Gebrüder Mann, 1959. Further reading Erwin Panofsky (foreword), in Bildhauer des Mittelalters: Gesammelte Studien von Wilhelm Vöge. Berlin: Gebrüder Mann, 1958, pp. ix-xxxii. Ernest Hassold, "Wilhelm Vöge: A Biographical Memoir." Art Journal, vol. 28, no. 1 (Fall 1968), pp. 27–37. Georg Heise, Wilhelm Vöge zum Gedächtnis. Freiburg, 1968. Kathryn Brush, The Shaping of Art History: Wilhelm Vöge, Adolph Goldschmidt, and the Study of Medieval Art. Cambridge and New York: Cambridge University Press, 1996. Wilhelm Schlink, ed., Wilhelm Vöge und Frankreich. Frankreich-Zentrum der Albert-Ludwigs-Universität Freiburg (Journées d'Etude, 2). Freiburg im Breisgau, 2004. External links Dictionary of Art Historians: Vöge, Wilhelm William Diebold, "Brush, Kathryn. The Shaping of Art History: Wilhelm Vöge, Adolph Goldschmidt, and the Study of Medieval Art. New York: Cambridge University Press, 1996", The Medieval Review, 97.07.01 Wilhelm-Vöge-Archiv in Freiburg 1868 births 1952 deaths German art historians Writers from Bremen (city) German male non-fiction writers
Wacław Grzybowski (1887-1959) was a Polish politician and philosopher. He was a Deputy to the Polish Sejm from 1927 to 1935, and ambassador to the Soviet Union (Moscow) from July 1936 to 17 September 1939. He was summoned and given a note cancelling agreements with Poland prior to its invasion of Poland. Grzybowski refused to accept the note and then emigrated. References 1887 births 1959 deaths Ambassadors of Poland to the Soviet Union Polish politicians Diplomats of the Second Polish Republic Ambassadors of Poland to Czechoslovakia
```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; } } ```
During the 2009–10 season, the Serbian football club Red Star Belgrade won the Serbian Cup after a 3–0 win against Vojvodina. There were numerous transfers of players into and out of the team. Squad Transfers Transfers in Transfers out Competitions Serbian SuperLiga Serbian Cup UEFA Europa League Second qualifying round Third qualifying round Play-off round See also List of Red Star Belgrade seasons References Red Star Belgrade seasons Serbian football clubs 2009–10 season
```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 }} ```
Peri-implantitis is a destructive inflammatory process affecting the soft and hard tissues surrounding dental implants. The soft tissues become inflamed whereas the alveolar bone (hard tissue), which surrounds the implant for the purposes of retention, is lost over time. The bone loss involved in peri-implantitis differentiates this condition from peri-mucositis, a reversible inflammatory reaction involving only the soft tissues around the implant. Signs and symptoms Peri-implantitis does not present in the same way for all patients. Patients are recommended to regularly attend dental appointments and to seek advice from their dentist if they have any concerns for their oral health. Before the signs and symptoms are explained, it is worth noting that healthy peri-implant tissue should not be swollen, bleeding, producing pus, or have a reddened appearance. From a patient's perspective, he/she may notice loosening or wobbling of the implant. This symptom does not usually present at the early stages of peri-implantitis as the implant will still be fused to bone at its deeper aspects. It is more likely that the patient will notice bleeding whilst brushing their teeth. A patient may also notice swelling around the implant, bad breath and/or foul taste. Clinically, peri-implantitis involves both inflammation of soft tissues and destruction of bone, therefore, there is usually evidence of both bone loss (assessed by a radiograph) and bleeding when nearby tissues are probed, a common finding for soft tissue inflammation. There have been reports of bone loss without any accompanying sign of soft tissue inflammation. Without evidence of bone loss, the diagnosis is restricted to peri-mucositis (see comparison between peri-implantitis and peri-implant mucositis below for more information). Other reported features include pain and gingival hyperplasia. Pain is thought to be a rare symptom and is usually linked to an acute infection. Bone loss In healthy situation, there should be no sign of bone loss other than potential bone remodelling at the alveolar crest following implant placement. The shape of the alveolar bone in regions of bone loss varies depending on the buccal-lingual length (or cheek-to-tongue length) of the bone. Where this length is greater than the extent of the peri-implantitis, the region of bone loss can take the shape of a crater, with walls of bone surrounding the pathology; this is the most common presentation of bone loss. Where the buccal-lingual length is smaller, there may be no walls of bone surrounding the pathology. Probing Bleeding on probing is considered normal whilst tissues are healing shortly after implant placement, however, if bleeding is present months or years after placement, inflammation should be suspected. Other features which may be present whilst probing include pus, the presence of a pocket around the implant and/or recession of the gums. The dental professional may also notice swelling and redness of the gums, the latter of which is termed erythema. During probing, it is important to note that the pocket depth around an implant is typically greater than around natural teeth. Also, the value for the pocket depth around an implant is variable in health, therefore, diagnosis of a pocket is reliant on a change in pocket depth when comparing measurements from different appointments. For this reason, a Basic Periodontal Examination (BPE) is not appropriate, and a 4 or 6 point pocket chart is instead recommended. Below is a summary table of signs and symptoms associated with peri-implantitis. Causes & pathology Studies in both human and animal specimens found that the presence of plaque and its conglomeration around tissues invariably concluded in inflammation around the peri-implant soft tissue. To find the pathology of peri-implantitis, experiments were compared to peri-mucositis, and found that in peri-implantitis, there were more neutrophil granulocytes and a bigger proportion of (CD19+) B-cells. Similarly in periodontitis, peri-implantitis lesions contained many plasma cells and lymphocytes, however there were a larger ratio of macrophage cells and leukocytic cells. Risk factors The risk factors have been sub-divided to distinguish those with strong supporting evidence (below the sub-heading ‘risk factor’) from those with conflicting evidence (below the sub-heading ‘potential risk factors’). Risk factors Poor plaque control - this highlights the importance of cleaning the tissues around an implant between dental appointments. It is understood that patients sometimes feel discomfort whilst brushing around implants and are advised to speak to their dentist about this. Also, patients may sometimes be unable to access some sites for cleaning. Lack of regular maintenance therapy. To avoid this, regular dental visits should be arranged to enable early detection and management of peri-implantitis. Titanium implant degradation products in the form of microparticles, which have infiltrated the peri-implant tissue and peri-implant bacterial plaque. These particles have occasionally been found in small concentrations in healthy peri-implant tissue; however, their concentration was reported to be significantly higher in individuals with peri-implantitis. These titanium particles are internalized by phagocytes and have been found to elicit strong pro-inflammatory effects and bone resorption in preclinical models suggesting causative implications to peri-implantitis. Potential risk factors Diabetes mellitus (commonly known as type 1 and type 2 diabetes) Excess cement. The cement is used to retain the implant, although its potentially rough surface may aid with plaque retention. Therefore, any residual cement surrounding the implant abutment interface can give rise to peri-implantitis. The alternative to cement is a screw-retained implant, although some studies have reported a higher risk of peri-implantitis with these compared to cement-retained implants. Further research is required to establish whether the following are indeed risk factors for peri-implantitis: Width of keratinised mucosa around the implant. Several studies identified more plaque and inflammation where the keratinised mucosa is 2mm or less in width, although it is unclear if this translates to a higher risk of peri-implantitis. Genetics Systemic conditions other than diabetes, such as cardiovascular disease and rheumatoid arthritis Iatrogenic factors such as implant positioning and bone grafting Occlusal overloading of the implant Despite its association with a number of oral maladies, there is some debate as to whether smoking is a risk factor for peri-implantitis despite its association with periodontitis. Peri-implantitis vs peri-implant mucositis Peri-implant disease is an umbrella term for inflammatory diseases of tissues including both peri-implantitis and peri-implant mucositis. Peri-implant mucositis is a disease where inflammation is limited to the surrounding mucosa of an implant whereby peri-implantitis an inflammatory disease affecting mucosa as well as bone. In health, peri-implant mucosa is described as “oral epithelium extending into a non-keratinised barrier epithelium with basal lamina and hemidesmosomes facing the implant or abutment surface”. Healthy peri-implant mucosa becomes peri-implant mucositis when biofilms housing bacteria colonise implants and elicit an inflammatory response. The characteristics of peri-implant mucositis are very similar to that of gingivitis: redness, swelling and inflammation. In order to diagnose peri-implant mucositis, bleeding in response to probing of the gingiva must be identified. Research has stated that the cause of this disease is similar to that of gingivitis: inadequate plaque removal in areas surrounding the implant. Zitzmann et al. (2001) enlisted 12 partially dentate participants with implants who had healthy periodontal tissues. They were asked to refrain from carrying out oral hygiene for a period of 3 weeks. The results of this study demonstrated that the accumulation of plaque had led to the development of inflammation coupled with an increase in the gingival infiltrate containing immune cells Research has highlighted that the mechanisms of peri-implant mucositis and gingivitis are very similar with bacterial invasion from plaque triggering redness, swelling and inflammation within soft tissues. Peri-implant mucositis has the ability to transform into peri-implantitis if no action is taken to reverse signs of peri-implant mucositis, similar to gingivitis and periodontitis. To reverse peri-implant mucositis, good oral hygiene must be performed regularly to remove plaque which initiated this disease. Peri-implant mucositis becomes peri-implantitis when bone resorption is identified around the implant on a radiograph as well as all the signs associated with peri-implant mucositis is seen. Often, pus may also exude from the tissues surrounding the implant. However, mobility of the implant is not a sign of peri-implantitis as this disease begins at the margins of the implant. Only in the most severe cases of peri-implantitis, implant mobility may be observed where minimal bone tissue remains. Prevention If peri-implant mucositis is present, it must be treated to deter it from progressing to peri-implantitis, for which currently, there are no treatments to reverse its effects. Patients must carry out plaque removal regularly to prevent and treat peri-implant mucositis by the act of tooth-brushing. Dentists must deliver oral hygiene instruction to ensure their patients are removing plaque sufficiently as well as removing their calculus which is a known plaque-retentive factor. The prognosis for implants are significantly higher in those who do smoke compared to those who not do. Therefore, patients should be encouraged to quit smoking in order to achieve the best results. Dentists are responsible for ensuring that different elements of the implant should be of the correct size to avoid creating additional surfaces which bacteria can colonise. Margins of the restoration should be placed supra-gingivally in order to remove any extruded cement during placement. After implant placement, dentists must carefully and regularly monitor the health of the peri-implant mucosa at suitable intervals, e.g. every 3/6/12 months. Treatment It is challenging to treat peri-implantitis. Depending on the nature of the disease, treatment can vary significantly – from non-surgical therapy with an aim to control the infection and detoxify the implant surface, to surgical procedures to regenerate the alveolar bone that has been lost. Due to the screw-shaped design and titanium surface modifications of the implants, mechanical debridement on the surface of the implant is ineffective in removing all adhering microorganisms. Therefore, to enhance the non-surgical treatment options of peri-implantitis, mechanical debridement can be used in combination with antiseptic, antibiotic therapy and/or resective or regenerative surgery. The combination of treatments can vary depending on the severity of the peri-implantitis, and cumulative interceptive support therapy provides guidance in this aspect. Cumulative interceptive supportive therapy, a protocol of therapeutic measures, provides guidance for clinicians to decide which regime should be used to treat peri-implantitis, depending on the mucosal condition (whether there is a presence of dental plaque, bleeding on gentle probing, suppuration), peri-implant probing depth, and evidence of radiographic bone loss. Mechanical debridement To prevent roughening and damaging of the implant surface, ultrasonic scalers with a non-metallic tip or resin/carbon fiber curettes are used for calculus removal. Conventional steel curettes or ultrasonic instruments with metal tips should be avoided as implant surface can be damaged, and any residual marks increase implant susceptibility to plaque accumulation in the future. Polishing with rubber cups and polishing paste also aids in plaque removal. Antiseptic treatment This is performed in conjunction with mechanical debridement based on an empirical basis. The most commonly employed antiseptic applied is chlorhexidine digluconate, an antimicrobial commonly used in periodontitis. This antiseptic has been recommended to maintain satisfactory plaque control around implants primarily based on data from studies around teeth, but long-term use is not recommended due to adverse events including staining of teeth and oral tissues and altered taste sensation. Chlorhexidine may slightly improve the mucosal condition in regards to bleeding on probing, which is a measure of tissue inflammation. 1% concentration of hydrogen peroxide has shown to be as effective as chlorhexidine without the side effect of staining.</ref> Gosau M, Hahnel S, Schwarz F, Gerlach T, Reichert TE, Bürgers R. Effect of six different peri-implantitis disinfection methods on in vivo human oral biofilm.Clin. Oral Impl. Res. 21, 2010; 866–872.doi: 10.1111/j.1600-0501.2009.01908.x Recently, concerns have been raised regarding the direct application of chlorhexidine on implant surfaces during the treatment of peri-implant inflammation, because it becomes adsorbed on the implants and exhibits strong cytotoxic effects to fibroblasts and osteoblasts that may prevent peri-implantitis healing. However, current preponderance of evidence supports that that the long-term antimicrobial effect of the use of chlorhexidine significantly outweighs the comparatively brief period of cytotoxicity. Antibiotic treatment This approach is aiming to eliminate or at least significantly reduce the pathogens in the submucosal biofilm. An antibiotic targeting gram-negative anaerobic bacteria – e.g. metronidazole or ornidazole is administered during the last ten days of antiseptic treatment, allowing peri-implant infection to be treated successfully and remain stable. Reinfection is subsequently prevented by instituting prophylactic procedures. Alternatively, tetracycline periodontal fibers can be inserted locally for a period of ten days; this creates an environment of sustained high dose of the antimicrobial agent at the affected site for several days. Another method is to use minocycline microspheres in conjunction with mechanical debridement; this has shown to improve probing depths, but the treatment may have to be repeated in future. Oral systemic antibiotic intake has not shown a permanent solution without adjunct therapy being mechanical and/or local application of doxycycline and 1% hydrogen peroxide.</ref> Stein, Jamal M., Christian Hammächer, and Sareh Said‐Yekta Michael. "Combination of ultrasonic decontamination, soft tissue curettage, and submucosal air polishing with povidone‐iodine application for non‐surgical therapy of peri‐implantitis: 12‐month clinical outcomes." Journal of periodontology 89.2 (2018): 139–147. Surgical treatment Surgical flap management with either (or both) resective and regenerative approaches is only considered if infection is controlled successfully. This treatment is used to restore the bony support through guided bone regeneration, or to reshape the peri-implant soft tissue. This also helps in comprehensive debridement and local decontamination of the affected implant. It is vital to consider the aesthetic and morphological characteristics of the peri-implant lesion when considering resective surgical techniques. Current research Preventing peri-implantitis using Biomaterial strategies to prevent or eliminate initial bacterial attachment are currently being researched. These biomaterial strategies are aiming at suppressing or inhibiting bacterial colonization of implant surfaces in favor or host cells and tissues. Additionally, new studies suggest that implant-specific instruments need to be used that reduce peri-implant bacteria while maintaining the integrity of the surface of the implant. In contrast, if the implant surface is damaged by abrasive instruments, such as titanium brushes, titanium microparticles are released to the peri-implant environment that contribute to inflammation. Various combinations of strategies like antimicrobial surfaces and or delivery mechanisms coupled with methods to favor stable osseointegration and permucosal seal are being developed, these type of surfaces will be most effective in developing implants resistant to peri-implant disease. References Implants (medicine) Periodontal disorders
Artapanus of Alexandria (Gk. Ἀρτάπανος ὁ Ἀλεξανδρεύς) was a historian, of Alexandrian Jewish origin, who is believed to have lived in Alexandria, during the later half of the 3rd or 2nd century BCE. Although most scholars assume Artapanus lived in Alexandria, others argue he resided in the countryside. Regardless, Artapanus lived in Egypt. Artapanus wrote Concerning The Jews, a history of the Jews, in Greek between 250 and 100 BCE, but this text has not survived to the present. Artapanus’s writings may be interpreted as a response to those such as Manetho writing as early as the 3rd century BCE; therefore, Artapanus most likely wrote no earlier than the middle of the 3rd century. It is arguable that Artapanus wrote in the second half of the 3rd century BCE under the influence of Ptolemy IV Philopator’s reign between 221 and 204 BCE; however, Alexander Polyhistor’s citation of Artapanus in the middle of the 1st century BCE makes it likely that Artapanus wrote no later than the end of the 2nd century BCE. Polyhistor’s writings have not survived to the present.<ref>From Charlesworth, The Old Testament Pseudepigrapha. Quote: The text can also be found in Jacoby's Die Fragmente der griechischen Historiker (FGH, vol. 3C, n0. 726, pp. 519-24) and in A. -M. Denis, Fragmenta pseudoepigrapharum quae supersunt graeca (Denis, PVTG 2, pp. 186-95)</ref> Parts of Artapanus's work have been preserved in the books of two later historians: Clement of Alexandria in Stromata (Book I, chapter 23.154,2f) and Eusebius of Caesarea in Præparatio Evangelica (Book IX, chapters 18, 23, and 27). According to J. J. Collins and James H. Charlesworth, "we do not have actual excerpts from Artapanus but only the summaries of Alexander Polyhistor, insofar as these have been preserved by Eusebius." Works and portrayal of Moses There is general scholarly consensus that Artapanus used the Septuagint as a framework for his historical narrative, liberally manipulating its stories to create his own unique account. He describes the Egyptian adventures of the three major Jewish patriarchs, Abraham, Joseph, and Moses, depicting them as heroes responsible for many of the cultural innovations of the ancient Near East. According to Artapanus, Abraham taught an Egyptian pharaoh the science of astrology, while Moses bestowed many “useful benefits on mankind” by inventing boats, Egyptian weapons, and philosophy. (Eusebius, PrEv 9.27.4) He also recounts that the Greeks called Moses Musaeus and that he taught Orpheus, who was widely considered to be the father of Greek culture. Similarly, Artapanus credits Moses with the division of Egypt into 36 nomes as well as the successful conquest of Ethiopia, two accomplishments traditionally attributed to the Egyptian folk hero Sesostris. Throughout the narrative Artapanus insists that the public loved these Jewish figures for their impressive innovations and achievements. In fact, he remarks that the Ethiopians went so far as to circumcise themselves out of admiration for Moses. While some of Artapanus’ history clearly references accounts in Genesis and Exodus, such as his description of the plagues, most of his story lacks evidence. One of the most striking aspects of Artapanus' works is the ease with which he syncretizes Jewish and Egyptian culture and religion. Artapanus also writes that Moses is responsible for appointing "for each of the [36] nomes the god to be worshipped, and that they should be cats and dogs and ibises." There is no doubt that Artapanus was familiar with the animal cults of Egypt and many cult centers for the worship of cats, such as Tell el-Bubastis, and ibises, such as Tuna el-Gebel (outside of Hermopolis), were flourishing in the time Artapanus was writing. Unfortunately, the mention of "cats and dogs and ibises" does not give us enough knowledge about the various cult centers that might be used for dating the work. However, we cannot know from only Artapanus' account the extent to which this religious syncretism existed in the minds of other Jews or Egyptians writing or living at this time. Although Artapanus credits Moses with the foundation of the animal cults, he also claims that the "consecrated animals" were destroyed during the crossing of the Red Sea. This suggests that, according to Artapanus, Moses' contributions to Egyptian society were ultimately less important than the original purpose of this folk hero: to lead the Israelites out of Egypt. Moses is also identified with Hermes in 9.27.6 (Eusebius, PrEv): "On account of these things Moses was loved by the masses, and was deemed worthy of godlike honor by the priests and called Hermes, on account of the interpretation of sacred letters." Hermes was a Greek messenger god who was in Egyptian traditions associated with Thoth (Djehuty), the god of wisdom and time who invented writing. John J. Collins points out the Greek linguistic play that must have existed in Artapanus' day of Moses, Thoth, and the common name Thutmosis; yet this is not why Artapanus associates Moses with Thoth. Instead, Artapanus makes the connection between the Jewish patriarchs who taught the Egyptians skills such as astrology (Abraham, Eusebius PrEv 9.18.1) and Moses who, by interpreting the sacred letters (presumably Hebrew Script), attained the godlike knowledge of Thoth. Moses' connection to the obscure Jewish figure Enoch has also been made by some scholars, as Enoch was said to have taught human beings the "right" kind of astrology (for instance, the solar calendar; 1 Enoch 1–36), however Artapanus only clearly denotes Moses' association with Hermes/Thoth. This makes sense, because Artapanus is not trying to reconcile Moses with Jewish mythological figures, but rather with Egyptian history, culture, and religion in general. Theology and motivation Artapanus’ theology is an issue of extreme contention among the scholarly community. Some scholars take him to be a polytheistic Jew. John Barclay, for example, sees Artapanus’ acceptance of the Egyptian animal cults and his depiction of Moses as divine as signs of his polytheism. Others observe that his fascination with the miraculous powers of Moses are reminiscent of Hellenistic paganism. A different group of scholars, however, believes that Artapanus practiced monolatry – he himself worshipped only one god but acknowledged the possible existence of others. They argue that Artapanus maintains the superiority of YHVH throughout his text, and that his depiction of Moses as divine actually has biblical origins. Artapanus’ motivation for writing his history is equally debated. One branch of analysis emphasizes the underlying tension between the diaspora Jews and their Hellenistic neighbors. For example, some scholars, such as Carl Holladay, see Artapanus’ writings as “competitive historiography.” These scholars argue that Artapanus aimed to defend the Jews from the attacks of gentile historians such as Manetho, and this explains his superior depiction of the Jewish patriarchs. James Charlesworth of Princeton University, for example, argues Artapanus composed a “pro-Jewish apology” in response to anti-Moses and other anti-Jewish Egyptian stereotypes. Others refute the former argument, claiming it is highly unlikely that any gentiles would read an embellished history of the Jews that disparaged their own cultures’ accomplishments. Instead, these scholars insist that Artapanus’ target audience was primarily the Jews themselves, and he wrote this romantic history to bolster their national pride. Some scholars accept both of these arguments, claiming that Artapanus’ narrative at once represents an apologetic historiography and a romantic piece of national propaganda. On the other hand, Erich Gruen insists that these arguments completely miss Artapanus’ humor and thus his major motivation. He argues that Artapanus did not intend for his readers to take his imaginative tale literally, since anyone familiar with the biblical stories would quickly recognize his fantastical additions and manipulations. Instead, Gruen insists that Artanpanus playfully teases the pharaohs and exaggerates the accomplishments of the Jewish patriarchs to “comic proportions” in order to demonstrate his own self-confidence as a diaspora Jew. It is this sense of comfort that he aimed to give his Jewish readers. Literary impact Although it is possible that Artapanus influenced the Jewish historian Josephus, it seems that he generally had little impact on later Jewish literature. References Bibliography H. M. Zellentin, "The End of Jewish Egypt: Artapanus and the Second Exodus," in Gregg Gardner and Kevin L Osterloh (eds), Antiquity in Antiquity: Jewish and Christian Pasts in the Greco-Roman World'' (Tuebingen, Mohr Siebeck, 2008) (Texte und Studien zum antiken Judentum, 123), 27–73. Hellenistic-era historians Ancient Greek grammarians Hellenistic Jewish writers Jews of Ptolemaic Alexandria 2nd-century BC historians Year of birth unknown Year of death unknown
Anthony E. Gonzalez (born September 18, 1984) is an American politician and a former football wide receiver. He served as the U.S. representative for from 2019 to 2023. He played college football at Ohio State University, where he studied philosophy. He was drafted by the Indianapolis Colts with the final pick in the first round of the 2007 NFL Draft. Following his sports career, which was cut short by injuries, he enrolled in graduate studies at Stanford University and earned a master's degree. Gonzalez was elected to the U.S. House of Representatives on November 6, 2018, sworn in on January 3, 2019, and reelected in 2020. In September 2021, Gonzalez announced he would not seek another term. Early years Gonzalez's maternal grandfather was a World War II veteran. His Cuban-American father immigrated to the U.S. from Cuba after Fidel Castro took power. His father is president of Ferragon Corporation, a steel company. Gonzalez attended St. Joseph grade school in Avon Lake, Ohio, and Saint Ignatius High School in Cleveland, Ohio, where he was a standout in both football and track. In football, he was a two-way player. As a senior, he was a first-team All-state honoree as well as the Associated Press and The Plain Dealer Co-defensive Player of the Year, catching 71 passes for 1,873 yards and scoring 21 touchdowns. His 26.4 yards per catch set a school record. In track, he lettered for four years and qualified for the state finals as a junior and senior. Gonzalez also played basketball as a freshman. He attended Ohio State University and was an Academic All-American majoring in philosophy, in which he earned a bachelor's degree. Football career Collegiate Gonzalez was a three-year letterman at Ohio State University, playing with fellow future NFL wide receivers Santonio Holmes, Ted Ginn Jr., and Roy Hall, as well as Heisman Trophy-winning quarterback Troy Smith. As a junior, Gonzalez was an All-Big Ten choice by league coaches. He finished his college career playing in the 2007 BCS National Championship Game, where the Buckeyes lost to the Florida Gators 41–14. Professional 2007 NFL Combine Indianapolis Colts Gonzalez was selected by the Indianapolis Colts with the 32nd selection in the 2007 NFL Draft, and was taken to become the Colts' slot receiver. He was one of three Ohio State receivers selected in that draft. In Gonzalez's first year, he caught 37 passes for 576 yards and three touchdowns. The next season he caught 57 passes for 664 yards and four touchdowns. In 2009, Gonzalez earned the starting wide receiver position along with Reggie Wayne after Marvin Harrison was released from the team in the off-season. He injured his right knee during the season opener against Jacksonville Jaguars and was expected to miss up to eight weeks. He failed to return that season and was placed on injured reserve on December 24. In 2010, Gonzalez lost the starting wide receiver position due to missing the 2009 season. He played in a total of two games as a slot receiver with five catches for 67 yards and no touchdowns. He injured his left leg in week eight against the Houston Texans and was placed on Injured Reserve for the rest of the year. Gonzalez's role in the Colts offense diminished even further during the 2011 season. He played in only eight games and did not catch a pass. He became an unrestricted free agent in the following off-season. During Gonzalez's time with Indianapolis, the Colts won three AFC South Division titles (2007, 2009, 2010), an AFC Championship (2009), and a trip to Super Bowl XLIV. New England Patriots On March 17, 2012, Gonzalez signed with the New England Patriots. The Patriots released him on May 29, 2012. Career statistics Regular season Playoffs Retirement Gonzalez decided to retire from sports and enrolled in the Stanford Graduate School of Business in September 2012, from which he received a master of business administration degree. U.S. House of Representatives Elections 2018 In 2018, Gonzalez filed to run as a Republican for the United States House of Representatives in Ohio's 16th congressional district. His predecessor, Jim Renacci, was retiring to mount an unsuccessful Senate campaign against incumbent Sherrod Brown. Gonzalez won the November 6 election with 57% of the vote, becoming the first Latino to represent Ohio in Congress. He raised more than $525,000 in less than a month after announcing his run, including donations from former NFL teammate Peyton Manning, Cleveland Browns owner Jimmy Haslam, and several other former NFL and college football players. Along with Texas Democrat Colin Allred, he was one of two former NFL players to be elected to Congress in 2018. 2020 Gonzalez defeated the Democratic nominee, physicist Aaron Paul Godfrey, 63.2% to 36.8%. 2022 Gonzalez originally ran for reelection in the 16th district, prompting a primary challenge from Republicans who supported former President Donald Trump due to Gonzalez's impeachment vote. Ohio's slow population growth in the 2020 United States census made the district obsolete as of 2023, leaving the campaigns' statuses unclear. On September 16, Gonzalez announced he would not run for Congress in 2022. Tenure The House of Representatives impeached President Donald Trump on December 18, 2019, claiming Trump had abused the power of his office and obstructed the will of Congress by seeking foreign aid to influence the results of the 2020 election against challenger Joe Biden. Gonzalez voted not to impeach Trump, saying there was not enough evidence. The Senate voted mostly on party lines to acquit Trump of the charges on February 5, 2020. Just 12 days before the end of Trump's term, the House passed a second impeachment resolution with one article claiming "incitement of insurrection", before and during the U.S. Capitol attack. Gonzalez was one of ten Republicans who voted to impeach Trump for this offense. The Senate again acquitted Trump. Ohio Republican Party chair Bob Paduchik said the second impeachment resolution addressed "an unconstitutional, politically motivated process that served no purpose." As a result of his vote to impeach Trump, the Ohio Republican Central Committee voted to censure Gonzalez, stating that Gonzalez had "betrayed his constituents" and "relied on emotions rather than the will of his constituents and any credible facts". Gonzalez and his family received continual threats following the impeachment vote, and he took additional security measures to protect his wife and family. On May 19, 2021, Gonzalez was one of 35 Republicans who joined all Democrats in voting to approve legislation to establish the January 6 commission meant to investigate the storming of the U.S. Capitol. In retaliation, Trump endorsed former White House aide Max Miller in the 2022 primary for the seat. On October 21, 2021, Gonzalez was one of nine House Republicans who voted to hold Steve Bannon in contempt of Congress. On November 5, 2021, he was among the 13 House Republicans to break with their party and vote with a majority of Democrats in favor of the Infrastructure Investment and Jobs Act. Immigration Gonzalez voted for the Consolidated Appropriations Act (H.R. 1158) which effectively prohibits ICE from cooperating with Health and Human Services to detain or remove illegal alien sponsors of unaccompanied alien children (UACs). Same-sex marriage On July 19, 2022, Gonzalez was one of 47 Republican Representatives to vote for the Respect for Marriage Act, which would codify the right to same-sex marriage in federal law. Contraception Gonzalez voted for H.R. 8373 ("The Right to Contraception Act"), a bill designed to protect access to contraceptives and health care providers' ability to provide contraceptives and information about contraception. It would also fund Planned Parenthood. Big Tech In 2022, Gonzalez was one of 39 Republicans to vote for the Merger Filing Fee Modernization Act of 2022, an antitrust package that would crack down on corporations for anti-competitive behavior. Committee assignments Committee on Financial Services Subcommittee on Housing, Community Development and Insurance Subcommittee on National Security, International Development and Monetary Policy Subcommittee on Diversity and Inclusion Committee on Science, Space and Technology Subcommittee on Environment Subcommittee on Research and Technology United States House Select Committee on the Climate Crisis Caucus memberships Republican Main Street Partnership Problem Solvers Caucus Electoral history Personal life Gonzalez, his wife, Elizabeth, and their two children live in Rocky River, Ohio. See also List of Hispanic and Latino Americans in the United States Congress References External links Congressman Anthony Gonzalez official U.S. House website Indianapolis Colts bio |- 1984 births 21st-century American politicians American athlete-politicians American football wide receivers American politicians of Cuban descent American sportspeople of Cuban descent Hispanic and Latino American members of the United States Congress Indianapolis Colts players Living people New England Patriots players Ohio State Buckeyes football players People from Avon Lake, Ohio People from Westlake, Ohio Players of American football from Cleveland Republican Party members of the United States House of Representatives from Ohio Saint Ignatius High School (Cleveland) alumni Stanford University alumni
The Burneside Tramway was initially a narrow gauge and later a standard gauge industrial railway serving the James Cropper paper mills around Burneside, Cumbria. History The tramway was built in 1879-80 as a line to connect the paper mills run by James Cropper and Co in Burneside and Cowan Head. Wagons were hauled by horse power. It was converted to in 1924, and in the same year, the Motor Rail and Tram Car Company in Bedford provided an 0-4-0 Dorman Petrol locomotive called Rachel which was used to transfer wagons between the mill and Burneside railway station. In 1951 Rachel was replaced by a diesel Ruston 48 No.294266. The line to Cowan Head closed in 1965, with the section between Burneside Mill and Burneside railway station still operating until it closed in 1974. Rachel has survived and is preserved at the Lakeside and Haverthwaite Railway. The Ruston was named Flying Flea at Carnforth before moving south to Sir William McAlpine's Fawley Hill Railway. The locomotive was not in regular use, and was sold on to Lawrie Rose, who moved the engine to the Mid Suffolk Light Railway. The locomotive was renamed Sir William McAlpine by dowager Lady Judith McAlpine. References Rail transport in Cumbria Tram transport in England 3 ft 6 in gauge railways in England Standard gauge railways in England Industrial railways in England Railway lines opened in 1880 Railway lines closed in 1974 1880 establishments in England Horse-drawn railways
Infamous (Also known as Infamous, Every Word is True) is a 2006 American drama film written and directed by Douglas McGrath. It is based on George Plimpton's 1997 book, Truman Capote: In Which Various Friends, Enemies, Acquaintances, and Detractors Recall His Turbulent Career and covers the period from the late 1950s through the mid-1960s, during which Truman Capote researched and wrote his bestseller In Cold Blood (1965). Capote is played by Toby Jones. Sandra Bullock, Daniel Craig, Lee Pace, and Jeff Daniels also have featured roles, with a supporting cast that includes Sigourney Weaver and Hope Davis, and a song performance by Gwyneth Paltrow. Plot Truman Capote, known in New York City society for his wit and fashion flair as much as he is recognized in literary circles as the celebrated writer of Other Voices, Other Rooms and Breakfast at Tiffany's, reads a brief article about the murder of a farming family in Holcomb, Kansas, in the back pages of the New York Times of November 16, 1959. Curious as to how the residents would react to a brutal massacre in their midst, the author and his friend, Nelle Harper Lee, who has just published her novel To Kill a Mockingbird, travel from New York to the rural Midwestern town, ostensibly so Capote can interview people for a magazine article. Once there, he realizes there might be enough material for what he eventually describes as a "nonfiction novel". Capote's dress and demeanor both amuse and dismay law enforcement officials. He allows the less ostentatious Lee to act as a buffer between himself and those whose trust he needs to gain in order to obtain as much background information as possible. The Kansas Bureau of Investigation's lead detective on the case, Alvin Dewey, has refused to cooperate with the writer. But when his starstruck wife Marie meets Capote in a grocery store, she invites him and Lee to Christmas dinner. He eventually wins over his host with personal anecdotes about Humphrey Bogart, John Huston, Frank Sinatra, and the like. As a result, when ex-convicts Richard Hickock and Perry Smith are apprehended in Las Vegas and extradited to Holcomb, permission is given to Capote to interview them in their cells. The two defendants are tried and found guilty, but a lengthy period of appeals begins. Capote's society and literary friends in New York, like Slim Keith and Babe Paley, press him for juicy gossip about the case and inquire when they can expect to read the book. Capote forms an attachment to Smith. He empathizes with the convicted killer's unhappy childhood, and Smith's remorseful manner, genuine sincerity, and obvious intelligence impress him. The criminal's reciprocal feelings become evident, although Smith has difficulty dealing with his emotions. As soon as Smith learns that Truman plans to title his book In Cold Blood, which suggests the author thinks of him only as a merciless killer, he violently subdues Capote and nearly rapes him. Smith steadfastly refuses to describe the night of the murders. This greatly angers Capote, who wants to hear details not only as a writer in search of the truth but as someone who finds it difficult to believe a loved one could be guilty of such a crime. Smith eventually acquiesces and discusses what transpired. Capote then finds himself entangled in a personal and professional dilemma. As much as he wants Smith to be sentenced to life in prison, a death by hanging would provide a far more sensational ending for readers of his book. He begins to unravel psychologically as the legal appeals drag on, unable to complete his book without an ending. Years go by. Hickock and Smith finally exhaust all their options and now ask that Capote be present at their April 14, 1965 execution. He complies reluctantly with their request. Afterward, he learns Smith bequeathed his meager belongings to him, and among them he finds a charcoal sketch of him the killer had drawn. Cast Production Development The film's original title alternated between Have You Heard? and Every Word Is True. The fictional singer portrayed by Gwyneth Paltrow was originally intended to be Peggy Lee. The situation of an audience being held spellbound by a performer falling silent in the middle of a song was based on a real-life nightclub performance by Barbara Cook. According to writer and director Douglas McGrath, in his DVD commentary, many of the scenes in Infamous occurred only in McGrath's imagination, most notably a dramatic sexual encounter between Capote and inmate Perry Smith (played by Craig). Release Infamous premiered at the August 2006 Venice Film Festival. It differs from the earlier Capote in that it occasionally breaks away from the Kansas setting to allow Capote's Manhattan society friends and professional acquaintances to comment on and express opinions about him to an unseen interlocutor during mock interviews. It also is more explicit about the romantic feelings Capote and Perry Smith may have shared. Reception Critical reception The review aggregator website Rotten Tomatoes reported a 74% approval rating with an average rating of 6.7/10 based on 155 reviews. The website's consensus reads, "Though comparisons with last year's Capote may be inevitable, Infamous takes a different angle in its depiction of the author, and stands up well enough on its own." On Metacritic, the film achieved an average score of 68 out of 100, based on 34 critics, signifying "generally favorable reviews". Much of the critical discussion of the film focused on comparisons with the previous year's Capote, which had received considerable critical acclaim and for which Philip Seymour Hoffman had won the Academy Award for Best Actor for his performance as Capote. In his review in The New York Times, A.O. Scott called the film "well worth your attention. It is quick-witted, stylish and well acted… warmer and more tender, if also a bit thinner and showier, than Capote… it is in the end more touching than troubling." Rex Reed of The New York Observer opined, "They gave the Oscar to the wrong Truman Capote. I do not begrudge the versatile, popular Philip Seymour Hoffman his Oscar for playing the tiny terror in Capote, but he was doing an impression. In Infamous ... a diminutive actor with a titanic talent named Toby Jones literally becomes the man himself. This is no lisping impersonation learned from watching old Johnny Carson shows: Mr. Jones moves into Truman's skin, heart and brains. Infamous shows you the man's soul. It is a monumental achievement of great artistry and depth. In some ways, the movie is better, too ... [it] is infinitely fascinating, cinematically breathtaking and largely impeccable. It proves that there's more than one way to tell a story and view a life. It is one hell of a beautiful movie to see and savor." In Variety, David Rooney felt the film "doesn't measure up to its predecessor and seems unlikely to echo the attention it received ... In the central role, British thesp Toby Jones is a good physical match for Capote, getting his flamboyant mannerisms and creepy, nasal voice down. But unlike Philip Seymour Hoffman's Oscar-winning turn, there's no texture, no under-the-skin sense of the conflict between Capote's ambition for his book and his compassion for, and attraction to, Perry ... Sandra Bullock's understated performance as Capote's friend Lee is a high point here – wrapped in a cardigan and puffing on cigarettes, she creates a bracingly sturdy character of this plain-speaking, unfussy woman amid a cardboard gallery of flashy sophisticates." Mick LaSalle of the San Francisco Chronicle observed, "By the standards of most pictures, this is intelligent, thoughtful filmmaking ... it's only against the exalted benchmark standard set by Capote that Infamous falls short ... It's a worthy film in its own right, with its own virtues ... Either through studying Lee or channeling someone else, Bullock adopts mannerisms and facial expressions that are not her own for this role and then works them into a well-crafted portrait of a highly internal, observant and deep-revolving spirit. It's the performance to take from the movie." Jeff Klemzak penned two articles for the Los Angeles Times on the subject of the two biopics, arguing that Infamous, while covering the same theme as the award-winning Capote, "(a)nd as good as that film was, this one is better". In The Village Voice, Robert Wilonsky stated the film "never comes close to approaching the quiet, devastating brilliance of Capote ... Which is not to say Infamous ... is a far inferior version ... it's just a lesser version, light in weight and absent the ache ... It's good, especially during its first half, just not good enough." Steve Persall of the St. Petersburg Times rated the film B and added, "Infamous might have been viewed as one of this year's better films if Capote hadn't told the same story about the same characters a year ago and done it so well ... Infamous is inferior, although not drastically so, in almost every respect ... The most obvious comparisons are to be made about performances. Jones is a much more accurate physical representation of Capote than Hoffman, his high-pitched voice sounding a little more affected than his Oscar-winning predecessor. However, the relative shallowness of McGrath's screenplay doesn't offer as many emotional land mines for Jones to play. [He] delivers an uncanny impersonation, while Hoffman's portrayal was a studiously researched impression, a likely more challenging task. Call this race nearly a draw, with Hoffman simply crossing the finish line first." In comparing this film to Capote, David Thomson of The Independent asked, "What does it have that's different? ... [It] has a gallery of Truman Capote's Manhattan friends, people who adored him without ever quite trusting him ... These cameos give a tone-perfect sense of Capote's life before In Cold Blood. He is placed as the phenomenon of culture, celebrity and outrage that he was." Awards Toby Jones won the London Film Critics' Circle Award for British Actor of the Year. He also won the Best Actor Award at the Ibiza International Film Festival. Daniel Craig was nominated for the Independent Spirit Award for Best Supporting Actor but lost to Alan Arkin in Little Miss Sunshine. See also Capote (film) Clutter family murders List of American films of 2006 References External links 2006 films 2006 biographical drama films 2006 independent films American biographical drama films American LGBT-related films Biographical films about writers Films about capital punishment Films based on biographies Films set in Kansas Films set in New York City Films set in 1959 Films set in the 1950s Films set in the 1960s Biographical films about LGBT people Marlin, Texas Films with screenplays by Douglas McGrath Films directed by Douglas McGrath Films produced by Christine Vachon Films scored by Rachel Portman Killer Films films Warner Independent Pictures films Cultural depictions of Truman Capote 2006 drama films 2000s English-language films 2000s American films
Charlotte is a city in Atascosa County, Texas, United States. The population was 1,715 at the 2010 census. It is part of the San Antonio Metropolitan Statistical Area. The town is named for Charlotte Simmons, the daughter of Dr. Charles Simmons, who aided in the development of Atascosa County. Geography Charlotte is located at (28.860624, –98.707571). This is south of downtown San Antonio. According to the United States Census Bureau, the city has a total area of , all land. Demographics 2020 census As of the 2020 United States census, there were 1,524 people, 499 households, and 333 families residing in the city. 2000 census As of the census of 2000, there were 1,637 people, 514 households, and 401 families residing in the city. The population density was . There were 585 housing units at an average density of . The racial makeup of the city was 64.94% White, 0.06% African American, 1.65% Native American, 29.93% from other races, and 3.42% from two or more races. Hispanic or Latino of any race were 81.19% of the population. There were 514 households, out of which 45.1% had children under the age of 18 living with them, 54.3% were married couples living together, 17.1% had a female householder with no husband present, and 21.8% were non-families. 18.7% of all households were made up of individuals, and 10.5% had someone living alone who was 65 years of age or older. The average household size was 3.18 and the average family size was 3.61. In the city, the population was spread out, with 34.8% under the age of 18, 10.2% from 18 to 24, 27.4% from 25 to 44, 18.0% from 45 to 64, and 9.7% who were 65 years of age or older. The median age was 30 years. For every 100 females, there were 98.9 males. For every 100 females age 18 and over, there were 92.1 males. The median income for a household in the city was $24,792, and the median income for a family was $27,976. Males had a median income of $24,375 versus $15,313 for females. The per capita income for the city was $9,769. About 24.9% of families and 30.0% of the population were below the poverty line, including 35.1% of those under age 18 and 25.0% of those age 65 or over. Education Charlotte is served by the Charlotte Independent School District and home to the Charlotte High School Trojans. According to Guadalupe San Miguel, In Charlotte ISD is where the first official legal complaint regarding racial segregation against Mexicans in Texas took place in 1928. The complaint was filed by Felipe Vela on behalf of his daughter, Amada Vela. Their racial segregation complaint reached the State Board of Education and they sided with the Vela family. Climate The climate in this area is characterized by hot, humid summers and generally mild to cool winters. According to the Köppen Climate Classification system, Charlotte has a humid subtropical climate, abbreviated "Cfa" on climate maps. Gallery References External links Handbook of Texas article Cities in Atascosa County, Texas Cities in Texas Greater San Antonio
```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 ```
Grammostola pulchra is a species of tarantula (family Theraphosidae), native to Brazil. It is known for its solid black body, which makes it an appealing tarantula for the pet trade. Description Commonly known as the Brazilian black, mature specimens are almost entirely black. Although like most new world tarantulas it possesses urticating hairs, if provoked, they would much rather flee than attack. Their venom is not as irritating as many other species of tarantulas. The Brazilian black is a slow grower, taking up to eight years to reach maturity, reaching up to . As with all tarantulas, females of this species will almost always outlive males by many years. As a juvenile in captivity, this species tends to burrow when given the opportunity. They thrive on mealworms, crickets, roaches, and other small insects. Pet trade The species is desirable in the pet trade because of the females' long lifespan and reputation for being docile and gentle in temperament, as well as for its appealing dark coloration. These traits make them rather expensive when buying from a breeder. It is said to have a reduced tendency to kick urticating hairs off when handled, which adds to its desirability as a pet. Many times, they do not spread urticating hairs around their homes, as observed in other tarantula species. Because of a ban on the export of wild caught specimens and its slow growth, mature females (preferred because of their long life) are generally expensive. References Adult female Grammostola pulchra molting (time lapse video) https://www.youtube.com/watch?v=4MOlvsjXlzo Photos Theraphosidae Spiders of Brazil Taxa named by Cândido Firmino de Mello-Leitão Spiders described in 1921
```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/' ) ```
Ankilivalo is a town and commune () in Madagascar. It belongs to the district of Mahabo, which is a part of Menabe Region. The population of the commune was estimated to be approximately 13,000 in 2001 commune census. Primary and junior level secondary education are available in town. The majority 90% of the population of the commune are farmers, while an additional 8% receives their livelihood from raising livestock. The most important crops are rice and other peas, while other important agricultural products are cassava and pea of the course. Services provide employment for 2% of the population. References and notes Populated places in Menabe
This is a list of State Protected Monuments as officially reported by and available through the website of the Archaeological Survey of India in the Indian state Madhya Pradesh. The monument identifier is a combination of the abbreviation of the subdivision of the list (state, ASI circle) and the numbering as published on the website of the ASI. 326 State Protected Monuments have been recognized by the ASI in Madhya Pradesh. Besides the State Protected Monuments, also the Monuments of National Importance in this state might be relevant. List of state protected monuments |} See also List of State Protected Monuments in India for other State Protected Monuments in India List of Monuments of National Importance in Madhya Pradesh References Madhya Pradesh State Protected Monuments State Protected Monuments Lists of tourist attractions in Madhya Pradesh
```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; } } ```
Christian Blanc (born 17 May 1942) is a French politician and businessman. A former prefect, Blanc also worked as head of the RATP (1989-1992), Air France (1993-1997) and Merrill Lynch France (2000-2002). Blanc was elected to the National Assembly from the UDF party in 2002. As member of the New Center party, Blanc was appointed to the newly created position of Secretary of State of the Région Capitale ("Greater Paris"), a position he held between March 18, 2008 and July 4, 2010. He retired in 2012 from the National Assembly after two terms. Early life and education Christian Blanc is the son of Marcel Blanc, a member of the French Resistance and exotic fruits merchant. Blanc studied at the Lycée Montesquieu in Bordeaux before enrolling in SciencesPo Bordeaux. He became one of the main leaders of the National Union of Students of France, where he met future Prime Minister Michel Rocard. Active at the time in the University Antifascist Front for Peace in Algeria, Blanc is subsequently invited by Fidel Castro to the Latin American Solidarity Conference in Cuba in the summer of 1967. Senior official After graduation, Blanc joined a subsidiary of the Caisse des dépôts, a French public sector financial institution, before becoming bureau chief at the Ministry of Youth and Sports. Closely associated with Michel Rocard, Blanc ran his 1980 Presidential Campaign. From 1981 to 1983, Blanc was the chief of staff for European Commissioner Edgard Pisani. He becomes prefect in the Hautes-Pyrénées region (1983-1984). Christian Blanc became secretary general of the New Caledonia region with Edgard Pisani, and was then appointed prefect of Seine-et-Marne (1983-1985). In 1988, Blanc returned to New Caledonia as head of the “Mission of dialogue” mission of the French government, tasked with finding a political solution to the conflict that was shaking the island at the time. He negotiated the Matignon Agreements, adopted by referendum in November 1988. Business executive In 1989, Christian Blanc became the president of RATP. He resigned in 1992, following a spat with the government. During his presidency, RATP decided to create the first automated metro line – Paris Métro Line 14. He was subsequently appointed CEO of Air France in 1993 and tasked with rescuing the company. Under Blanc's leadership, AirFrance became profitable again in 1997. In 1997, Blanc offered a new strategic plan to continue the restructuring of the company, only to clash with newly elected Prime Minister Lionel Jospin. The disagreement with the government over the need to privatize Air France led to Blanc's resignation in 1997. Between 1998 and 1999, Christian Blanc served as an advisor to the Lebanese carrier Middle East Airlines. Between 1999 and 2001, Blanc was the administrator of the Action Against Hunger. At the same time he ran two startups: Skygate, a developer of small-scale satellite receptors, and Karavel, an online travel agency. In 2000, Blanc was appointed president of Merrill Lynch France. He narrowly escaped the September 11 attacks because he had gone outside for a cigar when the planes struck the World Trade Center. In September 2014, Christian Blanc was designated CEO of Syphax Airlines, a position he held for just two months because the Tunisian company had failed to go through the necessary administrative procedures allowing it to hire a foreign employee. Political career Blanc began his political career as a member of future Prime Minister Michel Rocard's team in the 1970s, helping Rocard win election as mayor of Conflans-Sainte Honorine in 1977. During François Mitterrand's presidency, he refused offers from both Rocard and later Édith Cresson to enter government and instead remained in his position with the RATP Group. Blanc stood for election in the 2002 legislative elections in the third electoral district of Paris, running under the banner of the Énergies democrats (Democratic Energies) and winning 9.63% of the vote. He was elected to the National Assembly to represent the third district of Yvelines on 15 December 2002, replacing Anne-Marie Idrac, who had stood down to become president of the RATP. Winning in the first round, Blanc became a member of the UDF party group in the National Assembly. In 2003, Prime Minister Jean-Pierre Raffarin tasked Blanc with an economic development project. Six months later, Blanc submitted an official report, entitled For an Ecosystem of Growth, whose recommendations included creating business clusters. The French government began putting Blanc's recommendation into effect from 2004 onwards. In 2006, Blanc called on President Jacques Chirac to resign for the sake of “accelerating reforms” and to put an end to “paralysis.” The same year, he launched the “Committee for the Modernization of France” together with Alain Lambert and Jean-Marie Bockel that sought the “comprehensive and coherent” modernization of the French economy and French society. Blanc also took part in the Pébereau Commission, which calculated France's national debt at €2 trillion. Blanc was a supporter of the presidential candidacy of Nicolas Sarkozy in the 2007 presidential election and became member of the New Center party during the legislative elections, in which he was re-elected in the first round. Between 2002 and 2007, Blanc served as president of Énergies democrats and the founder of Énergies 2007, movements which supported reforming the French state and pursuing further European integration. As Vice-President of the New Center, he ran in the 2008 French local elections to become the mayor of Le Chesnay, a wealthy western suburb of Paris, but secured only 36.28% of the vote and failed to unseat the incumbent mayor in a three-way race. State Secretary for Greater Paris (2008-2010) On March 18, 2008, Blanc was appointed Secretary of State of the Région Capitale ("Greater Paris"), a new position in the French Government of François Fillon. Blanc was responsible for crafting the legal framework for the “Greater Paris” project, which entered into law in May 2010 and provided for a network of automated metro lines surrounding Paris. After the French Parliament's enactment of the Greater Paris law, Blanc announced his resignation from the government on July 4, 2010. In June 2010, after Blanc dismissed his chief of staff, allegations regarding his tax situation appeared over the next eight days in France's Canard Enchaîné newspaper. One week later, the same newspaper claimed that Blanc allegedly used his secretarial budget to purchase cigars worth €12,000 over the course of ten months, a claim which was widely reprinted by French media. In an interview with the Figaro, Blanc accused his former chief of staff Guillaume Jublot, who had been recently fired by Blanc, of feeding false information to the Canard Enchaîné. After discussions with then-Prime Minister François Fillon, the two men released a statement in which they jointly declared it "suitable that Mr. Blanc honors his personal expenses in full." The matter helped accelerate Blanc's decision to leave government, with the opposition and elements of press speculating that his exit might be a tactic by the ruling UMP to turn media attention away from President Nicolas Sarkozy's role in the Woerth-Bettencourt scandal. The UMP denied any such links. Blanc retook his seat in the National Assembly after leaving the government in August 2010 and declined to stand in the 2012 legislative elections. On December 2, 2011, the High Court of Paris found Christian Blanc to have acted in good faith in relation to the cigar affair and dismissed those charges against him. Whereas the initial claims had been widely covered by the press over the course of several weeks, this acquittal was met with radio silence. In 2015, Odile Jacob published Blanc's book Paris, ville-monde (Paris, World City), in which Blanc lays out a strategy for France to reclaim a leading role in the global economy. Governmental functions Secretary of State for the Development of the Capital Region: 2008-2010 (Resignation on 4 July 2010). Electoral mandates National Assembly of France Member of the National Assembly of France for Yvelines : 2002-2008 (Became secretary of State in 2008) / And since 2010. Elected in 2002, reelected in 2007. External links National Assembly page References 1942 births Living people People from Talence Union for French Democracy politicians The Centrists politicians Deputies of the 12th National Assembly of the French Fifth Republic Deputies of the 13th National Assembly of the French Fifth Republic French chief executives French businesspeople in transport Politicians from Île-de-France
The Case of the Union of Liberation of Belarus was a political and criminal case initiated by the GPU of the Byelorussian Soviet Socialist Republic against several Belarusian scientists and culture activists. The case formed part of a wave of Soviet repressions in Belarus in 1929 - 1931. The GPU accused the victims of membership in a (presumably non-existent) anti-Soviet organization called the Union of Liberation of Belarus (). Most of the accused were killed, or expelled to far-away regions of the USSR. A case started with the arrest of the editor Piotar Iljučonak on February 17 1930. During the spring and summer of 1930 108 people were arrested. At the beginning the GPU saw Vaclaw Lastowski (former prime minister of the Belarusian People's Republic), Alaksandar Ćvikievič and Arkadź Smolič (former agriculture minister of the Belarusian People's Republic), as leaders of the organization. Later Alaksandar Adamovič (a Belarusian nationalist communist politician), Anton Balicki (statesman and writer), Piotar Iljučonak and Dźmitry Pryščepaŭ were viewed as such. People like the prominent poets Janka Kupała and Jakub Kołas or the first president of the Belarusian Science Academy Usievalad Ihnatoŭski were at certain stages accused of being members of the ULB. All those arrested, except for 18 people, were sentenced to different terms of deportation. Usievalad Ihnatouski committed suicide on February 4, 1931. The supposed leaders of the ULB were sentenced to 10 years of deportation while most of the other members were deported to inner regions of the USSR for 5 years. In 1937—1941 the case was heard again; many of the convicts were executed, some sent to concentration camps. In 1937-1939 many of the GPU executives who had worked on the case were also themselves executed. Another wave of repressions occurred in 1949-1952 against those former ULB membership suspects who were still alive at the time. List of suspects at the ULB case References Sources Аркуш А. Рызыкоўная барацьба намэнклятуры // Наша Ніва, No.7. Сідарэвіч А. Трыюмвіры, або Помнік камісарам // Наша Ніва, No.13. See also Soviet repressions in Belarus 1937 mass execution of Belarusians 1931 Menshevik Trial 1920s in Belarus 1930s in Belarus Political repression in the Soviet Union Political and cultural purges 1929 in the Soviet Union 1930 in the Soviet Union 1931 in the Soviet Union
Miliana Vasileva Kaimakamova (; born 22 January 1951) is a Bulgarian medieval historian, whose work on Bulgarian medieval historiography is foundational to the discipline. She is Professor of History at Sofia University. Biography Kaymakamova was born on 22 January 1951 in Smolyan. In 1973 she graduated with a degree in History & Archaeology from Sofia University. In 1985 she was awarded the scientific title of associate professor. From 1972 to 1979 she was an assistant professor of medieval Bulgarian history in the Faculty of History at Sofia University. In 1979 she defended her dissertation on "Historical and chronicle tradition in medieval Bulgaria - VII-XII centuries" and was awarded a doctorate in history. In 1979 she was appointed as a lecturer at Sofia University, where as of 2022 she was Professor of Medieval History. She specialises in Bulgarian medieval history and the relationships between Bulgars and Slavs in the medieval period. In 1985 she was appointed Associate Professor of History. In 1990 she published Bulgarian Medieval Historiography, a work considered foundational to the discipline. Awards and recognition In 2021 she was presented with the Order of Saints Cyril and Methodius, in recognition of her achievements in the field of medieval history. In 1996 Sofia University awarded her the St. Kliment Ohridski Ribbon for her services to teaching. Selected works Власт и история в средновековна България (VII-XIV век) [Power and history in medieval Bulgaria (VII-XIV century)] (Paradigm, 2011) Българска средновековна историопис [Bulgarian Medieval HistoriographyI] (Science and Art, 1990) References External links Представяне на сборниците в чест на проф. Каймакамова и проф. Ангелов 1951 births Living people Bulgarian women academics Bulgarian medievalists Women medievalists Academic staff of Sofia University Sofia University alumni Historiographers
Jackson F. Henley (born January 2, 1870) was an American lawyer, state legislator and judge in Arkansas. He was an outspoken opponent of a separate coach bill for segregated passenger services. He also opposed Democrat proposed election bills as they sought to regain control and exclude African Americans from voting. He was born in St. Joe, Arkansas. He studied law at Cumberland University. Henley, a "mountain Republican", represented Searcy County in the Arkansas House of Representatives in 1891 and 1893. He was succeeded by Ulysses S. Bratton. In 1898, Henley was a candidate for Attorney General of Searcy County. He had a law practice in Marshall, Arkansas. He was an incorporator of The Farmers Bank and a donor of money for construction of Marshall's train depot. References 1870 births Year of death missing Cumberland University alumni
Shape Modeling International (SMI), also known as International Conference on Shape Modeling and Applications is an annual symposium whose goal is to promote the dissemination of new mathematical theories and novel computational techniques for modeling, simulating, and processing digital shape representations. Initiated in 1997 by Tosyiasu L. Kunii and Bianca Falcidieno, the symposium became an annual event in 2001 after its merge with the Eurographics / ACM SIGGRAPH Workshop on Implicit Surfaces. The venue of the symposium rotates in turn among Asia, Europe and America. Overview Since 2009, proceedings of SMI are published by Elsevier as a special issue of the Computers & Graphics journal. Proceedings until the year 2010 are available at DPLP, computer.org, and IEEE Explore. See also Symposium on Geometry Processing SIGGRAPH Solid modeling References Models of computation International conferences Organizations established in 1997
Kirinyaga: A Fable of Utopia is a science fiction novel published in 1998 by Mike Resnick. It is a series of parables about one man's attempt to preserve traditional African culture on a terraformed utopia. The prologue and eight chapters of the book were each originally sold as a short story (or novelette or novella, depending on length) but were designed to fit together into a novel that builds to a climax with a coda afterward. The book and its chapters are among the most honored in science fiction history with 67 awards and nominations including two Hugo Awards. Each section begins with a parable illustrating the relationship between Ngai, the Kikuyu god, and the creatures of the earth. On occasion, it is the narrator that has failed to properly understand the meaning of the story. Plot summary Prologue: One Perfect Morning, With JackalsIn Kenya, a son argues with his father whether it is possible to adopt European conveniences and customs and still be a true Kikuyu, the dominant native tribe. The father will be the mundumugu (witch doctor) for the new Kikuyu society on a terraformed planetoid named Kirinyaga. On the way to the spaceport, they detour to see a pair of jackals hiding behind a bush in an area that will become a nature preserve. KirinyagaKoriba kills a newborn child because traditional beliefs dictate that it is a demon. He must then convince Maintenance, the people who maintain the environment and regulate the orbit of the planetoid Kirinyaga, not to interfere with their traditions, no matter how much they dislike them. For I Have Touched the SkyA girl finds a falcon with a broken wing and asks the mundumugu to heal it. "Once a bird has touched the sky," Koriba explains, "he can never be content to spend his days on the ground." She persists. In the course of doing chores in exchange for help treating the bird, she discovers Koriba’s computer and the knowledge it can share. This creates conflict with the role held by women in the traditional Kikuyu society. BwanaKoinnage, the paramount chief, hires a hunter to reduce the hyena population. The hunter’s idea of utopia differs radically from Koriba’s. The mundumugu must demonstrate that, although the Kikuyu are a farming society, they are not powerless against predators. The ManamoukiA married couple immigrate to Kirinyaga. Although they try to assimilate, they bring modern ideas that conflict with traditional Kikuyu culture. Can a utopia evolve? Song of a Dry RiverA grandmother refuses to be cared for in the traditional manner and sets up residence near the mundumugu, who lives apart from the village. The mundumugu threatens a drought unless she follows tradition. The Lotus and the SpearThree young men have died in unusual circumstances. The mundumugu must find and overcome the cause. A Little KnowledgeKoriba is training Ndemi as his successor. Eventually he begins to instruct him on the use of the computer. But, as in the Garden of Eden, knowledge is a dangerous thing. When the Old Gods Die"It is said that from the moment of birth, even of conception, every living thing has embarked upon an inevitable trajectory that culminates in its death... Yet this knowledge does not lessen the pain of death." For a man intent on maintaining the traditional ways, cultural change may not represent life but the death of the old gods. Epilogue: The Land of NodKoriba returns to Kenya. There, the old ways don’t mesh well with modern city living. When he visits a cloned elephant that is to be killed in a few days' time, Koriba realizes that they are both anachronisms, and that their fates are intertwined. Characters Koriba, the mundumugu (witch doctor), who guides the society Koinnage, the paramount chief of the village Ndemi, Koriba's student Ngai, the Kikuyu god References Utopian novels 1998 science fiction novels American science fiction novels
```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(); }); }); }); ```
Ronald John Withnall (9 December 1914 – 16 September 1990) was an Australian politician and lawyer. |} Withnall was born in Townsville, Queensland, but attended school at Canterbury High School in Sydney. He studied law at the University of Sydney and later moved to the Northern Territory. He served as the Crown Law Officer for the Territory for many years. He was also the first president of the Northern Territory Law Society in 1968. Withnall was appointed to the Northern Territory Legislative Council in 1960 in his capacity as Crown Law Officer. In 1966, he contested and won an elected seat in the Legislative Council. Among Withnall's votes as an elected member included voting against the abolition of capital punishment and opposing women jurors, stating that the latter would happen "over my dead body". As a Member of the Legislative Council, Withnall made a name for himself as a fierce advocate of self-determination, and took part in the campaign which ultimately led to the creation of the Assembly in 1974. He ran as an independent in the seat of Port Darwin in the first elections, and ultimately became one of only two non-Country Liberal Party members (the other being fellow independent Dawn Lawrie) in the first Assembly. However, he was to only serve one term in the Assembly, and was replaced by the Country Liberal Party's Tom Harris. Withnall died in late 1990, and several condolence motions were presented in the Assembly upon his death. Shane Stone, in his introductory speech upon his election to the Port Darwin electorate in 1990, referred to Withnall as a "fearless and uncompromising advocate of self-government and statehood for the Territory". In 1994, then-Chief Minister Marshall Perron also praised Withnall's role in the Territory's achievement of self-governance. A 1976 interview with Withnall is on file at the National Library of Australia. References 1914 births 1990 deaths Members of the Northern Territory Legislative Council Members of the Northern Territory Legislative Assembly Sydney Law School alumni 20th-century Australian politicians
Omar Jarel Gilyard, known by his stage name Jneiro Jarel, is an American recording artist, music producer, composer and DJ. Recognized for his versatile, abstract, and often experimental style, he is also known for his beat-making alias Dr. Who Dat? and his groups Willie Isz, JJ Doom and Shape of Broad Minds. He has collaborated with artists such as Damon Albarn, Count Bass D, Massive Attack, TV on the Radio and Kimbra among others. History Jarel was born in Brooklyn. He spent several years of his life living in Maryland, Arizona, Atlanta and Houston, before eventually moving back to New York City. It was in New York that he started his own label, Orienj Recordings (now Label Who?), and released his first EP as a solo artist. In 2003 he signed to indie record label Kindred Spirits, and was the sole representative from New York to participate in and perform at Red Bull Music Academy in Cape Town, South Africa. In 2004 Jneiro moved to Philadelphia and, through his success in the indie music scene, was able to work with some of the city's most influential artists King Britt and Rich Medina. He signed a multi-album record deal with Lex Records in 2006. Career 2000–2005: Early career Following the 2000 release of his Section A EP, Jneiro also released his first full-length album, Timeless Volume 1 in 2004, via Label Who? Over the next year he made a number of guest appearances and contributions on various projects, and release several promo singles and DJ mixes, before jointly releasing his Three Piece Puzzle LP on, both, Kindred Spirits and Ropeadope Records in 2005. The album was universally met with positive reception. 2006–2011: Lex Records and mainstream recognition 2006 marked the beginning of Jarel's relationship with Lex Records, and saw the release of his critically acclaimed instrumental project, Beat Journey, under his Dr. Who Dat? alias. The album cover art was designed by the UK based graphic artists collective, and frequent Lex Records collaborators, Ehquestionmark, best known for their previous work on The Mouse and the Mask and Ghetto Pop Life. The aesthetic approach featured in Beat Journeys art design would become a staple in Jneiro's future releases. He followed up Beat Journey with his 2007 Lex release, Craft of the Lost Art, under the group name Shape of Broad Minds. Like many of his previous works, Craft of the Lost Art saw Jarel incorporating several of his aliases on to the album, although this was the first time they would all converge in one place. In addition to fellow group member and emcee Jawwaad Taylor, the project also included a number of features from MF Doom, Count Bass D, Stacy Epps and John Robinson. Craft of the Lost Art widely received positive reviews, and saw Jneiro teaming with Ehquestionmark once more, for an artwork design that included a limited edition, glow-in-the-dark LP, as well as an EP, single and mixtape download. In early 2009 he revisited his Dr. Who Dat? alter ego for the digital-only release of Beyond 2morrow. This instrumental EP would showcase the more experimental approach to production that was previously, but briefly, explored in some of Jneiro's earlier work. Having been fully realized and embraced on this project, it would also help in solidifying his place among a growing musical genre that would later become popular in the Low End Theory and L.A. beat scene. That same year Jneiro teamed with Goodie Mob's Khujo Goodie to form the group Willie Isz. They released their debut project Georgiavania on June 15, 2009, via Lex Records. The album features backing vocals from Tunde Adebimpe of TV on the Radio, and continued the string of positive reception Jarel's work had come to know. It would also set the stage for a number of collaborations between Jarel and TV on the Radio's Dave Sitek. In 2010, Jarel signed a digital distribution deal with Alpha Pup Records, which resulted in the release of his Android Love Mayhem- EP and the reissue of Beyond 2morrow, as Jneiro Jarel. Artwork for both EP's was handled by painter and muralist, and Three Piece Puzzle album cover designer, Joshua Mays. Jneiro also joined forces with Kindred Spirits again and released the Brazilian themed album Fauna. All three projects had heavy electronic overtones in their production, and continued to show Jarel's willingness to move away from more traditional sample based music, and explore beyond the rigid boundaries set in place by many musical genres. In 2011 Jneiro was handpicked by Damon Albarn to be a part of the, newly established, musical collective DRC Music (Democratic Republic of the Congo Music) group. Working in conjunction with Oxfam, the project's intention was to bring awareness to Oxfam's relief work in Congo, as well as give exposure to over fifty local Congolese musicians. Albarn assembled a team of ten producers, composed of Jarel, Dan the Automator, XL Recordings managers Richard Russell and Rodaidh McDonald, Kwes, Actress, Totally Enormous Extinct Dinosaurs, Marc Antoine, Alwest, and Remi Kabaka Jr. to work alongside local musicians in Kinshasa. The result was Kinshasa One Two; an album recorded in five days, with all of its proceeds going towards Oxfam. It was released on Warp Records October 3, 2011. 2012–present: JJ Doom and Label Who On December 16, 2011, a Dave Sitek remix of a JJ Doom track, titled "Rhymin' Slang", was posted on Pitchfork. JJ Doom was revealed to be the pairing of Jneiro Jarel and Lex label mate MF Doom, which drew speculation at the time that the two were working on an album together. This suspicion was confirmed when Pitchfork later ran an article on February 16, 2012, detailing the album's title, Key to the Kuffs, and leaked one of its tracks "Banished". A third track from the album, "Guv'nor", was posted on Pitchfork July 27, 2012. Key to the Kuffs was released August 20, 2012 on Lex Records. Debuting at number 124 on the Billboard 200, Key to the Kuffs received notable positive praise, eventually charting a total of six Billboard charts and landing on several "Best Albums of 2012" lists. It had a number of high-profile guest appearances, from previous Jneiro Jarel collaborators Damon Albarn and Khujo Goodie, to Beth Gibbons of Portishead. A video for the song "Guv'nor" premiered August 23, 2012. Directed by Ninian Doff and presented by RizLab, the video garnered attention for its use of an optical illusion/split-screen visual effect. Later a video for the "Rhymin' Slang (JJ Tron Remix)" would be released, as an extension of the JJ Doom/RizLab project. The album artwork for Key to the Kuffs was designed by American graffiti artist Stephen "ESPO" Powers. Powers would also later direct the music video for JJ Doom's "Bookhead". The video premiered June 19, 2013 and the track was featured on the expanded, deluxe edition of Key to the Kuffs, titled Key to the Kuffs (Butter Edition), released August 20, 2013. The "Butter Edition" also included the Dave Sitek "Rhymin' Slang" remix, as well as the previously released, alternative version of "Retarded Fren" by Radiohead's Thom Yorke and Jonny Greenwood. It also featured a number of guest contributions in the form of remixes, features and alternative versions from Beck, BadBadNotGood, Del the Funky Homosapien and Clams Casino. In August 2013, Jneiro Jarel announced (via Okayplayer) the official launch of his own record label, Label Who, with Ropeadope Records serving as digital distributor. Personal life Jarel is married to Indigo. Discography Jneiro Jarel Section A (2000) Timeless Vol. 1 (2004) Three Piece Puzzle (2005) "Big Bounce Theory" b/w "Quantum Leap" (2005) Fauna (2010) Android Love Mayhem EP (2010) "Amazonica" b/w "See Them Cry" (2010) Beyond 2morrow reissue (2010) Flora (2014) After A Thousand Years (2020) Dr. Who Dat? Beat Journey (2006) Rhyme Cycle EP (2006) Beyond 2morrow (2009) Shape of Broad Minds Blue Experience EP (2007) Craft of the Lost Art (2007) Raiders Of The Lost Mix (2007) "OPR8R" (2008) Willie Isz Georgiavania (2009) Capital Peoples Amazonica (1999-2004) (2009) DRC Music Kinshasa One Two (2011) JJ Doom Key to the Kuffs (2012) Rhymin Slang (JJ Tron Remix) EP Very limited exclusive blue 12' vinyl. (2012) Rhymin Slang (JJ Tron Remix) flexi-disc 7''' Exclusive single face flexi-disc vinyl sold with #24 Wax Poetics Japan. (2012)Key to the Kuffs (Butter Version) (2013)Bookhead EP (2014) Productions "Choklit Ninja" by Rich Medina on Connecting The Dots (2005) "Rhyme Cycle" by Stacy Epps on Ruff Draft (2007) "The Experiment" "Vocal Overload" by John Robinson on I Am Not For Sale (2008) Remixes "Yellow Daisies (Jneiro Jarel Remix)" by Fertile Ground on Remixes 01 (2005) "Holdin' On (Dr. Who Dat? Remix)" by Champion Souls on Holdin' On EP Two (2005) "Vibes From THe Tribe (Jneiro Jarel Remix)" by Build An Ark on Remixes (2005) "Dust (Rocque Wun Mix)" by Recloose on Dust (Remixes) (2005) "My Affection" by Vassy on My Affection (2005) "My Juvenile (Jneiro Jarel's Minimal Animal Remix)" by Björk (2009) "Pretty Wings (Jneiro Jarel's Willie Isz Remix)" by Maxwell (2009) "Gazzilion Ear (Dr. Who Dat? Remix)" by DOOM on Gazzillion Ear EP (2009) "Gazzilion Ear (Jneiro Jarel feat. Dave Sitek Remix)" by DOOM on Gazzillion Ear EP (2009) "Harmony Korine (David A. Sitek and Jneiro Jarel Magnetized Nebula Mix)" by Steven Wilson (2009) "Shout Me Out Remix" by TV on the Radio on Crying (2009) "Balada 45 (Like A Brazilian Girl Remix)" by Arthur Verocai (2010) "Electric Love (Jneiro Jarel Remix)" by Vikter Duplaix on Electric Love-EP (2010) "Atlas Air (Jneiro Jarel's Lavender Jungle Remix)" by Massive Attack on Atlas Air EP (2010) "Groove Me (Jneiro Jarel Remix feat. Theophilus London)" by Maximum Balloon on Maximum Balloon (2010) "Messin' (Jneiro Jarel Remix)" by Amatus (2014) "90s Music (Jneiro Jarel Remix)" by Kimbra on 90s Music EP (2014) Mixes "Mindgames (Sneaky Pete Edit)" by Rich Medina (2004) DJ MixesHouston We Have A Solution (2005)Andrew Meza's BTS Radio Mix (2007)Return of The Shoegaze (2008)Jneiro Jarel aka Dr. Who Dat's BBC Radio 1 Mary Anne Hobbs Mix (2009)BBC Radio 1 Rob Da Bank JJ DOOM Mix (2012)Exclusive JJ DOOM Mixtape for Dazed Digital (2012)Traptronic Dreams Mixtape (2012)Jneiro Jarel x Bonafide Beats Mix #50 (2014)Echoes In Viberia (Kimbra Mixtape) By Jneiro Jarel (2014) Guest appearances "Lookin' At Me" by Kid Sublime on Basement Soul (2005) "Not Tomorrow But" "No Game" by Breakthrough on Breakthrough (2005) "Choklit Ninja" "Blues Baby" "Weight" by Rich Medina on Connecting The Dots (2005) "Chea Chea" by King Britt on Jazzmental (2005) "Eyes And Ears" by Ohmega Watts on Watts Happening (2007) "Evil Child" by Cilla K. on Evil Child (2010) Compilation appearances "Sun Walkers" "Eeee Love" "Do You Thang" on Soul Purpose Is To Move You: Kindred Spirits Collection (2004) "Sun Walkers" "Doinis!!" on Witness Future Vintage (Vol. 1) (2004) "Doinis!!" on Undercover Cuts 21 (2005) "Soul Starr" "Big Bounce Theory" "Get Yuh Own" on Rush Hour Mixed Series Vol.01 (2005) "Lookin' At Me" on Habitat Collection: Fireside (2005) "Lookin' At Me" on Jimmy Woo One (2006) "Big Bounce Theory Part 2" on Witness Future Vintage (Vol. 2) (2007) "Picante" on Basement Soul (2007) "Rhymin' Slang (Dave Sitek Remix)" "Viberian Twilight Part 2" on Complex Vol. 1'' (2012) References External links Jneiro Jarel on Lex Records Jneiro Jarel on Alpha Pup Records American hip hop record producers American hip hop DJs Living people Rappers from Philadelphia 1975 births 21st-century American rappers Record producers from Pennsylvania Lex Records artists Ropeadope Records artists
Augustin-César d'Hervilly de Devise (1708 – 11 October 1742, in Château de Voisenon) was a French cleric. d'Hervilly de Devise was from a noble family from Picardy. he became canon and archdeacon of Cambrai and provost of Lille when in 1738 he was made bishop of Boulogne and commendatory abbot of Valloires Abbey. In 1745 he was also made commendatory abbot of Ham Abbey. His secretary was canon Lesage, son of the author Alain-René Lesage. References Eugène Van Drival, Histoire des évêques de Boulogne, Boulogne-sur-Mer, 1852. Bishops of Boulogne 1708 births 1742 deaths 18th-century French Roman Catholic bishops
The Bristol Channel Cutter, also called the Bristol Channel Cutter 28, is an American sailboat that was designed by Lyle Hess as a "character boat" cruiser and first built in 1976. The boat is based upon Hess's earlier Renegade design. Production The design was built by Sam L. Morse Co. of Costa Mesa, California, United States, who completed 128 boats between 1976 and 2007. In 2011 one boat was built by Cape George Marine Works in Port Townsend, Washington. Between 30 and 45 boats were also built in Vancouver, British Columbia, Canada, by two companies. The hulls were built by Steveston Fiberglass and the finish work performed by G & B Woodworks. There are reports of royalties not being paid to Lyle Hess and Sam L. Morse for the construction of the Canadian hulls. The rumor is a result of confusion over Hull Identification Numbers (HIN). At the time the Canadian Bristol Channel Cutter hulls were built, Canada did not require HINs and this resulted in a number of Bristol Channel Cutters without HINs. This lack of accountability for the hulls led to disagreements with Sam L. Morse, which amongst other reasons, led to them rescinding their license to Steveston Fiberglass and Canadian production was then stopped. The company often mentioned in these rumors, Channel Cutter Yachts, has never produced a Bristol Channel Cutter, but the owner, Bryan Gittins, is the G from G & B Woodworks who originally finished the Canadian hulls. G & B Woodworks dissolved with the ending of Bristol Channel Cutter production. Sometime after this Gittens purchased the rights to Lyle Hess's Falmouth Cutter 34 design and setup shop as Channel Cutter Yachts in order to produce this new design. Design The Bristol Channel Cutter is a recreational keelboat, built predominantly of fiberglass, with wood trim. It has a cutter rig, a spooned plumb stem, an angled transom, a keel and transom-hung rudder controlled by a tiller and a fixed long keel. It displaces and carries of lead ballast. The hull length is , but including the bowsprit and boomkin it is The boat has a draft of with the standard keel. The boat is fitted with a Swedish Volvo MD 7A diesel engine of or a Japanese Yanmar diesel of for docking and maneuvering. The fuel tank holds . The design has sleeping accommodation for four people, with two straight settee berths and a pilot berth in the main cabin and an aft quarter berth on the starboard side. The galley is located on the port side at the companionway ladder. The galley is "L"-shaped and is equipped with a stove and a sink. A navigation station is opposite the galley, on the starboard side. The head is located in the bow and includes an optional shower. The fresh water tank has a capacity of and the holding tank has a capacity of . Cabin headroom is . The design has a hull speed of . Operational history A Blue Water Boats review noted that the design, "represents a pinnacle of ruggedness and practicality while retaining respectable performance. Few boats can take the abuse of extended voyaging as well as the Bristol Channel Cutter and I guess it's become something of a Lyle Hess masterpiece." See also List of sailing boat types Related development Falmouth Cutter 22 Falmouth Cutter 26 Falmouth Cutter 34 Similar sailboats Aloha 28 Beneteau First 285 Cal 28 Catalina 28 Grampian 28 J/28 Laser 28 O'Day 28 Pearson 28 Sabre 28 Sirius 28 Tanzer 28 TES 28 Magnam Viking 28 Westsail 32 References Keelboats 1970s sailboat type designs Sailing yachts Sailboat type designs by Lyle Hess Sailboat types built in the United States Sailboat types built in Canada Sailboat types built by Sam L. Morse Co. Sailboat types built by Cape George Marine Works Sailboat types built by Channel Cutter Yachts
The iPhone's hardware is designed by Apple Inc. Apple directly sub-contracts hardware production to external OEM companies, maintaining a high degree of control over the end product. Screen and input The touchscreen on the iPhone has increased in size several times over the years, from 3.5 inches on the original iPhone to iPhone 4S, to the current 6.1 and 6.7 inches on the iPhone 14 and 14 Pro series. The touch and gesture features of the iPhone are based on technology originally developed by FingerWorks. Most gloves and styli prevent the necessary electrical conductivity; although capacitive styli can be used with iPhone's finger-touch screen. The iPhone 3GS and later also feature a fingerprint-resistant oleophobic coating. The iPhone has a minimal hardware user interface, with most models featuring five buttons. The only physical menu button is situated directly below the display and is called the "Home button" because its primary function is to close the active app and navigates to the home screen of the interface. Earlier models included a rounded square, reminiscent of the shape of icons on the home screen. However, new models which include Apple's fingerprint recognition feature Touch ID (which use the Home button as the fingerprint sensor) have no symbol. The iPhone X and later, with the exception of the iPhone SE series, do not have a Home button, and include Face ID in place of Touch ID, a facial recognition authentication method. A multi-function sleep/wake button is located on top of the device on earlier models, and on right of the device from iPhone 6 onwards. It serves as the unit's power button, and also controls phone calls. When a call is received, pressing the sleep/wake button once silences the ringtone, and when pressed twice transfers the call to voicemail. Situated on the left spine are the volume adjustment controls. The iPhone 4 has two separate circular buttons to increase and decrease the volume; all earlier models house two switches under a single plastic panel, known as a rocker switch, which could reasonably be counted as either one or two buttons. Directly above the volume controls is a ring/silent switch that, when engaged, mutes phone calls ringtones, alert sounds from push notifications, and system sound effects. 3D Touch and Haptic Touch The iPhone 6S and 6S Plus, introduced in 2015, feature 3D Touch displays which allow the screen to recognize how hard it is being pressed using pressure-sensitive multi-touch technology, and a new Taptic Engine to provide haptic feedback. In addition to visual cues, 3D Touch uses the Taptic Engine to provide a tactile sensation relative to the force being applied to the display to indicate to the user that a light or deep press action has been completed. An example of how this technology was used is lightly pressing the screen to preview a photograph and deeply pressing to open it, a feature dubbed 'Peek and Pop' by Apple. All iPhones starting with the iPhone 6s (with the exception of the first-generation iPhone SE and iPhone XR) had this feature. Starting in 2019 however, 3D Touch was omitted on all iPhones starting with the iPhone 11 and 11 Pro series, and its software features were removed from iOS 13 and later in favour of Haptic Touch. Haptic Touch retains much of the functionality of 3D Touch but cannot detect pressure, as the display lacks integrated capacitive sensors. Actions that previously required a deep press now only require a long press, and the haptic feedback is no longer associated with the applied pressure but rather the touch duration. iPad models that can update to iPadOS 13, along with the first-generation iPhone SE and seventh-generation iPod touch, which previously did not support 3D Touch, simultaneously gained similar Haptic Touch functionality with the iOS 13 and iPadOS 13 updates, although without any haptic feedback. Sensors iPhones feature a number of sensors, which are used to adjust the screen based on operating conditions, enable motion-controlled games, location-based services, unlock the phone, and authenticate purchases with Apple Pay, among many other things. Proximity sensor A proximity sensor deactivates the display and touchscreen when the device is brought near the face during a call. This is done to save battery power and to prevent inadvertent inputs from the user's face and ears. The iPhone's proximity sensors detect the ear and switches off the light, saving power and stopping the face from unintentionally pressing buttons. A phone case, dirt or grime, or a software problem may cause the proximity sensor to malfunction. Ambient light sensor An ambient light sensor adjusts the display brightness which saves battery power and prevents the screen from being too bright or too dark. True Tone, which is activated by default, uses advanced sensors to change the colour and intensity of the iPhone screen to match the ambient light, resulting in more natural-looking images. The ambient light sensor decides how much light is available around the iPhone and other apple products, such as the iPod and iPad. The device changes the screen brightness automatically based on this knowledge to save battery life and minimize eye strain. Accelerometer A 3-axis accelerometer senses the orientation of the phone and changes the screen accordingly, allowing the user to easily switch between portrait and landscape mode. Photo browsing, web browsing, and music playing support both upright and left or right widescreen orientations. Unlike the iPad, the iPhone does not rotate the screen when turned upside-down, with the Home button above the screen, unless the running program has been specifically designed to do so. The 3.0 update added landscape support for still other applications, such as email, and introduced shaking the unit as a form of input (generally for undo functionality). The accelerometer can also be used to control third-party apps, notably games. It is also used for fitness tracking purposes, primarily as a pedometer. Starting with the iPhone 5S, this functionality was included in the M7 Motion coprocessor and subsequent revisions of the embedded chip Magnetometer A magnetometer is built-in since the iPhone 3GS, which is used to measure the strength and direction of the magnetic field in the vicinity of the device. Sometimes certain devices or radio signals can interfere with the magnetometer requiring users to either move away from the interference or re-calibrate by moving the device in a figure-eight motion. Since the iPhone 3GS, the iPhone also features a Compass app, which was unique at time of release, showing a compass that points in the direction of the magnetic field. Gyroscopic sensor Since the iPhone 4, the 4th Generation iPod touch, and the iPad 2, a three-axis gyroscope was included. This sensor will run on six axes due to the combination of a gyroscope and an accelerometer. One of the main reasons of the implementation was to enhance gaming mechanics such as the sensitivity and responsiveness aspects. It is compatible with iPhone, iPad, and iPod touch. Radio Some previous iPhone models contained a chip capable of receiving radio signals; however, Apple has the FM radio feature switched off because there was no antenna connected to the chip. Later iterations of the iPhone (starting with the iPhone 7), however, do not contain radio chips at all. A campaign called "Free Radio On My Phone" was started to encourage cellphone manufacturers such as Apple to enable the radio on the phones they manufacture, reasons cited were that radio drains less power and is useful in an emergency such as the 2016 Fort McMurray Wildfire. Fingerprint sensor Until 2017, iPhone models starting from iPhone 5S (excluding the iPhone 5C) featured Apple's fingerprint recognition sensor. It is used for unlocking the device and authenticating Apple Pay purchases (since the iPhone 6) using Touch ID. It is located in the home button. Touch ID has been replaced by Face ID (with the exception of the iPhone SE series), starting with the iPhone X. The fingerprint sensor uses the user's biometric information to give the user quick access to the device. It can also be used to open applications and approve transactions. It's compatible with iPhone, iPad, and iPod touch. Barometer Included on the iPhone 6 and later (excluding the iPhone SE (1st generation)), a barometer is used to determine air pressure and elevation. This sensor is used to provide position and navigational features by determining the altitude through evaluating air pressure. The barometers will allow the device to be pinpointed. Facial recognition sensor Starting with the iPhone X, a facial recognition sensor, named the TrueDepth camera system, is featured. It is used for unlocking the device and for authenticating purchases using Face ID. It can also be used for Animojis and AR. Audio and output On the bottom of the iPhone, there is a speaker to the left of the dock connector and a microphone to the right. iPhone models from the first-generation to iPhone 4S utilize the 30-pin dock connector, while the models from iPhone 5 to iPhone 14 use the proprietary Lightning connector. There is an additional loudspeaker above the screen that serves as an earpiece during phone calls. The iPhone 4 includes an additional microphone at the top of the unit for noise cancellation, and switches the placement of the microphone and speaker on the base on the unit—the speaker is on the right. Volume controls are located on the left side of all iPhone models and as a slider in the iPod application. The 3.5 mm headphone jack was located either on the top left corner or to the bottom left corner of the iPhone. The headphone socket on the first-generation iPhone is recessed into the casing, making it incompatible with most headsets without the use of an adapter. The iPhone 7 and later have no 3.5 mm headphone jack, and instead headsets must connect to the iPhone by Bluetooth, use Apple's Lightning connector, or (for traditional headsets) use the Lightning to 3.5 mm headphone jack adapter. This adapter was included on several models of iPhone, and is also available for purchase at several leading retailers. The built-in Bluetooth 2.x+EDR supports wireless earpieces and headphones, which requires the HSP profile. Stereo audio was added in the 3.0 update for hardware that supports A2DP. While non-sanctioned third-party solutions exist, the iPhone does not officially support the OBEX file transfer protocol. The lack of these profiles prevents iPhone users from exchanging multimedia files, such as pictures, music and videos, with other Bluetooth-enabled cell phones. Mirrored display output is supported via a HDMI adapter, connected to the iPhone Lightning connector. Battery The iPhone features an internal rechargeable lithium-ion battery. Like an iPod, but unlike most other mobile phones at the time of its launch, the battery is not user-replaceable. The iPhone can be charged when connected to a computer for syncing across the included USB to dock connector cable, similar to charging an iPod. Alternatively, a USB to AC adapter (or "wall charger", also included) can be connected to the cable to charge directly from an AC outlet. Some models of the iPhone support wireless charging. A distinction to Android devices is that connecting an iPhone to a charger while powered off causes it to power on rather than showing a battery indicator without booting. Apple runs tests on preproduction units to determine battery life. Apple's website says that the battery life "is designed to retain up to 80% of its original capacity after 500 complete charge cycles". The battery life of early models of the iPhone has been criticized by several technology journalists as insufficient and less than Apple's claims. This is also reflected by a J. D. Power and Associates customer satisfaction survey, which gave the "battery aspects" of the iPhone 3G its lowest rating of two out of five stars. If the battery malfunctions or dies prematurely, the phone can be returned to Apple and replaced for free while still under warranty. The warranty lasts one year from purchase and can be extended to two years with AppleCare. The battery replacement service and its pricing was not made known to buyers until the day the product was launched; it is similar to how Apple (and third parties) replace batteries for iPods. The Foundation for Taxpayer and Consumer Rights, a consumer advocate group, has sent a complaint to Apple and AT&T over the fee that consumers have to pay to have the battery replaced. Since iOS 10.2.1, Apple has instituted a policy of employing "performance management" techniques (including CPU throttling) on iPhone devices whose batteries are degraded, in order to maintain device stability and prolong their lifespan. These changes came in the wake of reported issues with unexpected shutdowns on certain iPhone models following the release of iOS 10.1.1. In response to criticism over the practice, including concerns over this being a form of planned obsolescence, Apple announced that it would offer discounted battery replacements for iPhone 6 and newer in 2018, and that it would add additional battery health information on a future version of iOS (iOS 11.3, which also allows users to disable this throttling). Camera The first-generation iPhone (2007) and iPhone 3G (2008) have a fixed-focus 2.0-megapixel camera on the back for digital photos. It has no optical zoom, flash or autofocus, and does not natively support video recording. Video recording is possible on the first-generation iPhone and iPhone 3G via a third-party app available on the App Store or through jailbreaking. iPhone OS 2.0 introduced geotagging for photos. The 2009 iPhone 3GS has a 3.2-megapixel camera with autofocus, auto white balance, and auto macro (up to 10 cm). Manufactured by OmniVision, the camera can also capture 640×480 (VGA resolution) video at 30 frames per second. The video can be cropped on the iPhone and directly uploaded to YouTube or other services. The 2010 iPhone 4 introduced a 5.0-megapixel camera (2592×1936 pixels) that can record video at 720p resolution, considered high-definition. It also has a backside-illuminated sensor that can capture pictures in low light and an LED flash that can stay lit while recording video. It is the first iPhone that can natively do high dynamic range photography. The iPhone 4 also has a second camera on the front that can take VGA photos and record SD video. Saved recordings may be synced to the host computer, attached to email, or (where supported) sent by MMS. The 2011 iPhone 4S camera can shoot 8-MP stills and 1080p video can be accessed directly from the lock screen and can be triggered using the volume-up button as a shutter trigger. The software makes use of the built-in gyroscope to artificially stabilize the image while recording video. The iPhone 5 (2012) and iPhone 4S, running iOS 6 or later, can take panoramas using the built-in camera app, and the iPhone 5 can also take still photos while recording video. The iPhone 5 camera reportedly shows purple haze when the light source is just out of frame, although Consumer Reports said it "is no more prone to purple hazing on photos shot into a bright light source than its predecessor or than several Android phones with fine cameras..." The camera on the iPhone 5 are protected by a sapphire lens cover, as are all subsequent models. In 2014, Apple consumed "one-fourth of the world’s supply of sapphire to cover the iPhone’s camera lens and fingerprint reader." The quality of the sapphire on the lens cover has since been disputed. The 2013 iPhone 5S widens the aperture to 2.2 and features True Tone Flash, which has two LED lights, white and amber, that will improve white balance in low light by separately adjusting in 1,000 combinations of brightness level. Its image sensor is now 15 percent larger (1/3") than its previous model (1/3.2") at the same resolution to increase the surface size of individual pixels, allowing them to capture more light in the same time. The iPhone 5C, however, has the same camera hardware and features as the iPhone 5. The 2014 iPhone 6 and 6 Plus include phase detection autofocus, while only the 6 Plus has Optical Image Stabilization. Both models can shoot 1080p videos at 60 frames per second, though optical image stabilization of the latter is unfunctional during video recording, making the iPhone 6s Plus of 2015 the first with optical video stabilization. With the release of iOS 8, the iPhone 4S and later models can now shoot time-lapse videos, with its capability to switch frame rates automatically as the recording increases its time. The 2015 iPhone 6S and 6S Plus are outfitted with a 12-megapixel camera, with 4K video capability at 30fps, both for the first time on iPhone. The front-facing camera is upgraded from 1.3 to 5 megapixels, though video resolution remains at 720p. Other features added are Live Photos, which captures a short video along a photo, and Retina Flash, which utilises the screen's backlight as front camera flash, though less powerful than the rear LED lamp. The first-generation iPhone SE (2016) features the same 12 MP camera found on the iPhone 6S, with the same 4K and high frame rate video capability, but its front camera only has 1.2 megapixels, like the iPhone 5 and 5s. The 2016 iPhone 7 features optical image stabilization on its rear camera, a feature that was previously exclusive to the Plus models, and the 7 Plus is the first iPhone to feature dual-lens cameras (both 12 MP). Both models have a 7 MP front-facing camera, with video resolution increased from 720p to 1080p. The second camera on the iPhone 7 Plus is a telephoto lens, which enables 2× optical zoom, allowing for the level of detail that the center crop of a 48-megapixel photo with the non-tele camera's field of view would have. The camera software allows up to 10× digital zoom. The rear cameras on the 7 and 7 Plus both have an 1.8 aperture, as compared to 2.2 on the iPhones 6 and 6 Plus, though the 7 Plus' tele camera has 2.8 and is not optically stabilized. It also has a brighter quad-LED True Tone flash The 2017 iPhone 8 camera features a larger sensor and a newer color filter. The camera can also now record 4K at 60 and 24 frames per second, slow-mo at 1080p in 240 frames per second. The new camera system also enables Portrait Lighting, which defines the light in a scene. The 2017 iPhone X additionally adds optical image stabilization to the telephoto lens, and the TrueDepth camera system introduces Portrait Mode and Portrait Lighting to the front camera. The iPhone XS and XR series have an updated 12MP (1/2.55") sensor size with a 1.4 μm pixel size. The XS series has a telephoto lens, while the lower end XR has only one lens. It also features Smart HDR, using the power of A12 Bionic chip, along with the Neural Engine, machine learning, artificial intelligence, and some advancements to provide better photos with improved dynamic range. The devices film with stereo audio instead of mono audio for the first time on iPhone, even though two opposite-sided microphones had been built in since iPhone 4. The iPhone 11 and 11 Pro series introduced an ultrawide lens; the latter two became the first triple-camera iPhones. The 11 has a dual-lens setup, lacking the telephoto lens of the 11 Pro and 11 Pro Max. The front camera is now capable of recording video at 4K as a result of a new 12 MP sensor, and can also capture slow-motion footage. The second-generation iPhone SE's camera hardware is the same as the iPhone 8, but adds Portrait mode, Portrait lighting, Smart HDR, extended dynamic range for video up to 30 fps, stereo recording and cinematic video stabilization. The iPhone 12 and 12 Pro series brought Night Mode to all camera lenses, including the TrueDepth camera. It also uses Deep Fusion in more situations, and uses Smart HDR 3. Dolby Vision HDR video recording up to 30 FPS is available for the iPhone 12 and 12 mini, and up to 60 FPS for the 12 Pro and 12 Pro Max. The 12 Pro Max also has a 47% larger sensor and sensor-shift stabilization for better low-light photos and more details. The telephoto camera can now zoom up to 2.5x on the Pro Max, albeit with a f/2.2 aperture instead of the 12 Pro's f/2.0 aperture. The iPhone 14 and 14 Pro series introduced Photonic Engine image processing technology. A "Keep Normal Photo" option accessible through the system settings allows saving HDR photos in both the high dynamic range and normal variants. SIM card GSM models of the iPhone use a SIM card to identify themselves to the GSM network. The SIM sits in a tray, which is inserted into a slot at the top of the device. The SIM tray can be ejected with a paper clip or the "SIM ejector tool" (a simple piece of die-cut sheet metal) included with the iPhone 3G and 3GS in the United States and with all models elsewhere in the world. Some iPhone models shipped with a SIM ejector tool which was fabricated from an alloy dubbed "Liquidmetal". In most countries, the iPhone is usually sold with a SIM lock, which prevents the iPhone from being used on a different mobile network. The GSM iPhone 4 features a MicroSIM card that is located in a slot on the right side of the device. The CDMA model of the iPhone 4, just the same as any other CDMA-only cell phone, does not use a SIM card or have a SIM card slot. An iPhone 4S activated on a CDMA carrier, however, does have a SIM card slot but does not rely on a SIM card for activation on that CDMA network. A CDMA-activated iPhone 4S usually has a carrier-approved roaming SIM preloaded in its SIM slot at the time of purchase that is used for roaming on certain carrier-approved international GSM networks only. The SIM slot is locked to only use the roaming SIM card provided by the CDMA carrier. In the case of Verizon, for example, one can request that the SIM slot be unlocked for international use by calling their support number and requesting an international unlock if their account has been in good standing for the past 60 days. This method only unlocks the iPhone 4S for use on international carriers. An iPhone 4S that has been unlocked in this way will reject any non-international SIM cards (AT&T Mobility or T-Mobile USA, for example). The iPhone 5 and later iPhones use nano-SIM in order to save space internally. The iPhone XS and later iPhones added eSIM support in addition to nano-SIM, therefore they support Dual SIM functionality. iPhone 14 and 14 Pro models sold in the United States do not have the SIM card slot, and instead only supports eSIM. Liquid contact indicators Pre-2016 iPhones (as well as many other devices by Apple) have a small disc at the bottom of the headphone jack that changes from white to red on contact with water (the iPhone 7 and later do not include a headphone jack); the iPhone 3G and later models also have a similar indicator at the bottom of the dock connector. Because Apple warranties do not cover water damage, employees examine the indicators before approving warranty repair or replacement. However, with the adoption of water resistance as a feature of the iPhone, this practice is no longer in use by Apple. The iPhone's indicators are more exposed than those in some mobile phones from other manufacturers, which carry them in a more protected location, such as beneath the battery behind a battery cover. These indicators can be triggered during routine use, by an owner's sweat, steam in a bathroom, and other light environmental moisture. Criticism led Apple to change its water damage policy for iPhones and similar products, allowing customers to request further internal inspection of the phone to verify if internal liquid damage sensors were triggered. Included items Modern iPhone models include a lightning to USB cable. Pre-2012 models included written documentation, and a dock connector to USB cable. The first generation and 3G iPhones also came with a cleaning cloth. The first generation iPhone includes a stereo headset (earbuds and a microphone) and a plastic dock to hold the unit upright while charging and syncing. The iPhone 3G includes a similar headset plus a SIM eject tool (the first generation model requires a paperclip). The iPhone 3GS included the SIM eject tool and a revised headset, which adds volume buttons (not functional with previous iPhone versions). The iPhone 3G and 3GS are compatible with the same dock, sold separately, but not the first generation model's dock. All versions include a USB power adapter, or "wall charger", which allows the iPhone to charge from an AC outlet. The iPhone 3G and iPhone 3GS sold in North America, Japan, Colombia, Ecuador, and Peru include an ultracompact USB power adapter. In October 2020, at the iPhone 12 virtual event, Apple announced that they will be removing the power adapter and EarPods wired headset from all iPhone packaging, citing environmental reasons. Alongside this announcement, Apple reduced the retail prices of the AC adapter and EarPods. Payments In September 2014, with the launch of the iPhone 6, Apple announced Apple Pay, a mobile payment system. The feature, aimed to "revolutionize" the way users pay, uses an NFC chip, Touch ID fingerprint scanner (Face ID on iPhone X and later), Apple's Wallet app, and a dedicated "Secure Element" chip for encrypted payment information to make purchases at participating stores, both physical and online. Taptic Engine All iPhone models have a haptic engine to vibrate when a notification or alert, incoming call, etc. iPhone models before the iPhone 4S use an eccentric rotating mass motor, with the exception of the CDMA model of the iPhone 4. The iPhone 4S and CDMA iPhone 4 use a linear resonant actuator vibrator, which usually uses less power and creates a quieter vibration. However, the iPhone 5, 5C, and 5S use an eccentric rotating mass motor. It is unknown why Apple switched back to the previous type of vibrator, however the iPhone 6 and 6 Plus resumed the ongoing use of linear resonant actuator vibrators. iPhone 6S and later use the Taptic Engine for vibration and haptic feedback, which works in a similar mechanical fashion to the linear resonant actuator vibrator in the iPhone 6 and iPhone 6 Plus, but is far more precise. External links Technical specifications (all models) at Apple Inc. References IPhone Apple Inc. hardware
My Makhzen and Me is a 2012 documentary Moroccan film directed, produced and shot by Nadir Bouhmouch. The documentary was the first of its kind in Morocco, an unprecedented and direct critique of the Moroccan Makhzen, it portrayed the struggle of the pro-democracy February 20 youth Movement and made extensive use of footage shot by activists on telephones or home video cameras showing police violence at the demonstrations held throughout 2011 and early 2012. Synopsis In the summer of 2011, Nadir Bouhmouch, a Moroccan student studying abroad returns to his home country and finds it in a state of turmoil. The uprisings in Tunisia and Egypt had spread to Morocco. Organized by a group of students called the February 20th movement, people were flooding the streets and demanding change. But the Makhzen (the ruling elite) refuses to abandon its grasp. Divided into several sections. the film investigates what initially gave birth to the revolt and the various obstacles it encounters on its struggle for democracy. The film makes use of several interviews but largely focuses on two young February 20 activists in Morocco's capital, Rabat. Production The film was produced clandestinely with no shooting permits in what director Nadir Bouhmouch calls "an act of civil disobedience" against Morocco's state film institution, the Centre Cinematographique Marocain (CCM); and what he perceives as restrictive film censorship laws. Bouhmouch worked on every aspect of the film except for music, as a result, the film cost less than US$200. Censorship The film is censored in Morocco. In one attempt to screen it at the Éttonants Voyageurs Film Festival in Rabat, the Moroccan authorities threatened to shut down the entire festival. The festival was forced to remove the film from their program. Screenings inside Morocco have been clandestine, held at worker's unions and human rights centers. References External links 2012 films 2010s Arabic-language films Documentary films about the Arab Spring Moroccan documentary films 2012 documentary films 2011–2012 Moroccan protests Films directed by Nadir Bouhmouch
Dame Frances Helen Wilde (née Kitching, born 11 November 1948) is a New Zealand politician, and former Wellington Labour member of parliament, Minister of Tourism and Mayor of Wellington. She was the first woman to serve as Mayor of Wellington. She was chairperson of the Greater Wellington Regional Council from 2007 until 2015, and since 2019 she has chaired the board of the Museum of New Zealand Te Papa Tongarewa. Early life and career Wilde was born Frances Helen Kitching on 11 November 1948 in Wellington, New Zealand. She attended St Mary's College and later at Wellington Polytechnic (gaining a diploma in journalism) and Victoria University (graduating with a degree in political science). Upon finishing her education Wilde gained employment as a journalist. In 1968, she married Geoffrey Gilbert Wilde, and the couple went on to have three children before divorcing in 1983. She joined the Labour Party in 1972 and was later the editor of the party newsletter, New Nation. She later became the chairperson of the electorate in which she resided and a member of Labour's executive council in the Wellington region. Political career Member of Parliament and Minister Wilde was a Member of Parliament for the seat, winning it from sitting National MP Ken Comber in the 1981 general election. In 1983 she was appointed as Labour's spokesperson for State Services by Labour leader David Lange. Wilde retained the seat at the subsequent 1984 general election. She was Labour's junior Parliamentary Whip from 1984 to 1987. In 1985, Wilde moved what became the Homosexual Law Reform Act 1986, which legalised homosexual acts in New Zealand between consenting men. The 16-month debate about the bill polarised the country, and sparked violent demonstrations and angry rallies at Parliament. Her other main legislative achievement in Parliament was an Adoption Reform Act, which made it possible for adopted people and their birth-parents to contact each other. From 1987 Wilde served as an Associate Minister outside Cabinet in the Foreign Affairs, Housing, Conservation and Pacific Island Affairs portfolios and Minister for Disarmament and Arms Control in the second term of the Fourth Labour Government. When Geoffrey Palmer became Prime Minister, Wilde was promoted into Cabinet and appointed Minister of Tourism alongside her continuing roles as Minister for Disarmament and Arms Control and Associate Minister of External Affairs and Trade. Between 1990 and 1992, in opposition, she was Labour's spokesperson for Tourism, Disarmament and Ethnic Affairs. Mayor of Wellington In 1992 she resigned from Parliament to stand for Mayor of Wellington. Her seat was retained by Labour, with Chris Laidlaw winning the 1992 by-election caused by Wilde's resignation. She won the Mayoralty, and remained in office until 1995 when she chose to retire. During her time as Mayor, Wilde worked to improve Wellington's image and continuing on from the city's strong anti-nuclear sentiments she declared Wellington a Peace Capital in 1993. Wilde also spearheaded initiatives like the planning and construction of the WestpacTrust Stadium which features an elevated accessway to its entrance known as the "Fran Wilde Walk" which was opened in June 2005. After leaving the mayoralty Wilde was appointed the chair of the Housing New Zealand board and, from 1997 to 2003, chief executive of Trade New Zealand. Greater Wellington Regional Council Wilde returned to local politics in 2004, successfully contesting a seat on the Wellington Regional Council. It had been suggested that she would retire after a single term; however, Wilde was re-elected to the Regional Council in 2007 and was elected, by her fellow councillors, the chair of the council on 30 October that year. She was returned as both a councillor and the chair in 2010 and 2013. Wilde was a strong proponent of the super city proposal for Wellington. When the Local Government Commission rejected the proposal, Wilde received a letter signed by nine of her fellow councillors asking her to stand down as chair. Wilde stepped down from the chair's position from 30 June 2015, but remained a regional councillor. She was succeeded as chair by Chris Laidlaw and did not stand for re-election in 2016. District Health Board Wilde contested and was elected to the Capital and Coast District Health Board in 2016 and was appointed the deputy chair of the board. Wilde did not seek re-election in 2019. Career after politics Following her departure from the Regional Council, Wilde was appointed as the Chair of the Remuneration Authority. She has also served as the deputy chair and acting chair of the NZ Transport Agency. Wilde was appointed to the board of the Museum of New Zealand Te Papa Tongarewa in 2015. She became the board's deputy chair in January 2019, and has been its chair since 1 July 2019. Wilde is on the board of Kiwi Can Do, an organisation which helps unemployed New Zealanders get back into work. Honours In 1993, Wilde was awarded the New Zealand Suffrage Centennial Medal. Wilde was appointed a Companion of the Queen's Service Order for public services in the 1996 New Year Honours; a Companion of the New Zealand Order of Merit in the 2012 New Year Honours for services to local-body affairs and the community; and a Dame Companion of the New Zealand Order of Merit in 2017 for services to the State and the community. Family She has three adult children from her first marriage to Geoffrey Wilde. Her husband Christopher Kelly, a former veterinary surgeon, was CEO of Landcorp. See also LGBT rights in New Zealand Notes References External links Fran Wilde, left, in 1987 (photo) GayNZ.com article on Fran Wilde 1948 births Living people Mayors of Wellington New Zealand Labour Party MPs Members of the New Zealand House of Representatives New Zealand MPs for Wellington electorates Women mayors of places in New Zealand Wellington regional councillors Women members of the New Zealand House of Representatives Dames Companion of the New Zealand Order of Merit Companions of the Queen's Service Order New Zealand Women of Influence Award recipients Recipients of the New Zealand Suffrage Centennial Medal 1993 People educated at St Mary's College, Wellington People associated with the Museum of New Zealand Te Papa Tongarewa Capital and Coast District Health Board members
Jane R. Hammond (born 1950) is an American artist who lives and works in New York City. She was influenced by the late composer John Cage. She collaborated with the poet John Ashbery, making 62 paintings based on titles suggested by Ashbery; she also collaborated with the poet Raphael Rubinstein. Background "Language has always been important to Hammond, who was the editor of her high school literary magazine" and studied poetry and biology at Mount Holyoke College before earning her BA in art in 1972. After studying ceramics at Arizona State University, she received her MFA in sculpture from the University of Wisconsin, Madison. In 1977, she moved to New York and began compiling images from instructional or scientific manuals, children's books, books on puppetry and magic, as well as charts on alchemy, animals, religion, and phrenology. From this collection, she culled 276 images that functioned as her image bank for subject matter. Early career In 1989, Hammond received her first one-person exhibition at the New York alternative space, Exit Art. Since then Hammond has exhibited in Spain, Sweden, Italy, and the Netherlands. In 1989, Hammond was invited by Bill Goldston to print at ULAE. After experimenting with monoprints, she turned to a combination of lithography, silkscreen, intaglio, and collage to achieve the complex layering of her trademark images. In 1993, the Cincinnati Art Museum organized her first museum exhibition. In June 1993, Hammond asked Ashbery to recommend titles for future paintings. A week later he faxed her 44 titles. By December 1994, she had employed 13 of the titles, "reusing one four times and another twice." In 1994, several of their collaborative paintings were exhibited at Jose Freire Fine Art, New York City, New York; The Freedman Gallery, Albright College, Reading, Pennsylvania and the Orlando Museum of Art, Orlando, Florida. Contemporary work In 2003, Hammond became the first woman to create the poster for the French Open tennis tournament; her poster became the cover of Tennis Week magazine. Primarily a painter, Hammond also works with photographs and makes prints. She made prints at Universal Limited Art Editions and at Shark's Ink. According to a 2002 article in the New York Times, “Ms. Hammond [aims] to make paintings 'as complicated, inconsistent, varied, multifaceted as you are, as I am, as life is.... I think my work deals very directly with the time that we live in,' Ms. Hammond said. 'There's a surfeit of information, increasingly bodiless because of the computer, and I bring to this an interest in how meaning is constructed'.... The best metaphor for the method behind her rollicking, erudite, street-smart, angst-ridden, encyclopedic paintings is writing." The Times spoke of Hammond's "predilection for systems. For decades it has been her practice to limit all her paintings to mix-and-match selections from a total of 276 found images." Since this article was written, Hammond has moved in new directions; she no longer limits her painting to a body of found images. Many of her works are based on dreams, such as a recent series of works in which butterflies are laid over maps of various countries. She explains her approach to painting thus: Painting is a cross between high philosophy and cement work. My biggest way of relating to this concept of time and labor is that it is an entry point for reaching the unconscious. The layers of paint have more to do with duration than texture. I see it as a function of time, like the idea of chanting. Certain things can begin to happen because you're with the painting for long periods of time. Hammond's work "Fallen" is an installation acquired by the Whitney Museum of American Art in 2006. The artist has added to the work over many years. Each leaf carries name of a U.S. soldier killed in Iraq. It was exhibited at the FLAG Art Foundation in 2011 and contained 4455 leaves when the exhibited began. “Jane Hammond: Paper Work” an exhibition which contained all manner of works on paper from 1989 through 2006 traveled with presentations at the Tucson Museum of Art; the Chazen Museum of Art, Madison, WI (formerly the Elvehjem Museum); the Arkansas Arts Center, Little Rock, AR; the Herbert F. Johnson Museum, Cornell University, Ithaca, NY; the Achenbach Foundation at the DeYoung Museum, San Francisco, CA and the Detroit Institute of Art, Detroit, MI. The show was accompanied by a fully illustrated catalogue published by Penn State Press and the Mt. Holyoke College Museum, containing essays by Faye Hirsch and Nancy Princenthal and an interview with the artist by Douglas Dreishspoon. The exhibition was organized and first presented by the Mt. Holyoke College Museum of Art (2006). On August 11, 2007, Hammond's painting "All Souls (Piedras Negras)" sold for $75,000 at an auction at the Anderson Ranch Arts Center in Colorado. In 2015 Hammond spoke on a panel about drawing at the CAA conference with artists Hollis Hammonds, Richard Moninski and Elise Engler. She is a Governor for Skowhegan School of Painting and Sculpture where she was a resident in 1997 and faculty in 2005. In 2019 Hammond was awarded a Guggenheim Fellowship. Hammond's work is in the collection of the Art Institute of Chicago, the Boise Art Museum, the Metropolitan Museum of Art, the Museum of Modern Art, the National Gallery of Art, and the Whitney Museum of American Art. References External links Jane Hammond: Creating Collaged Monoprints at Pace Paper video 1950 births American women painters American printmakers American contemporary painters Living people Modern printmakers Mount Holyoke College alumni Painters from New York (state) American women printmakers 20th-century American painters 20th-century American women artists 21st-century American painters 21st-century American women artists
KJCM (100.3 FM) is a radio station licensed to Snyder, Oklahoma, United States. The station broadcasts a sports format and is currently owned by Fuchs Radio L.L.C. Translators Previous logo References External links JCM
This is a list of people from Coventry, a city in the West Midlands region of England. The list is arranged alphabetically by surname. C Aimee Challenor (born 1997), politician and transgender activist D Delia Derbyshire (1937-2001), composer of electronic music, creator of the theme music to Doctor Who G Frederick Gibberd (1908–1984), English architect, town planner and landscape designer. Bobby Gould (born 1946), English former footballer and manager H Vince Hill (born 1934), English traditional pop music singer and songwriter J JAY1 (born 1998), British rapper and Songwriter I Frank Ifield (born 1937), English-Australian country music singer and guitarist K Richard Keys (born 1957), English sports presenter L Philip Larkin (1922–1985), English poet, novelist, and librarian M Reg Matthews (1933–2001), English football goalkeeper Brian Mitchell (born 1967), Australian politician O Clive Owen (born 1964), actor P Henry Parkes (1815-1896), statesman and founder of modern Australia W Kevin Warwick (born 1954), cybernetics scientist Pete Waterman (born 1947), English record producer, songwriter, radio and club DJ and television presenter Frank Whittle (1907-1996), inventor of the jet engine References Coventry
Ultimate Fantastic Four is a superhero comic book series published by Marvel Comics. The series is a modernized re-imagining of Marvel's long-running Fantastic Four comic book franchise as part of the Ultimate Marvel imprint. The Ultimate Fantastic Four team exists alongside other revamped Marvel characters in Ultimate Marvel titles including Ultimate Spider-Man, Ultimate X-Men, and The Ultimates. While the characters remain relatively faithful to their original Marvel Universe conception, they differ in a number of notable aspects. The origin story of the team is modified and modernized and the team is much younger, being in their late teens to mid-20s. The series revolves around the adventures of teen genius: Reed Richards, his childhood friend: Ben Grimm, and siblings: Susan and Johnny Storm, who get engulfed in a malfunctioned teleporter experiment and begin to develop super-powers: Reed can stretch his body to impossible lengths, Susan can project force fields and turn invisible, Johnny develops pyrokinetic super-powers and Ben is transformed into a rocky-skinned figure with super-human strength and durability. The series takes place in contemporary New York City and was met with mostly favorable responses from readers and critics, with the fresh, unique and modernized re-imagining of the classic Fantastic Four mythos, the artwork and the writing runs of Millar, Bendis and Ellis, being points of praise, while criticism was aimed at the perceived decline in quality of the writing, as the series progressed. The title was created by Brian Michael Bendis, Mark Millar and Adam Kubert. The series debuted in early 2004 and had a monthly publishing schedule. Issue #60, the last of the series, was written by Joe Pokaski and drawn by Tyler Kirkham and was followed by a series epilogue in Ultimate Fantastic Four: Requiem. Publication history Ultimate Fantastic Four was the fifth continuing series of the Ultimate Marvel series, after Ultimate Spider-Man, Ultimate X-Men and The Ultimates and Ultimate Marvel Team-Up. The first writers assigned by project leader Bill Jemas were Mark Millar (The Ultimates, Ultimate X-Men) and Brian Michael Bendis (Ultimate Spider-Man, Ultimate X-Men), who had both previously written comics in the Ultimate Marvel universe. Grant Morrison was involved in conceptualizing Ultimate Fantastic Four and was at one point set to write the series. However, they departed from Marvel for an exclusivity contract with DC Comics before this could be finalized. Bryan Hitch designed the costumes for the characters, thus explaining their aesthetic resemblance to the costumes worn by the protagonists of The Ultimates. In the Ultimate Fantastic Four Vol. 1 hardcover edition, Millar and Bendis write about the somewhat odd circumstances of their collaboration. Foremost, virtual communication was the only method available as Millar lives in Glasgow, Scotland, and Bendis in Portland, Oregon. Secondly, they both had considerably different writing styles, as Millar's stories are typically fast-paced and widescreen, while Bendis' output is more dialogue-heavy and slow-paced and both writers feared it could wreck the project. It was agreed that Millar would write the plot and Bendis finalized the scripts based on his plots. Millar completely rewrote the origin for the protagonists because he was not satisfied with the original 1961 story, in which the four team members steal a space craft to beat the Soviets to the moon. In their version, Millar and Bendis wrote a story in which Reed Richards is a child prodigy, protected by his burly friend Ben Grimm from bullies, who had invented a method of teleportation in his youth. He is discovered by government official Willie Lumpkin, and subsequently recruited into a think tank/school located in the upper floors of the Baxter building. There he meets Professor Storm, who leads the project, and his children, bioengineer Susan Storm and her younger brother Johnny. Reed also becomes the rival of Victor Van Damme, a fellow student. When Reed turns 21, he plans to teleport an apple into a parallel universe (the "N-Zone"), but Van Damme claims Reed's calculations are wrong and changes the setup at the last minute. The five students are teleported through the N-Zone, and when they rematerialize, they return heavily mutated. After the Fantastic Four return to the Baxter building, they face their first opponent, Mole Man. Although staying relatively true to the original stories, Millar's storylines and writing deviated from the original source material in notable ways, almost bypassing the original works by Stan Lee and Jack Kirby. Most notable were changes to the characters' personality and backgrounds. The character of Reed Richards, in the mainstream Marvel Comics super-intelligent and a true leader, had his previous role split, with Professor Storm taking his leader traits, while the 21-year-old idealist Reed retains his super-intelligence. Reed no longer automatically assumes leadership of the team in demanding situations, a role more often filled by Sue Storm. She was little more than a damsel in distress in the early comics, but in this version, she is the most head-strong and assertive member of the team, and has a gift for biochemistry and bioengineering. Ben Grimm, no longer Reed's college friend but his grade-school friend, is not as intelligent and has to have science explained to him, providing an opportunity for plot dumps. In the end, both writers were satisfied with the results. Millar and Bendis stated that they had many more ideas, but massive scheduling problems forced them out. Instead, they persuaded Warren Ellis to continue the series. Ellis wrote the next arc, "Doom", centering on Victor Van Damme. He made Van Damme a descendant of Dracula, a boy whose childhood ended when he was 10, formed by his severe, authoritarian father. Ellis also fleshed out the hard science fiction element behind the FF, namely writing that they gained their powers because the teleportation changed their "phase space condition" into something from an alternate universe; in laymen's terms, there are multiple conceivable states of an object, a 'phase space' of all the possible ways they could be. While in the N-Zone, each one of them mutated into another form that they could have been. It was also explained that Reed's body functions because his cells were replaced with "pliable bacterial stacks", single cells which duplicate most of the larger functions of the human body and does not rip or tear when he extends. The next arc "N-Zone" has the four traveling on the spaceship Awesome (a name of Johnny's choice) to the dimension where they got their powers. They encounter an alien named Nihil whose dimension has only a few hundred thousand years left before succumbing to an entropic heat death, and wishes to escape from his world to ours. In "Think Tank" the team meet Rhona Burchill (a re-imagined Mad Thinker), who captures them and attempts to sell them to the highest bidder. In Ultimate Fantastic Four Annual #1, they meet Crystal of the Inhumans, and as a result of trespassing on their home destroy it, forcing the Inhumans to move to a new one. "Crossover" has them encountering zombie infected versions of themselves and every other hero of that world. With the help of that world's Magneto the Fantastic Four manage to escape with the few survivors. "Tomb of Namor" has the Four encountering Atlantian criminal Namor who only leaves when he gets a kiss from Susan Storm. In "Super-Skrull" Reed Richards goes back in time to the teleportation accident to ensure it does not go wrong. There is dispute amongst the team whether this is the right course of action. However, after a cruel prank played by Johnny Storm on Ben Grimm, the team realize just how depressed Ben is being trapped inside 'The Thing'. Reed goes back and makes the experiment a success. This alters the time-line so that everyone on the planet except Ben has superpowers thanks to the Skrull pill given to them by the Skrulls and the leader Super-Skrull. The Skrulls however have tricked humanity and the still-human Ben Grimm is their last hope. In "Frightful", Johnny is infected with an illness only Doctor Doom can cure; it also features the escape of the Frightful Four. In "God War", alien terrorists attack Reed, who is looking for a seed while also facing a powerful enemy. The next arc "Devils" introduces Diablo who kidnaps those close to the four as bait; he intends to get immortality by using Reed's sister as a power source. Ultimate Fantastic Four, along with Ultimate X-Men was canceled after the events of the 2008 – 2009 Ultimatum miniseries. The members of the team are the focus of Ultimate Comics: Doomsday. Ultimate FF A new volume dubbed Ultimate FF (with "FF" standing for "Future Foundation", not "Fantastic Four") was launched in April 2014, starring Invisible Woman, Iron Man, the Falcon, Machine Man, Phil Coulson, and Victor van Damme. The title was written by Joshua Hale Fialkov and Stuart Moore, with art by Mario Guevara, Tom Grummett and André Araújo. In August 2014 with the release of issue 6, Ultimate FF was officially cancelled. Team roster Reed Richards / Mister Fantastic / Maker Reed is a child genius who displayed his curiosity from the day he was born. At the age of 11, following a demonstration of his research on the field of teleportation at a school science fair, Reed was recruited for a government program which sponsors young geniuses' research. He continued his research at the government research facility located in Manhattan's Baxter Building. At the age of 21, his research was realized as he and several others attempted to teleport organic material through an alternate plane of existence called the N-Zone. The experiment went awry giving Reed and several others superpowers. His powers enable him to stretch his body parts to incredible lengths and endow him with enhanced durability. Reed's powers have been increased in comparison to that of his Earth-616 counterpart. He no longer needs to eat nor sleep, and has no internal organs or bones. He can stretch his eyes, specifically the lens so that he does not need his glasses or any other visual augmentation but can only sustain this for short periods. Sue's mother revealed that she knows that Reed's abilities allow him to stretch his brain in order to accommodate and solve almost any problem thus making him effectively a human computer. While Threshold calls him a 'warrior without equal' in "God War" this almost certainly refers to his success in discovering a way to defeat an undefeatable foe (Ultimate Ronan) as opposed to actual battlefield prowess. Sue lauds his expertise in physics. After Ultimatum, Reed left the Baxter Building and returned home much to the chagrin of his father. In Ultimate Enemy #1, the Richards' house was bombed by an unknown individual. Reed Richards is presumed to be dead. In Ultimate X-Men/Fantastic Four Annual #1, a young Franklin Richards is part of a future team of X-Men. It is also revealed that in all of the possible futures, Franklin is Reed and Sue's son. In Ultimate Mystery #3, Reed Richards is revealed to be alive and is seen aiding or leading the aliens to pillage the artifacts stored at Project Pegasus. As the story unfolds, it becomes clear that Reed Richards' world view has changed, and he has become something more like an Ultimate Kang the Conqueror. Later he assembles part of the Infinity Gauntlet. Susan Storm / Invisible Woman The eldest child of renowned scientist Franklin Storm, Sue Storm inherited her father's genius at an early age. Since early childhood, she has been one of the prodigies studying and working at the Baxter Building, a midtown Manhattan government research lab. Following her father into physics, at age eight she built a sugar-power rocket and accidentally destroyed her father's car, after which she changed her focus to "inner space" biology. Romancing brilliant Baxter Building classmate Reed Richards, Sue became a formidable scientist in her own right, earning four doctorates in bio-chemical sciences. Attending the Nevada desert testing of Reed's N-Zone dimensional teleporter, Sue was transported a mere three miles (5 km) into the desert by the device's malfunction. She was discovered by former Baxter Building instructor Dr. Arthur Molekevic, who took her to his underground facilities below Manhattan, calmed her, and helped her gain control of her new abilities, while he sent a "monster" to the Baxter Building to retrieve three who had been transformed by the N-Zone experiment. In the company of those three, Susan fled Molekevic and used her invisible protective force field to take them back to the surface. Making the study of herself and her three partners her new life's work, Sue spent months investigating their abilities and charting their powers while improving her own understanding of herself. She has deduced the nature of both Reed and Johnny's changes, though her own powers remain unexplained and she is unable to penetrate Ben's skin to determine any more detail than his internal fluid pressure. Sue continues to develop her control of her force fields, using them to create pressurized environments at the bottom of the sea, plugging her own throat to prevent swallowing poison gas, and creating "cushions" to catch falling people and objects. Damage to her force fields also causes her mental strain or, in extreme cases (Ultimate Power #5), to black out. Susan has proven capable of standing her own, and after the team went public, she assumed the codename "Invisible Woman." Her force fields have been the Four's ace in the hole, saving their lives when Nihil dumped Reed and Ben into the near-vacuum of the N-Zone and single-handedly stopping the time-traveling Chrono-Bandits. She co-created the chrono-tunnel with Reed, and has conducted biological studies of the Kree alien Mahr Vehl and extra-dimensional life in the N-Zone. Though her newfound fame has brought her unsought attention from the likes of billionaire playboy Tony Stark and the Atlantian criminal Namor, she remains romantically attached to Reed despite her concerns about his over devotion to science. As it was shown in Ultimate Secret #2, she's also more sexually forward than her original counterpart. Sue has the power to render herself and others invisible to the naked eye. She also has the power to generate nearly impenetrable invisible force fields. Sue can manipulate her force fields in a variety of ways, including levitating herself and others, firing destructive force-blasts, and causing objects to explode by projecting and expanding force fields inside them. Benjamin Grimm / Thing Gifted physically as a youth, Ben Grimm is Reed's best "and only" friend. When they were in school together, Ben would protect Reed from various bullies, including ones "three years younger", and in exchange Reed would help Ben with his math homework. Ben moved on to college and was invited to watch Reed's teleportation experiment. Grimm woke up as the Thing in Mexico City. The teleportation through the N-Zone gave him an orange rocky hide which boosts his strength and makes him nigh-invulnerable to physical damage and physiologically stressful conditions (such as a toxic breathing environment), and he no longer feels differences in temperature. Despite Ben's seeming happy-go-lucky disposition, the transformation has caused deep psychological trauma. In the "Diablo" arc, he is briefly transformed to blue. At the end of Ultimate Doomsday, Sue proposes to him and he accepts. After Ultimatum and the dissolution of the Fantastic Four, Ben approached General Ross and asked to enlist in the Air Force. In Ultimate Enemy #1, he returns to the Baxter Building to see Sue, and confesses that he is in love with her. Ben never acted on it because of Reed. Ben also developed the ability to turn into a purple-skinned glowing form and back again at will. Johnny Storm / Human Torch Susan Storm's younger brother is a short-tempered teen, who is enamored with good-looking girls and has a rock-star attitude. The obvious "cool factor" of his powers only serves to heighten these personality traits: Johnny's powers engulf him in flames that enable him to fly and shoot fiery projectiles. This power sometimes has detrimental effects on his body, as Johnny burns, or more accurately fuses, his own body-fat to provide his 'fuel', and every so often, he "hibernates" and sheds off the skin cells that protect him from his own flames, growing new ones. Regardless, he finds the idea of being a real superhero incredibly exciting and firmly intends to sign up with The Ultimates once he is old enough, rather than continue hanging around the Baxter Building with the nerds and geeks. He is indeed a high school dropout and a Spider-Man fan (he makes a guest appearance in the "Superstars" arc). After witnessing his father die in the Ultimatum wave, Johnny has a breakdown at the Statue of Liberty and was captured by the demon Dormammu. Sue and Ben save him, and after Franklin Storm's funeral he leaves for Europe. In Ultimate Comics: Spider-Man #1, Johnny shows up on Peter Parker's doorstep, and Aunt May chooses to let him stay with them. Team history Up until the middle of the series' second year, the team did not use the above code names, nor were they referred to as The Fantastic Four. The lack of code names was a frequent source of humor for then writer Warren Ellis, who frequently had Sue, Ben and especially Johnny give themselves outlandish names like "Invisible Ninja-Girl", "Asbestos Thing", and "Human Dashboard Lighter". In the Ultimate Spider-Man "Superstars" arc and the Ultimate Spider-Man game, Johnny was referred as Human Torch and in the game, the team was the "world-famous" Fantastic Four. The events of the "N-Zone" arc required that the military fashion a public image for the four. The "Crossover" story arc began in medias res, with the four already a public team known as The Fantastic Four, each of them possessing codenames identical to their 616 counterparts. Their jumpsuits remain largely unchanged, save for the added '4' insignia. Villains Rhona Burchill: Rhona was a genius from birth, displaying an incredible intellect but severe mental problems. While being extremely bright, she would always cause trouble at any school she went to. Rhona was tested as an applicant for the Baxter Building's young think-tank, but did not pass the test primarily due to her troubled psych profile. Reed Richards was welcomed in her place. Desiring to prove her worth, Rhona accelerated her brain's processing speed to 600% beyond the normal, and she also surgically attached her brother's brain matter to her own to increase her own brain's capacity. The experiment horribly deformed Rhona's appearance (this deformity was absent in Ultimate X4). She is the Ultimate Universe's Mad Thinker, as evidenced by her declaration that, "if it is mad to think the unthinkable, then I'm the maddest thinker there ever was". She has also constructed her own version of The Awesome Android which appeared when she later stole Cerebro in order to improve her own intellect, but was defeated by a coalition of X-Men and Fantastic Four members. She is presumed dead after her vehicle exploded while trying to flee the scene. Diablo: An evil alchemist who kidnaps the Fantastic Four's friends and family to lure the Four into the past so that he may use their elemental powers to make himself immortal. Victor van Damme / Doctor Doom: Victor van Damme was also a member of the youth research project that recruited Reed and Susan, and sees science as an art as opposed to Reed's view of it as a system. Van Damme is a descendant of Vlad Tepes, better known as Dracula, ruler of Wallachia during the fifteenth century. As such, van Damme is a member of European aristocracy and since his youth has also been a member of a secret society bent on achieving covert world domination. Van Damme saw the project as a means of achieving personal power. Notably, van Damme in this continuity is no longer the 'Marvel-wide threat' that he is in the normal continuity (that role instead went to Magneto). Van Damme worked with Richards on his device to teleport organic matter to the N-Zone. But on the day of the teleporter's full-scale test, van Damme, arrogantly believing Reed's coordinates were incorrect, reprogrammed the coordinates of the device. Either way the experiment resulted in the accident that created the Fantastic Four. Van Damme was also affected by the experiment: Most of his body was transformed into metal, his legs were reshaped into cloven hooves and his internal organs were converted into a toxic substance. Soon afterward, he returned to Latveria and led it from poverty to prosperity, changing his name to Doctor Doom. He proceeded to invest in the exploration of Atlantis, gleaning many spells and superior technology from it. He used one such spell to plant a world-threatening parasite in Johnny Storm, in order to force Reed Richards to ask Doom for help, at which point he used another spell to swap minds with Reed. His body was eventually possessed by the parasite. Doom reversed the mind-swap, and went through a portal to the Zombie universe, instead of allowing Reed to sacrifice himself to save the world. Later appearances had Doom resembling his Earth-616 counterpart in appearance. Frightful Four: Hailing from the Marvel Zombies universe, the undead version of the Fantastic Four transported themselves into the Ultimate universe by tricking Ultimate Reed Richards into opening a dimensional portal. The Zombie Earth had run out of people to eat, and the zombified Fantastic Four were desperate for more. They were captured upon their arrival by their Ultimate counterparts The Thing, Human Torch, and Invisible Woman. The zombies' only goal is to spread the infection of the "super-virus" they carry onto the heroes of the Ultimate universe, the only obstacle being their confinement within a reinforced holding cell in the Baxter Building. They eventually escaped, but were swiftly quarantined within the top forty levels of the building. They used a lab to reconfigure a portal to the Zombie universe in order to receive the assistance they needed to break through the shields around the Baxter Building. Ultimate Reed, in Doctor Doom's body, attacked them all. The zombie Human Torch was covered in Doom's concrete-like vomit, the Thing's arms were ripped off, and the Invisible Woman and Mister Fantastic were both defeated with one spell apiece. The Four were thrown through the portal back into the Zombie Universe. Gallowglass: The son of Thanos. A powerful warrior made from neutron-degenerate matter, a type of material found in the hearts of suns. This makes him incredibly strong and dense and, when he lowers his personal force field, it is 'spectacularly explosive'. He is seemingly killed by Susan Storm when she makes her force-field touch his, dissolving them both, causing Gallowglass to explode. Dr. Arthur Molekevic / Mole Man: Dr. Molekevic was performing forbidden experiments when he was expelled from the Baxter Building. It is suggested those experiments involve the creation of artificial sentient life forms from plant tissue. Molekevic was revealed to be schizophrenic, hearing voices in his head that he refers to as "they". After he was expelled, Molekevic disappeared into an underground realm where he established himself as the ruler. The name "Mole Man" is a name the students at the think tank would tease him with, due to his skin problems. At the end of his first encounter with the Fantastic Four he fell into a deep pit and was not seen again until his appearance in Ultimate Fantastic Four Annual #2. Namor: Namor was a mutant member of the Atlantean empire, but was imprisoned for unknown reasons. Unlike his Earth-616 counterpart, he is an outright villain rather than an anti-hero. In their first encounter, the Fantastic Four misinterpret the writing on his prison, mistaking it for a tomb, and that he is a prince and not a criminal. They release him, and after a short battle in which he defeats Johnny, and Ben knocks him out, the Fantastic Four take him back to the Baxter Building. He has romantic desires for Sue like his 616 counterpart, but becomes violent when she rejects his advances. His powers include super strength, flight, teleporting, summoning water elementals and the ability to survive underwater. He is extremely arrogant, and is referred to by Reed Richards as "possibly the most powerful metahuman on Earth". His extreme intelligence allows him to become fluent in English in a matter of minutes merely by listening to S.H.I.E.L.D. agents and the Fantastic Four talking. Nihil: Nihil is the transliterated name of the magistrate of a small alien community from within the N-Zone. The N-Zone is a universe in a state of slow entropic heat death, and Nihil's community consists of aliens who have gathered their spacecraft close to a dying sun for warmth. Nihil's unidentified species is apparently long-lived and he is, as such, frustrated that his universe will die long before he will reach the limits of his life expectancy. He wants to flee the dying N-Zone and claim the young new universe that Reed and his friends hail from. He follows the Fantastic Four to Earth, but is killed while attempting to dislodge a plasma gun from his mouth. He is the Ultimate Universe's Annihilus. Super-Skrull: The Skrull leader whose "anti-assassination suit" gives him the ability to mimic powers of anyone within a radius. His Skrull pills can give anyone superpowers, but they have a lethal side effect when activated. It is implied the Skrulls have conquered many worlds using the same Skrull pill. He is defeated by a non-superpowered Ben Grimm when he is the only human left on Earth but as he does not have any superpowers, the Super Skrull cannot mimic them. Out of his suit, he is seen as very fragile and begs Ben not to leave him as he will surely die in Earth's atmosphere without his suit. He says that he is over a billion years old. Thanos: The ruler of the Acheron Empire. He seems to be very powerful and rules thousands of worlds with an iron fist. He desires the creation of a Cosmic Cube so that he can erase the will of any who would oppose him. To this end, he has sought out Reed Richards, believing that Richards is capable of constructing the object. Appearances Ultimate Fantastic Four #1–60, Annual #1–2 Ultimate Galactus Trilogy Ultimate X4 #1–2 Ultimate Power Ultimate Fantastic Four/X-Men Annual Ultimate X-Men/Fantastic Four Annual Ultimate Fantastic Four Requiem Ultimate Doomsday Trilogy Ultimate Comics Ultimates Collected editions Ultimate Fantastic Four has been collected in the following trade paperbacks: Ultimate Fantastic Four also has been collected in the following oversized hardcovers: In other media Film The 2015 film Fantastic Four was loosely based on Ultimate Fantastic Four. Video games The Ultimate version of Human Torch appears in all versions of Ultimate Spider-Man except for Game Boy Advance. The Ultimate costumes of the Fantastic Four appear in Marvel: Ultimate Alliance and its sequel as well. Ultimate costume of Doctor Doom also appears in the first game. The Ultimate costumes of the Fantastic Four appear in Rise of the Silver Surfer. See also List of Ultimate Fantastic Four story arcs References External links Ultimate Fantastic Four comics on Marvel.com 2004 comics debuts Fantastic Four Marvel Comics superhero teams Characters created by Mark Millar Characters created by Brian Michael Bendis Comics by Brian Michael Bendis Comics by Mark Millar Comics by Mike Carey (writer) Comics set in New York City Ultimate Marvel characters Ultimate Marvel titles
Oruj Qeshlaq-e Hajj Almas Khan (, also Romanized as Orūj Qeshlāq-e Ḩājj Almās Khān) is a village in Qeshlaq-e Shomali Rural District, in the Central District of Parsabad County, Ardabil Province, Iran. At the 2006 census, its population was 102, in 21 families. References Towns and villages in Parsabad County
Carl M. Johnson (born September 12, 1933) was an American farmer, businessman, and politician. Johnson lived in St. Peter, Nicollet County, Minnesota with his wife and family and was a businessman and farmer. Johnson went to Gaylord High School in Gaylord, Minnesota. He served in the United States Army during the Korean War. Johnson received his bachelor's degree in history and industrial arts from Minnesota State University, Mankato. Johnson served in the Minnesota House of Representatives from 1967 to 1982 and was a Democrat. References 1933 births Living people People from St. Peter, Minnesota Businesspeople from Minnesota Farmers from Minnesota Military personnel from Minnesota Minnesota State University, Mankato alumni Democratic Party members of the Minnesota House of Representatives
Mojisoluwa O Akinfenwa (1930 – 10 October 2019) was a Nigerian politician who was elected Senator for the Osun East constituency of Osun State, Nigeria at the start of the Nigerian Fourth Republic, running on the Alliance for Democracy (AD) platform. He took office on 29 May 1999. Upon his arrival at the Senate in June 1999, he was appointed to committees on Selection, Senate Services, Solid Minerals, Banking & Currency and Education. Biography In December 2003 Alhaji Ahmed Abdulkadir, outgoing national chairman of Alliance for Democracy party wrote to the Independent National Electoral Commission (INEC) naming Akinfenwa as the new national chairman. The party had split into two rival factions, with the other led by Chief Bisi Akande. In February 2004 the INEC summoned a meeting of AD leaders that excluded the two rival chairmen in an effort to resolve the situation. Continued efforts to resolve the split were ineffective. The Yoruba socio-political organisation, Afenifere, threw its weight behind Akinfenwa, a move criticized at a meeting of former AD Governors of South-West states in August 2004. In a February 2006 interview Akinfenwa continued to insist that he was the AD chairman, not Akande. References 1930 births 2019 deaths Members of the Senate (Nigeria) Yoruba politicians People from Osun State Alliance for Democracy (Nigeria) politicians 20th-century Nigerian politicians 21st-century Nigerian politicians
Nong Muang (, ) is a district (amphoe) in the northern part of Lopburi province, central Thailand. History Following a suggestion issued in 1989, six tambons were separated from Khok Samrong district to form the new minor district (king amphoe) Nong Muang on 1 April 1990. The minor district was upgraded to full district status on 5 December 1996. Geography Neighboring districts are (from the northeast clockwise) Khok Charoen, Sa Bot, Khok Samrong, Ban Mi, and the districts Takhli, Tak Fa and Phaisali of Nakhon Sawan province. Administration The district is divided into six sub-districts (tambons), which are further subdivided into 67 villages (mubans). Nong Muang itself has township (thesaban tambon) status and covers part of the tambon Nong Muang. There are six tambon administrative organizations (TAO). References External links amphoe.com Nong Muang
Harpalus glasunovi is a species of ground beetle in the subfamily Harpalinae. It was described by Kataev in 1987. References glasunovi Beetles described in 1987
Azzano may refer to places in Italy. Municipalities (comuni) Azzano d'Asti, in the Province of Asti Azzano Decimo, in the Province of Pordenone Azzano Mella, in the Province of Brescia Azzano San Paolo, in the Province of Bergamo Castel d'Azzano, in the Province of Verona Civil parishes (frazioni) Azzano (Mezzegra), in the municipality of Mezzegra (Province of Como) Azzano (Premariacco), in the municipality of Premariacco (Province of Udine) Azzano (Spoleto), in the municipality of Spoleto (Province of Perugia) Azzano (Seravezza), in the municipality of Seravezza (Province of Lucca)
Indole-3-pyruvate monooxygenase (, YUC2 (gene), spi1 (gene)) is an enzyme with systematic name indole-3-pyruvate,NADPH:oxygen oxidoreductase (1-hydroxylating, decarboxylating). This enzyme catalyses the following chemical reaction (indol-3-yl)pyruvate + NADPH + H+ + O2 (indol-3-yl)acetate + NADP+ + H2O + CO2 Indole-3-pyruvate monooxygenase is a plant enzyme. References External links EC 1.14.13
ANTILLAS I is a fiber optic submarine communications cable that extends between the Dominican Republic and Puerto Rico. It has been in service since June 1997 and is operated on a common carrier basis. ANTILLAS I uses digital channels operating at 64 kilobits per second (kbit/s) that allow over 15,000 simultaneous calls without multiplexing. It consists of six working optical fiber pairs with each fiber pair carrying four 155 Mbit/s Basic System Modules (BSMs), with each BSM containing sixty-three Minimum Investment Units (MIUs), for a total capacity, on each fiber pair, of 252 MIUs. Carriers AT&T Corporation (AT&T) GTE Hawaiian Telephone Company Incorporated (HTC) IDB WorldCom Services (WorldCom) International Telecommunications Corporation (ITC) MCI International Pacific Gateway Exchange (PGE) Sprint Nextel Corporation (Sprint) Telecomunicaciones Ultramarinas de Puerto Rico (TUPR or ULTRACOM) Telefónica International Wholesale Services (TIWS) The St. Thomas and San Juan Telephone Company (STSJ) Landing points Cacique, Dominican Republic Isla Verde, Carolina, Puerto Rico Miramar, San Juan, Puerto Rico Punta Cana, Dominican Republic External links AMERICAS-II Cable Landing License as adopted by the Federal Communications Commission Liberty Latin America Submarine communications cables in the Caribbean Sea Communications in the Caribbean Dominican Republic–United States relations 1997 establishments in the Dominican Republic 1997 establishments in Puerto Rico
The Mount Saint Anne Formation is a formation cropping out in Newfoundland. References Geologic formations of Newfoundland and Labrador
Hole-In-One Golf is a 1986 video game published by Artworx. Gameplay Hole-In-One Golf is a game in which a utility is included to create courses that can be saved to blank disks. Reception Rick Teverbaugh reviewed the game for Computer Gaming World, and stated that "What you wouldn't expect out of a $9.95 program is a game system that enables you to do something that no other golf game attempts and that is to undercut the ball and actually get a backup when it lands." References External links Review in Commodore Microcomputers 1986 video games Artworx games Commodore 64 games Commodore 64-only games Golf video games Video games developed in the United States
```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) }) }) }) ```
Will Bernard is a guitarist and band leader. He has led the Will Bernard Band, Will Bernard Trio, Will Bernard 4-tet, and Motherbug. Career In the 1980s Bernard was a member of the Hieroglyphics Ensemble led by Peter Apfelbaum. In the 1990s he formed the band T. J. Kirk in San Francisco with Charlie Hunter and John Schott. The band's name "James T. Kirk" was taken from James Brown, Thelonious Monk, and Rahsaan Roland Kirk. Palmetto released his debut solo album, Blue Plate Special, in 2008. He has also worked with The Coup, John Ellis, John Medeski, Stanton Moore, and Jai Uttal. Awards and honors Grammy Award nomination, If Four Was One, 1997 Discography As leader Medicine Hat (Antilles, 1998) Motherbug (Dreck to Disk, 2000) Directions to My House (Dreck to Disk, 2005) Party Hats (Palmetto, 2007) Blue Plate Special (Palmetto, 2008) Night for Day (Bju, 2008) Outdoor Living (Dreck to Disk, 2012) Just Like Downtown (Posi-Tone, 2013) Out and About (Posi-Tone, 2016) Freelance Subversives (Ropeadope, 2020) Ancient Grains (Posi-Tone, 2021) Pond Life (Posi-Tone, 2022) With T.J. Kirk T.J. Kirk (Warner Bros., 1995) If Four Was One (Warner Bros., 1996) Talking Only Makes It Worse (Ropeadope, 2003) As sideman With Peter Apfelbaum Signs of Life ([Antilles, 1991) Jodoji Brightness (Antilles, 1992) Luminous Charms (Gramavision, 1996) It Is Written (ACT, 2005) With Stanton Moore III (Telarc, 2006) Emphasis! (On Parenthesis) (Telarc, 2008) Groove Alchemy (Telarc, 2010) With Ben Sidran Don't Cry For No Hipster (Nardis, 2012) Picture Him Happy (Nardis, 2017) With Jai Uttal Beggars and Saints (Triloka, 1994) Shiva Station (Triloka, 1997) With others Steven Bernstein, Diaspora Suite (Tzadik, 2008) Anthony Brown, Rhapsodies (Water Baby, 2005) Don Cherry, Multikulti (A&M, 1990) Spearhead, Home (Capitol, 1994) Trance Mission, Trance Mission (City of Tribes, 1993) Tom Waits, Bad as Me (Anti-, 2011) Robert Walter, Giving Up the Ghost (Magna Carta, 2003) References External links Official site Living people Jazz-funk guitarists American funk guitarists American male guitarists American jazz guitarists Palmetto Records artists Posi-Tone Records artists 20th-century American guitarists 20th-century American male musicians American male jazz musicians Year of birth missing (living people)
Capitol Hill is an educational game developed by American studio Amazing Media and published by The Software Toolworks in 1993 for Windows and Macintosh. The game lets the players be a representative from a US state and learn about the U.S. Congress by joining committees as well as meeting with foreign aides. External links References 1993 video games Educational video games Government simulation video games Single-player video games Classic Mac OS games Video games developed in the United States Video games set in the United States Windows games The Software Toolworks games Amazing Media games
The Dry Fork is a tributary of the Tug Fork, belonging to the Ohio River watershed. The river is located in McDowell County, West Virginia, and Tazewell County, Virginia, in the United States. The mouth of the Dry Fork into the Tug Fork is located at Iaeger. Variant names According to the United States Geological Survey's Geographic Names Information System, the Dry Fork has been known by the following names throughout its history: Crane Creek Mud Fork South Fork Tributaries Tributary streams are listed from source to mouth. Lick Branch Ray Fork Bills Branch Dick Creek Laurel Fork Mile Branch Beech Fork Vall Creek Kewee Creek Big Branch Jacobs Fork Cucumber Creek Johns Branch War Creek Barrenshe Creek Pruett Branch Threefork Branch Bartley Creek Buck Fork Johnnycake Hollow Atwell Branch Little Slate Branch Right Fork Dry Branch Bradshaw Creek Oozley Branch Hurricane Branch Fishtrap Branch Beartown Branch Little Staunch Branch Staunch Branch Grapevine Branch Betsy Branch Crane Creek Left Fork Laurel Fork Mile Branch Straight Branch Coon Branch List of cities and towns along the Dry Fork Apple Grove, West Virginia Atwell, West Virginia Avondale, West Virginia Bartley, West Virginia Beartown, West Virginia Berwind, West Virginia Bradshaw, West Virginia Canebrake, West Virginia Carlos, West Virginia Dunford Village, Virginia English, West Virginia Excelsior, West Virginia Garland, West Virginia Iaeger, West Virginia Lex, West Virginia Lomax, West Virginia Raysal, West Virginia Rift, West Virginia Union City, West Virginia Vallscreek, West Virginia War, West Virginia Yukon, West Virginia See also List of Virginia rivers List of West Virginia rivers References Rivers of Virginia Rivers of West Virginia Rivers of McDowell County, West Virginia Rivers of Tazewell County, Virginia
Laurence Scarfe (1914-1993) was a British artist and designer, active in the twentieth century. His work Laurence Scarfe was born in Idle, Yorkshire in 1914. He attended Shipley School of Art and later moved to London. From 1933 to 1937 he studied painting at the Royal College of Art. He worked with several visual disciplines including book and magazine illustration, poster and wallpaper design, mural painting, fine art and ceramic decoration. Scarfe is mostly known for his mural paintings. In 1937 he did mural work for the British Pavilion at the Exposition Internationale des Arts et Techniques dans la Vie Moderne, then the Books & Printing section at the Britain Can Make It Exhibition in 1946 and at the British Industries Fair in 1948. He also created mural paintings for Regatta Restaurant and the Dome of Discovery at the Festival of Britain exhibition. He was a fellow of the Society of Industrial Artist and Designers as well as a member of the Society of Mural Painters In the 1960s he created a collection of wallpapers. A number of his wallpapers is exhibited to the public at the Museum of Domestic Design and Architecture, Middlesex University in London References 1914 births 1993 deaths British artists British designers Alumni of the Royal College of Art
```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); } } ```
Narasimha Purana (; ) is one of the Upapuranas. R.C. Hazra in his Studies in the Upapuranas came to the conclusion that the original text was written in the later part of the 5th century, though several portions of it were added much later. This work was translated into Telugu about 1300. Content The recension presented by the printed editions of the text has 68 chapters. The 8th chapter of the text is one of the three versions of the (other two versions are the Vishnu Purana, Book 3, ch.1-7 and the Agni Purana, Book 3, ch.381). The chapters 36-54 consist the narratives of the ten Avatars of Vishnu. Chapter 21 and 22 contain the short genealogical lists of the kings of the Surya Vamsha (Solar dynasty) and the Soma Vamsha (Lunar dynasty), the former ending with Buddha, son of Shuddhoana and the latter with Kshemaka, grandson of Udayana. Chapters 57-61 of this work is also found as an independent work, the Harita Samhita or Laghuharita Smriti. See also Markandeya Narasimha Puranas References Bibliography External links Narasimha Purana text in Devanagari script Puranas Vaishnava texts
```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; } } } } ```
The pumping of water is a basic and practical technique, far more practical than scooping it up with one's hands or lifting it in a hand-held bucket. This is true whether the water is drawn from a fresh source, moved to a needed location, purified, or used for irrigation, washing, or sewage treatment, or for evacuating water from an undesirable location. Regardless of the outcome, the energy required to pump water is an extremely demanding component of water consumption. All other processes depend or benefit either from water descending from a higher elevation or some pressurized plumbing system. The ancient concept of the aqueduct took simple and eloquent advantage of maintaining elevation of water for as long and far a distance as possible. Thus, as water moves over great distances, it retains a larger component of its potential energy by spending small portions of this energy flowing down a slight gradation. A useful aqueduct system ultimately depends on a fresh water source existing at a higher elevation than the location where the water can be of use. Gravity does all the work. In all other instances, pumps are necessary. In day-to-day situations, available water is often contaminated, unhealthy, or even naturally poisonous, so that it is necessary to pump potable water from lower levels to higher levels, where it can be of use. A fresh water source in a lower stream, river, pond, or lake is often pumped to higher ground for irrigation, livestock, cooking, cleaning or other uses by humans, who quite naturally need fresh water. This will purify mostly fresh water, and the treatment of largely contaminated water refer endlessly to pumping. Coil pump A coil pump is a low lift pump which is composed of a tube, shaped as a coil and mounted on a rotating axle powered by an engine or an animal capable of turning the axle around rapidly. Due to the rotation, water is then picked up by the tube and pumped upwards in the hose. The coil pump, as many low lift pumps, is commonly used for irrigation purposes and for drainage of lands. It is currently still used by farmers in Asia. The coil pump was built as an alternative to the Archimedean screw. Unlike the Archimedean screw, it can run horizontally while the Archimedean screw is tilted at about 30°. The coil pump, if fitted with a suitable rotating seal, can deliver water to a greater height, typically 5-10m, above their discharge opening. Despite the emergence of new pumps that operate on other principles, the coil pump remains an important tool as some of it other benefits are that they can be built and repaired easily at a very low cost. This is possible as all the components can be built from local resources as metal; which can be obtained and cast into the desired form easily. However, as mentioned before, the pump only allows the lifting of water over a small height. This makes it unsuitable for water drainage or irrigation over larger height differences or many other pumping applications besides drainage and irrigation. Spiral pump A spiral pump, sometimes called a Wirtz pump, is a low lift pump which is composed of a long piece of metal plating, which is wound into a coil and sealed at the top and back extremities so as to resemble a cylinder. The outer cavity serves as the inlet, while the inner (partial) tube serves as the outlet. A coiled plastic tube will suffice for this arrangement. The outlet pipe is fixed to a water wheel, engine or animal which is capable of rotating the pump quickly. Due to this rotation, water is picked up by the outer cavity and pumped upwards in the hose. Applications The spiral pump, as many low lift pumps, is commonly used for irrigation purposes and for drainage of lands. Based on the same principle as the Archimedean screw, it consists of a rotating tube or plane (screw) to move a liquid. Unlike the Archimedean screw, it can pump while horizontal. The Archimedean screw must be tilted at an angle. The spiral pump, if fitted with a suitable rotating seal, can deliver water to a greater height than the coil pump, typically 5-10m, above their discharge opening. Its main drawback is that the output is small - an output proportional to the volume of the largest coil being moved each revolution. Despite the emergence of new pumps that operate on other principles, the spiral pump remains an important tool as it can be built and repaired easily at a very low cost. This is possible as all the components can be built from local resources such as sheet metal bent into the desired form with or without machine tools. Origins The Zürich pewterer Andreas Wirtz invented the pump in 1746. The first published description and mechanical analysis was written by one JH Ziegler twenty years later, in 1766, with Wirtz' consent. Wirtz' original pump was powered by a stream wheel in the Limmat river, to raise water for a dye house. See also Comparison of pumps Packaged pump station Tjasker Windpump References Water Pumps Appropriate technology Watermills
Zevely House is a historic home located at Winston-Salem, Forsyth County, North Carolina. History The Zevely House was built about 1815 by Vannimmen Zively, who married Johanna Sophia Shober in 1809 and bought from his step-father the same year the 160-acre land where he erected the house 6 years later, on Old Town Road. The house was moved in 1974 from its original site at 734 Oak Street to a new site at 901 West Fourth Street. It was subsequently restored (1974-1975) and houses a restaurant. It was listed on the National Register of Historic Places in 1973. It is located in the West End Historic District. Description The Zevely House is a two-story, three bay by two bay, brick dwelling in the German-influenced North Carolina Moravian style. It has a one-story rear shed addition and full-width front entrance porch. References External links Zevely House Restaurant website Houses on the National Register of Historic Places in North Carolina Houses completed in 1815 Houses in Forsyth County, North Carolina National Register of Historic Places in Winston-Salem, North Carolina Individually listed contributing properties to historic districts on the National Register in North Carolina
Screveton is a civil parish in the Rushcliffe district of Nottinghamshire, England. The parish contains nine listed buildings that are recorded in the National Heritage List for England. Of these, one is listed at Grade I, the highest of the three grades, and the others are at Grade II, the lowest grade. The parish contains the village of Screveton and the surrounding countryside. All the listed buildings are in the village, and consist of a church, items in and around the churchyard, a house, farmhouses and associated structures, and a pinfold. Key Buildings References Citations Sources Lists of listed buildings in Nottinghamshire
Wisinto of Kremsmünster (died c. 1250) was an Austrian Benedictine priest, monk, and holy figure. Little is known of his life other than the fact that he served at Kremsmünster Abbey. Austrian Benedictines refer to him as Saint Wisinto; elsewhere, however, he is known as Blessed. His feast day is 31 December. References Patron Saints Index page 13th-century deaths Austrian Roman Catholic priests Austrian Benedictines Austrian Roman Catholic saints 13th-century Christian saints Year of birth unknown 1250s deaths 13th-century Roman Catholic priests
```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)); ```
Obtaining pecuniary advantage by deception was formerly a statutory offence in England and Wales and Northern Ireland. It was replaced with the more general offence of fraud by the Fraud Act 2006. The offence still subsists in certain other common law jurisdictions which have copied the English criminal model. England and Wales Statute The offence was created by section 16 of the Theft Act 1968. At the time of its repeal it read: This offence replaced the offence of obtaining credit by fraud, contrary to section 13(1) of the Debtors Act 1869. The elements of the actus reus are similar to the offence of obtaining property by deception: There must be a deception. This has the same meaning as for section 15 (according to section 16(3) of the Theft Act 1968). See Deception (criminal law) and Obtaining property by deception#By any deception). There must be causation, as to which, see Deception (criminal law) and Obtaining property by deception#By any deception. There must be the obtaining of a pecuniary advantage. Obtaining of a pecuniary advantage, s. 16(2) The expression "pecuniary advantage" was defined by section 16(2). The definition was "exclusive". Section 16(2)(a) Section 16(2)(a) read: See Director of Public Prosecutions v Turner [1974] AC 537, [1973] 3 WLR 352, 117 SJ 664, [1973] 3 All ER 124, 57 Cr App R 932, [1974] Crim LR 186, HL, reversing sub nom R v Turner [1973] 1 WLR 653. In R v Royle, Lord Edmund-Davies described it as "a juridical nightmare". It was repealed by section 5(5) of the Theft Act 1978. Section 16(2)(b) Section 16(2)(b) covers the situation in Metropolitan Police Commissioner v Charles (which is described in the article Deception (criminal law)) where writing the cheque backed by a card obtains an unauthorised overdraft even though the deception operates on the mind of the person accepting the cheque and not on the mind of a bank officer. In most cases, the granting of credit may be machine-based with reference to a bank officer only being made when larger sums of money are involved. Where the pecuniary advantage is the obtaining of an overdraft facility at a bank, it is only necessary to show that the facility was granted, not that the defendant actually used the facility. "Policy of insurance or annuity contract" This included a policy or contract that was void due to the mistake induced by the deception. See the following cases: R v Kovacs, [1974] 1 WLR 370, [1974] 1 All ER 1236, 118 SJ 116, sub nom R v Kovacs (Stephanie Janika), 58 Cr App R 412, [1974] Crim LR 183, CA R v Watkins [1976] 1 All ER 578, Crown Ct R v Waites [1982] Crim LR 369, CA R v Bevan, 84 Cr App R 143, [1987] Crim LR 129, CA Section 16(2)(c) Section 16(2)(c) clearly covers those people who claim to have qualifications which are in fact false, and because of these qualifications they are employed. Further, according to R v Callender where a self-employed accountant made deceptions, the section was held to apply equally to employment as an independent contractor and employment as a servant. The defendant is charged under section 16 if the deception is detected before payment is made. Thereafter, the defendant has obtained payment under section 15. As to betting shops, if the defendant goes into the shop just before the horse race is due to start, places the bet and very slowly begins to count out the stake money as the commentary relays the progress of the horses, the opportunity to win has been obtained and the defendant can be convicted if they pick up the money and run out when it becomes obvious the nominated horse will not win. See the following cases: R v Aston and Hadley, [1970] 1 WLR 1584, [1970] 3 All ER 1045, 55 Cr App R 48, CA R v McNiff [1986] Crim LR 57, CA Section 16 was repealed on 15 January 2007 by Schedule 3 to the Fraud Act 2006. Mens rea There are two elements to the mens rea of this offence: there must be a deliberate or reckless deception (see Deception (criminal law) and Obtaining property by deception#By any deception) the defendant must be dishonest (see Dishonesty and Obtaining property by deception#Dishonestly) But there is no need to prove an intention to permanently deprive. Liability for offences by corporations Section 18 of the Theft Act 1968 applied in relation to section 16. Mode of trial As to mode of trial from 1968 to 1977, see paragraph 11 of Schedule 1 to the Magistrates' Courts Act 1952 (as substituted by section 29(2) of the Theft Act 1968) From 1977, obtaining pecuniary advantage by deception was triable either way. Northern Ireland This offence was created by section 16 of the Theft Act (Northern Ireland) 1969. Section 16(2)(a) was repealed by article 7(4) of the Theft (Northern Ireland) Order 1978 (S.I. 1978/1407 (N.I. 23)). Section 16 was repealed on 15 January 2007 by sections 14(1) and 15(1)(4) of, and paragraph 1(c)(iii) of Schedule 1 to, and Schedule 3 to, the Fraud Act 2006. The repeal was subject to transitional provisions and savings contained in paragraph 3 of Schedule 2 to that Act. Visiting forces This offence was an offence against property for the purposes of section 3 of the Visiting Forces Act 1952. References Allen, Michael. Textbook on Criminal Law. Oxford University Press: Oxford. (2005) . Criminal Law Revision Committee. 8th Report. Theft and Related Offences. Cmnd. 2977 Law Commission Consultation Paper No.15. Fraud and Deception. (October 1999) Griew, Edward. Theft Acts 1968 & 1978, Sweet & Maxwell: London. Ormerod, David. Smith and Hogan Criminal Law, LexisNexis: London. (2005) Smith, J. C. Law of Theft, LexisNexis: London. (1997) . Smith, J. C. Obtaining Cheques by Deception or Theft (1997) CLR 396 Smith, J. C. :Stealing Tickets'' (1998) CLR 723 English criminal law Crimes
Saint Hedwig may refer to: Saint Hedwig of Silesia, 13th-century saint Saint Jadwiga of Poland, 14th-century saint also known as Hedwig Saint Hedwig, Texas, a town in the United States
```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> ```
Super Junior-K.R.Y. is the first sub-unit of South Korean boy band Super Junior, formed in 2006. it is composed of the three main vocalists of Super Junior, Yesung, Ryeowook, and Kyuhyun. History During the year 2006, Kyuhyun, Ryeowook and Yesung under the name Super Junior-K.R.Y. (from the first letter of the members' stage names) released two original soundtrack titled "The Night Chicago Died" and "The One I Love" for the tvN drama Hyena. On November 5, 2006, they debuted on the music program Music Bank with performing "The One I Love". Since then, they have released several original soundtracks for Korean television dramas. Super Junior-K.R.Y. held their first concert tour in Asia in 2010–2011. The tour commenced in Tokyo in August 2010 and continued onto Kobe, Taipei, Fukuoka, Seoul, and concluding in Nanjing, China. Over 22,000 people attended the tour. Super Junior members Donghae, Sungmin and Heechul made special guest appearances at the Seoul concerts, as well as labelmates Shinee and TRAX. Super Junior K.R.Y. Special Winter Concert 2012 was held in Yokohama on November 19–21 with 15,000 fans in the audience. Super Junior K.R.Y. released some tracks and a teaser video from their upcoming Japanese single "Promise You" for the first time at the concerts. Tickets for the concerts in Yokohama went on sale on October 27 and were sold out in three seconds. There were performances in Kobe and Tokyo in December and January. The tour mobilised 36,000 people in Tokyo, with a total of 72,000 in all three cities and nine concerts. The application for the tickets was over 1,500,000, and proved their popularity in Japan. Super Junior-K.R.Y. released their first official single in Japan titled "Promise You" on January 23, 2013, and debuted at number two on Oricon's daily singles chart. In total, the single album sold 40,645 copies on its first day of sales on January 23. In the next day the single album ranked 1st place by selling 15,197 copies. In the first week of sales "Promise You" sold 69,067 copies, ranking 2nd place in Oricon Weekly Chart. On May 6, 2013, member Yesung was enlisted for his mandatory military service. It made the sub-group hiatus from their activities. Yesung completed his mandatory military service on May 4, 2015. They continued their activities as a trio with held Japanese tour, starting in Yokohama on June 2–3 and had 11 total performances in arenas in Kobe, Fukuoka and Nagoya. In June 2015, the trio announced will be released their second Japanese single titled "Join Hands" on 5 August 2015. In July 2015, SM Entertainment announced Super Junior-K.R.Y. will be held their Asia tour started at the Seoul's Olympic Hall on August 22 and 23. Ryeowook enlisted for his military service on 11 October 2016 while Kyuhyun enlisted for his military service on May 25, 2017. As a result, the sub-group has temporarily halted their activities. Ryeowook and Kyuhyun were discharged on July 10, 2018, and May 7, 2019, respectively. They made their comeback appearance at the Jeddah Season Festival on July 13, 2019. On December 31, 2019, they performed at Taoyuan New Year's Eve stage in Taiwan. In May 2020, it was announced that Super Junior K.R.Y will have their first Korean release since their unit's debut in 2006, with an EP titled When We Were Us, which was released on June 8. The EP is part of a chain of activities to celebrate 15 years since formation for Super Junior, from 2005 till 2020. They subsequently released a Japanese single, "Traveler" on October 27, with the Japanese version of "When We Were Us" as its B-side. The single peaked at number one on Oricon Daily Singles Chart. Discography Extended plays Singles Soundtrack appearances Other appearances Videography Concert tours Asia Tour Super Junior-K.R.Y. The 1st Concert (2010–2011) Super Junior-K.R.Y. Asia Tour Phonograph (2015) Japan Tour Super Junior-K.R.Y. Special Winter Concert (2012–2013) Super Junior-K.R.Y. Japan Tour Phonograph (2015) Online concerts Super Junior-K.R.Y. - The Moment With Us (2020) Awards and nominations Notes References External links Super Junior subgroups South Korean boy bands Musical groups established in 2006 2006 establishments in South Korea SM Entertainment artists K-pop music groups SM Town South Korean musical trios Japanese-language singers of South Korea Musical groups from Seoul
Hjalmar Brantings Plads is a square between Stockholmsgade and Oluf Palmes Gade in central Copenhagen, Denmark. It is named for the Nobel Peace Prize-winning former Swedish prime minister Hjalmar Branting. History The square is situated at the former site of a reduit outside Copenhagen's East Rampart. A plan for redevelopment of the area was created when the city's bastioned fortifications were decommissioned in the 1850s. The site was initially intended for a new church but the Isaiah Church was ultimately built a little further to the west. The old site was instead laid out as a public space with the name Stockholms Plads. It was renamed Hjalmar Brantings Plads in 1925. Design The shape of the square has been determined by the shape of the bastion that was formerly located at the site and remains of it has been reused in the design of its central garden complex. Buildings The building is to the northeast and southwest flanked by high-end apartment buildings. They were both built in 1894-97 to design by Andreas Clemmensen. Grant Thornton is based at No. 1. The square is to the northwest separated from the Cemetery of Holmen by a row of large villas. No. 6 is built in the National Romantic style with exposed timber framing on the upper floor. The company Peter Jahn & Partnere is now based in the building. No. 8 was built for the industrialist M. A. Heegaard in 1899-1901 to design by Ulrik Plesner. Dansk Told- og Skatteforbund, a labour union for civil servants in the tax and customs administration, is headquartered in the building. Public art A bronze statue of a bear by Lauritz Jensen is located on the square. References External links Images Rendering Squares in Copenhagen
Sennar Airport is an airport serving Sennar in Sudan. Sennar Airport is the most important airport of Sennar, Sudan. It is modern and one of the largest airports of Africa. Sennar Airport is important for people and government of Sudan. References Airports in Sudan
Campbelltown is a locality in central Victoria, Australia. The locality is split between the Shire of Hepburn, the Shire of Central Goldfields and the Shire of Mount Alexander, north west of the state capital, Melbourne. At the , Campbelltown had a population of 55. References External links Towns in Victoria (state)
The 2017 Japanese Super Cup was held on 18 February 2017 between the 2016 J1 League and 2016 Emperor's Cup champions Kashima Antlers and the 2016 J1 League runners-up Urawa Red Diamonds. Kashima Antlers won the match 3–2; after Yasushi Endo's brace put Kashima 2–0 up before half-time, Urawa came back in the second half with a penalty scored by Shinzo Koroki and the equalizer by Yuki Muto, but a late winner from Yuma Suzuki proved to be the decisive goal. Match Statistics References Japanese Super Cup Super Kashima Antlers matches Urawa Red Diamonds matches Football in Yokohama
```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); } } ```
Peter Wishart could refer to: Pete Wishart (born 1962), Scottish politician and musician Peter Wishart (composer) (1921-1984), English composer Peter Wishart (cricketer) (born 1937), Australian cricketer
```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> ```
Kafr Qallil () is a Palestinian town in the Nablus Governorate of the State of Palestine, in the northern West Bank. According to the Palestinian Central Bureau of Statistics (PCBS), the town had a population of 3,029 inhabitants in 2017. Location Kafr Qallil is located 4.30 km south of Nablus. It is bordered by Nablus to the north and east, and by Burin to the south and west. History Pottery sherds from the early and late Roman and Byzantine eras have been found here. In addition to ceramics, inscriptions dating to the Byzantine era have been found here. This place was mentioned in the Samaritan Chronicle, and was inhabited by the Samaritans in the 7th century CE. Pottery from the Umayyad era has also been found here. Ottoman era Incorporated into the Ottoman Empire in 1517 with the rest of Palestine, in 1596 the village appeared in Ottoman tax registers as being in the nahiya of Jabal Qubal, part of Nablus Sanjak. It had a population of 50 households and 11 bachelors, all Muslim. They paid a fixed tax-rate of 33.3% on agricultural products, including wheat, barley, summer crops, olive trees, goats and beehives, in addition to occasional revenues and a press for olive oil or syrup; a total of 15,000 akçe. In 1838, Kefr Kullin was noted as a village on the side of Mount Gerizim, located in the District of Jurat 'Amra, south of Nablus. In 1870, Victor Guérin described it as being a village of two hundred inhabitants, separated by a valley in two districts, one northern and the other southern. A few gardens adjoined it. In 1882, the PEF's Survey of Western Palestine described Kefr Kullin as "A small village at the foot of Gerizim, with a spring in it; it stands higher than the main road." British Mandate era In the 1922 census of Palestine conducted by the British Mandate authorities, Kufr Qallil had a population of 298 Muslims, increasing at the time of the 1931 census to 332, still all Muslim, in 79 houses. In the 1945 statistics, Kafr Qallil (including Khirbat Sarin) had a population of 470, all Muslims, with 4,732 dunams of land, according to an official land and population survey. Of this, 83 dunams were plantations and irrigable land, 2,397 were used for cereals, while 39 dunams were built-up (urban) land. Jordanian era In the wake of the 1948 Arab–Israeli War, and after the 1949 Armistice Agreements, Kafr Qallil came under Jordanian rule. The Jordanian census of 1961 found 749 inhabitants here. 1967, aftermath Since the Six-Day War in 1967, Kafr Qallil has been under Israeli occupation. After the 1995 Accords, 27% of the village land was classified as Area A, the remaining 73% as Area C. Israel has confiscated hundreds of dunams of land from the village. Some has been used for Israeli military checkpoints, and 15 dunams went to the Israeli settlement of Har Brakha. References Bibliography External links Welcome to Kafr Qallil Survey of Western Palestine, Map 11: IAA, Wikimedia commons Kafr Qallil Village Profile, Applied Research Institute–Jerusalem (ARIJ) Kafr Qallil, aerial photo, ARIJ Development Priorities and Needs in Kafr Qallil, ARIJ Nablus Governorate Villages in the West Bank Municipalities of the State of Palestine Ancient Samaritan settlements
```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 ```
The 47th Los Angeles Film Critics Association Awards, given by the Los Angeles Film Critics Association (LAFCA), honored the best in film for 2021. Winners Best Film: Drive My Car Runner-up: The Power of the Dog Best Director: Jane Campion – The Power of the Dog Runner-up: Ryusuke Hamaguchi – Drive My Car Best Actor: Simon Rex – Red Rocket Runner-up: Benedict Cumberbatch – The Power of the Dog Best Actress: Penélope Cruz – Parallel Mothers Runner-up: Renate Reinsve – The Worst Person in the World Best Supporting Actor (TIE): Vincent Lindon – Titane Kodi Smit-McPhee – The Power of the Dog Best Supporting Actress: Ariana DeBose – West Side Story Runner-up: Aunjanue Ellis – King Richard Best Screenplay: Ryusuke Hamaguchi and Takamasa Oe – Drive My Car Runner-up: Paul Thomas Anderson – Licorice Pizza Best Cinematography: Ari Wegner – The Power of the Dog Runner-up: Greig Fraser – Dune Best Editing: Joshua L. Pearson – Summer of Soul (...Or, When the Revolution Could Not Be Televised) Runner-up: Andy Jurgensen – Licorice Pizza Best Music Score: Alberto Iglesias – Parallel Mothers Runner-up: Jonny Greenwood – The Power of the Dog and Spencer Best Production Design: Steve Saklad – Barb and Star Go to Vista Del Mar Runner-up: Tamara Deverell – Nightmare Alley Best Foreign Language Film: Petite Maman Runner-up: Quo Vadis, Aida? Best Documentary/Non-Fiction Film: Summer of Soul (...Or, When the Revolution Could Not Be Televised) Runner-up: Procession Best Animation: Flee Runner-up: Belle New Generation Award (TIE): Shatara Michelle Ford – Test Pattern Tatiana Huezo – Prayers for the Stolen Career Achievement Award: Mel Brooks The Douglas Edwards Experimental/Independent Film/Video Award: The Works and Days (of Tayoko Shiojiri in the Shiotani Basin) Special Citation: L.A. Rebellion References 2021 Los Angeles Film Critics Association Awards Los Angeles Film Critics Association Awards Los Angeles Film Critics Association Awards Los Angeles Film Critics Association Awards
The California State Games is an annual Olympic-style competition for California's amateur athletes of all ages and abilities. The Games is a member of the National Congress of State Games and of the United States Olympic Committee. Most of the events are held in locations throughout San Diego County (home of one of the USOC's three Olympic Training Center campuses) for both the Winter and Summer competitions. Skiing events held during the 2004 to 2007 Games took place at the June Mountain Ski Area in Mono County on the eastern slope of the Sierra Nevada. Summer Games Sporting events Archery Badminton Baseball Basketball BMX Field Hockey Jr. Lifeguards Judo Pickleball Powerlifting Rugby Skateboarding Soccer Softball Surfing Swimming Synchronised swimming Table Tennis Track & Field (Youth) Track & Field (Adult) Water Polo Weightlifting Wrestling Winter Games Sporting events Current events Ice Hockey - Competition takes place in February Figure Skating - Competition takes place in March Gymnastics - Competition takes place in March Roller Skating - Competition takes place in March Past Events skiing snowboarding References External links California State Games Multi-sport events in the United States Sports competitions in California
Hammersmith power station supplied electricity to the London Borough of Hammersmith from 1897 to 1965. It was owned and operated by the Vestry / Borough of Hammersmith until the nationalisation of the British electricity supply industry in 1948.  The power station was frequently redeveloped with new plant over its operational life to meet increased demands for electricity. It was decommissioned in 1965. History In 1893 the Vestry (parish council) of Hammersmith applied for a Provisional Order under the Electric Lighting Acts to generate and supply electricity to the parish. This was granted by the Board of Trade and was confirmed by Parliament through the Electric Lighting Orders Confirmation (No.3) Act 1893 (56 & 57 Vict. c. xl). The power station was built off Fulham Palace Road, north of Yeldham Road (51°29'24"N 0°13'18"W) and first supplied electricity on 21 June 1897 to a potential population of 104,000 (1898). Equipment specification The original 1898 plant at Hammersmith power station comprised Bellis and McClaren engines directly coupled to Ferranti flywheel disc alternators. The generating capacity and maximum connected load increased as shown: Inter-war plant Following the First World War further new plant was installed to meet growing demand for electricity. By 1923 the generating plant comprised: Coal-fired boilers generating up to 190,000 lb/h (23.9 kg/s) of steam, these supplied steam to: Generators 1 × 1,500 kW steam turbo-alternator 2 × 2,000 kW steam turbo-alternators 1 × 3,000 kW steam turbo-alternator 1 × 10,000 kW steam turbo-alternator These machines gave a total generating capacity of 18,500 kW of alternating current. The plant installed in 1919 included the UK's first large pulverised fuel fired boilers, these were provided on three of the units used a bin feed system. Hydraulic coal delivery was also introduced at Hammersmith. A choice of electricity supplies were available to consumers: 2-phase, 50 Hz AC at 110 and 220 Volts 3-phase, 50 Hz AC at 110 and 220 Volts. New plant 1937 In 1937 the generating capacity of the station was 28,500 kW, the maximum load was 23,850 kW, and the connections on the system were 69.822 MW. By 1954 the plant comprised: Boilers: 1 × 17,000 lb/h (2.1 kg/s) Stirling boilers with chain grate stoker, 2 × 20,000 lb/h (2.5 kg/s) Stirling boilers with chain grate stokers, 1 × 37,000 lb/h (4.7 kg/s) Stirling boilers with chain grate stoker, 3 × 45,000 lb/h (5.7 kg/s) Stirling boilers with chain grate stokers, The total evaporative capacity was 229,000 lb/h (28.8 kg/s), steam conditions were 200 psi and 620–650 °F (13.8 bar, 327–343 °C), and supplied steam to: Turbo-alternators: 2 × Parsons 10 MW turbo-alternators, 3000 rpm, generating at 6.6 kV Condenser cooling water was taken from the River Thames. Operations Operational data for the early years of operation was as follows: There was a growth in the number of consumers and the amount of current sold within yearly variations. Operating data 1921–23 The operating data for the period 1921–23 is shown in the table: Under the terms of the Electricity (Supply) Act 1926 (16-17 Geo. 5 c. 51) the Central Electricity Board (CEB) was established in 1926. The CEB identified high efficiency ‘selected’ power stations that would supply electricity most effectively. The CEB also constructed the national grid (1927–33) to connect power stations within a region. Hammersmith power station was electrically connected to Fulham power station via twin 66 kV underground cables and to Barnes power station via triple 6.6 kV underground lines. Operating data 1937 and 1946 Hammersmith power station operating data, 1937 and 1946 is as follows. The British electricity supply industry was nationalised in 1948 under the provisions of the Electricity Act 1947 (10-11 Geo. 6 c. 54). The Hammersmith electricity undertaking was abolished, ownership of Hammersmith power station was vested in the British Electricity Authority, and subsequently the Central Electricity Authority and the Central Electricity Generating Board (CEGB). At the same time the electricity distribution and sales responsibilities of the Hammersmith electricity undertaking were transferred to the London Electricity Board (LEB). Operating data 1954–65 Operating data for the period 1954–65 is shown in the table: The data demonstrates the less intensive use of the power station during its last decade of operating life. The electricity supplied, in MWh, by Hammersmith power station over its operating life was: Closure Hammersmith power station was decommissioned in 1965. The buildings subsequently demolished and the area has been redeveloped with commercial and residential buildings. See also Timeline of the UK electricity supply industry List of power stations in England References Coal-fired power stations in England Demolished power stations in the United Kingdom Former power stations in England Power stations on the River Thames Former power stations in London
```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; } } ```
Garfield, Ohio may refer to: Garfield, Jackson County, Ohio Garfield, Mahoning County, Ohio
The 32nd Infantry Division "Marche" () was a infantry division of the Royal Italian Army during World War II. The Marche was classified as a mountain infantry division, which meant that the division's artillery was moved by pack mules instead of the horse-drawn carriages of line infantry divisions. Italy's real mountain warfare divisions were the six alpine divisions manned by Alpini mountain troops. The division was formed on 22 February 1939 in Conegliano and named for the central Italian region of Marche. History The division's lineage begins with the Brigade "Marche" established in Pesaro on 16 April 1861 with the 55th and 56th infantry regiments. World War I The brigade fought on the Italian front in World War I. On 31 December 1926 the brigade command was disbanded and the brigade's two regiments were transferred to other brigades: the 55th Infantry Regiment "Marche" to the X Infantry Brigade and the 56th Infantry Regiment "Marche" to the XIII Infantry Brigade. On 1 January 1928 the X and XIII infantry brigades switched the two infantry regiments. On 22 February 1939 the 32nd Infantry Division "Marche" was formed in Conegliano and received on the same date its two namesake infantry regiments. On the same day the 32nd Artillery Regiment "Marche" was reformed in Treviso and assigned to the division. The same year the division's headquarter moved from Conegliano to Mestre, where it was joined by the 56th Infantry Regiment "Marche", which had moved from Cividale del Friuli. World War II In the March 1941 the Marche was assigned to the XVII Army Corps and ordered to move to the Potenza-Eboli-Padula area in the south of Italy. Before the move was completed the Marche was rerouted to Albania for the invasion of Yugoslavia. The division arrived in the Shkodër-Lezhë-Koplik area while the Yugoslav offensive against Albania was underway. However the Marche did not see combat and crossed the border on 20 April 1941 - two days after Yugoslavia had surrendered. The division took control of Dubrovnik, Trebinje, Bileća, Metković, Mostar, and islands of Mljet and Korčula. Afterward, the division was tasked with coastal defence and anti-partisan actions. The first skirmishes with Yugoslav Partisans occurred in July 1941 near Gacko. On 6 July 1941 Giuseppe Amico assumed command of the division. On 30 July 1941 the Marche, 22nd Infantry Division "Cacciatori delle Alpi" and 48th Infantry Division "Taro" initiated a joint anti-partisan operation between Dragalj and Grahovo in the mountains border region between Montenegro and Herzegovina. In September 1941 the partisan raids on Gacko became so severe that the Marche garrisoned the town permanently. Between 9 October and 9 November 1941 units of the Marche participated in a major anti-partisan operation along the Serbia-Croatia border. Partisans interrupted the Trebinje-Bileća road between 5 and 20 December 1941 and the Marche had to engage in heavy combat to regain control of the route. In the same period, the division repulsed partisan attacks on the city of Dubrovnik and the Gabela-Dubrovnik-Kotor railroad. From January 1942 to May 1942, the intensity of skirmishes with Yugoslav Partisans in the Bileća-Gacko-Trebinje region increased gradually. In June, 1942, a major mopping-up operation started in the Dobromani-Lastva-Plana, Bileća area. Especially heavy fighting happened at Plana, Bileća, which was initially firmly under Yugoslav Partisan control. Later, the focus of fighting shifted back to the Gabela-Dubrovnik-Kotor railroad. The Marche participated in the Battle of the Neretva between 20 January and 17 February 1943 and in the Battle of the Sutjeska between May and June 1943. Following the announcement of the armistice of Cassibile on 8 September 1943 General Amico ordered his troops to block the 7th SS Volunteer Mountain Division Prinz Eugen from occupying Dubrovnik. Arrested during a parley with the Germans Amico was released on the condition that he would order his men to surrender, but instead he ordered them to attack the Germans. Recaptured by the Germans Amico was summarily shot on 13 September 1943, while many of his men joined the Yugoslav partisans to continue the fight against the Germans. Organization 32 Infantry Division "Marche", in Mestre 55th Infantry Regiment "Marche", in Treviso Command Company 3x Fusilier battalions Support Weapons Company (65/17 infantry support guns) Mortar Company (81mm Mod. 35 mortars) 56th Infantry Regiment "Marche", in Mestre Command Company 3x Fusilier battalions Support Weapons Company (65/17 infantry support guns) Mortar Company (81mm Mod. 35 mortars) 32nd Artillery Regiment "Marche", in Treviso Command Unit I Group (100/17 howitzers) II Group (75/27 field guns) III Group (75/27 field guns) 1x Anti-aircraft battery (20/65 Mod. 35 anti-aircraft guns) Ammunition and Supply Unit XXXII Mortar Battalion (81mm Mod. 35 mortars) 32nd Anti-tank Company (47/32 anti-tank guns) 32nd Telegraph and Radio Operators Company 39th Engineer Company 2nd Medical Section 3x Field hospitals 1x Surgical unit 4th Supply Section 142nd Transport Section 32nd Bakers Section 33rd Carabinieri Section 36th Carabinieri Section 32nd Field Post Office Attached: 49th CC.NN. Legion "San Marco" XL CC.NN. Battalion XLIX CC.NN. Battalion 49th CC.NN. Machine Gun Company CROWCASS The names of 29 men attached to the division can be found in the Central Registry of War Criminals and Security Suspects (CROWCASS) set up by the Anglo-American Supreme Headquarters Allied Expeditionary Force in 1945. The names can be found at: Central Registry of War Criminals and Security Suspects from the Kingdom of Italy. Commanding officers The division's commanding officers were: Generale di Brigata Quirino Armellini (11 November 1938 – 5 January 1939) Generale di Brigata Fernando Gelich (22 February 1939 - 31 January 1940) Generale di Brigata Riccardo Pentimalli (1 February 1940 - 5 July 1941) Generale di Divisione Giuseppe Amico (6 July 1941 - 13 September 1943, executed by the Germans) References Infantry divisions of Italy in World War II Military units and formations of Italy in Yugoslavia in World War II Military units and formations established in 1939 Military units and formations disestablished in 1943
Manfredonia Calcio S.r.l. Sportiva Dilettantistica commonly known as Manfredonia Calcio or just Manfredonia is an Italian association football club, based in Manfredonia, in the Province of Foggia, Apulia. Currently it plays in Serie D. History Foundation The club, founded in 1932 as Associazione Sportiva Manfredonia. Manfredonia is known for having been the first Italian professional team to play its home matches on a synthetic football field. The club also used Polisportiva Manfredonia as its denomination in 1940–41. Manfredonia returned to play in the professional leagues only in 2004 (as S.S. Manfredonia Calcio S.r.l.), following 64 years of absence from Serie C. In 2004–05 Manfredonia won promotion from Serie C2 to Serie C1, but finished last in its division in 2007–08 and was directly relegated back down to Lega Pro Seconda Divisione (ex-Serie C2). The club also won the appeal to remain in the professional league in July 2008. The club was initially fail the financial inspection by the Commissione di Vigilanza sulle Società di Calcio (Co.Vi.So.C.) of Italian Football Federation. At the end of the 2009–10 Lega Pro Seconda Divisione season, the company had major financial problems that led the team to failure. According to FIGC, the club had a capital shortfall of €918,661, in May 2010. The membership of the old company in FIGC was finally revoked in 2013. Refoundation Thanks to Article 52 of N.O.I.F., a phoenix club was founded in the summer of 2010 as A.S.D. Manfredonia Football 1932 and began the season in the Eccellenza Apulia. In the following year the club was renamed as A.S.D. Manfredonia Calcio. In July 2016 the football club was incorporated again as a società a responsabilità limitata (means limited liability company): Manfredonia Calcio S.r.l. Sportiva Dilettantistica. Colors and badge The team's colors are light blue and white. Rivalry Manfredonia had a local rivalry with Foggia Calcio. They both from the same province. In 2007 the match ended with multiple injuries among the journalists. Notable players former players with international caps Ahmed Barusso Simone Rota Marco Sau former players who played in Serie A Eugênio Rômulo Togni Marco Sansovini References External links Football clubs in Apulia Calcio Association football clubs established in 1932 Serie C clubs 1932 establishments in Italy
Ernst Breit (20 August 1924 – 22 February 2013) was a German trade union leader. Born in Rickelshof, Breit joined the Reichspost as a trainee inspector in 1941, but the following year was conscripted into the army. He later became a prisoner of war, but at the end of World War II was released and returned to the post office, working in Heide. He joined the German Postal Union (DPG), becoming part of his local works council. In 1952, he joined the executive committee of the Kiel district of the DPG, and from 1953 to 1959 served as its chair, while also serving on the union's national executive committee. In 1956, Breit was promoted to run the post office in Neustadt, then from 1959 he ran the personnel department at the Federal Post Office. In 1971 he became the national chair of the DPG, and the following year was also elected to the executive of the Postal, Telegraph and Telephone International (PTTI), and as deputy chair of the Board of the Federal Post. In 1978, Breit was elected as the president of the PTTI, then in 1982 he became the chair of the German Trade Union Confederation. His time in office was difficult, working with the conservative government of Helmut Kohl, but he was well regarded, and in 1985 also became the president of the European Trade Union Confederation. Breit retired in 1990, and died in 2013. His daughter Ursula is married to SPD politician Thilo Sarrazin. References 1924 births 2013 deaths German Army personnel of World War II German trade union leaders Works councillors German prisoners of war in World War II
A Soul Haunted by Painting () (also known as Soul of a Painter and Pan Yu Liang (Pan Yuliang), a Woman Painter) is a 1994 Chinese film starring Gong Li and directed by Huang Shuqin. It is loosely based on the life of Pan Yuliang, a former prostitute turned painter. External links 1994 films 1990s biographical drama films Chinese biographical drama films 1994 drama films Biographical films about painters Cultural depictions of painters Films about prostitution Cultural depictions of Chinese women Cultural depictions of prostitutes
Sapore di mare 2 - Un anno dopo is a 1983 Italian teen romantic comedy film directed by Bruno Cortini. It is the sequel of Time for Loving. Cast Massimo Ciavarro: Fulvio Comanducci Isabella Ferrari: Selvaggia Eleonora Giorgi: Tea Mauro Di Francesco: Uberto Colombo Angelo Cannavacciuolo: Paolo Pinardi Karina Huff: Susan Gianni Ansaldi: Gianni Giorgia Fiorio: Giorgia Ugo Bologna: Carraro Gianfranco Barra: Antonio Pinardi References External links 1983 films Italian romantic comedy films 1980s Italian-language films 1983 romantic comedy films Films set in the 1960s 1980s Italian films
Miller Reese Hutchison (August 6, 1876 – February 16, 1944) was an American electrical engineer and inventor. He developed some of the first portable electric devices, such as a vehicle horn and a hearing aid. His father was William Hutchison and mother born Tracie Elizabeth Magruder. He attended Marion Military Institute from 1889 through 1891, Spring Hill College 1891 through 1892, the University of Mobile Military Institute from 1892 through 1895, and graduated from Auburn University (then called Alabama Polytechnical Institute) in 1897. While still in school he invented and patented a lightning arrester for telegraph lines in 1895. At the outbreak of the Spanish–American War in 1898, he volunteered and was appointed engineer for the United States Lighthouse Board, laying cables and mines to protect harbors in the Gulf of Mexico. Hearing aids Hutchison assembled an electrical hearing aid for one of his friends; it was called the "akouphone" when it was first developed around 1895. Hutchison's interest in the invention stemmed from a childhood friend, Lyman Gould, who was deaf from scarlet fever. Besides his training in engineering, Hutchison had attended classes at the Medical College of Alabama to study the anatomy of the ear. He formed the Akouphone Company in Alabama to market the device, but the original bulky tabletop form was not practical. After the Spanish–American War Hutchison went to Europe to promote his hearing aids. Several members of royal families were known to suffer from hereditary hearing loss. Queen Alexandra of Denmark was so happy with the results, she invited Hutchison to the coronation ceremony in 1902 when her husband became King Edward VII. Around this time he moved to New York City to continue improving the device and inventing others. By 1902, he had refined the hearing aid into a more portable form powered by batteries, which he then called the Acousticon. The American press called the device a "miracle", and Hutchison helped by staging publicity events, such as having Metropolitan Opera lead singer Suzanne Adams photographed singing to formerly deaf people. He exhibited at the Louisiana Purchase Exposition, the world's fair in St. Louis, Missouri, in 1904. Medical experts discovered the device had several drawbacks. Frequency and dynamic range were limited, and those who had total hearing loss were not helped. Batteries were still bulky and need to be changed often. However it was still regarded as "the best electrical aid for the semi-deaf yet devised." He also developed related devices known as the Akou-Massage (renamed the Massacon), and Akoulalion, which converted audio into vibrations, to help those with more profound hearing loss. They were widely adopted by schools for the deaf in the US and Europe. In 1905 Hutchison turned over the rights for the Acousticon to Kelley Monroe Turner (1859–1927). Turner would improve hearing aids (such as adding a volume control) and apply the technology to other products. One was the dictograph, which was an early hands-free inter-office intercom system. Turner's General Acoustic Company was renamed Dictograph Products Company because of the market success of the dictograph. One of the first electric eavesdropping devices was called the Detective Dictograph, announced in 1910. The carbon technology for hearing aids was used until the miniature vacuum tube replaced it in the 1940s. Advertisements in 1947 still carried the Acousticon brand name, and invoked Queen Alexandra's coronation image of 45 years earlier; model names were "Coronation" and "Imperial". Other inventions Hutchison was concerned with increased automobile traffic in New York City. An early version of a vehicle speed alarm was not readily adopted. Warning devices at the time were either bells or horns essentially derived from musical instruments. He realized that a more obnoxious sound would serve as a better warning. He designed a steel diaphragm with a pin at its center, driving the pin with a cam through either a hand crank or electric batteries via a small motor. The "horn" part of the device made the sound directional, so a pedestrian would be more likely to look in the direction of the oncoming vehicle. He licensed the patents to Lovell-McConnell Manufacturing Company in early 1908, and it was marketed as the Klaxon horn. The name came from the Greek word , meaning "shriek", which described its sound. At the January 1908 Importers' Automobile Salon in Madison Square Garden New York, mayor George B. McClellan Jr. was reported to have "the loudest automobile in New York" thanks to one of Hutchison's klaxons. A common quip, sometimes attributed to Mark Twain, was that Miller had invented the Klaxon to deafen people so they would have to wear his Acousticon. Hutchison himself had a limousine custom-built in May 1908 to showcase the latest in automotive electrical technology. The Witherbee Igniter Company installed storage batteries that could be re-charged from an on-board generator, or by plugging into a light socket. The car was equipped with three Klaxon horns and an external speaker to warn other traffic. An intercom similar to the dictograph allowed passengers to talk with the chauffeur. Many of the novel innovations in his vehicle are standard equipment to-day. Besides headlights with a dashboard switch, interior lamps lit automatically when doors were opened. The dashboard included alarms and lighted gauges, to indicate dangerous conditions. The car featured audible and visual back-up warning mechanisms. By the next year Lovell-McConnell was shipping the horns throughout the US and opened offices in Europe. They reportedly sent a gold-plated Klaxon for the British royal limousine. Lovell-McConnell tried to keep prices high through contracts that prohibited discounting. However, competitors quickly came out with cheap imitations. Hutchison obtained further patents on improvements and fought the other horn vendors. During a series of lawsuits for patent infringement, an 1899 patent by Alexander N. Pierman for a bicycle horn was used as an example of a similar product with only a slightly different use. Federal judge Thomas Chatfield of the United States District Court for the Eastern District of New York ruled in favor of Hutchison. In an appeal and other cases, however, Alfred Conkling Coxe Sr. generally ruled that Hutchison's claims were overly broad, and thus invalidated many of them. Coxe called the horn's sound "harsh, raucous, and diabolical". Lawyers said "a noise is not patentable". The United Motors Company bought out Lovell-McConnell in 1916, renamed it Klaxon Company, and soon made the horns standard on General Motors cars. By 1908 Hutchison had developed an electrical tachometer that would give an accurate reading of the speed of steam ship engines. Previously, ship speed was judged by spinning shafts that were mechanically connected to the propellers. The innovation of using a simple generator and voltmeter allowed much more precise control, and using wires the speed could be displayed remotely in the pilot house or captain's stateroom as well as engine room. The device even allowed speeds to be measured when the ship's engines were reversed. It was licensed to Industrial Instrument Company for production. Hutchison became associated with Thomas Edison from 1909, and was chief engineer of Edison's laboratory in West Orange, New Jersey, from August 1912 until July 1918. In June 1913 he was awarded an honorary Electrical Engineer degree from Auburn, and in June 1914 an honorary Ph.D. from Spring Hill College. Hutchison also developed technology for use by the military. The Klaxon warning device became standard equipment on all United States Navy ships. During World War I he worked on batteries for submarines in Edison's laboratory. After experimental batteries caused an explosion of hydrogen gas on the , Hutchison was accused of making false statements in a Navy inquiry. In 1918 he left Edison's lab. to devote full-time to his own company: Miller Reese Hutchison Incorporated, which had been formed in 1916 to further develop and sell batteries developed at Edison's laboratory. After World War I he founded Hutchison Office Specialties Company for the new market of electric business machines. One popular product was the "Spool-O-Wire" fastener machine. As its name implied, it used a continuous spool of wire to attach business documents to each other. It was advertised as handling from two to forty sheets of paper, cloth, or cardboard, with a single wire spool replacing 15,000 individual staples. In 1921 he demonstrated a gun that could be used for embedding a projectile into steel at a precise velocity. The dramatic demonstration was presented in his offices high in the Woolworth Building of Lower Manhattan. He proposed using it to replace rivets for repairing ships underwater, while the press speculated on military uses as a weapon. Another danger caused by the increased number of automobiles was carbon monoxide (CO). Motorists would sometimes pass out or die in high-traffic tunnels, for example, from the odorless gas. In 1924 he announced an additive to gasoline that would allow cleaner combustion with fewer harmful fumes. The additive was marketed as Hutch-Olene, but never caught on. After his second son was killed in an airplane crash in 1928, he became motivated to improve the safety of air travel. In 1930 he announced a forerunner of today's oxygen sensor called the Moto-Vita. It was a crude measurement of the unburned vapors that allowed a pilot (or driver of an automobile) to adjust the air-fuel ratio for both better efficiency and lower dangerous CO emissions. In 1936 he was admitted to Alabama's hall of fame, with his number of patents estimated to be over 1000. Family and death Hutchison married Martha Jackman Pomeroy of Minnetonka, Minnesota, in New York on May 31, 1901. Their children were: Miller Reese Hutchison (born 1902), Harold Pomeroy Hutchison (born 1904), Juan Ceballo Hutchison (born 1906), and Robley Pomeroy Hutchison (born 1908). Miller Reese Hutchinson Snr. died suddenly on February 16, 1944, in New York City. He has been called "one of Alabama's greatest contributions to science and invention". References External links Includes recording of a transcontinental telephone address by Hutchison to Thomas A. Edison given on October 17, 1915, to demonstrate the new transcontinental telephone service at the Panama-Pacific International Exposition in San Francisco. 1876 births 1944 deaths American electrical engineers American inventors American military personnel of the Spanish–American War Auburn University alumni Edison Pioneers Marion Military Institute alumni People from Baldwin County, Alabama Spring Hill College alumni University of Alabama School of Medicine alumni
```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 } ```
The Iberoamerican Academy of Management (IAOM) is an academic professional association dedicated to promoting management research and education in Ibero-America. IAOM was founded in 1998 as an affiliate of the Academy of Management. The first IAOM president and founder was Prof. Luis Gomez-Mejia. IAOM's inaugural conference was held in 1999 in Madrid, Spain, hosted by Charles III University of Madrid. Vision The vision of IAOM is to foster high-quality management research relevant to Iberoamerican countries and enhance networking among management scholars across the region. Its mission is to provide a hub for building management knowledge and capacity in the context of Iberoamerican unique institutional, social and economic realities.   A major milestone for IAOM was the launch in 2003 of its official journal, Management Research, published by Emerald. IAM has seen its membership grow substantially over the years, with over 1,000 members from business schools, management and organization departments across Latin America, Spain,  Portugal and the United States. History The Iberoamerican Academy of Management (IAOM) was founded in 1997 through a series of meetings held by management scholars active in the Academy of Management with strong links to Iberoamerican countries. The first president was Luis R Gomez-Mejia, a prominent researcher from Arizona State University. In IAOM's early years, the organization functioned mainly as a series of conferences and meetings for management professors to connect, share research, and promote the field across Latin America, Spain, Portugal and the United States. The founders sought to establish IAOM as a supportive network of academics wishing to develop and promote business education and scholarship tailored to the organizational realities of the Iberoamerican context. After its official launch, IAOM continued holding bi-annual conferences and growing its membership across the region's business schools. By 2003, it was formalized as a professional organization with the launch of its official journal, Management Research. Today, IAOM has expanded to over 1000 members from more than 20 countries. About 70% of members are based in Latin America, while 30% come from Spain, Portugal, and other world regions (in particular, the United States). This reflects the increasingly global nature of management research relevant to Iberoamerica. Apart from its academic journal, other key activities include hosting a bi-annual conference and organizing capacity-building initiatives for management researchers and educators. IAM conferences have been hosted across many countries, including Spain, Mexico, Brazil, Portugal, Dominican Republic, Argentina, Peru, Chile, USA and Colombia. The current IAM president is Prof. Len Treviño, elected to the post in 2021. The next IAM annual conference is scheduled for December 2023 in Punta Cana, Dominican Republic, organized by the Pontificia Universidad Católica Madre y Maestra. Presidents The current president of the IAOM is Len J. Treviño (Florida Atlantic University, US). Past presidents of the IAOM are: Herman Aguinis (George Washington University, US, who later became president of the Academy of Management), Julio DeCastro (Instituto de Empresa, Spain), Carolina Gomez (Florida International University, US), Luis Gomez-Mejia (Arizona State University, US) Academic journal The official journal of the Iberoamerican Academy of Management is Management Research (MRJIAM), published by Emerald. The journal was founded by Luis R Gomez-Mejia (Arizona State University, US) and Isabel Gutierrez (Universidad Carlos III, Madrid), who served as editors for 9 years. Subsequent editors included Martin Larraza (Universidad Publica de Navarra, Spain) and Jose Ernesto Amoros (Instituto de Monterey, Mexico, current editor). The aim of the journal is to provide a rigorous forum for high-quality, peer-reviewed research covering all major management disciplines, with a focus on issues relevant to Iberoamerica. Management Research welcomes empirical, conceptual and review articles that display thoughtful, accurate and rigorous research related to Spain, Portugal and Latin America. Authors can submit papers in English, Spanish or Portuguese, although final publication is in English only. The journal publishes cross-disciplinary work across conducted across the highly diverse management fields. By providing an outlet tailored to the Iberoamerican context, Management Research seeks to advance locally relevant management knowledge and promote excellence in management research across the region. Outreach and public engagement The Iberoamerican Academy of Management has hosted annual conferences across the Iberoamerican region since its founding in 1997. Conference locations and host institutions have included: Madrid, Spain (1999) hosted by Universidad Carlos III de Madrid; Mexico City, Mexico (2001) hosted by Instituto Tecnológico Autónomo de México; São Paulo, Brazil (2003) hosted by Fundação Getulio Vargas; Lisbon, Portugal (2005), sponsored by Universidad Nova de Lisboa; Santo Domingo, Dominican Republic (2007) hosted by Pontificia Universidad Católica Madre y Maestra; Buenos Aires, Argentina (2009) hosted by IAE Business School; Lima, Peru (2011) hosted by ESAN University; São Paulo, Brazil (2013) hosted by EAESP-FGV; Santiago, Chile (2015) hosted by Universidad del Desarrollo; New Orleans, Louisiana, USA (2017) hosted by Florida Atlantic University; Bogotá, Colombia (2019) hosted by Universidad de la Sabana; and upcoming in Punta Cana, Dominican Republic (2023) organized by Pontificia Universidad Católica Madre y Maestra. The IAOM social media platforms include X, BlueSky, LinkedIn, WhatsApp, Youtube, and Facebook. References Professional associations Management science Ibero-America