web-apps/vendor/touch/resources/css-debug/sencha-touch.css
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

11140 lines
508 KiB
CSS

/* line 3, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
h4, h5, h6, pre, code, form, fieldset, legend,
input, textarea, p, blockquote, th, td {
margin: 0;
padding: 0;
}
/* line 8, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* line 13, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
fieldset, img {
border: 0;
}
/* line 18, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
address, caption, cite, code,
dfn, em, strong, th, var {
font-style: normal;
font-weight: normal;
}
/* line 23, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
li {
list-style: none;
}
/* line 27, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
caption, th {
text-align: left;
}
/* line 31, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
font-weight: normal;
}
/* line 37, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
q:before,
q:after {
content: "";
}
/* line 41, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
abbr, acronym {
border: 0;
font-variant: normal;
}
/* line 46, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
sup {
vertical-align: text-top;
}
/* line 50, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
sub {
vertical-align: text-bottom;
}
/* line 54, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
input, textarea, select {
font-family: inherit;
font-size: inherit;
font-weight: inherit;
}
/* line 60, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
*:focus {
outline: none;
}
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/* line 10, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
html, body {
font-family: "Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif;
font-weight: normal;
position: relative;
-webkit-text-size-adjust: none;
}
/* line 17, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
body.x-desktop {
overflow: hidden;
}
/* line 21, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
*, *:after, *:before {
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-user-select: none;
-webkit-touch-callout: none;
-webkit-user-drag: none;
}
/* line 29, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-ios.x-tablet .x-landscape * {
-webkit-text-stroke: 1px transparent;
}
/* line 33, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
body {
font-size: 104%;
}
/* line 37, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
body.x-android.x-phone {
font-size: 116%;
}
/* line 41, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
body.x-android.x-phone.x-silk {
font-size: 130%;
}
/* line 45, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
body.x-ios.x-phone {
font-size: 114%;
}
/* line 49, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
body.x-desktop {
font-size: 114%;
}
/* line 53, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
input, textarea {
-webkit-user-select: text;
}
/* line 57, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-hidden-visibility {
visibility: hidden !important;
}
/* line 61, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-hidden-display, .x-field-hidden {
display: none !important;
}
/* line 65, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-hidden-offsets {
position: absolute !important;
left: -10000em;
top: -10000em;
visibility: hidden;
}
/* line 72, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-fullscreen {
position: absolute !important;
}
/* line 79, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-desktop .x-body-stretcher {
margin-bottom: 0px;
}
/* line 83, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-mask {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
height: 100%;
z-index: 10;
display: -webkit-box;
display: box;
-webkit-box-align: center;
box-align: center;
-webkit-box-pack: center;
box-pack: center;
background: rgba(0, 0, 0, 0.3) center center no-repeat;
}
/* line 100, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-mask.x-mask-gray {
background-color: rgba(0, 0, 0, 0.5);
}
/* line 104, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-mask.x-mask-transparent {
background-color: transparent;
}
/* line 108, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-mask .x-mask-inner {
position: relative;
background: rgba(0, 0, 0, 0.25);
color: #fff;
text-align: center;
padding: .4em;
font-size: .95em;
font-weight: bold;
-webkit-border-radius: 0.5em;
border-radius: 0.5em;
}
/* line 119, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-mask .x-loading-spinner-outer {
display: -webkit-box;
display: box;
-webkit-box-orient: vertical;
box-orient: vertical;
-webkit-box-align: center;
box-align: center;
-webkit-box-pack: center;
box-pack: center;
width: 100%;
min-width: 8.5em;
height: 8.5em;
}
/* line 130, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-mask.x-indicator-hidden .x-mask-inner {
padding-bottom: 0 !important;
}
/* line 133, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-mask.x-indicator-hidden .x-loading-spinner-outer {
display: none;
}
/* line 136, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-mask.x-indicator-hidden .x-mask-message {
position: relative;
bottom: .25em;
}
/* line 142, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-mask .x-mask-message {
position: absolute;
bottom: 1.7em;
text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
-webkit-box-flex: 0 !important;
max-width: 13em;
min-width: 8.5em;
}
/* line 152, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-mask.x-has-message .x-mask-inner {
padding-bottom: 2em;
}
/* line 156, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-mask.x-has-message .x-loading-spinner-outer {
height: 7.5em;
}
/* line 162, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-draggable {
z-index: 1;
}
/* line 166, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-dragging {
opacity: 0.7;
}
/* line 170, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-panel-list {
background-color: #eaf6fe;
}
/* line 175, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-html {
-webkit-user-select: auto;
-webkit-touch-callout: inherit;
line-height: 1.5;
color: #333;
font-size: .8em;
padding: 1.2em;
}
/* line 33, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html body {
line-height: 1.5;
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
color: #333333;
font-size: 75%;
}
/* line 51, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6 {
font-weight: normal;
color: #222222;
}
/* line 52, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html h1 img, .x-html h2 img, .x-html h3 img, .x-html h4 img, .x-html h5 img, .x-html h6 img {
margin: 0;
}
/* line 53, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html h1 {
font-size: 3em;
line-height: 1;
margin-bottom: 0.50em;
}
/* line 54, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html h2 {
font-size: 2em;
margin-bottom: 0.75em;
}
/* line 55, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html h3 {
font-size: 1.5em;
line-height: 1;
margin-bottom: 1.00em;
}
/* line 56, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html h4 {
font-size: 1.2em;
line-height: 1.25;
margin-bottom: 1.25em;
}
/* line 57, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html h5 {
font-size: 1em;
font-weight: bold;
margin-bottom: 1.50em;
}
/* line 58, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html h6 {
font-size: 1em;
font-weight: bold;
}
/* line 59, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html p {
margin: 0 0 1.5em;
}
/* line 60, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html p .left {
display: inline;
float: left;
margin: 1.5em 1.5em 1.5em 0;
padding: 0;
}
/* line 61, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html p .right {
display: inline;
float: right;
margin: 1.5em 0 1.5em 1.5em;
padding: 0;
}
/* line 62, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html a {
text-decoration: underline;
color: #0066cc;
}
/* line 18, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
.x-html a:visited {
color: #004c99;
}
/* line 21, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
.x-html a:focus {
color: #0099ff;
}
/* line 24, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
.x-html a:hover {
color: #0099ff;
}
/* line 27, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
.x-html a:active {
color: #bf00ff;
}
/* line 63, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html blockquote {
margin: 1.5em;
color: #666666;
font-style: italic;
}
/* line 64, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html strong, .x-html dfn {
font-weight: bold;
}
/* line 65, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html em, .x-html dfn {
font-style: italic;
}
/* line 66, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html sup, .x-html sub {
line-height: 0;
}
/* line 67, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html abbr, .x-html acronym {
border-bottom: 1px dotted #666666;
}
/* line 68, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html address {
margin: 0 0 1.5em;
font-style: italic;
}
/* line 69, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html del {
color: #666666;
}
/* line 70, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html pre {
margin: 1.5em 0;
white-space: pre;
}
/* line 71, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html pre, .x-html code, .x-html tt {
font: 1em "andale mono", "lucida console", monospace;
line-height: 1.5;
}
/* line 72, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html li ul, .x-html li ol {
margin: 0;
}
/* line 73, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html ul, .x-html ol {
margin: 0 1.5em 1.5em 0;
padding-left: 1.5em;
}
/* line 74, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html ul {
list-style-type: disc;
}
/* line 75, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html ol {
list-style-type: decimal;
}
/* line 76, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html dl {
margin: 0 0 1.5em 0;
}
/* line 77, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html dl dt {
font-weight: bold;
}
/* line 78, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html dd {
margin-left: 1.5em;
}
/* line 79, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html table {
margin-bottom: 1.4em;
width: 100%;
}
/* line 80, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html th {
font-weight: bold;
}
/* line 81, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html thead th {
background: #c3d9ff;
}
/* line 82, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html th, .x-html td, .x-html caption {
padding: 4px 10px 4px 5px;
}
/* line 85, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html table.striped tr:nth-child(even) td, .x-html table tr.even td {
background: #e5ecf9;
}
/* line 86, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html tfoot {
font-style: italic;
}
/* line 87, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html caption {
background: #eeeeee;
}
/* line 88, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html .quiet {
color: #666666;
}
/* line 89, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
.x-html .loud {
color: #111111;
}
/* line 185, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-html ul li {
list-style-type: circle;
}
/* line 188, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-html ol li {
list-style-type: decimal;
}
/* line 194, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-video {
background-color: #000;
}
/* line 198, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-sortable .x-dragging {
opacity: 1;
z-index: 5;
}
/* line 203, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
.x-layout-card-item {
background: #eeeeee;
}
/* line 1, ../themes/stylesheets/sencha-touch/default/widgets/_map.scss */
.x-map {
background-color: #edeae2;
}
/* line 3, ../themes/stylesheets/sencha-touch/default/widgets/_map.scss */
.x-map * {
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
/* line 9, ../themes/stylesheets/sencha-touch/default/widgets/_map.scss */
.x-mask-map {
background: transparent !important;
}
/* line 13, ../themes/stylesheets/sencha-touch/default/widgets/_map.scss */
.x-map-container {
position: absolute !important;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* @class Ext.Toolbar
*/
/**
* @var {color} $toolbar-base-color
* The primary color variable from which toolbars derive their light and dark UIs.
*/
/**
* @var {measurement} $toolbar-spacing
* Space between items in a toolbar (like buttons and fields)
*/
/**
* @var {string} $toolbar-gradient
* Background gradient style for toolbars.
*/
/**
* @var {boolean} $include-toolbar-uis
* Optionally disable separate toolbar UIs (light and dark).
*/
/**
* Includes default toolbar styles.
*/
/**
* Creates a theme UI for toolbars.
*
* // SCSS
* @include sencha-toolbar-ui('sub', #58710D, 'glossy');
*
* // JS
* var myTb = new Ext.Toolbar({title: 'My Green Glossy Toolbar', ui: 'sub'})
*
* @param {string} $ui-label The name of the UI being created.
* Can not included spaces or special punctuation (used in class names)
* @param {color} $color Base color for the UI.
* @param {string} $gradient: $toolbar-gradien Background gradient style for the UI.
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* @class Ext.Button
*/
/**
* @var {measurement} $button-height Default height for buttons.
*/
/**
* @var {measurement} $button-radius Default border-radius for buttons.
*/
/**
* @var {measurement} $button-stroke-weight Default border width for buttons.
*/
/**
* @var {string} $button-gradient Default gradient for buttons.
*/
/**
* @var {string} $toolbar-icon-size Default size (width and height) for toolbar icons.
*/
/**
* @var {boolean} $include-button-uis Optionally disable separate button UIs, including action, confirm, and decline.
*/
/**
* @var {boolean} $include-button-highlights Optionally disable special CSS3 effects on buttons including gradients, text-shadows, and box-shadows.
*/
/**
* Includes default button styles.
*/
/**
* Creates a theme UI for buttons.
* Also automatically generates UIs for {ui-label}-round and {ui-label}-small.
*
* // SCSS
* @include sencha-button-ui('secondary', #99A4AE, 'glossy');
*
* // JS
* var cancelBtn = new Ext.Button({text: 'Cancel', ui: 'secondary'});
*
* @param {string} $ui-label The name of the UI being created.
* Can not included spaces or special punctuation (used in class names)
* @param {color} $color Base color for the UI.
* @param {string} $gradient Default gradient for the UI.
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* @class Ext.tab.Bar
*/
/**
* @var {boolean} $include-tabbar-uis Optionally disable separate tabbar UIs (light and dark).
*/
/**
* @var {boolean} $include-top-tabs
* Optionally exclude top tab styles by setting to false.
*/
/**
* @var {boolean} $include-bottom-tabs
* Optionally exclude bottom tab styles by setting to false.
*/
/**
* @var {color} $tabs-light
* Base color for "light" UI tabs.
*/
/**
* @var {color} $tabs-light-active
* Active color for "light" UI tabs.
*/
/**
* @var {color} $tabs-dark
* Base color for "dark" UI tabs.
*/
/**
* @var {color} $tabs-dark-active
* Active color for "dark" UI tabs.
*/
/**
* @var {string} $tabs-bar-gradient
* Background gradient style for tab bars.
*/
/**
* @class Ext.tab.Tab
*/
/**
* @var {string} $tabs-bottom-radius
* Border-radius for bottom tabs.
*/
/**
* @var {string} $tabs-bottom-icon-size
* Icon size for bottom tabs
*/
/**
* @var {string} $tabs-bottom-active-gradient
* Background gradient style for active bottom tabs.
*/
/**
* @var {boolean} $include-tab-highlights
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* Includes default tab styles.
*
* @member Ext.tab.Bar
*/
/**
* Creates a theme UI for tabbar/tab components.
*
* // SCSS
* @include sencha-button-ui('pink', #333, 'matte', #AE537A);
*
* // JS
* var tabs = new Ext.tab.Panel({
* tabBar: {
* ui: 'pink',
* dock: 'bottom',
* layout: { pack: 'center' }
* },
* ...
* });
*
* @param {string} $ui-label The name of the UI being created.
* Can not included spaces or special punctuation (used in class names)
* @param {color} $bar-color Base color for the tab bar.
* @param {string} $bar-gradient Background gradient style for the tab bar.
* @param {color} $tab-active-color Background-color for active tab icons.
*
* @member Ext.tab.Bar
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* @class Ext.carousel.Indicator
*/
/**
* @var {measurement} $carousel-indicator-size Size (width/height) of carousel indicator dots.
*/
/**
* @var {measurement} $carousel-indicator-spacing
* Amount of space between carousel indicator dots.
*/
/**
* @var {measurement} $carousel-track-size Size of the track the carousel indicator dots are in.
*/
/**
* Creates a theme UI for carousel indicator components.
*
* @param {string} $ui-label The name of the UI being created.
* Can not included spaces or special punctuation (used in class names)
* @param {color} $color Base color for the UI.
* @param {string} $gradient Default gradient for the UI.
* @param {color} $active-color Active color for the UI.
* @param {string} $active-gradient Active gradient for the UI.
*/
/**
* @class Ext.carousel.Carousel
*/
/**
* Includes basic carousel formatting.
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* @class Ext.dataview.IndexBar
*/
/**
* @var {measurement} $index-bar-width
* Width of the index bar.
*/
/**
* @var {color} $index-bar-bg-color
* Background-color of the index bar.
*/
/**
* @var {color} $index-bar-color
* Text color of the index bar.
*/
/**
* Includes default index bar styles.
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* @class Ext.dataview.List
*/
/**
* @var {color} $list-color
* Text color for list rows.
*/
/**
* @var {color} $list-bg-color
* Background-color for list rows.
*/
/**
* @var {color} $include-list-highlights
* Optionally disable all list gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $list-zebrastripe
* Optionally zebra-stripe the list (alternating background colors).
*/
/**
* @var {color} $list-pressed-color
* Background-color for pressed list rows.
*/
/**
* @var {color} $list-active-color
* Background-color for selected list rows.
*/
/**
* @var {string} $list-active-gradient
* Gradient style for selected list rows.
*/
/**
* @var {color} $list-header-bg-color
* Background-color for list header rows (in grouped lists).
*/
/**
* @var {string} $list-header-gradient
* Gradient style for list header rows (in grouped lists).
*/
/**
* @var {measurement} $list-disclosure-size
* Default size (width/height) for disclosure icons.
*/
/**
* @var {measurement} $list-disclosure-round-size
* Default size (width/height) for disclosure icons in a list with a `round` ui.
*/
/**
* @var {measurement} $list-round-padding
* Default padding for lists with a `round` ui.
*/
/**
* Includes default list styles.
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* Includes default form slider styles.
*
* @member Ext.field.Slider
*/
/**
* @var {color} $form-bg-color
* Default background-color for forms.
*
* @member Ext.form.Panel
*/
/**
* @class Ext.field.Field
*/
/**
* @var {color} $form-field-bg-color
* Default background-color for form fields.
*/
/**
* @var {color} $form-light
* Light color for form fields, mostly used on field borders.
*/
/**
* @var {color} $form-dark
* Dark color for form fields, mostly used on labels/text.
*/
/**
* @var {measurement} $form-label-width
* Default width for form labels.
*/
/**
* @var {color} $form-label-background-color
* The default background color for labels
*/
/**
* @var {measurement} $form-field-height
* Default height for form fields.
*/
/**
* @var {measurement} $form-spacing
* Default spacing for form fields, used for padding, etc.
*/
/**
* @var {measurement} $form-textarea-height
* Default height for form textareas.
*
* @member Ext.field.TextArea
*/
/**
* @var {measurement} $form-thumb-size
* Default size of "thumbs" for form sliders/toggles.
*
* @member Ext.field.Slider
*/
/**
* @var {measurement} $form-toggle-size
* Thumb size minus padding for inset thumbs like in a Toggle element.
*
* @member Ext.field.Toggle
*/
/**
* @var {measurement} $form-fieldset-radius
* Default border-radius for form fieldsets.
*
* @member Ext.form.FieldSet
*/
/**
* @var {measurement} $form-slider-size
* Height of the slider "track."
*
* @member Ext.field.Slider
*/
/**
* Includes default form styles.
*
* @member Ext.form.Panel
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* @class Ext.Sheet
*/
/**
* @var {color} $sheet-bg-color
* Background-color for action sheets and message boxes.
*/
/**
* @var {color} $sheet-bg-gradient
* Background gradient style for action sheets and message boxes.
*/
/**
* @var {measurement} $sheet-button-spacing
* Vertical spacing between sheet buttons.
*/
/**
* @var {measurement} $sheet-padding
* Overall padding in a sheet.
*/
/**
* Includes default sheet styles (also required for message box).
*/
/**
* Includes default message box styles.
*
* @member Ext.MessageBox
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* @class Ext.field.Field
*/
/**
* @var {color} $toolbar-input-bg
* Background-color for toolbar form fields.
*/
/**
* @var {color} $toolbar-input-color
* Text color for toolbar form fields.
*/
/**
* @var {measurement} $toolbar-input-height
* Text color for toolbar form fields.
*/
/**
* @var {color} $toolbar-input-border-color
* Border color for toolbar form fields.
*/
/**
* Includes default toolbar form field styles.
*
* @member Ext.tab.Bar
*/
/**
* @class Ext.LoadMask
*/
/**
* @var {color} $loading-spinner-color
* Background-color for the bars in the loading spinner.
*/
/**
* Includes default loading spinner styles (for dataviews).
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/* line 4, ../themes/stylesheets/sencha-touch/default/widgets/_img.scss */
.x-img.x-img-image {
text-align: center;
}
/* line 7, ../themes/stylesheets/sencha-touch/default/widgets/_img.scss */
.x-img.x-img-image img {
width: auto;
height: 100%;
}
/* line 13, ../themes/stylesheets/sencha-touch/default/widgets/_img.scss */
.x-img.x-img-background {
background-repeat: no-repeat;
background-position: center;
background-size: auto 100%;
}
/**
* @class Global_CSS
*
* Global CSS variables and mixins of Sencha Touch.
*/
/**
* @var {boolean} $include-html-style
* Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
* Styles are scoped to .x-html. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-default-icons
* Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
* add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
* home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
* and user. Set to false to reduce CSS weight.
*/
/**
* @var {boolean} $include-form-sliders
* Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
*/
/**
* @var {boolean} $include-floating-panels
* Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
*/
/**
* @var {boolean} $include-default-uis
* Decides whether or not to include the default UIs for all components.
*/
/**
* @var {boolean} $include-highlights=true
* Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
* non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $include-border-radius
* Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
*/
/**
* @var {boolean} $basic-slider
* Optionally remove CSS3 effects from the slider component for improved performance.
*/
/**
* @var {color} $base-color
* The primary color variable from which most elements derive their color scheme.
*/
/**
* @var {string} $base-gradient
* The primary gradient variable from which most elements derive their color scheme.
* @see background-gradient
*/
/**
* @var {font-family} $font-family
* The font-family to be used throughout the theme.
* @see background-gradient
*/
/**
* @var {color} $alert-color
* Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
*/
/**
* @var {color} $confirm-color
* Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
*/
/**
* @var {color} $active-color
* Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
*/
/**
* @var {color} $neutral-color
* Color used for the neautral `ui` for Toolbars and Tabbars.
*/
/**
* @var {color} $page-bg-color
* Background color for fullscreen components.
*/
/**
* @var {measurement} $global-row-height
* The minimum row height for items like toolbars.
*/
/**
* @var {measurement} $global-list-height
* The minimum row height for items like toolbars.
*/
/**
* Background noise recipe
*
* This recipe use a sass function to generate a .png file
*
* Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
* @link https://github.com/DanielRapp/Noisy
*
* Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
* @link https://gist.github.com/1021332
*
* Ported to a sass gem by Antti Salonen @antsa
* @link https://github.com/antsa/sassy_noise
*
* Mixin: background-noise
* Function: background_noise
*
* @author Daniel Rapp @DanielRapp
* @author Aaron Russell @aaronrussell
* @author Philipp Bosch @philippbosch
* @author Antti Salonen @antsa
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
*
* @class Gradients
* @author David Kaneda http://www.davidkaneda.com/
*
*/
/**
* Adds a background gradient into a specified selector.
*
* @include background-gradient(#444, 'glossy');
*
* You can also use color-stops if you want full control of the gradient:
*
* @include background-gradient(#444, color-stops(#333, #222, #111));
*
* @param {color} $bg-color
* The base color of the gradient.
*
* @param {string/list} $type
* The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
*
* @include background-gradient(red, 'glossy');
*
* It can also accept a list of color-stop values:;
*
* @include background-gradient(black, color-stops(#333, #111, #000));
*
* @param {string} $direction
* The direction of the gradient.
*/
/**
* Blueprint grid background pattern
*
* @link http://lea.verou.me/css3patterns/#blueprint-grid
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Background overlay inspired by Google Chrome modal overlay
*
* @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
* Striped background pattern
*
* @link http://lea.verou.me/css3patterns/
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
*/
/**
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#tartan
*
* @author Marta Armada http://swwweet.com/ for the original pattern
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
*/
/**
* Carbon Fiber background pattern
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
*
* @link http://lea.verou.me/css3patterns/
*
*/
/**
* Striped background patterns
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#horizontal-stripes
* @link http://lea.verou.me/css3patterns/#vertical-stripes
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Cicada background pattern
*
* @link http://lea.verou.me/css3patterns/#cicada-stripes
*
* @author Randy Merril http://forthedeveloper.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Tablecloth background pattern
*
* @link http://lea.verou.me/css3patterns/#tablecloth
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Lined paper background pattern
*
* @link http://lea.verou.me/css3patterns/#lined-paper
*
* @author Sarah Backhouse http://www.jadu.net/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Madras background pattern
*
* Before compass 0.11.5, you need to add
* Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
* To your configuration (config.rb)
* @see https://github.com/chriseppstein/compass/issues/401
*
* @link http://lea.verou.me/css3patterns/#madras
*
* @author Divya Manian http://nimbupani.com/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
* Checkerboard background pattern
*
* @link http://lea.verou.me/css3patterns/#checkerboard
* @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Houndstooth background pattern
*
* @link http://lea.verou.me/css3patterns/#houndstooth
*
* @author Antoine Bernier http://abernier.name for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* Polkadot background pattern
*
* @link http://lea.verou.me/css3patterns/#polka-dot
*
* @author Lea Verou http://lea.verou.me/ for the original pattern
* @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
*/
/**
*
* @class Color
* @author David Kaneda - http://www.davidkaneda.com
*
*/
/**
* Returns the brightness (out of 100) of a specified color.
* @todo explain why this is useful
* @param {color} $color The color you want the brightness value of
* @return {measurement}
*/
/**
* Returns the luminosity for a specified color
* @param {color} The color to check
* @return {measurement}
*/
/**
* Returns the contrast ratio between two colors
* @param {color1} The color to check
* @return {measurement}
*/
/**
* Colors the text of an element based on lightness of its background.
*
* .my-element {
* @include color-by-background(#fff); // Colors text black.
* }
*
* .my-element {
* @include color-by-background(#fff, 40%); // Colors text gray.
* }
*
* @param {color} $bg-color Background color of element.
* @param {percent} $contrast Contrast of text color to its background.
*
*/
/**
* @class Global_CSS
*/
/**
* Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
*
* @include pictos-iconmask('attachment');
*
* @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
*/
/**
* Includes the default styles for toolbar buttons, mostly used as a helper function.
*
* @param {color} $bg-color Base color to be used for the button.
* @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
*/
/**
* Adds a small text shadow (or highlight) to give the impression of beveled text.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds a small box shadow (or highlight) to give the impression of being beveled.
*
* @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
*/
/**
* Adds basic styles to :before or :after pseudo-elements.
*
* .my-element:after {
* @include insertion(50px, 50px);
* }
*
* @param {measurement} $width Height of pseudo-element.
* @param {measurement} $height Height of pseudo-element.
* @param {measurement} $top Top positioning of pseudo-element.
* @param {measurement} $left Left positioning of pseudo-element.
*
*/
/**
* Makes an element stretch to its parent's bounds.
*/
/**
* Bevels the text based on its background.
*
* @param {color} $bg-color Background color of element.
* @see bevel-text
*
*/
/**
* Creates a background gradient for masked elements, based on the lightness of their background.
*
* @param {color} $bg-color Background color of element.
* @param {percent} $percent Contrast of the new gradient to its background.
* @param {percent} $style Gradient style of the gradient.
* @see background-gradient
*
*/
/**
* Makes the element text overflow to use ellipsis.
*/
/* line 3, ../themes/stylesheets/sencha-touch/default/widgets/_media.scss */
.x-video {
height: 100%;
width: 100%;
}
/* line 8, ../themes/stylesheets/sencha-touch/default/widgets/_media.scss */
.x-video > * {
height: 100%;
width: 100%;
position: absolute;
}
/* line 14, ../themes/stylesheets/sencha-touch/default/widgets/_media.scss */
.x-video-ghost {
-webkit-background-size: 100% auto;
background: black url() center center no-repeat;
}
/* line 19, ../themes/stylesheets/sencha-touch/default/widgets/_media.scss */
audio {
width: 100%;
}
/* line 8, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
.x-panel,
.x-msgbox,
.x-panel-body {
position: relative;
}
/* line 15, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
.x-panel.x-floating,
.x-msgbox,
.x-form.x-floating {
padding: 6px;
-webkit-border-radius: 0.3em;
border-radius: 0.3em;
-webkit-box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em;
box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em;
background-image: none;
background-color: #03111a;
}
/* line 21, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
.x-panel.x-floating.x-floating-light,
.x-msgbox.x-floating-light,
.x-form.x-floating.x-floating-light {
background-image: none;
background-color: #1985d0;
}
/* line 26, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
.x-panel.x-floating .x-panel-inner, .x-panel.x-floating > .x-body,
.x-msgbox .x-panel-inner,
.x-msgbox > .x-body,
.x-form.x-floating .x-panel-inner,
.x-form.x-floating > .x-body {
z-index: 1;
background-color: #fff;
-webkit-border-radius: 0.3em;
border-radius: 0.3em;
}
/* line 35, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
.x-panel.x-floating > .x-dock,
.x-msgbox > .x-dock,
.x-form.x-floating > .x-dock {
z-index: 1;
}
/* line 41, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
.x-panel.x-floating > .x-dock.x-sized,
.x-msgbox > .x-dock.x-sized,
.x-form.x-floating > .x-dock.x-sized {
margin: 6px;
}
/* line 48, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
.x-anchor {
position: absolute;
overflow: hidden;
}
/* line 53, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
.x-anchor.x-anchor-top {
margin-top: -0.68em;
margin-left: -0.816em;
width: 1.631em;
height: 0.7em;
-webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat;
-webkit-mask-size: 1.631em 0.7em;
background-color: #03111a;
}
/* line 63, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
.x-anchor.x-anchor-bottom {
margin-left: -0.816em;
width: 1.631em;
height: 0.7em;
-webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat;
-webkit-mask-size: 1.631em 0.7em;
background-color: #03111a;
}
/* line 72, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
.x-anchor.x-anchor-left {
margin-left: -0.666em;
margin-top: -0.35em;
height: 1.631em;
width: 0.7em;
-webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat;
-webkit-mask-size: 0.7em 1.631em;
background-color: #03111a;
}
/* line 82, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
.x-anchor.x-anchor-right {
margin-top: -0.35em;
height: 1.631em;
width: 0.7em;
-webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat;
-webkit-mask-size: 0.7em 1.631em;
background-color: #03111a;
}
/* line 93, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
.x-floating.x-panel-light:after {
background-color: #1985d0;
}
/* line 52, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button {
-webkit-background-clip: padding;
background-clip: padding-box;
-webkit-border-radius: 0.4em;
border-radius: 0.4em;
display: -webkit-box;
display: box;
-webkit-box-align: center;
box-align: center;
min-height: 1.8em;
padding: .3em .6em;
position: relative;
overflow: hidden;
-webkit-user-select: none;
z-index: 1;
}
/* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button, .x-toolbar .x-button {
border: 1px solid #999999;
border-top-color: #a6a6a6;
color: black;
}
/* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-back:before, .x-button.x-button-forward:before, .x-toolbar .x-button.x-button-back:before, .x-toolbar .x-button.x-button-forward:before {
background: #999999;
}
/* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button, .x-button.x-button-back:after, .x-button.x-button-forward:after, .x-toolbar .x-button, .x-toolbar .x-button.x-button-back:after, .x-toolbar .x-button.x-button-forward:after {
background-image: none;
background-color: #cccccc;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f2f2f2), color-stop(3%, #d9d9d9), color-stop(100%, #bfbfbf));
background-image: -webkit-linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf);
background-image: linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf);
}
/* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button .x-button-icon.x-icon-mask, .x-toolbar .x-button .x-button-icon.x-icon-mask {
background-image: none;
background-color: black;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000));
background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000);
background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000);
}
/* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-pressing, .x-button.x-button-pressing:after, .x-button.x-button-pressed, .x-button.x-button-pressed:after, .x-button.x-button-active, .x-button.x-button-active:after, .x-toolbar .x-button.x-button-pressing, .x-toolbar .x-button.x-button-pressing:after, .x-toolbar .x-button.x-button-pressed, .x-toolbar .x-button.x-button-pressed:after, .x-toolbar .x-button.x-button-active, .x-toolbar .x-button.x-button-active:after {
background-image: none;
background-color: #c4c4c4;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ababab), color-stop(10%, #b8b8b8), color-stop(65%, #c4c4c4), color-stop(100%, #c6c6c6));
background-image: -webkit-linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6);
background-image: linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6);
}
/* line 66, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button .x-button-icon {
width: 2.1em;
height: 2.1em;
background-repeat: no-repeat;
background-position: center;
display: block;
}
/* line 73, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button .x-button-icon.x-icon-mask {
width: 1.1em;
height: 1.1em;
-webkit-mask-size: 1.1em;
}
/* line 80, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button.x-item-disabled .x-button-label, .x-button.x-item-disabled .x-hasbadge .x-badge, .x-hasbadge .x-button.x-item-disabled .x-badge, .x-button.x-item-disabled .x-button-icon {
opacity: .5;
}
/* line 86, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-round, .x-button.x-button-action-round, .x-button.x-button-confirm-round, .x-button.x-button-decline-round {
-webkit-border-radius: 0.9em;
border-radius: 0.9em;
}
/* line 92, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-iconalign-left, .x-icon-align-right {
-webkit-box-orient: horizontal;
box-orient: horizontal;
}
/* line 95, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-iconalign-top, .x-iconalign-bottom {
-webkit-box-orient: vertical;
box-orient: vertical;
}
/* line 98, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-iconalign-bottom, .x-iconalign-right {
-webkit-box-direction: reverse;
box-direction: reverse;
}
/* line 101, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-iconalign-center {
-webkit-box-pack: center;
box-pack: center;
}
/* line 104, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-iconalign-left .x-button-label, .x-iconalign-left .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-left .x-badge {
margin-left: 0.3em;
}
/* line 107, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-iconalign-right .x-button-label, .x-iconalign-right .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-right .x-badge {
margin-right: 0.3em;
}
/* line 110, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-iconalign-top .x-button-label, .x-iconalign-top .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-top .x-badge {
margin-top: 0.3em;
}
/* line 113, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-iconalign-bottom .x-button-label, .x-iconalign-bottom .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-bottom .x-badge {
margin-bottom: 0.3em;
}
/* line 118, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-label, .x-hasbadge .x-badge {
-webkit-box-flex: 1;
box-flex: 1;
-webkit-box-align: center;
box-align: center;
white-space: nowrap;
text-overflow: ellipsis;
text-align: center;
font-weight: bold;
line-height: 1.2em;
display: block;
overflow: hidden;
}
/* line 131, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-toolbar .x-button {
margin: 0 .2em;
padding: .3em .6em;
}
/* line 135, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge {
font-size: .7em;
}
/* line 139, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge, .x-toolbar .x-button .x-hasbadge .x-badge {
line-height: 1.6em;
}
/* line 144, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-small, .x-button.x-button-action-small, .x-button.x-button-confirm-small, .x-button.x-button-decline-small, .x-toolbar .x-button-small, .x-toolbar .x-button.x-button-action-small, .x-toolbar .x-button.x-button-confirm-small, .x-toolbar .x-button.x-button-decline-small {
-webkit-border-radius: 0.3em;
border-radius: 0.3em;
padding: .2em .4em;
min-height: 0;
}
/* line 149, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-small .x-button-label, .x-button.x-button-action-small .x-button-label, .x-button.x-button-confirm-small .x-button-label, .x-button.x-button-decline-small .x-button-label, .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-button-small .x-badge, .x-button.x-button-action-small .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-action-small .x-badge, .x-button.x-button-confirm-small .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-confirm-small .x-badge, .x-button.x-button-decline-small .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-decline-small .x-badge, .x-toolbar .x-button-small .x-button-label, .x-toolbar .x-button.x-button-action-small .x-button-label, .x-toolbar .x-button.x-button-confirm-small .x-button-label, .x-toolbar .x-button.x-button-decline-small .x-button-label, .x-toolbar .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button-small .x-badge, .x-toolbar .x-button.x-button-action-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-action-small .x-badge, .x-toolbar .x-button.x-button-confirm-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-confirm-small .x-badge, .x-toolbar .x-button.x-button-decline-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-decline-small .x-badge {
font-size: .6em;
}
/* line 153, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-small .x-button-icon, .x-button.x-button-action-small .x-button-icon, .x-button.x-button-confirm-small .x-button-icon, .x-button.x-button-decline-small .x-button-icon, .x-toolbar .x-button-small .x-button-icon, .x-toolbar .x-button.x-button-action-small .x-button-icon, .x-toolbar .x-button.x-button-confirm-small .x-button-icon, .x-toolbar .x-button.x-button-decline-small .x-button-icon {
width: .75em;
height: .75em;
}
/* line 157, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-small .x-button-icon.x-icon-mask, .x-button.x-button-action-small .x-button-icon.x-icon-mask, .x-button.x-button-confirm-small .x-button-icon.x-icon-mask, .x-button.x-button-decline-small .x-button-icon.x-icon-mask, .x-toolbar .x-button-small .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-action-small .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-confirm-small .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-decline-small .x-button-icon.x-icon-mask {
-webkit-mask-size: .75em;
}
/* line 175, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-forward, .x-button-back {
position: relative;
overflow: visible;
height: 1.7em;
z-index: 1;
}
/* line 180, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-forward:before, .x-button-forward:after, .x-button-back:before, .x-button-back:after {
content: "";
position: absolute;
width: 0.807em;
height: 1.8em;
top: -0.1em;
left: auto;
z-index: 2;
-webkit-mask: 0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat;
-webkit-mask-size: 0.807em 1.8em;
overflow: hidden;
}
/* line 190, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-back,
.x-toolbar .x-button-back {
margin-left: 0.872em;
padding-left: .4em;
}
/* line 193, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-back:before,
.x-toolbar .x-button-back:before {
left: -0.727em;
}
/* line 196, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-back:after,
.x-toolbar .x-button-back:after {
left: -0.682em;
}
/* line 202, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-forward,
.x-toolbar .x-button-forward {
margin-right: 0.882em;
padding-right: .4em;
}
/* line 205, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-forward:before, .x-button-forward:after,
.x-toolbar .x-button-forward:before,
.x-toolbar .x-button-forward:after {
-webkit-mask: -0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat;
}
/* line 208, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-forward:before,
.x-toolbar .x-button-forward:before {
right: -0.727em;
}
/* line 211, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button-forward:after,
.x-toolbar .x-button-forward:after {
right: -0.682em;
}
/* line 219, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button.x-button-plain,
.x-toolbar .x-button.x-button-plain {
background: none;
border: 0 none;
-webkit-border-radius: none;
border-radius: none;
min-height: 0;
text-shadow: none;
line-height: auto;
height: 1.9em;
padding: 0em 0.5em;
}
/* line 229, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button.x-button-plain > *,
.x-toolbar .x-button.x-button-plain > * {
overflow: visible;
}
/* line 233, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button.x-button-plain .x-button-icon,
.x-toolbar .x-button.x-button-plain .x-button-icon {
-webkit-mask-size: 1.4em;
width: 1.4em;
height: 1.4em;
}
/* line 239, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button.x-button-plain.x-button-pressing, .x-button.x-button-plain.x-button-pressed,
.x-toolbar .x-button.x-button-plain.x-button-pressing,
.x-toolbar .x-button.x-button-plain.x-button-pressed {
background: none;
background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 24, color-stop(0%, rgba(182, 225, 255, 0.7)), color-stop(100%, rgba(182, 225, 255, 0)));
background-image: -webkit-radial-gradient(rgba(182, 225, 255, 0.7), rgba(182, 225, 255, 0) 24px);
background-image: radial-gradient(rgba(182, 225, 255, 0.7), rgba(182, 225, 255, 0) 24px);
}
/* line 244, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask,
.x-toolbar .x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask,
.x-toolbar .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask {
background-image: none;
background-color: white;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(10%, #f2f2f2), color-stop(65%, #ffffff), color-stop(100%, #ffffff));
background-image: -webkit-linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff);
background-image: linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff);
}
/* line 251, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-segmentedbutton .x-button {
margin: 0;
-webkit-border-radius: 0;
border-radius: 0;
}
/* line 257, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-segmentedbutton .x-button.x-first {
-webkit-border-top-left-radius: 0.4em;
border-top-left-radius: 0.4em;
-webkit-border-bottom-left-radius: 0.4em;
border-bottom-left-radius: 0.4em;
}
/* line 260, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-segmentedbutton .x-button.x-last {
-webkit-border-top-right-radius: 0.4em;
border-top-right-radius: 0.4em;
-webkit-border-bottom-right-radius: 0.4em;
border-bottom-right-radius: 0.4em;
}
/* line 265, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-segmentedbutton .x-button:not(.x-first) {
border-left: 0;
}
/* line 276, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-hasbadge {
overflow: visible;
}
/* line 278, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
.x-hasbadge .x-badge {
-webkit-background-clip: padding;
background-clip: padding-box;
-webkit-border-radius: 0.2em;
border-radius: 0.2em;
padding: .1em .3em;
z-index: 2;
text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
-webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em;
box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em;
overflow: hidden;
color: #ffcccc;
border: 1px solid #990000;
position: absolute;
width: auto;
min-width: 2em;
line-height: 1.2em;
font-size: .6em;
right: 0px;
top: -0.2em;
max-width: 95%;
background-image: none;
background-color: #cc0000;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(3%, #e60000), color-stop(100%, #b30000));
background-image: -webkit-linear-gradient(top, #ff1a1a, #e60000 3%, #b30000);
background-image: linear-gradient(top, #ff1a1a, #e60000 3%, #b30000);
display: inline-block;
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.action,
.x-button .x-button-icon.x-icon-mask.action {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFI0lEQVRoBe2YW4hVVRjHZ0yzq6lFEaMlE0PShYRAJIl6iEqKHnqI6WJB0IvdICkfEk0aIyo0KFCph8giCitI7CkoohQL7SoZDaQmXSgKo4uWNf1+zt7DOXvOOXuvvc85bc+cD36ssy/r+77/Xmt9e+3TOzIy0jORbNJEEqvWruBOH/HuCHdHuMOeQOmmdO+ozaA5oxXPunSC2Re4MbgCNiB6vvqbKbx0giNxp9BeBU/BIJqnRecLN2UVrLDj4GIYgscRfSltYSuzYMUdA/0wCI8ieglM5XduK7vgWJhTegGshucRfQHkyj1XpziLNrfmOh2ug1dhMaJn0gbZZDpNpsexQb2y3azfKXCAwns4W5dMd7m2B2ANLCT/x/A/nKknN5mUhWFp1g4Z7vM14jrbBZvgEwi1tAdkDEf3ZrgI0S/RrkP4IdqGpuA+cJo0yw7iyNfJmzAcMrokfjp93HC4XrPYCdzkgPXDPPqvJN7eRh0VrBWqfKMuev6k3Qzr4SP4HWqOFIkZ73iYA/NhLpwPZ4LLS+FZzUp+GtwAA/heS/sGwv+irWnXc9bdTRF20/8eOBWmEKwnCectOrPhSlgF2+Bb+Bl+AxP8B/6FvLn8Td8fYQXMSubgsVZU8Cv4mAeNhC7k+jLYCopzrRURlvZA9P8WLIJJlcI5zi1Ypw+Dr4oqp3EAzlsbLCjfg1PeEUxLtlnXXU4/wQboq8gpl2BHx2l5UuyosuW8I6rQb8Bp1iwRefy4VN6FReaopU3pX7jnhwSO7MmVIiNnJ3L+DtgHCm3ltA0RH4/26rhKk1tdu4kr7yeuHkKgU3rMqI5ncfAQDIKbg14oi1nJv4OvTShthC9LjmTyGB8XwhZw+oQ8+Xbc68C8AOboK6+YYPpfDV+B06YdAkJiuMtzhvrOP1JYafMLpu/Z8CmEJNGOe60fz0J/cjZmWcP0G2+sWZ/aUnCqhFosOq7gyf6uOT888th+Ot0HmxF7MOkgt2AcXQNLkg5rHPv+dffjVvPX6PdeWtf7MJhUssD578ZtEGL6sY4MIfTjeh1zCWZ0Z+DwQXAkapkjtzviPdoPYB+JuJVMNfy7QQkR7MbGPfRaYhi7ruUSjLcbwe1k0tw2vgivwy6C70/ekPE4JK+N+HySWDuz+A5xXOnvlsqD6Lf/QjwBnxNc4a02YwzBeuIdyBosWDDT7RKcn1MRYA+/V8ImAv9Rcb5VP53ufoQ8AB8S0+PMFiwYz5fDzCjCF7SLCbojOm514zZ3HViYLIZVxmD4h8B0rtWtFXkEn4tTv22thPe2SawVeDs8TTz/NqoyhLqDGoC7wervt3lNCxKMY/fIc+BLuJXgn9G20pyuVuA1sJF4vt7GjHx8nZnT7XAXzIXnoK4FCcbLVHAqLW+DWF8v78Aq2EY8v7zGDK2+EmfBI3AtTAPNTU1dCxXs/a6ht+t6bM4FNykvw/0IdYSrDLHu8iyeQ7Cg6mLKQahgd0pbSOJwit/cl6Np6p+BrxGn6hNUp1z3m/tOWAH+DrIgwSTQcBcTFLnOzcRwSjZ6j/vdvQyCxRrSanu0mWvZqp3LjkbBuYTGnSac4CxreCQqJPFD+r/bhq+dtOSyCO7DyWzIcm9avKLXXb+FcskiYjlBfB0lP9KLJp+nv6N7ZL+cp7N9sgg+L6/zMvabcEWrK7iM07CZOXVHuJlPs4y+rNJ74JkyJpczp62N+vWOfpw0uqWzrnXXcGeN53g13REe/0w660x3hDtrPMer+Q9LNCcV91c+jgAAAABJRU5ErkJggg==');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.add,
.x-button .x-button-icon.x-icon-mask.add {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAABqUlEQVRoBe2awWnDUBBE843B4NxcQSAFOC4lJeTkoxtJDykgvRhcgCFNJCFgIs+ChEHSJX93YT6ZD4ssmR3NztNFH5Wu6+6iVynlEZpbp+4J3s5OjWm7DRxZuMMCdUB9oyzNmrJe01hEejMtM5exIh6bCI3JbFkDT27EckEDs5DI8iHCWcmy6IowC4ksHyKclSyLrgizkMjyIcJZybLoijALiSwfIpyVLItuOGFso/xiuEvAgJdeK0DqJrHEhtsTTh9ul9y/ChR2KE+Y1ruDt2ccI7d6PszcK+oFFblWELt3Cn6i/8epMW5/W+LKGrUZ/0NwboF5QxuPsfY8dmOxJs41cBOYHCZF2BFeE60i3AQmh0kRdoTXRKsIN4HJYVKEHeE10frvCNvr4RH1HojH3rGHr3hqA7VdkxPKvuKJ3AA4hn7BM3xxA5N71Fdv1gz/tax3P+hFHmsJwM/8wraMadqOh5GuXda76rVqNWb7wgeevQvRRQ1MBCPFiginxEokKsJEMFKsiHBKrESiIkwEI8WKCKfESiQqwkQwUqyIcEqsRKIiTAQjxcoVrP83/9czD9EAAAAASUVORK5CYII=');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.arrow_down,
.x-button .x-button-icon.x-icon-mask.arrow_down {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.arrow_left,
.x-button .x-button-icon.x-icon-mask.arrow_left {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGMDZEQTFBREFDOTMxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGMDZEQTFBQ0FDOTMxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkFGQzJEMjQxRjIyMDY4MTE4QTZEQzUxMDg5Q0Y0RTRFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+FXGmxAAAAghJREFUeNrsm09ERFEUxt+rxBAxqyFm1SqiRYpMSpFapUVaRGpTRIpIbWLaFJEoRZtilChRWiRKsyklilYRERERERGZvsN57Wfmvnnnznkfv+WM+bn3e/ePN24mk3E0pcRRllC42FOWy4dc1w30R+fz3LFthEs1TelZ0KlBuAIcgmRgHS5gqlm2RsNTmqbvrUlZycLT4BhUiliWfEwEbII+UeuwT4nzqNZq2Gm1gTu/ZaUIj4NTEBW7tTTY1zUwKH4vbaive6BBw2kpAa6DkA1CeBicgZhVx8McUg5WWNi+83CWiXFfE9ZeAGQR6ukBqJKyu/Gzw7TcXEiS9UuYbiWWeU8ckXYqMT2lozyFW6SeOU0K1/FhPS75RsHUlKbj3KV0WRPC1Nd5sCuxr6anNPV12zFwk2jLCCdtk81XeAIsahL+BVOgH3xrEPayA5rAixZhyj2oB2ktwpR30A5WtQh7vR4DQ+BHg7CXLdAMXrUIU26411dahClvoBVsaBF2uMsjYFRCrwt5a7kOOnjUVQg7vE43cr9VCDu8I6Nep7QIO7z3HgCTvHYXvbCXJe71hxZhyjmv1w9ahCnP/DDb1yLs9boXzGgR9rIAusCnFmHKCff6UYsw5Ymlj7QIU75AN5gz9YVuLu8eB/S+dA+v1+l83pe2Sfg/BRe2OeGfPELhUDgUtip/AgwAw4tbozZtKFwAAAAASUVORK5CYII=');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.arrow_right,
.x-button .x-button-icon.x-icon-mask.arrow_right {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGMDZEQTFCMUFDOTMxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGMDZEQTFCMEFDOTMxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkFGQzJEMjQxRjIyMDY4MTE4QTZEQzUxMDg5Q0Y0RTRFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+xvZexwAAAhhJREFUeNrsm8FHRFEUxu9rxhARsxqiVauYXWoTpTYtUkRqlWkz0WaiTW2iNi3atGhTm4k2E5GYSJRaZcZQtIqIISIiYhgyfZdv/oF59913X+cdfst5733u+c495743XqvVUpKiSwmLWPB/j2QnP/I8L9SH9lN3/KxwQlpKT4FtaR7eAhegR1LRmgEVMCCpSg+CGtNczLbUC8pgQ9I+rCv3LiiBbkmNxwJ93S+p08qCRzAhqbVMg2tQkNRLa1/vg6ILvrY5POTAXdi+tj0tDbOYjUoaDzPgBuQlzcMpcEhSkg4A8lztjBTBin6u0d8iBOvoYwXPSRGsuEcXuWcnJAhuR4G+TksRrGOMfXhWimDFjqzCyUuE4LavS5yxExIEt0OfopRN+DpKbx6MHAtHSfAeWPN7kWQEhDbAMjg1cTHXBdfBLHiSUKXvwZBJsS4LPgCT4NP0hV1L6SZYAcdB3cAlwe9gDlQlTEsP9Gs16Bu5IPgIjIOP/34AoP26Ss82bd00LA/r1Vzk1mM1whCsfTrPpsJ62E7pE/q1HpaPbAn+Betgib1xaGEjpb+Ywrcu7H9BC35m8//mSncTZEqfgRGXxAYpeJNp3FCOhemU/ub+euXqzGlS8AuYBq8unyiYSulLNv9OizUleIcr+6MiEF4n3x7ze2n9OkSfE5/bfmg/30v7ERxaWBcc5Yj/5BELjgXHgiMVfwIMAGPkXbHq6ClAAAAAAElFTkSuQmCC');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.arrow_up,
.x-button .x-button-icon.x-icon-mask.arrow_up {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpDQUZBQUM3NEFDOTMxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpDQUZBQUM3M0FDOTMxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkFGQzJEMjQxRjIyMDY4MTE4QTZEQzUxMDg5Q0Y0RTRFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+ar3jxgAAAbFJREFUeNrs2j9ExGEcx/H71YmmpoiIaIq4KSKi6dabbo1oiqamm1qboimiNZpuuikiIqLppiPipqYjIuLp+/D95vy6X/frfr/n730e3sst53XP9x7u+V2ilKpM05qpTNkCGGCAAQYYYIABBhhggAEGeNSqpl9IkiQKWNbvfBc7PDdNIz1PPVK7Trd+OMPrRr8l9Uat2nT9+CyCW4yVnnnHowTXqa8UWHcdI3iNGozASscxgReo7h9YxTtfjwXcHoOVBjwJQYNPcmKlLk9EkODGP7FSO0TwOvU+IVjxZAQD1iPZK4CVGiGAZ6lOCVjFE7LhO/i0JKzUK3KImQY3S8ZKHZ4cr8A16sMQWPHkeANepF4MYqWmD2A9arcWsIonqOYafGYJK73yRDkB71nGSnd5r4jKBG9Sn47AunOb4CWq7xAr7dsA61G69wCreMK2TIMvPMFKfZ44I+ADz7DSQ9YhVgS87fiQGtdlmeBlvkNWnndYBljfGT8FgJVDbKco+CoQrBp6mrEyKfgoMOyvpxlZ4CT9vcXj0shWNe8nE8vCfzwABhhggAEGGGCATa1vAQYAZekAmr8OukgAAAAASUVORK5CYII=');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.compose,
.x-button .x-button-icon.x-icon-mask.compose {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAF/0lEQVRoBe2aW4hVVRjH54xa6nSzm92sHiZNorJowMpxrDEoyECiUUpztIkeeumpoCB6rAwi6FHwIXqKXkqiEE0no0QNLWwyspmGsruWlVqp0+9/2t9hz3Lty+mcfTnpB/9Za397Xf7//a219lr7TGVsbKztZLL2k0mstJ4S/H+P+ESfwEqlMhn/VNAJpoOjoGibAIFfwDbWnT/DZOCrex34D4b9vvw4wVScRKEu0AcWgQtBmYb9DvgsA6OganCWhgFwL/lHEf35v3ci/mqVFrAO8AT4FugJHge6URZsg0s3aDfOAe+H8f0INAo3gavD9928iT2bgqvBYVAWgWEeG+E1G0wwAeQ18hTZ/cDKSvROECnaBD9Iod9DFa2BMqSDEgAqjtiH8H3v4XwM32ZwlZUPp/jbLgHDoAziXA7r4aXIhsVqgZLYA8Atb9eK9BbQGRarvOwxEDdfdU9D/UiOUH9bwTixAWGJ/QmYuKhUojU6xomu4HgL3AV89ipO3ZdYlc3LJOJTsAeR1bAEr56V+J4H00Aa0/D+BNxPM0NW4Wcyvqe0G7+Gu5b9IhAexnrYq8A+4OMa55PoDaA6p0kjG1jHvVqnetBFQBxAP9CrJ27qxYm2OX25IhdlxxGoRgqzYFOxHAIvgHMbIKKF7iIwVe+yMtsA5F4CjYiVPu2+lhG/z3QRNRTeKGIIB4NKgXgEHIrhF8Xb9WuxmmVayhphLVDPgimgEdtL5VWI3RNuxH0idp17hCGlAOg924zISmyXRdbSskVYYjVnmxFZvXt14DjBLKJummuEYXU3iNsuuvyirnXam2cRddNSRJjXj1bjteAc0Ih9QeU+RG6JayTqSeUSYYhpu/griOKR1j9MGze7EXWvKRPZUaaC6VebAYltxrFUYue64nzXRQ7pfki+CDpAI6bVWJuKD9M0Ere1TFO/7jLMV+2NbTXWh8JGTDuoxYjVySqVFRFhfV15DjQqdoQ2BuoRS/mqRS0KTZ3D9KTISuxvIKrPtP5R2rjFnaP4Ek93lInsvGmC6eM00A+asRp/RTu3esRej3+G63evKZOL4HvoJ/x1MW0k3XI/0E6PR0Q3/o/AHPeee53XHO6DzDRgw5ls3fYlNZYgYHO4JmvgfVy/DjqBPhDEWuaCIXQpDOYELNaQPg4SiQXlLfmazErEvmsOpbQ9j+RlcAH4G6Qyd9jYdVPmMAx6wDEgkXOBHrK+lIqg9RWXSmy3OzTxzQcjwOrq29x1bjn3mjK1ClbR0oYF07Z2U08FfewiPV8EMK3YOu8midYCNd9DWpHVSm1clZZC8HkQ2R4Qe4Z0kpEnr5Vb36oU+TBxy2uB6rXyluK7AehAb+UsTSU46zl8BcRuBBrSg5CuzTPyf+HTfPbNaUVvKWU2kLq2BMdM15n2OmvBd0BEw3cHGPaQ0r1XwNuhe/r2vAKxG0O+cNbWg7AvdT6zvTQrqH5rXhowWYeAqmD8Z+DTqroA9IKFYDqQSewDlN2kiywsM8GQnR3gCOkQQmeRanhL4J1Av2qY6SP7XvBklmLVWZaCV9D+6eAQ0DxVVK8EZiNkPgDvAS1sQ4jV2ThTy0Qw0ZwM69sD5joVdQV5iV8P9DOOxO5DpL5j5WaZCIb9AqAV+ij4A+hw/maA/XlEkr68lpXga+ltKxgE2sDs9vZegDMrwWsQuboAPYldtieW+A8F8p6X9VDMRHA9BPIuGyd4LG8yKfuL46WdW6xJcFQDU3i96LRTGoOPBGmnligsirQWre/AxZ4C1+DrpY/3PfeKcl1Gxz3AJ1inrsR3uiquBf3AZ9/g1FFMjZXBZkBCW1Sf7WSx1NEx0bSv1QZBQ7tVoYA8jeDEf7yhXNuZ4B2gSq0qeBjuM1MJViGsB6hSK4rW598BMO6/bKPE14YAFXQ2HQWtMrwVnINAYmufjqKEmr8mOIj0bVTWSUYb/qQPbBoaRUABOQz03znLwUQTkyat/hZDpZrxGjqLi4VgMbgJ6L1XFlNUPwYKymvgACL10FPbCYJT12zRgnFbyxaVFE/7lOD459P6d/8Bhs9x6sTqrJgAAAAASUVORK5CYII=');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.delete,
.x-button .x-button-icon.x-icon-mask.delete {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.organize,
.x-button .x-button-icon.x-icon-mask.organize {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAEdUlEQVRoBe2aS2xMURjHjbbqUaLoI7RChQUiGo9YaEqkoolIkCASSki68dixsLIVYmHbkJA03UgkFRI2QgRBKl4RgtJFK0jUI+o5fv/p68ztmUlHzpzO9PZLfjP3fOfcO9//fOeee+69E4lGo6PCZKPDJFZaQyc4N1mGI5FIMfUVkAfZMPaVwE54yqn6i+8BllQwravgAEyEv5DppsQ8gYPw3hqsJi0bNJ4El0GZzSa6iHcbjLbpsp7DDGX5V8ByyDbLJ+CdUGQLPNGQnkzj3TDFspN68BNkwhDPIY5poG/T1lBYR+LOkuW4uSeR4KXssN48grF9h20NdeukYLRL96Y6vAD2wCwwbQyFvXARPpoVA85fKnXiN4HtvP2Gf0tPG3XWUKNYT4E6PxjvD3x1EDHPZZvgxTTSDBc8gMrKbql5gKHeJh7NM6/AFu91/EVmjHGTFmN+HA3qYSoE7SuO8+zcEawY4vJdfr8Z/ljiqMS3AV2RvjpTPc7V0A623rqJv8RsnynbxDUXXieJuy/LfRmmEzSd7wKtroL2Hcc5BL4LVmRCmbheEIfmHduVQ1muQV/3BN2bJZyqaANbdm/jL+xtm4nfxKcsP08Q/zX8MxV3TDXqx+PYBGUQNHVAI9AsYrsuB9sPVflDT5xH+O7OZn8kK9msJf6G3ooFOOr66+O2NOVL6A7oP/njmmREQcN5LGhy1cLJtBwK++FSLqrVSGvPcrCZGu8DZTqTBSs+zUkarTZTUrerYh50gHYY7rSpRxZCCYTByvouS2FQK42hE9w7S/tKsOaIt/AGfoMWO3OgFLyYb8FaGByHl6C1r27jlsAh8HaN14LD1+x8jN/KNVdqlAvhgq8YfJ/DLYjVUDatk8J905HObd+Cf1rEaHTp5sSL+RacaKWWyO+8E3wLdi4g1QOOCE61x7Kt/UiGsy1jqcY7kuFUeyzF9ok6WA8ZvJjLtbQWEI/hXpLIW4N1rLyiPHV5hP9MsM4or2V7hlH+702XghWE3gAcTRKN3mjY7AZOdZbNCnAug4wTrNXSItCrmmYSZ3tGTNVAo+1nvCLOyLyeT9WC7WlqXNtUCq7vlpTlGkQMeG+Vio9j6NbxMOjtn8u7udjzaJcH1H3uLViVikCzLftqEtsKbeAyNh3LuWAdVM+yr8JsU8hgt9mvGh6ATousEKwgdcvXCMWDFap2mOYBTWK6b3YtNvYDrs9hM0i9BTgB+YMRTbvp0AS6bzaP43I7LUPaDFBvHPVmIy+ZaOp1+TkJX8Dc3/V22gUrYF1jN4L1r0T4NSPXg+sZ2dZZXgRr5m6BymCW8en6rc54BrYAXfu8CFbQmoQ0c1eYoilXw0NQp7gWZzueN8H68S44DbG/IPA9H66AL7FR12tpYk9qetOwGfSaVjcMNVAFie6iqHJv6bws2YaUfLpctYP+S5WoTVr8vjOMvphN4FN4N69Dybs6yw+OCLZ0yrByhS7DmrRaoQE0Kw5707JOf/UvH/ZKewTG/kscFrHSGbpzOHSC/wHSRhVOrpN3ggAAAABJRU5ErkJggg==');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.refresh,
.x-button .x-button-icon.x-icon-mask.refresh {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.reply,
.x-button .x-button-icon.x-icon-mask.reply {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAES0lEQVRoBe2ZSWgUQRSGM24YTdSo4AYRTcxBEZJDJCoigrtGg6CIgihqogfRgEERguhB40UP6kHw4kEET4J4E9wPAdeg4ALigjuKcSMuMX7/mAmdSU/SXdM9PTPpBx/T3al67/31urq6K5G2trac3mR9epNYaQ0FZ3vFwwqHFc6yEQhv6SwraBc5YYW7DEmWXUhZhSORSC7UwKIgxzAlghE5CZFHoAEKgxTcz8/gCI3gfzHsh6l+xnLq2zfBaC0miXpYDvmgu+kXBGqeC0aohK2D7TAF+kPamKeCETseZdugGgZDSp4RxHFsnghGqKo4H/aB5uoASEtLWjBiZ6KsFlaAHlJpbUkJRmwl6rTcFKW1SktyRoIROhofdbARhlr8OTkMdBPNlWCE6iG0AA5AqRN1Nm1cxbTpn9Qlx8ERO4pIG0Br6yDDqH3pV4kvPdRewCd4C+/ZPdWx7xZxsk1LgqvIZDeUeZzRT/xJ8Dt4BQ/gGjSSVzO/3psEJ4JoY+A4fATNvVTwhjh34RSshMGJ8jO5biuWIJqrc6AJ/kIqhNrF+EFs3fqHYRoMMxFp7dNFME5Hwi5QMLskgrqmgb8M+hgZYRXh5riTYBxpFM9CUKKcxlWOSyHPjVi1jQqmYy7shQ/gNGjQ7f6Q6yWY7UY07XNK4CK0QtAiTOK/J29tLOQ7EU67nIGgtfU1mARMhz6a3zegtCfRHXOYxhXtndJBgGkOT9FQ1Z3oDsFqhBXAFngJpkGD7veN3NclEt1JcKwRHaaD3niCTt40vh6+q2N6rL+2gtUA03p8FL6AaeAg++ntsNwqNqor/kL8OZ2WgF71vEpeq8FvC36uDveJM8qqyenHwzg67oE1MAxMTeLOQyNod0SDqO2hCaDVIma6u3R9OAxq/9WxW9PT+wRsQ7RiE7Gbj4f4v9F8Fujxb1ptfR2tj/cbf04bfbbqZWgsFEM5LITNcBLc3HF6iM2IxXAlWJ0wJXEQfoFb4RJcEwtu8kv/PCiEGdAAevFQJbvL5Rh/j351uRbcLloVmA83ewgUn0TSgq2DRGzloVt9E9yDFoiPqfOvUBHN3erA7TFOtG6fBqdfVp4KtuZLDqr8DrgDdqIPcb2/UYXjAmmu1cLDBIGswX0THMuJHIrgDGglsMZu4nxI0oItgcbjUHP7MyRaanwXrHywvlAFj8E6v+dqZ8MTI9BzHO2DtaC9KY1wIEYurXCO4JrbjyA6CvzO80wwznS3tMAFDpfBKdArnkY4ECOXqwTWUqZvA1mJp4L/+4wKf8ZxDeyE26AlLBBD9HUC14GWr8mezWEc2/oiiNZM/TumGbRLkdQ6nChOT9eJWw3ffakwjjuMRF5wUg9b4QnE5hOHKTVNsSuO3qW9SosN/Yn4KmAQbnnl040f4pelVLCb5Pxq6/st7Vfipn5DwaYjlyn9wgpnSqVM8wwrbDpymdIvrHCmVMo0z15X4X9rh8wHLEjawQAAAABJRU5ErkJggg==');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.search,
.x-button .x-button-icon.x-icon-mask.search {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.settings,
.x-button .x-button-icon.x-icon-mask.settings {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.star,
.x-button .x-button-icon.x-icon-mask.star {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFfUlEQVRoBd2aXahVRRTHz/Ujv+2mZRGZB7W6mtpFikC7+UWUZiqBD0JPFdRL1EMFPfjoU4baS0FUD/UWZBEVShA+BCpmWApRSkgllNpDmZWZt9//eOay72afvWfWOTPn3rvgz8yeWbPW+s/XmT379AwODtZSSQ+CryVgA/gVfIx/pelEhFMBVlvBOaBeFo6Cean8y09KsnMg932TqCOs9M2UhMfhMJVsxtHcAmcbmekLCsqjFKUkvAYG1xSwmEHZqoLyKEVJCDOCNxH9HUCbVl6mULAuXxjrOQlhgl8Bbi0h0Uen3FBS37GqVIQHiHh2SdR16jTlo0t0woycpuxiUDSdHcFeMv3uIWYanTDB3wIWVZBQHP10zuQKvbarUxDWT1HRz1E++Ds99fLtgp6jEmbExhPNcs+IbkZPiCpRCRP5TPCQJ4MJ6A3QSUqjSWzC2ozuC4j+fnSnB+gHq8YmvJKIJgVEpRPX9QH6waqxCa8PjEhHT981H2j6qno0wqzF63BhOUxsom3Zb7aJqGsUjTAONFJlpysXQz7VuXpavrBTzzEJaz1adlzNjHs6RTBvJyZhjZTF/kTaWZZCnlvhsyWgQkPZQpagzsX1bFlAXjGtDdAPUu1p3PPQhCCXkdwG/mta0PWLds060AuAnqtEOjpdbQR3VymX1P9F3UfgGJA9X9F92c/ADaQ2P8V0DJ4/kDbeYKaSvgI2AN0+OGJK1VAbSIhTOXEOybYll2kte77yD4rqrHyb85S9Cl4HtReAyI11/A7HpRq5PSD6oR0f3Rad+H7S1DvV7UgS+tc1cU3n3V/AWJ/SX8BxVuMinow2rNNjlPQVeH0GFg378kDBfLAPXARjZbTPwmUXmOG+bgz71EKFfqKeAUWfREZbJxyCxyOOqEuHER4qrNUWovwy0CFktBHV4eNZMNvxyaaFhKWAaBt/HJwEo4W0luSKLMF8viVhp4iBeeBd8CcYqcQ1qi+CKS7uVmklYdcQY0+C42Ckkf6EmO51cVal3oRlCFkCdKgfCWtbo7obDO3AVWQbHHyUsjo40E6uq9cvQbdG+wN892fj8s0HjXDWKA51/t4JUo72H/jTDtybjSUkbyYsJ0gdfAtSjfTn+JoWQjCv2+57a4M1QaQSvZvrMsIs7RJejGcdUlLJUhzpZsYsZsJcCen6ZwCE3IaYA2021OfUdU3fJltmwni7Fvh+KDMF16KR3ux0lWuSdgjPxeNdJq/tNdKNqJaSSUyEmVK6JNPomtqbIh3eSKNsEmvAarfJ5LEzjbbR59MtpqyEb8eZjpndkhtxvNri3Er4YZxpx+yW6Jdhi8V5MOHm+n0QZ9afo0u0fQO8A5S3iPaQ1cTSG9w4f/SqesZBH/gRWI6T+gyyxfkgvw2cMdrS+/lTzpZvGnyWxsnTwHLRd4R2a/OBqQyoztKBe/P2qp6DCBOUptKHhuA+pU1fq2Co0/F0L9CVaghxXTbWW9ktKg8lrFfCrwODeh/9wgu1bEDo6OT2Fvgb+JLWq+nQEsnaa5UPJbwKBxc8A9KXPG1O3u+u6E4F24GvD3XMDjCxFcF8uTdhjGpHfwn49L42lCeAdyDZwGi3HpwAPr6+Q29htn1ZPoSwfuz3ewShXVcBNz62lzkvq6O9DjZHgQ9p72kdQljvob9VBPAN9Q+UEQmpw5b+Sf8e0FotI/4a9ZN8bIcQXlnh9AD1y3ychuhgU0tpJyhb14epn+ljN+Sk9S9G1ct50d8SdgF9x9EO3lHB5hXwPEYfA8dbGD9LuWZBtfj0inSQWUDTKzu1dAB5Dkz2tdOOHn70LvwVyMag/FYwzse295Rukq5j+G1wEOib66PAy5FPMD46+NPmqTV7CpwGGvkJPm2l8z8GWDNDloqpGQAAAABJRU5ErkJggg==');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.trash,
.x-button .x-button-icon.x-icon-mask.trash {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFBElEQVRoBe2aS4gdRRRA8+L/m0QIJkYNLlQUNOAvigpRcCEIcSsiCLoLLoILcaM7QVBX4koRshDxt9CFKCoiuvGDCP5QkxCiJhInRo2Ovzie80gPNWX1dL3uesM09IUz3V1169a9daur+031aG5ubkUpGY1GK7G1Dq4Cz9vKiIY74Sv8+72tkWQ7Ay4Bxo+Hu2E3/AuOZBf+ov2TsL6Ef5WNUsGazXvgEHQJMm77N/aeg3Mrh7seOweMM2bWYH+B2OES1/9g9w0oEnSngHHCYO+FGSgRXJ0NM/0idA565BRpKyxSt9J2B5xWY+Mw5Udq6uqKT6XimESlmX4d7sTnA4n6rKJjs7QSSgTrSno7nJyodtFyGr4AP4G6TeLIHweb4A44C0LR1xtgCzwP7aTtIkBvLlSfQjwNZyl7FNa0sU077V4DX0Js25X7cRjPzDb2Nd5FnK7xPbGXskdwxsxOLLRzdnwIj8GvkQFnypqobKLLrgGnOjMzP6cqJijzfn0NXPljmXRNWNC+dcBHM7HA2NELp10nwbaz5iC4OsdidTyrYp3a68ZFi7XJFfNsOBGcUmFnPpbiBWkVZefT7g+OXcTF0EUsFPtaje0Lw0LOzfoM49B4Gy36WMKwK+WDcC2cAmGwXK7YAAYdym9c+NiIdUOdnHODc6DjpPioix9LBvwtPE3QOzjWi7MjBS0M8CGY1huUA1ISg/4cNqXiqcqSwVqJ3AQ/QEmnpm3LR+IzsLYKMD4mA6bBOfAKuFpO28nS9v0Bcxckn9V1Ad9Pg2m/H5cONLT3Mf5fFGfX63hBQG8s7/LXxcdV0nvjMtgKp0MojuaroM60xYB8Z78ZTog6c515B1ylXey+ARe3/0tqFNCy0RjrkdvgOwhH0TeiB2A1uMBNGx9Ta+FZiP34mrIrQR39cECSUzqZYYIcR0mjJtmFwmHUvdenLjwmnUl7Eh05+LP40fjvoGTACYN1Rc6CecGhM7lw2lt+AA7Fg4fOespXgYO0j3pvnXmh3rY+/52+vrXtRSd841rQJ/WV1JVX9eNj14DnjeHnJVw8DBeAnX8A2ynfXwXN+cWUPQUOjNl6i7Jt1I9nCOe+1V0NT4AB/wkvw31QRIoFjDfnwRXgfVbJGZzsry44boTNUGVjlvOToPpV5FvbjXApKE7VLZ6UkpWlDGHH+96pV93/4TSsujGA8MeF51Xw6njuO3soKTth/UTnJQOeqONFlKsBW0SlfdVyDLh9NBkth4AzBqnXKkOGe52+DOeHDGcMUq9Vhgz3On0Zzg8ZzhikXqsMGe51+jKcHzKcMUi9Vhky3Ov0ZTg/ZDhjkHqtMmS41+nLcH7IcMYg9VplOWY4/Md88cEtHbDOVg5Xx9jpsM9Yx52JeAcw1ontTXRdcm9pFz3vBveHdNJN6YPVRhrnivtMlruZ5g7DFxBuXLut8j7sA/d43Yr5CIpJsYAJ7DN2/27Bsw1gwAb3I8wLOp+g4w6+nw/6HddOyszqWDg/Qv2bXFwH4+1SyhyUYtI1YLc85wXn/ORAagWdPVRKUqh3AJwtdTLeWq2rbCoP76cm3bjeLG6ELjZim03XJujyJqXF6rtmeDvGNzMN/ajEAZi2rKOD67t00jVgN7+3dnFgqdsu5XRc6tiS/eUGvBTTNengBIVZPuYG7LcYPjdluYk++bTw++pGyQ34bSy9B35Vs5zEYGfgJfg+x7H/ADoy2VfnrtXoAAAAAElFTkSuQmCC');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.maps,
.x-button .x-button-icon.x-icon-mask.maps {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAADl0lEQVRoBe2b24tNURzHjfutXEPycDAltwhJbuMSJUqSB/HiES/+AK9ePc6T8uCFkImQW5KGkdwSxYyMGkZu45bbDOPzyZyTrJnjnDkGrVm/+szas2bv397f33ftPS+/Vdba2toj5igj0NcfRkG/3qWIJdcIrs/AO6gDq7cKPkOjUNAmxr8ePJsix8NUWAvLoapowSQawIUzYCZUwAqohF3QAjtgGTyCy5x/nfEu1MNDCmAxuiS4Vy8ST4DZMB9WwiTIRUGC26q1gKtWwyyYBsPB5aLIL5CNTxzotDeWTeA5DUKuO4xXoQbxHpcUbSIzJFkDi0EzdLYnBNGuYJJ4ch+YAhvB5TAORsKvib4x97vwPpk2FjJuhibu85zxAlyCangBLRQib06u68t5vk4uVYVqgO+oqy9v5ASTRLd0LQNLYB24bAfBnw5zikX0HtuhGW5ANY9ylvEBvIY3FOArcz7rWHCpboBFMAxyGjguKIZy1jzYCqfAD5BLslB8J3dCP/AdOgo+fKHXd3Sebh+EctCMieBK6Oj8QuYrXZ7roQr88PiSD4b/IVyyfhB9jQy/uppTUijYhANLytJ1F/sxzL7POpg97vQdFfwVTNYtQsHdKpLg2O1ODieHI6tAWtKRGRrISQ4HJYlsIjkcmaGBnORwUJLIJpLDkRkayEkOByWJbCI5HJmhgZzkcFCSyCaSw5EZGshJDgcliWwiORyZoYGc5HBQksgmksORGRrISQ4HJYlsIjkcmaGBnORwUJLIJpLDkRkayEkOByWJbKLbOVx0r3E7httIbttwNvzddt//JWxIfQynYX8pgu2TbgBbjw9Ds53sNHJv49gOehu5bUe2DfjXojDVpWG/9iu4CEegBp7xfO+LFfyGC5+AiQ7BFXj/c8s+xw+Z24PwvYwKnQxLoQLccGEB7Hsu9t5ckjcU2QjuozgA5+Apz9PCmItCbvqWs2vhJpwBl8ZrEuVtOebPtiWLbf2ymyL0ZVT8XJgDbgHIgFsPOhPmr4d7oAnHue9txg6jI8EfueIaHIOrcAuafieSc/IG19vw7TYD6UEBbE4vhwxMB7cizIYhYPT6MeR+WjBFPoCToEgF1hb6bD8LNpHLwT0L56EOGkhUchc6edoNcruvQWoQ7/6GMTAa3E2zACxGNjRhH9wHV4zP9oGxqCjj7C0wA06Ay/YliRT/T4MCuGnEfQ4feJ5mfvdfaG+OXSWdju+VpAoIK3D9tAAAAABJRU5ErkJggg==');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.locate,
.x-button .x-button-icon.x-icon-mask.locate {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.home,
.x-button .x-button-icon.x-icon-mask.home {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAEK0lEQVRoBe2Zy28NURzHe/vwqEepYkFIQzxWaCOC2HhELEgQImhXIrqyIEXikVQi+gdIwx9AItg1NiJELMSGhKQbobY2VY9Srfp8m5lmTO/cOXN7Zu656f0ln8zMnTNnft/z+505j5sbGxurmk5WPZ3ESuu0E1xbigjncrka3jsbftClIvsU5RZ65aLK5Lj/C75SzSjHWCuJYLxqhPXwBgYhylq4sRaixChDP8EzGIJ4UwNnCR6tgFswANegKer93LsLim4herm/JKqO8O+ZRdhL42acOwunYAacg2Hu3ePYj3Ph1A1fU2ySmZSZeCiTjxaC1LAboRs6QGJl8+AKXIU1kLqlHmHEqlFboQv2gD40QdPHqx3qKdtJkD8Hb9o+TzXCXmT1cboB+cT6evTVPgIXeWYl6DoVSy3COF2Hx0rjTthp4L0a/4xXrofn33OeqH8avKMqFcE4O4uXb4ULsNfEEa+M0v00LIIuCKc/P03NrAtGrD5Iiuh10Dia1JTOR0EZsjjpw3HlrQpGbD0v3AzFig36e4CLkeAPNs6tCUbsHBxS+mpsLSayYT2KtLBqVgQjdgFe7QP1u9VWPbRc2ZQFe2LV5zSBWG7ZP+vVTUkwYhvx6DicB+fFqvWKFuyJ1QxJ00It48rCNNgnNi+N23hQaVw2YiU0cYQRq9Q9CJdBKV1q02zMeEaWSDBil1L5JTgBDeCCzcUJ8cXImfACOeqayjbBffgDfqu6cPyJP3dgVZTvwd9jdzuoSFmgicRDGAYXRIZ9+I5fPbA6KC7feUHBVKD5rJZ1EutaZMOiv+HjbWjJJ9T/LVIwDyqyh+ApuC7WFy/RCk4r5HyRwWNewRSW2N3wGv6CX2E5HBWcB9AaFOqfTxJMQa1lNewosqNQDiLDPmqv+hFsgzpfrI7/CeamVjwnQZEtV7G+eEX6MeyHGl/0hGB+1MJdYt+B/1C5H9UdX8J2qJ6IMBfz4Ri8hXIXGfZfmdoLWr5W1zJ7ktg2aId18BuiTHNvDVUumQSNxDikLSdtBzdok0yCD8MyiLNmCqhxXBL9An+egNI3yqRT9z+O92FO/O2UuOMuymoqF06bUl53489MQw21Gm8lWmkRa6R/oVaMfT6lAmrsUVMNRa2HU3I8k2orgjNp5hK+ZLwPp/x+fR+0ONfMp9BfJ+qLmulpyze1zMtC8AACbkI/xAneQZkO0JiZimUheAjPn0MfxAnWVo3RiEG5oiwLwXJsmGFDK5iCxrCnGZNSOzVLra+EPDZ9T6EMCFVZ3KWpI8XV7uBTFcEOBsWqS5UIW21OByurRNjBoFh1qRJhq83pYGWVCDsYFKsuVSJstTkdrGz8L0VTv1i+NVF2CyTJDC0LX7E8HIx7D/Vrb3wDaLvY1D5QsI/6jXZUEwk29cDlckki5bIOY9+mneB/GfbU3e4Ey5kAAAAASUVORK5CYII=');
}
/* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-action, .x-toolbar .x-button.x-button-action, .x-button.x-button-action-round, .x-toolbar .x-button.x-button-action-round, .x-button.x-button-action-small, .x-toolbar .x-button.x-button-action-small {
border: 1px solid #002f50;
border-top-color: #003e6a;
color: white;
}
/* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-action.x-button-back:before, .x-button.x-button-action.x-button-forward:before, .x-toolbar .x-button.x-button-action.x-button-back:before, .x-toolbar .x-button.x-button-action.x-button-forward:before, .x-button.x-button-action-round.x-button-back:before, .x-button.x-button-action-round.x-button-forward:before, .x-toolbar .x-button.x-button-action-round.x-button-back:before, .x-toolbar .x-button.x-button-action-round.x-button-forward:before, .x-button.x-button-action-small.x-button-back:before, .x-button.x-button-action-small.x-button-forward:before, .x-toolbar .x-button.x-button-action-small.x-button-back:before, .x-toolbar .x-button.x-button-action-small.x-button-forward:before {
background: #002f50;
}
/* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-action, .x-button.x-button-action.x-button-back:after, .x-button.x-button-action.x-button-forward:after, .x-toolbar .x-button.x-button-action, .x-toolbar .x-button.x-button-action.x-button-back:after, .x-toolbar .x-button.x-button-action.x-button-forward:after, .x-button.x-button-action-round, .x-button.x-button-action-round.x-button-back:after, .x-button.x-button-action-round.x-button-forward:after, .x-toolbar .x-button.x-button-action-round, .x-toolbar .x-button.x-button-action-round.x-button-back:after, .x-toolbar .x-button.x-button-action-round.x-button-forward:after, .x-button.x-button-action-small, .x-button.x-button-action-small.x-button-back:after, .x-button.x-button-action-small.x-button-forward:after, .x-toolbar .x-button.x-button-action-small, .x-toolbar .x-button.x-button-action-small.x-button-back:after, .x-toolbar .x-button.x-button-action-small.x-button-forward:after {
background-image: none;
background-color: #006bb6;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0398ff), color-stop(3%, #007ad0), color-stop(100%, #005c9d));
background-image: -webkit-linear-gradient(top, #0398ff, #007ad0 3%, #005c9d);
background-image: linear-gradient(top, #0398ff, #007ad0 3%, #005c9d);
}
/* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-action .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-action .x-button-icon.x-icon-mask, .x-button.x-button-action-round .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-action-round .x-button-icon.x-icon-mask, .x-button.x-button-action-small .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-action-small .x-button-icon.x-icon-mask {
background-image: none;
background-color: white;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #e5f5ff));
background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #e5f5ff);
background-image: linear-gradient(top, #ffffff, #ffffff 3%, #e5f5ff);
}
/* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-action.x-button-pressing, .x-button.x-button-action.x-button-pressing:after, .x-button.x-button-action.x-button-pressed, .x-button.x-button-action.x-button-pressed:after, .x-button.x-button-action.x-button-active, .x-button.x-button-action.x-button-active:after, .x-toolbar .x-button.x-button-action.x-button-pressing, .x-toolbar .x-button.x-button-action.x-button-pressing:after, .x-toolbar .x-button.x-button-action.x-button-pressed, .x-toolbar .x-button.x-button-action.x-button-pressed:after, .x-toolbar .x-button.x-button-action.x-button-active, .x-toolbar .x-button.x-button-action.x-button-active:after, .x-button.x-button-action-round.x-button-pressing, .x-button.x-button-action-round.x-button-pressing:after, .x-button.x-button-action-round.x-button-pressed, .x-button.x-button-action-round.x-button-pressed:after, .x-button.x-button-action-round.x-button-active, .x-button.x-button-action-round.x-button-active:after, .x-toolbar .x-button.x-button-action-round.x-button-pressing, .x-toolbar .x-button.x-button-action-round.x-button-pressing:after, .x-toolbar .x-button.x-button-action-round.x-button-pressed, .x-toolbar .x-button.x-button-action-round.x-button-pressed:after, .x-toolbar .x-button.x-button-action-round.x-button-active, .x-toolbar .x-button.x-button-action-round.x-button-active:after, .x-button.x-button-action-small.x-button-pressing, .x-button.x-button-action-small.x-button-pressing:after, .x-button.x-button-action-small.x-button-pressed, .x-button.x-button-action-small.x-button-pressed:after, .x-button.x-button-action-small.x-button-active, .x-button.x-button-action-small.x-button-active:after, .x-toolbar .x-button.x-button-action-small.x-button-pressing, .x-toolbar .x-button.x-button-action-small.x-button-pressing:after, .x-toolbar .x-button.x-button-action-small.x-button-pressed, .x-toolbar .x-button.x-button-action-small.x-button-pressed:after, .x-toolbar .x-button.x-button-action-small.x-button-active, .x-toolbar .x-button.x-button-action-small.x-button-active:after {
background-image: none;
background-color: #0062a7;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #004474), color-stop(10%, #00538d), color-stop(65%, #0062a7), color-stop(100%, #0064a9));
background-image: -webkit-linear-gradient(top, #004474, #00538d 10%, #0062a7 65%, #0064a9);
background-image: linear-gradient(top, #004474, #00538d 10%, #0062a7 65%, #0064a9);
}
/* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-confirm, .x-toolbar .x-button.x-button-confirm, .x-button.x-button-confirm-round, .x-toolbar .x-button.x-button-confirm-round, .x-button.x-button-confirm-small, .x-toolbar .x-button.x-button-confirm-small {
border: 1px solid #263501;
border-top-color: #374e02;
color: white;
}
/* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-confirm.x-button-back:before, .x-button.x-button-confirm.x-button-forward:before, .x-toolbar .x-button.x-button-confirm.x-button-back:before, .x-toolbar .x-button.x-button-confirm.x-button-forward:before, .x-button.x-button-confirm-round.x-button-back:before, .x-button.x-button-confirm-round.x-button-forward:before, .x-toolbar .x-button.x-button-confirm-round.x-button-back:before, .x-toolbar .x-button.x-button-confirm-round.x-button-forward:before, .x-button.x-button-confirm-small.x-button-back:before, .x-button.x-button-confirm-small.x-button-forward:before, .x-toolbar .x-button.x-button-confirm-small.x-button-back:before, .x-toolbar .x-button.x-button-confirm-small.x-button-forward:before {
background: #263501;
}
/* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-confirm, .x-button.x-button-confirm.x-button-back:after, .x-button.x-button-confirm.x-button-forward:after, .x-toolbar .x-button.x-button-confirm, .x-toolbar .x-button.x-button-confirm.x-button-back:after, .x-toolbar .x-button.x-button-confirm.x-button-forward:after, .x-button.x-button-confirm-round, .x-button.x-button-confirm-round.x-button-back:after, .x-button.x-button-confirm-round.x-button-forward:after, .x-toolbar .x-button.x-button-confirm-round, .x-toolbar .x-button.x-button-confirm-round.x-button-back:after, .x-toolbar .x-button.x-button-confirm-round.x-button-forward:after, .x-button.x-button-confirm-small, .x-button.x-button-confirm-small.x-button-back:after, .x-button.x-button-confirm-small.x-button-forward:after, .x-toolbar .x-button.x-button-confirm-small, .x-toolbar .x-button.x-button-confirm-small.x-button-back:after, .x-toolbar .x-button.x-button-confirm-small.x-button-forward:after {
background-image: none;
background-color: #6c9804;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a2e306), color-stop(3%, #7eb105), color-stop(100%, #5b7f03));
background-image: -webkit-linear-gradient(top, #a2e306, #7eb105 3%, #5b7f03);
background-image: linear-gradient(top, #a2e306, #7eb105 3%, #5b7f03);
}
/* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-confirm .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-confirm .x-button-icon.x-icon-mask, .x-button.x-button-confirm-round .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-confirm-round .x-button-icon.x-icon-mask, .x-button.x-button-confirm-small .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-confirm-small .x-button-icon.x-icon-mask {
background-image: none;
background-color: white;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #f7fee6));
background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #f7fee6);
background-image: linear-gradient(top, #ffffff, #ffffff 3%, #f7fee6);
}
/* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-confirm.x-button-pressing, .x-button.x-button-confirm.x-button-pressing:after, .x-button.x-button-confirm.x-button-pressed, .x-button.x-button-confirm.x-button-pressed:after, .x-button.x-button-confirm.x-button-active, .x-button.x-button-confirm.x-button-active:after, .x-toolbar .x-button.x-button-confirm.x-button-pressing, .x-toolbar .x-button.x-button-confirm.x-button-pressing:after, .x-toolbar .x-button.x-button-confirm.x-button-pressed, .x-toolbar .x-button.x-button-confirm.x-button-pressed:after, .x-toolbar .x-button.x-button-confirm.x-button-active, .x-toolbar .x-button.x-button-confirm.x-button-active:after, .x-button.x-button-confirm-round.x-button-pressing, .x-button.x-button-confirm-round.x-button-pressing:after, .x-button.x-button-confirm-round.x-button-pressed, .x-button.x-button-confirm-round.x-button-pressed:after, .x-button.x-button-confirm-round.x-button-active, .x-button.x-button-confirm-round.x-button-active:after, .x-toolbar .x-button.x-button-confirm-round.x-button-pressing, .x-toolbar .x-button.x-button-confirm-round.x-button-pressing:after, .x-toolbar .x-button.x-button-confirm-round.x-button-pressed, .x-toolbar .x-button.x-button-confirm-round.x-button-pressed:after, .x-toolbar .x-button.x-button-confirm-round.x-button-active, .x-toolbar .x-button.x-button-confirm-round.x-button-active:after, .x-button.x-button-confirm-small.x-button-pressing, .x-button.x-button-confirm-small.x-button-pressing:after, .x-button.x-button-confirm-small.x-button-pressed, .x-button.x-button-confirm-small.x-button-pressed:after, .x-button.x-button-confirm-small.x-button-active, .x-button.x-button-confirm-small.x-button-active:after, .x-toolbar .x-button.x-button-confirm-small.x-button-pressing, .x-toolbar .x-button.x-button-confirm-small.x-button-pressing:after, .x-toolbar .x-button.x-button-confirm-small.x-button-pressed, .x-toolbar .x-button.x-button-confirm-small.x-button-pressed:after, .x-toolbar .x-button.x-button-confirm-small.x-button-active, .x-toolbar .x-button.x-button-confirm-small.x-button-active:after {
background-image: none;
background-color: #628904;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3e5702), color-stop(10%, #507003), color-stop(65%, #628904), color-stop(100%, #648c04));
background-image: -webkit-linear-gradient(top, #3e5702, #507003 10%, #628904 65%, #648c04);
background-image: linear-gradient(top, #3e5702, #507003 10%, #628904 65%, #648c04);
}
/* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-decline, .x-toolbar .x-button.x-button-decline, .x-button.x-button-decline-round, .x-toolbar .x-button.x-button-decline-round, .x-button.x-button-decline-small, .x-toolbar .x-button.x-button-decline-small {
border: 1px solid #630303;
border-top-color: #7c0303;
color: white;
}
/* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-decline.x-button-back:before, .x-button.x-button-decline.x-button-forward:before, .x-toolbar .x-button.x-button-decline.x-button-back:before, .x-toolbar .x-button.x-button-decline.x-button-forward:before, .x-button.x-button-decline-round.x-button-back:before, .x-button.x-button-decline-round.x-button-forward:before, .x-toolbar .x-button.x-button-decline-round.x-button-back:before, .x-toolbar .x-button.x-button-decline-round.x-button-forward:before, .x-button.x-button-decline-small.x-button-back:before, .x-button.x-button-decline-small.x-button-forward:before, .x-toolbar .x-button.x-button-decline-small.x-button-back:before, .x-toolbar .x-button.x-button-decline-small.x-button-forward:before {
background: #630303;
}
/* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-decline, .x-button.x-button-decline.x-button-back:after, .x-button.x-button-decline.x-button-forward:after, .x-toolbar .x-button.x-button-decline, .x-toolbar .x-button.x-button-decline.x-button-back:after, .x-toolbar .x-button.x-button-decline.x-button-forward:after, .x-button.x-button-decline-round, .x-button.x-button-decline-round.x-button-back:after, .x-button.x-button-decline-round.x-button-forward:after, .x-toolbar .x-button.x-button-decline-round, .x-toolbar .x-button.x-button-decline-round.x-button-back:after, .x-toolbar .x-button.x-button-decline-round.x-button-forward:after, .x-button.x-button-decline-small, .x-button.x-button-decline-small.x-button-back:after, .x-button.x-button-decline-small.x-button-forward:after, .x-toolbar .x-button.x-button-decline-small, .x-toolbar .x-button.x-button-decline-small.x-button-back:after, .x-toolbar .x-button.x-button-decline-small.x-button-forward:after {
background-image: none;
background-color: #c70505;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f91f1f), color-stop(3%, #e00606), color-stop(100%, #ae0404));
background-image: -webkit-linear-gradient(top, #f91f1f, #e00606 3%, #ae0404);
background-image: linear-gradient(top, #f91f1f, #e00606 3%, #ae0404);
}
/* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-decline .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-decline .x-button-icon.x-icon-mask, .x-button.x-button-decline-round .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-decline-round .x-button-icon.x-icon-mask, .x-button.x-button-decline-small .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-decline-small .x-button-icon.x-icon-mask {
background-image: none;
background-color: white;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #fee6e6));
background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #fee6e6);
background-image: linear-gradient(top, #ffffff, #ffffff 3%, #fee6e6);
}
/* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-button.x-button-decline.x-button-pressing, .x-button.x-button-decline.x-button-pressing:after, .x-button.x-button-decline.x-button-pressed, .x-button.x-button-decline.x-button-pressed:after, .x-button.x-button-decline.x-button-active, .x-button.x-button-decline.x-button-active:after, .x-toolbar .x-button.x-button-decline.x-button-pressing, .x-toolbar .x-button.x-button-decline.x-button-pressing:after, .x-toolbar .x-button.x-button-decline.x-button-pressed, .x-toolbar .x-button.x-button-decline.x-button-pressed:after, .x-toolbar .x-button.x-button-decline.x-button-active, .x-toolbar .x-button.x-button-decline.x-button-active:after, .x-button.x-button-decline-round.x-button-pressing, .x-button.x-button-decline-round.x-button-pressing:after, .x-button.x-button-decline-round.x-button-pressed, .x-button.x-button-decline-round.x-button-pressed:after, .x-button.x-button-decline-round.x-button-active, .x-button.x-button-decline-round.x-button-active:after, .x-toolbar .x-button.x-button-decline-round.x-button-pressing, .x-toolbar .x-button.x-button-decline-round.x-button-pressing:after, .x-toolbar .x-button.x-button-decline-round.x-button-pressed, .x-toolbar .x-button.x-button-decline-round.x-button-pressed:after, .x-toolbar .x-button.x-button-decline-round.x-button-active, .x-toolbar .x-button.x-button-decline-round.x-button-active:after, .x-button.x-button-decline-small.x-button-pressing, .x-button.x-button-decline-small.x-button-pressing:after, .x-button.x-button-decline-small.x-button-pressed, .x-button.x-button-decline-small.x-button-pressed:after, .x-button.x-button-decline-small.x-button-active, .x-button.x-button-decline-small.x-button-active:after, .x-toolbar .x-button.x-button-decline-small.x-button-pressing, .x-toolbar .x-button.x-button-decline-small.x-button-pressing:after, .x-toolbar .x-button.x-button-decline-small.x-button-pressed, .x-toolbar .x-button.x-button-decline-small.x-button-pressed:after, .x-toolbar .x-button.x-button-decline-small.x-button-active, .x-toolbar .x-button.x-button-decline-small.x-button-active:after {
background-image: none;
background-color: #b80505;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #860303), color-stop(10%, #9f0404), color-stop(65%, #b80505), color-stop(100%, #ba0505));
background-image: -webkit-linear-gradient(top, #860303, #9f0404 10%, #b80505 65%, #ba0505);
background-image: linear-gradient(top, #860303, #9f0404 10%, #b80505 65%, #ba0505);
}
/* line 35, ../themes/stylesheets/sencha-touch/default/widgets/_sheets.scss */
.x-sheet, .x-sheet-action {
padding: 0.7em;
border-top: 1px solid #092e47;
height: auto;
background-image: none;
background-color: rgba(3, 17, 26, 0.9);
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(11, 60, 94, 0.9)), color-stop(3%, rgba(6, 31, 49, 0.9)), color-stop(100%, rgba(0, 2, 3, 0.9)));
background-image: -webkit-linear-gradient(top, rgba(11, 60, 94, 0.9), rgba(6, 31, 49, 0.9) 3%, rgba(0, 2, 3, 0.9));
background-image: linear-gradient(top, rgba(11, 60, 94, 0.9), rgba(6, 31, 49, 0.9) 3%, rgba(0, 2, 3, 0.9));
-webkit-border-radius: 0;
border-radius: 0;
}
/* line 44, ../themes/stylesheets/sencha-touch/default/widgets/_sheets.scss */
.x-sheet-inner > .x-button, .x-sheet-action-inner > .x-button {
margin-bottom: 0.5em;
}
/* line 47, ../themes/stylesheets/sencha-touch/default/widgets/_sheets.scss */
.x-sheet-inner > .x-button:last-child, .x-sheet-action-inner > .x-button:last-child {
margin-bottom: 0;
}
/* line 14, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-sheet.x-picker {
padding: 0;
}
/* line 18, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-sheet.x-picker .x-sheet-inner {
position: relative;
background-color: #fff;
-webkit-border-radius: 0.4em;
border-radius: 0.4em;
-webkit-background-clip: padding;
background-clip: padding-box;
overflow: hidden;
margin: 0.7em;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #bbbbbb), color-stop(30%, white), color-stop(70%, white), color-stop(100%, #bbbbbb));
background: -webkit-linear-gradient(top, #bbbbbb 0%, white 30%, white 70%, #bbbbbb 100%);
}
/* line 48, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-sheet.x-picker .x-sheet-inner .x-picker-slot .x-body {
border-left: 1px solid #999999;
border-right: 1px solid #ACACAC;
}
/* line 54, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-first .x-body {
border-left: 0;
}
/* line 60, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-last .x-body {
border-left: 0;
border-right: 0;
}
/* line 68, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-picker-slot .x-scroll-view {
z-index: 2;
position: relative;
-webkit-box-shadow: rgba(0, 0, 0, 0.4) -1px 0 1px;
box-shadow: rgba(0, 0, 0, 0.4) -1px 0 1px;
}
/* line 75, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-picker-slot .x-scroll-view:first-child {
-webkit-box-shadow: none;
box-shadow: none;
}
/* line 80, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-picker-mask {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 3;
display: -webkit-box;
display: box;
-webkit-box-align: stretch;
box-align: stretch;
-webkit-box-orient: vertical;
box-orient: vertical;
-webkit-box-pack: center;
box-pack: center;
pointer-events: none;
}
/* line 94, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-picker-bar {
border-top: 0.12em solid #006bb6;
border-bottom: 0.12em solid #006bb6;
height: 2.5em;
background-image: none;
background-color: rgba(13, 148, 242, 0.3);
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(85, 180, 246, 0.3)), color-stop(3%, rgba(37, 159, 244, 0.3)), color-stop(100%, rgba(11, 133, 218, 0.3)));
background-image: -webkit-linear-gradient(top, rgba(85, 180, 246, 0.3), rgba(37, 159, 244, 0.3) 3%, rgba(11, 133, 218, 0.3));
background-image: linear-gradient(top, rgba(85, 180, 246, 0.3), rgba(37, 159, 244, 0.3) 3%, rgba(11, 133, 218, 0.3));
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0.2em 0.2em;
box-shadow: rgba(0, 0, 0, 0.2) 0 0.2em 0.2em;
}
/* line 105, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-use-titles .x-picker-bar {
margin-top: 1.5em;
}
/* line 110, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-picker-slot-title {
height: 1.5em;
position: relative;
z-index: 2;
background-image: none;
background-color: #1295f1;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #5ab5f5), color-stop(3%, #2aa0f2), color-stop(100%, #0d87dc));
background-image: -webkit-linear-gradient(top, #5ab5f5, #2aa0f2 3%, #0d87dc);
background-image: linear-gradient(top, #5ab5f5, #2aa0f2 3%, #0d87dc);
border-top: 1px solid #1295f1;
border-bottom: 1px solid #095b94;
-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0.1em 0.3em;
box-shadow: rgba(0, 0, 0, 0.3) 0px 0.1em 0.3em;
padding: 0.2em 1.02em;
}
/* line 120, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-picker-slot-title > div {
font-weight: bold;
font-size: 0.8em;
color: #113b59;
text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0;
}
/* line 131, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-picker-slot .x-dataview-inner {
width: 100% !important;
}
/* line 135, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-picker-slot .x-dataview-item {
vertical-align: middle;
height: 2.5em;
line-height: 2.5em;
font-weight: bold;
padding: 0 10px;
}
/* line 143, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-picker-slot .x-picker-item {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* line 148, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-picker-right {
text-align: right;
}
/* line 151, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-picker-center {
text-align: center;
}
/* line 154, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
.x-picker-left {
text-align: left;
}
/* line 133, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar.x-docked-top {
border-bottom-width: .1em;
border-bottom-style: solid;
height: 2.6em;
padding: 0 .8em;
}
/* line 139, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar.x-docked-top .x-tab {
position: relative;
padding: 0.4em 0.8em;
height: 1.8em;
min-width: 3.3em;
-webkit-border-radius: 0.9em;
border-radius: 0.9em;
}
/* line 146, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar.x-docked-top .x-tab .x-button-label, .x-tabbar.x-docked-top .x-tab .x-hasbadge .x-badge, .x-hasbadge .x-tabbar.x-docked-top .x-tab .x-badge {
font-size: .8em;
line-height: 1.2em;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
/* line 153, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar.x-docked-top .x-tab .x-badge {
font-size: .6em !important;
top: -0.5em;
}
/* line 158, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar.x-docked-top .x-tab.x-tab-icon {
padding: 0.3em 0.8em;
}
/* line 161, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar.x-docked-top .x-tab.x-tab-icon .x-button-icon {
-webkit-mask-size: 1.2em;
width: 1.2em;
height: 1.2em;
display: inline-block;
margin: 0 auto;
position: relative;
}
/* line 170, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar.x-docked-top .x-tab.x-tab-icon .x-button-label, .x-tabbar.x-docked-top .x-tab.x-tab-icon .x-hasbadge .x-badge, .x-hasbadge .x-tabbar.x-docked-top .x-tab.x-tab-icon .x-badge {
margin: 0;
margin-left: .3em;
padding: .1em 0 .2em 0;
display: inline-block;
position: relative;
top: -0.4em;
}
/* line 185, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar.x-docked-bottom {
border-top-width: .1em;
border-top-style: solid;
height: 3em;
padding: 0;
}
/* line 191, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar.x-docked-bottom .x-tab {
-webkit-border-radius: 0.25em;
border-radius: 0.25em;
min-width: 3.3em;
position: relative;
padding-top: .2em;
-webkit-box-orient: vertical;
box-orient: vertical;
}
/* line 198, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar.x-docked-bottom .x-tab .x-button-icon {
-webkit-mask-size: 1.65em;
width: 1.65em;
height: 1.65em;
display: block;
margin: 0 auto;
position: relative;
}
/* line 207, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar.x-docked-bottom .x-tab .x-button-label, .x-tabbar.x-docked-bottom .x-tab .x-hasbadge .x-badge, .x-hasbadge .x-tabbar.x-docked-bottom .x-tab .x-badge {
margin: 0;
padding: .1em 0 .2em 0;
font-size: 9px;
line-height: 12px;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.bookmarks,
.x-button .x-button-icon.x-icon-mask.bookmarks {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.download,
.x-button .x-button-icon.x-icon-mask.download {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAGb0lEQVRoBd2aX4gVVRzH3V1dU5JMk9Q2wVxCo0QNTYRYS4l6CBFBomA1qjcjSOgPPUgR0VNBFBT0Bx96qAiSXipCH4rKIhGNUqE2SK3MqKwsLbXPZ7rnMo73jnPnzF6v9wefPefMnPP7/b7z58yZudtz6tSpMaNlPT09E/DdDxPhMpgNJyBtfTRG4AAchePk9BflqFhP1YIRqbCZsACWwjWwGIrYZ3TaDZ/ATjhIfh6IyqwywQhdRlaLYBVcB5Mgxn5n8HbYAjsQ/lGMs/pYz3AMOFLgG/AzeH+MBvo2xqqYXB1bSiyBe2EJvAaH4SSMhtC0T2MYy5jG7i0jvmXBBJoMj4D3VjuEpkVbN6axzWFyq6JbEkyAhfAqOJtmE2l32xzMZWErogsLxvE62As+Vtotrlk8czGndUVFFxKMw41wEM7FJdxMbNhuTua2sYjoXME4cVHwEDhZhACdWpqjufblCW8qmIHOxHfCT9CpIrN5mas5N53B8wS7kPgKOumezQrMts3VnJc1O8sNV1qsmq5k0LNwI3hZx9ovONgEPk4amcvRR+HiRjtb3KborbAB0fvOGJs9EnRwwf88HIHsESzbVuisbKzQdh/Yp6z/7DhzV8OEECOU3qd148z20FgDK+DC+o74in59Y2pm7rNPVWbualhT01T3e5pgts6D9eARrzIB3LXVzF0N60FNdasL5kj0sXUtzIf+eo/zt6IGtaytaUuU1AXTugKuhyomjsR5B/xRi5rUllgimCMwltYQzAHr3WJqUdNQTWOyuFDcpbASptnoMlOT2tQ4phfl3uBzwes9byZl93lpalLbXLV6SXtzr4BuPLvISkxtauxX8DjwW5Qv9t1qalPjOAX7vJoB3TRZIec0U5saZyl4ELr57CIvMTUOKngAqlxGJt478I8aBxQ8Hbpxds4eczVOV/BUuCC7twvbapyq4Ha8JPQVOIBF+hRwk9slWVLm9miy8xjbj0PRA/YHfU828eVm99mnyFziu6/9XT+Mh5as7KPIoE/BB/BPgYgeoP05/dx3OxQR4LrBF4IHoWUrK9j7wZeNzXxJGGk5amYAPvyovj2zuWGT1eEcdjwOpeYdL8mytpyBr5BAW5akroOxy4n5MiyFUqZg78W8+yvPsZfWEyQy3WzyOsbsq/n2Q9+TYMwypsbjCj4EXlJlzPHDcD/48W+0TN8PgF9kyh5YNR4y4e/AGbKsOVveC8OcCSeUSg2fir0H7oayc445qVGtY5bBHnDmjeFXxt8GY8Mn0dhSX+Ds/RvE5OZYNao1eQ/+kNJrPNapoocg9/edIgdCH3AL6DM2L7WpcZqXtKd6L/wJsXYRDl6ABVyK+i5ltbGLGfw06DPW1KbG5NY1MS+bbyD2SIbxO/G1HFo+046BG+ALCP5iS7WpsTf5MY3KPPgYTkCs8zD+XXzNLHL5hj70dwb2WbsNgp/YUk1qm2ecINh/MXoMfoTYAGG8gV6ES4Kgs5X2hZegivkk5KEmtU2qC04q/082u9gROlZRmvgmSH6lzBNMHx9pJlZF3LQPNQ2F2PXfh9noEvF18AGdHhBb/xd/d4SAzUr63AX2jY2XHq8WNU0LceuC3YCtBiecqgP7HF0XgmZL9m2AI5BONrauBrWsTsfLCnbV9AxU8ezLJnwAv2vSwa27DX6AbP/YthrU0p+OeZrgWgLO2FvB99zYoNnx+/B5dUiA+kL4FrL9YtvmroZkZg7xEn3pRqjTcRhGIDZwo/E+rpyNZ4D1Rn1it43gdzjoSZdnnGF3Yq5h74Oq76sg5D18b4PQrrI0Z3NvuKZvKLgmegqDNkPVs3aV4rK+zNWcp6TParreVHBN9ACDt8DfkHXeaW1zNNeBtMBsPVdwTfQgTt6CThZtbuY4mBWYbZ9VcEr0mx0qWrHmdlaxiZbsEWjWxuFkeBhcm7pkPNeXtDmYizkV/r/pQmc4HAQc+934ZtgBVa/GWjmAxjYHcxkf8itStiQ4OCTIbHgO9kM7z7axjGns2SGfVspSgkMAgq4EZ0b/i3U0hevbGMZaGeKXKRv+cylOCxufY/xCcS3cCl5ii6AXqjCFeum+A2/D54j0Pbu0RQsOkRHu+6zP7avgJvDsz4VWxStyD7wPrsi+hP0ILfIbFl3zrTLB6TCId3KbCK6X58MSmAOuocW69jUcrmH9U9gF38NRRB6jrNT+AwkLDdxcvfCRAAAAAElFTkSuQmCC');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.favorites,
.x-button .x-button-icon.x-icon-mask.favorites {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFfUlEQVRoBd2aXahVRRTHz/Ujv+2mZRGZB7W6mtpFikC7+UWUZiqBD0JPFdRL1EMFPfjoU4baS0FUD/UWZBEVShA+BCpmWApRSkgllNpDmZWZt9//eOay72afvWfWOTPn3rvgz8yeWbPW+s/XmT379AwODtZSSQ+CryVgA/gVfIx/pelEhFMBVlvBOaBeFo6Cean8y09KsnMg932TqCOs9M2UhMfhMJVsxtHcAmcbmekLCsqjFKUkvAYG1xSwmEHZqoLyKEVJCDOCNxH9HUCbVl6mULAuXxjrOQlhgl8Bbi0h0Uen3FBS37GqVIQHiHh2SdR16jTlo0t0woycpuxiUDSdHcFeMv3uIWYanTDB3wIWVZBQHP10zuQKvbarUxDWT1HRz1E++Ds99fLtgp6jEmbExhPNcs+IbkZPiCpRCRP5TPCQJ4MJ6A3QSUqjSWzC2ozuC4j+fnSnB+gHq8YmvJKIJgVEpRPX9QH6waqxCa8PjEhHT981H2j6qno0wqzF63BhOUxsom3Zb7aJqGsUjTAONFJlpysXQz7VuXpavrBTzzEJaz1adlzNjHs6RTBvJyZhjZTF/kTaWZZCnlvhsyWgQkPZQpagzsX1bFlAXjGtDdAPUu1p3PPQhCCXkdwG/mta0PWLds060AuAnqtEOjpdbQR3VymX1P9F3UfgGJA9X9F92c/ADaQ2P8V0DJ4/kDbeYKaSvgI2AN0+OGJK1VAbSIhTOXEOybYll2kte77yD4rqrHyb85S9Cl4HtReAyI11/A7HpRq5PSD6oR0f3Rad+H7S1DvV7UgS+tc1cU3n3V/AWJ/SX8BxVuMinow2rNNjlPQVeH0GFg378kDBfLAPXARjZbTPwmUXmOG+bgz71EKFfqKeAUWfREZbJxyCxyOOqEuHER4qrNUWovwy0CFktBHV4eNZMNvxyaaFhKWAaBt/HJwEo4W0luSKLMF8viVhp4iBeeBd8CcYqcQ1qi+CKS7uVmklYdcQY0+C42Ckkf6EmO51cVal3oRlCFkCdKgfCWtbo7obDO3AVWQbHHyUsjo40E6uq9cvQbdG+wN892fj8s0HjXDWKA51/t4JUo72H/jTDtybjSUkbyYsJ0gdfAtSjfTn+JoWQjCv2+57a4M1QaQSvZvrMsIs7RJejGcdUlLJUhzpZsYsZsJcCen6ZwCE3IaYA2021OfUdU3fJltmwni7Fvh+KDMF16KR3ux0lWuSdgjPxeNdJq/tNdKNqJaSSUyEmVK6JNPomtqbIh3eSKNsEmvAarfJ5LEzjbbR59MtpqyEb8eZjpndkhtxvNri3Er4YZxpx+yW6Jdhi8V5MOHm+n0QZ9afo0u0fQO8A5S3iPaQ1cTSG9w4f/SqesZBH/gRWI6T+gyyxfkgvw2cMdrS+/lTzpZvGnyWxsnTwHLRd4R2a/OBqQyoztKBe/P2qp6DCBOUptKHhuA+pU1fq2Co0/F0L9CVaghxXTbWW9ktKg8lrFfCrwODeh/9wgu1bEDo6OT2Fvgb+JLWq+nQEsnaa5UPJbwKBxc8A9KXPG1O3u+u6E4F24GvD3XMDjCxFcF8uTdhjGpHfwn49L42lCeAdyDZwGi3HpwAPr6+Q29htn1ZPoSwfuz3ewShXVcBNz62lzkvq6O9DjZHgQ9p72kdQljvob9VBPAN9Q+UEQmpw5b+Sf8e0FotI/4a9ZN8bIcQXlnh9AD1y3ychuhgU0tpJyhb14epn+ljN+Sk9S9G1ct50d8SdgF9x9EO3lHB5hXwPEYfA8dbGD9LuWZBtfj0inSQWUDTKzu1dAB5Dkz2tdOOHn70LvwVyMag/FYwzse295Rukq5j+G1wEOib66PAy5FPMD46+NPmqTV7CpwGGvkJPm2l8z8GWDNDloqpGQAAAABJRU5ErkJggg==');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.info,
.x-button .x-button-icon.x-icon-mask.info {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.more,
.x-button .x-button-icon.x-icon-mask.more {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAADJ0lEQVRoBe2YS2sUQRSFp5MgvmLU+CAMiBJFDBHcCeoPEFciuHMjroMK4lZBcONG0JW60U1UEgRx59IXuNMoKEElKL7GRwyIqNHxO0N66FT3UNU9IHRNFXz0VNW5t+vW6RcT1ev1Sie1rk4qVrWGgn13PDgcHPZsB8Il7ZmhqXKCw6kt8WwgOOyZoalygsOpLfFsIDjsmaGpcoLDqS3xbCA47JmhqXKCw6kt8Wyg6XAURV2wEy7BM5iFtzAKu2BB0dqJ7YEtcBYmQblfwzjshUVt5O4mfhjOwwQodw3GYA8snpd77n9pFXMYvoP+qDaZZewcVKXPAzE64Qn4CmZe9f/AFSiSu4e4IzANrXJfZ24gXjO/KxEcg9+QFZQcU/CSONh2RKsraMQhr85xE/psOeN5tCr2APyA5Bqzfl9D06tYtX3wC7KE5pg2ZX98UtsR7XZo5ayZW/1DENnyzi18CO1nyMqTNXYcrTapcitHkBLJiZW2RaGRuxcg6+Stxu6i73fI3Y3uZM7cU+hXQeVvzsBP6Dc5LupxztzaiEGH3AvR3S+Qe4dc0D2cp/Uj1oPI1pR7g030n+erWlTe9pMA3cu2Jre+2ERtzBdZe01BL3Ke9Al6vQZsTbfKQ5vImH9PXxtqa3qVPbWJjHk94J6r4DPGhK17A8EHm4j7UAWP2nTG/GX6NWMs1SW3rrCroLeLaxtDqDdG4368zbHVkzM5Polus+2hEs+j7YNxx9zv0FkfhoncvegvOuZ+iW6rYhtfTXTWgV7OyeLM3w+Y3xaf0PVIzAqwFf0IzW7XnLGOmLUg58y1JvsTzA83Y5o/eLcyMQISJAN0z56G9bE275HYNXAU7kAy9xv6p2Bj3pyxntjVcBDuQTL3FH19Dg/FWh0bXzUMNhsf23JkOQzCK9B1P4NY39OFG3kjgpeB8g/AR/gG0+3mJkeF9Lp9lkIVZkDfC1r3vPs8VTAir1uRd1mpNyQUXGr7HBYfHHbYpFJLgsOlts9h8cFhh00qtSQ4XGr7HBYfHHbYpFJLgsOlts9h8cFhh00qtSQ4XGr7HBYfHHbYpFJLOs7hf5j4Vg3iLoGkAAAAAElFTkSuQmCC');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.time,
.x-button .x-button-icon.x-icon-mask.time {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.user,
.x-button .x-button-icon.x-icon-mask.user {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAEWElEQVRoBe2aS0gVYRiGO1lmF8nQQlETutGFokAiqEV0ISKwgmrdMtzUpnW7drWKbFGbQAKpJIhuUGIUFUkW0T1Jq4V2U4ui7GLPexpDD+ecuX1jHqcPHseZ+f9vvnf++e8n0d/fPyZONjZOYqU1doLHRV3CiURCz5gMxTANJsJg+8XJJ+iBt9BHNdO1SCwRZR1GbAFRl8F8WAFLoRwGLME/ffAM7kETvIYPxPWDo7lFIhiheURaCVtgBywHXXOzbhJcggZoRvR7twy+76uELSEAtQsqySPwGdQN+KWDPHuh2DI2+TIVm3T455M9G0Bk6ktRvd4NBZaiTQUT3AQnSNW/VAFBzl/iZw0kq56FcOtuaQHB7QIv9ZVkrqZ2YA9Mck3pMYGZYKeh2sBz1SJb2mqcmfk0E0xQ6l9rwNoKcWjm11JwEYFVW6t1/K218mspeB5B5VsFluKnIuU88Kml4PGBo3DPqBGZiVkKNgvKRFkGJ5aCv2Z4xoi6bCm4DWUaXERhZhMJS8FfolDq+DSbRFgKjrIOa8poYpaCTQKK2sl/wSHfcFSNlll1sSzhn7ys3pAvLFP275lu+L1uKVhBPfYbgMf0zz2mc01mKfgbT7vi+kT/CeT3sv9s6XNYCtbg4CJ0pX9U4Kv3yXk3cO6UjGaCWX5Rg/UArqY8I8yp1qdPQ08YJ4Pzmgl2nCqwc2DVyKjunuddqkE0MVPBBKYSuQ7tJtEhFj9apDczU8FOVB0ctZiuHYUw9obMjbxErW2bmblgApTQengVIkq1B83QEsJH2qzmgp2n3ObYCEGndZ3krbcuXcUWiWACldCjoA0yv6a8J6HJb0Yv6SMRrAcj+gmHA+B3aneDPHXk/8jR3LR3a2rOfnAlTmfDVPDb6Khrq8bPDI5PoRPxZpMSk+1SgtOKpTa8l8BC0JaLmAkloA1xr/aOhJqEtINGWeqW7jjHXrQHbRdw4WxSJf8L8Aeh2m1QaWoBfiUsA61PTwGtUYeZ1qlP1zhan3YraBSnz/0mdAUVHqiEESoxKs0a2AxloJIMI5DsWU0vQH2z2oZToAnFI7+fu2/BiF3PgzbCKqgC1bXhNH3S6rba4BocR7TquifzLBih5XjcCSrROaAGKbJWHt9uJuGq67fgAki4zrNaVsGIzCP3dNgE20B1VJ+uro8UUz3Xr39UvxugCeEZl3UzCkZsBZn1+W6HRaB6qtZ4pJp2PtTna+58DFoR3sVxqHFxyM8euFsIW6EeXoDeoPrBXEEbAlpqqoN1kD9YY6rYxSQ4DGoE9KOSXBGZLk4NYB7CfigZEP1XMBfVEJ0BJUznIFevaSBzEEolOimYkyo4AfocclVYtrjViB0C9SzJEdE+jrn+CWcTrHvdUKuRUSm0gPrZ0W7tGjjMhTiIVWFWSbAGEnGxhAT/y+HhsL9oiVWFjo3FqnRVqrETrG5pFmiSEAuTYC3TFMVCLSIzTg9H6wuIXR2OneDfMJq1NmzzbS8AAAAASUVORK5CYII=');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.team,
.x-button .x-button-icon.x-icon-mask.team {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFI0lEQVRoBe2ZSYgdVRSG+yUmnagRQYU4NbZKNLYKWTgg4gQOaDYqJIIGl4LixhBwoy50LSIiulEjCkpAUBBRURpdGceFMQ7YtgkOJE4xTjGa9vuedUl1Vd2qevSrFqvrwJ97695zzj3/PXd6nd7MzMzIQpJFC4msXDvCbc94l+Euwy2bgW5JtyyhOTpdhnNT0rKGLsMtS2iOTpfh3JS0rOGQ+eLT6/VWMNYJ4NjUmN9T/xLs4WfqvPxO7TU9DkTdNmvBbeAskJ7kv/n+AjwKXiSW7yibFQk3BSIPZHdTl5xZzML238DDYFlTsQS/jZF1AGQ1mAZZkkXfe9FbGwJrqmz6lL4cEmOgjhyO0jq2gGVj0hhhAl9M1FeB3gDRn4Pu/5NwQnJ0ALKqrgKHDmgzkHpjGR4oioPKP1H96+Dn8GvpKyLqneV5Lp0XgnHggTMFJjlYPqAcpnyLsz/LHBLL0fRfCzwbvNN3gLeI5WXKaik7DbF2/20A28HPYF+CPZQfg9tj9vS5h18DRSdyrO0j9FeW+PQenwTe138AJ+d34OPFa215zDa0l15LOLgamM0DIBukbQ60JjhLl7RL+HWQtSv7jhLGz1FgM3DJZ30Yy69gYzqGonrVHr4eJ+OgB7Ji2xi4lGUW8+PsD0vOwNGNwInMirF42K0nlmXZzvR3LNARDN3fx6WVI3VJF50Fzvr7EZtY8zQdLtUiOYXGIrJpXUmvTDdk61HCKEqiagD9SSwnLCeX3RYwSJafRd/zoUj2FzVm2hyzMJ6gV0Y46Myl/BzjeqfnyMg36G5NJqpoTPvnLGWEnS0f9lVStL/7NgT/C5XNoHTW6XesV4En/1wlGo+Oo4QJ1ivoxxqju+fKCG2lf1uFH7P3eEl2K8xndRt3VKKEE4sPKWOHiCreg28TaPR1RN/X6GwEO0GReJ3cg95kUWeqzT8W6KtMpujcVaZQRfgFjL8qcbCDvndi/Zz0h4Hr6L8JHBHRW0L7DejdAU6K6Nj8CfBQi4mH4xYmrmy1sXlK/gCAAyfkQaAT91kWj9HW/6tJ8MO3NmeC+4CHlqdu1q7o25Xk5Hqynw+WBp+hpO1K4JItsnfr5GyCbSirCHstnQpcKulBXMK+o1frCPGgWAomwL2gLsm0z3S9ny38XARWgEXJOI7xNMiS9ns9MN5ZCQhEQ1lIGCOXmZf4ZeAW8C4IAblv3wBXAIn6sjkZ3Arc80FvGKW/nu4H/nhZDiR0IngI+LYPY3i43gWuAeNgFBQSn0UYJZejRH3CPQ8cMDi19Jp6AviuVfd48ADwRZXWG3Z9J/6fApeAJUm2TYRE02OZjPfA3WAM9HVDdvt2iXHI1HkoPQd2g7SjUHef+NyU7AXgFRD65qOcZrybQXgFmtUDIDu2xE3CBuCWWBxIU+8vk9MozdQukDUO3x4qm5IJOp36ZyW6waaJci/jrkviWEV9qiQOdd8Ebr/+T0fKkYvBp6AqOB2fnQz0SA39Kn9z6Z9mfPeze/UlUOXrB3Q2AW36a77KwP7tYCwh7Mupjk1TOmZuNInlyZqxuN8n3ItrQF1xryvRl9W/3Y3/60QGCTGF71h5JB0Tbn7vsDqyP6Vkva5dymxoVQ+lIE6+3+lJCH3Zcp+E78y2Fny7Evw7kstC8YA7BtQZRP1hiwTDKnuGun8aSiekaDxXwrbG/zOtaOT/ss3MLSjpCLc93V2Guwy3bAa6Jd2yhObodBnOTUnLGroMtyyhOTpdhnNT0rKGfwD3f6JVZi/xSQAAAABJRU5ErkJggg==');
}
/* line 255, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-light {
background-image: none;
background-color: #2583c4;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #56a7df), color-stop(3%, #2b91d7), color-stop(100%, #2175af));
background-image: -webkit-linear-gradient(top, #56a7df, #2b91d7 3%, #2175af);
background-image: linear-gradient(top, #56a7df, #2b91d7 3%, #2175af);
border-top-color: #2175af;
border-bottom-color: #195884;
}
/* line 260, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-light .x-tab {
color: #c1dff4;
border-bottom: 1px solid transparent;
}
/* line 265, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-light .x-tab-active {
color: white;
border-bottom-color: #278bd1;
}
/* line 270, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-light .x-tab-pressed {
color: white;
}
/* line 277, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-light.x-docked-bottom .x-tab {
text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
}
/* line 279, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-light.x-docked-bottom .x-tab .x-button-icon {
background-image: none;
background-color: #6cb2e3;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #acd4f0), color-stop(3%, #81bde7), color-stop(100%, #56a7df));
background-image: -webkit-linear-gradient(top, #acd4f0, #81bde7 3%, #56a7df);
background-image: linear-gradient(top, #acd4f0, #81bde7 3%, #56a7df);
}
/* line 284, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-light.x-docked-bottom .x-tab-active {
background-image: none;
background-color: #2175af;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #195884), color-stop(10%, #1d6699), color-stop(65%, #2175af), color-stop(100%, #2176b1));
background-image: -webkit-linear-gradient(top, #195884, #1d6699 10%, #2175af 65%, #2176b1);
background-image: linear-gradient(top, #195884, #1d6699 10%, #2175af 65%, #2176b1);
text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0;
-webkit-box-shadow: #1d6699 0 0 0.25em inset;
box-shadow: #1d6699 0 0 0.25em inset;
}
/* line 292, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-light.x-docked-bottom .x-tab-active .x-button-icon {
background-image: none;
background-color: #1da2ff;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6ac2ff), color-stop(3%, #37adff), color-stop(100%, #0398ff));
background-image: -webkit-linear-gradient(top, #6ac2ff, #37adff 3%, #0398ff);
background-image: linear-gradient(top, #6ac2ff, #37adff 3%, #0398ff);
}
/* line 301, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-light.x-docked-top .x-tab-active {
background-image: none;
background-color: #2175af;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #195884), color-stop(10%, #1d6699), color-stop(65%, #2175af), color-stop(100%, #2176b1));
background-image: -webkit-linear-gradient(top, #195884, #1d6699 10%, #2175af 65%, #2176b1);
background-image: linear-gradient(top, #195884, #1d6699 10%, #2175af 65%, #2176b1);
color: white;
}
/* line 306, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-light.x-docked-top .x-tab .x-button-icon {
background-image: none;
background-color: #6cb2e3;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #acd4f0), color-stop(3%, #81bde7), color-stop(100%, #56a7df));
background-image: -webkit-linear-gradient(top, #acd4f0, #81bde7 3%, #56a7df);
background-image: linear-gradient(top, #acd4f0, #81bde7 3%, #56a7df);
}
/* line 255, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-dark {
background-image: none;
background-color: #0e4b75;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1676b9), color-stop(3%, #11598c), color-stop(100%, #0b3c5e));
background-image: -webkit-linear-gradient(top, #1676b9, #11598c 3%, #0b3c5e);
background-image: linear-gradient(top, #1676b9, #11598c 3%, #0b3c5e);
border-top-color: #0b3c5e;
border-bottom-color: #061f31;
}
/* line 260, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-dark .x-tab {
color: #63b4ec;
border-bottom: 1px solid transparent;
}
/* line 265, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-dark .x-tab-active {
color: white;
border-bottom-color: #105483;
}
/* line 270, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-dark .x-tab-pressed {
color: white;
}
/* line 277, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-dark.x-docked-bottom .x-tab {
text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
}
/* line 279, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-dark.x-docked-bottom .x-tab .x-button-icon {
background-image: none;
background-color: #1985d0;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4ca9e9), color-stop(3%, #1e93e4), color-stop(100%, #1676b9));
background-image: -webkit-linear-gradient(top, #4ca9e9, #1e93e4 3%, #1676b9);
background-image: linear-gradient(top, #4ca9e9, #1e93e4 3%, #1676b9);
}
/* line 284, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-dark.x-docked-bottom .x-tab-active {
background-image: none;
background-color: #0b3c5e;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #061f31), color-stop(10%, #092e47), color-stop(65%, #0b3c5e), color-stop(100%, #0c3e60));
background-image: -webkit-linear-gradient(top, #061f31, #092e47 10%, #0b3c5e 65%, #0c3e60);
background-image: linear-gradient(top, #061f31, #092e47 10%, #0b3c5e 65%, #0c3e60);
text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
-webkit-box-shadow: #092e47 0 0 0.25em inset;
box-shadow: #092e47 0 0 0.25em inset;
}
/* line 292, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-dark.x-docked-bottom .x-tab-active .x-button-icon {
background-image: none;
background-color: #50b7ff;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9dd7ff), color-stop(3%, #6ac2ff), color-stop(100%, #37adff));
background-image: -webkit-linear-gradient(top, #9dd7ff, #6ac2ff 3%, #37adff);
background-image: linear-gradient(top, #9dd7ff, #6ac2ff 3%, #37adff);
}
/* line 301, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-dark.x-docked-top .x-tab-active {
background-image: none;
background-color: #0b3c5e;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #061f31), color-stop(10%, #092e47), color-stop(65%, #0b3c5e), color-stop(100%, #0c3e60));
background-image: -webkit-linear-gradient(top, #061f31, #092e47 10%, #0b3c5e 65%, #0c3e60);
background-image: linear-gradient(top, #061f31, #092e47 10%, #0b3c5e 65%, #0c3e60);
color: white;
}
/* line 306, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-dark.x-docked-top .x-tab .x-button-icon {
background-image: none;
background-color: #1985d0;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4ca9e9), color-stop(3%, #1e93e4), color-stop(100%, #1676b9));
background-image: -webkit-linear-gradient(top, #4ca9e9, #1e93e4 3%, #1676b9);
background-image: linear-gradient(top, #4ca9e9, #1e93e4 3%, #1676b9);
}
/* line 255, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-neutral {
background-image: none;
background-color: #e0e0e0;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ededed), color-stop(100%, #d3d3d3));
background-image: -webkit-linear-gradient(top, #ffffff, #ededed 3%, #d3d3d3);
background-image: linear-gradient(top, #ffffff, #ededed 3%, #d3d3d3);
border-top-color: #d3d3d3;
border-bottom-color: #bababa;
}
/* line 260, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-neutral .x-tab {
color: #7a7a7a;
border-bottom: 1px solid transparent;
}
/* line 265, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-neutral .x-tab-active {
color: black;
border-bottom-color: #e8e8e8;
}
/* line 270, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-neutral .x-tab-pressed {
color: black;
}
/* line 277, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-neutral.x-docked-bottom .x-tab {
text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0;
}
/* line 279, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-neutral.x-docked-bottom .x-tab .x-button-icon {
background-image: none;
background-color: #adadad;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d3d3d3), color-stop(3%, #bababa), color-stop(100%, #a0a0a0));
background-image: -webkit-linear-gradient(top, #d3d3d3, #bababa 3%, #a0a0a0);
background-image: linear-gradient(top, #d3d3d3, #bababa 3%, #a0a0a0);
}
/* line 284, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-neutral.x-docked-bottom .x-tab-active {
background-image: none;
background-color: #d3d3d3;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bababa), color-stop(10%, #c7c7c7), color-stop(65%, #d3d3d3), color-stop(100%, #d5d5d5));
background-image: -webkit-linear-gradient(top, #bababa, #c7c7c7 10%, #d3d3d3 65%, #d5d5d5);
background-image: linear-gradient(top, #bababa, #c7c7c7 10%, #d3d3d3 65%, #d5d5d5);
text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0;
-webkit-box-shadow: #c7c7c7 0 0 0.25em inset;
box-shadow: #c7c7c7 0 0 0.25em inset;
}
/* line 292, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-neutral.x-docked-bottom .x-tab-active .x-button-icon {
background-image: none;
background-color: #7a7a7a;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a0a0a0), color-stop(3%, #878787), color-stop(100%, #6d6d6d));
background-image: -webkit-linear-gradient(top, #a0a0a0, #878787 3%, #6d6d6d);
background-image: linear-gradient(top, #a0a0a0, #878787 3%, #6d6d6d);
}
/* line 301, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-neutral.x-docked-top .x-tab-active {
background-image: none;
background-color: #d3d3d3;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bababa), color-stop(10%, #c7c7c7), color-stop(65%, #d3d3d3), color-stop(100%, #d5d5d5));
background-image: -webkit-linear-gradient(top, #bababa, #c7c7c7 10%, #d3d3d3 65%, #d5d5d5);
background-image: linear-gradient(top, #bababa, #c7c7c7 10%, #d3d3d3 65%, #d5d5d5);
color: black;
}
/* line 306, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tabbar-neutral.x-docked-top .x-tab .x-button-icon {
background-image: none;
background-color: #adadad;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d3d3d3), color-stop(3%, #bababa), color-stop(100%, #a0a0a0));
background-image: -webkit-linear-gradient(top, #d3d3d3, #bababa 3%, #a0a0a0);
background-image: linear-gradient(top, #d3d3d3, #bababa 3%, #a0a0a0);
}
/* line 113, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tab.x-item-disabled span.x-button-label, .x-tab.x-item-disabled .x-hasbadge span.x-badge, .x-hasbadge .x-tab.x-item-disabled span.x-badge, .x-tab.x-item-disabled .x-button-icon {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5;
}
/* line 116, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tab.x-draggable {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
opacity: 0.7;
}
/* line 120, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tab {
z-index: 1;
-webkit-user-select: none;
overflow: visible !important;
}
/* line 125, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
.x-tab .x-button-label, .x-tab .x-hasbadge .x-badge, .x-hasbadge .x-tab .x-badge {
overflow: visible !important;
}
/* line 36, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar {
padding: 0 0.2em;
position: relative;
}
/* line 46, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar.x-docked-top {
border-bottom: .1em solid;
}
/* line 50, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar.x-docked-bottom {
border-top: .1em solid;
}
/* line 54, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar.x-docked-left {
width: 7em;
height: auto;
padding: 0.2em;
border-right: .1em solid;
}
/* line 61, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar.x-docked-right {
width: 7em;
height: auto;
padding: 0.2em;
border-left: .1em solid;
}
/* line 69, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-title {
line-height: 2.1em;
font-size: 1.2em;
text-align: center;
font-weight: bold;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin: 0 0.3em;
padding: 0 .3em;
max-width: 100%;
}
/* line 81, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-title .x-innerhtml {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* line 128, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-dark {
background-image: none;
background-color: #1468a2;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1e93e4), color-stop(3%, #1676b9), color-stop(100%, #11598c));
background-image: -webkit-linear-gradient(top, #1e93e4, #1676b9 3%, #11598c);
background-image: linear-gradient(top, #1e93e4, #1676b9 3%, #11598c);
border-color: black;
}
/* line 132, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-dark .x-title {
color: white;
text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
}
/* line 137, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-dark.x-docked-top {
border-bottom-color: black;
}
/* line 141, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-dark.x-docked-bottom {
border-top-color: black;
}
/* line 145, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-dark.x-docked-left {
border-right-color: black;
}
/* line 149, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-dark.x-docked-right {
border-left-color: black;
}
/* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-dark .x-button, .x-toolbar .x-toolbar-dark .x-button, .x-toolbar-dark .x-field-select .x-component-outer, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer, .x-toolbar-dark .x-field-select .x-component-outer:before, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before {
border: 1px solid #061f31;
border-top-color: #092e47;
color: white;
}
/* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-dark .x-button.x-button-back:before, .x-toolbar-dark .x-button.x-button-forward:before, .x-toolbar .x-toolbar-dark .x-button.x-button-back:before, .x-toolbar .x-toolbar-dark .x-button.x-button-forward:before, .x-toolbar-dark .x-field-select .x-component-outer.x-button-back:before, .x-toolbar-dark .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-back:before, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-forward:before {
background: #061f31;
}
/* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-dark .x-button, .x-toolbar-dark .x-button.x-button-back:after, .x-toolbar-dark .x-button.x-button-forward:after, .x-toolbar .x-toolbar-dark .x-button, .x-toolbar .x-toolbar-dark .x-button.x-button-back:after, .x-toolbar .x-toolbar-dark .x-button.x-button-forward:after, .x-toolbar-dark .x-field-select .x-component-outer, .x-toolbar-dark .x-field-select .x-component-outer.x-button-back:after, .x-toolbar-dark .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-back:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar-dark .x-field-select .x-component-outer:before, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-forward:after {
background-image: none;
background-color: #11598c;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1985d0), color-stop(3%, #1468a2), color-stop(100%, #0e4b75));
background-image: -webkit-linear-gradient(top, #1985d0, #1468a2 3%, #0e4b75);
background-image: linear-gradient(top, #1985d0, #1468a2 3%, #0e4b75);
}
/* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-dark .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-dark .x-button .x-button-icon.x-icon-mask, .x-toolbar-dark .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar-dark .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask {
background-image: none;
background-color: white;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #e8f4fc));
background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #e8f4fc);
background-image: linear-gradient(top, #ffffff, #ffffff 3%, #e8f4fc);
}
/* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-dark .x-button.x-button-pressing, .x-toolbar-dark .x-button.x-button-pressing:after, .x-toolbar-dark .x-button.x-button-pressed, .x-toolbar-dark .x-button.x-button-pressed:after, .x-toolbar-dark .x-button.x-button-active, .x-toolbar-dark .x-button.x-button-active:after, .x-toolbar .x-toolbar-dark .x-button.x-button-pressing, .x-toolbar .x-toolbar-dark .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-dark .x-button.x-button-pressed, .x-toolbar .x-toolbar-dark .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-dark .x-button.x-button-active, .x-toolbar .x-toolbar-dark .x-button.x-button-active:after, .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressing, .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressed, .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar-dark .x-field-select .x-component-outer.x-button-active, .x-toolbar-dark .x-field-select .x-component-outer.x-button-active:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressing, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressed, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-active, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-active:after, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-active, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-active, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-active:after {
background-image: none;
background-color: #0f517e;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0a3351), color-stop(10%, #0c4267), color-stop(65%, #0f517e), color-stop(100%, #0f5280));
background-image: -webkit-linear-gradient(top, #0a3351, #0c4267 10%, #0f517e 65%, #0f5280);
background-image: linear-gradient(top, #0a3351, #0c4267 10%, #0f517e 65%, #0f5280);
}
/* line 160, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-dark .x-label, .x-toolbar-dark .x-form-label {
font-weight: bold;
color: white;
text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
}
/* line 128, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-light {
background-image: none;
background-color: #1985d0;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4ca9e9), color-stop(3%, #1e93e4), color-stop(100%, #1676b9));
background-image: -webkit-linear-gradient(top, #4ca9e9, #1e93e4 3%, #1676b9);
background-image: linear-gradient(top, #4ca9e9, #1e93e4 3%, #1676b9);
border-color: black;
}
/* line 132, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-light .x-title {
color: white;
text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
}
/* line 137, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-light.x-docked-top {
border-bottom-color: black;
}
/* line 141, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-light.x-docked-bottom {
border-top-color: black;
}
/* line 145, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-light.x-docked-left {
border-right-color: black;
}
/* line 149, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-light.x-docked-right {
border-left-color: black;
}
/* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-light .x-button, .x-toolbar .x-toolbar-light .x-button, .x-toolbar-light .x-field-select .x-component-outer, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer, .x-toolbar-light .x-field-select .x-component-outer:before, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before {
border: 1px solid #0b3c5e;
border-top-color: #0e4b75;
color: white;
}
/* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-light .x-button.x-button-back:before, .x-toolbar-light .x-button.x-button-forward:before, .x-toolbar .x-toolbar-light .x-button.x-button-back:before, .x-toolbar .x-toolbar-light .x-button.x-button-forward:before, .x-toolbar-light .x-field-select .x-component-outer.x-button-back:before, .x-toolbar-light .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-back:before, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-forward:before {
background: #0b3c5e;
}
/* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-light .x-button, .x-toolbar-light .x-button.x-button-back:after, .x-toolbar-light .x-button.x-button-forward:after, .x-toolbar .x-toolbar-light .x-button, .x-toolbar .x-toolbar-light .x-button.x-button-back:after, .x-toolbar .x-toolbar-light .x-button.x-button-forward:after, .x-toolbar-light .x-field-select .x-component-outer, .x-toolbar-light .x-field-select .x-component-outer.x-button-back:after, .x-toolbar-light .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-back:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar-light .x-field-select .x-component-outer:before, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-forward:after {
background-image: none;
background-color: #1676b9;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #359ee7), color-stop(3%, #1985d0), color-stop(100%, #1468a2));
background-image: -webkit-linear-gradient(top, #359ee7, #1985d0 3%, #1468a2);
background-image: linear-gradient(top, #359ee7, #1985d0 3%, #1468a2);
}
/* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-light .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-light .x-button .x-button-icon.x-icon-mask, .x-toolbar-light .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar-light .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask {
background-image: none;
background-color: white;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #e8f4fc));
background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #e8f4fc);
background-image: linear-gradient(top, #ffffff, #ffffff 3%, #e8f4fc);
}
/* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-light .x-button.x-button-pressing, .x-toolbar-light .x-button.x-button-pressing:after, .x-toolbar-light .x-button.x-button-pressed, .x-toolbar-light .x-button.x-button-pressed:after, .x-toolbar-light .x-button.x-button-active, .x-toolbar-light .x-button.x-button-active:after, .x-toolbar .x-toolbar-light .x-button.x-button-pressing, .x-toolbar .x-toolbar-light .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-light .x-button.x-button-pressed, .x-toolbar .x-toolbar-light .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-light .x-button.x-button-active, .x-toolbar .x-toolbar-light .x-button.x-button-active:after, .x-toolbar-light .x-field-select .x-component-outer.x-button-pressing, .x-toolbar-light .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar-light .x-field-select .x-component-outer.x-button-pressed, .x-toolbar-light .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar-light .x-field-select .x-component-outer.x-button-active, .x-toolbar-light .x-field-select .x-component-outer.x-button-active:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-pressing, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-pressed, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-active, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-active:after, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-active, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-active, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-active:after {
background-image: none;
background-color: #156eac;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0f517e), color-stop(10%, #125f95), color-stop(65%, #156eac), color-stop(100%, #156fae));
background-image: -webkit-linear-gradient(top, #0f517e, #125f95 10%, #156eac 65%, #156fae);
background-image: linear-gradient(top, #0f517e, #125f95 10%, #156eac 65%, #156fae);
}
/* line 160, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-light .x-label, .x-toolbar-light .x-form-label {
font-weight: bold;
color: white;
text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
}
/* line 128, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-neutral {
background-image: none;
background-color: #e0e0e0;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ededed), color-stop(100%, #d3d3d3));
background-image: -webkit-linear-gradient(top, #ffffff, #ededed 3%, #d3d3d3);
background-image: linear-gradient(top, #ffffff, #ededed 3%, #d3d3d3);
border-color: #616161;
}
/* line 132, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-neutral .x-title {
color: #070707;
text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0;
}
/* line 137, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-neutral.x-docked-top {
border-bottom-color: #616161;
}
/* line 141, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-neutral.x-docked-bottom {
border-top-color: #616161;
}
/* line 145, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-neutral.x-docked-left {
border-right-color: #616161;
}
/* line 149, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-neutral.x-docked-right {
border-left-color: #616161;
}
/* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-neutral .x-button, .x-toolbar .x-toolbar-neutral .x-button, .x-toolbar-neutral .x-field-select .x-component-outer, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer, .x-toolbar-neutral .x-field-select .x-component-outer:before, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before {
border: 1px solid #a0a0a0;
border-top-color: #adadad;
color: black;
}
/* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-neutral .x-button.x-button-back:before, .x-toolbar-neutral .x-button.x-button-forward:before, .x-toolbar .x-toolbar-neutral .x-button.x-button-back:before, .x-toolbar .x-toolbar-neutral .x-button.x-button-forward:before, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-back:before, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-back:before, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-forward:before {
background: #a0a0a0;
}
/* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-neutral .x-button, .x-toolbar-neutral .x-button.x-button-back:after, .x-toolbar-neutral .x-button.x-button-forward:after, .x-toolbar .x-toolbar-neutral .x-button, .x-toolbar .x-toolbar-neutral .x-button.x-button-back:after, .x-toolbar .x-toolbar-neutral .x-button.x-button-forward:after, .x-toolbar-neutral .x-field-select .x-component-outer, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-back:after, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-back:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar-neutral .x-field-select .x-component-outer:before, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-forward:after {
background-image: none;
background-color: #d3d3d3;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fafafa), color-stop(3%, #e0e0e0), color-stop(100%, #c7c7c7));
background-image: -webkit-linear-gradient(top, #fafafa, #e0e0e0 3%, #c7c7c7);
background-image: linear-gradient(top, #fafafa, #e0e0e0 3%, #c7c7c7);
}
/* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-neutral .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-neutral .x-button .x-button-icon.x-icon-mask, .x-toolbar-neutral .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar-neutral .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask {
background-image: none;
background-color: black;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000));
background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000);
background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000);
}
/* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-toolbar-neutral .x-button.x-button-pressing, .x-toolbar-neutral .x-button.x-button-pressing:after, .x-toolbar-neutral .x-button.x-button-pressed, .x-toolbar-neutral .x-button.x-button-pressed:after, .x-toolbar-neutral .x-button.x-button-active, .x-toolbar-neutral .x-button.x-button-active:after, .x-toolbar .x-toolbar-neutral .x-button.x-button-pressing, .x-toolbar .x-toolbar-neutral .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-neutral .x-button.x-button-pressed, .x-toolbar .x-toolbar-neutral .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-neutral .x-button.x-button-active, .x-toolbar .x-toolbar-neutral .x-button.x-button-active:after, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressing, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressed, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-active, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-active:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressing, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressed, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-active, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-active:after, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-active, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-active, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-active:after {
background-image: none;
background-color: #cccccc;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2b2b2), color-stop(10%, #bfbfbf), color-stop(65%, #cccccc), color-stop(100%, #cdcdcd));
background-image: -webkit-linear-gradient(top, #b2b2b2, #bfbfbf 10%, #cccccc 65%, #cdcdcd);
background-image: linear-gradient(top, #b2b2b2, #bfbfbf 10%, #cccccc 65%, #cdcdcd);
}
/* line 160, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar-neutral .x-label, .x-toolbar-neutral .x-form-label {
font-weight: bold;
color: #070707;
text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0;
}
/* line 93, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar.x-toolbar-neutral .x-toolbar-inner .x-button.x-button-pressing {
background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 24, color-stop(0%, rgba(122, 191, 239, 0.7)), color-stop(100%, rgba(122, 191, 239, 0)));
background-image: -webkit-radial-gradient(rgba(122, 191, 239, 0.7), rgba(122, 191, 239, 0) 24px);
background-image: radial-gradient(rgba(122, 191, 239, 0.7), rgba(122, 191, 239, 0) 24px);
}
/* line 96, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-toolbar.x-toolbar-neutral .x-toolbar-inner .x-button.x-button-pressing .x-button-icon.x-button-mask {
background-image: none;
background-color: white;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(10%, #f2f2f2), color-stop(65%, #ffffff), color-stop(100%, #ffffff));
background-image: -webkit-linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff);
background-image: linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff);
}
/* line 103, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
.x-navigation-bar .x-container {
overflow: visible;
}
/* line 43, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-spinner .x-input-el,
.x-field-select .x-input-el {
-webkit-text-fill-color: #000;
-webkit-opacity: 1;
}
/* line 49, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-spinner.x-item-disabled .x-input-el,
.x-field-select.x-item-disabled .x-input-el {
-webkit-text-fill-color: currentcolor;
}
/* line 54, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field-select .x-input-el {
-webkit-text-fill-color: #fff;
}
/* line 58, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field-select.x-item-disabled .x-input-el {
-webkit-text-fill-color: rgba(255, 255, 255, 0.6);
}
/* line 63, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-form-field-container {
padding: 0 .3em;
}
/* line 67, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field {
width: 13em;
margin: .5em;
min-height: 0;
border-bottom: 0;
background: transparent;
}
/* line 74, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field .x-clear-icon {
background-size: 50% 50%;
right: -0.8em;
margin-top: -1.06em;
}
/* line 81, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field-input {
padding-right: 1.6em !important;
}
/* line 89, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field-textarea .x-component-outer, .x-toolbar .x-field-text .x-component-outer, .x-toolbar .x-field-number .x-component-outer, .x-toolbar .x-field-search .x-component-outer {
-webkit-border-radius: 0.3em;
border-radius: 0.3em;
background-color: white;
-webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset;
box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset;
}
/* line 99, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-form-label {
background: transparent;
border: 0;
padding: 0;
line-height: 1.4em;
}
/* line 106, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-form-field {
height: 1.6em;
color: #6e6e6e;
background: transparent;
min-height: 0;
-webkit-appearance: none;
padding: 0em .3em;
margin: 0;
}
/* line 115, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-form-field:focus {
color: black;
}
/* line 122, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field-select .x-component-outer, .x-toolbar .x-field-search .x-component-outer {
-webkit-border-radius: 0.8em;
border-radius: 0.8em;
}
/* line 128, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field-search .x-field-input {
background-position: .5em 50%;
}
/* line 133, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field-select {
-webkit-box-shadow: none;
}
/* line 136, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field-select .x-form-field {
height: 1.4em;
}
/* line 141, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field-select {
background: transparent;
}
/* line 145, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field-select .x-component-outer:after {
right: .4em;
}
/* line 151, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field-select.x-item-disabled .x-component-outer:after {
opacity: .6;
}
/* line 157, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field-select .x-component-outer:before {
width: 3em;
border-left: none;
-webkit-border-top-right-radius: 0.8em;
border-top-right-radius: 0.8em;
-webkit-border-bottom-right-radius: 0.8em;
border-bottom-right-radius: 0.8em;
-webkit-mask: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAABCAYAAACc0f2yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P//PwMjIyMbAwMDOxRzAjEXFHMDMQ8a5kXC6HLcSHo5kcwEmU9TABBgAOcTBAFcRiSpAAAAAElFTkSuQmCC');
-webkit-mask-position: right top;
-webkit-mask-repeat: repeat-y;
-webkit-mask-size: 3em 0.05em;
}
/* line 172, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-toolbar .x-field-select .x-input-text {
color: #fff;
}
/* line 178, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
.x-android .x-field-search .x-field-input {
padding-left: .2em !important;
padding-right: 2.2em !important;
}
/* line 29, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
.x-indexbar-wrapper {
-webkit-box-pack: end !important;
box-pack: end !important;
pointer-events: none;
}
/* line 35, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
.x-indexbar-vertical {
width: 1.1em;
-webkit-box-orient: vertical;
box-orient: vertical;
margin-right: 8px;
}
/* line 41, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
.x-indexbar-horizontal {
height: 1.1em;
-webkit-box-orient: horizontal;
box-orient: horizontal;
margin-bottom: 8px;
}
/* line 47, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
.x-indexbar {
pointer-events: auto;
z-index: 2;
padding: .3em 0;
min-height: 0 !important;
height: auto !important;
-webkit-box-flex: 0 !important;
}
/* line 55, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
.x-indexbar > div {
color: #155988;
font-size: 0.6em;
text-align: center;
line-height: 1.1em;
font-weight: bold;
display: block;
}
/* line 66, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
.x-phone.x-landscape .x-indexbar > div {
font-size: 0.38em;
line-height: 1em;
}
/* line 72, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
.x-indexbar-pressed {
-webkit-border-radius: 0.55em;
border-radius: 0.55em;
background-color: rgba(143, 155, 163, 0.8);
}
/* line 84, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list {
position: relative;
background-color: #f7f7f7;
overflow: hidden;
}
/* line 89, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list .x-list-inner {
width: 100% !important;
}
/* line 93, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list .x-list-disclosure {
overflow: visible;
-webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNkNCM0JGNTZFMjI2ODExQkNGQjkwMzk3MDc3MkZFQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3M0MzQUU1QUFDQkQxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3M0MzQUU1OUFDQkQxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU3Q0IzQkY1NkUyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU2Q0IzQkY1NkUyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIi8+IDwvcmRmOkRlc2NyaXB0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') no-repeat;
-webkit-mask-size: 1.7em;
background-image: none;
background-color: #006bb6;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0398ff), color-stop(3%, #007ad0), color-stop(100%, #005c9d));
background-image: -webkit-linear-gradient(top, #0398ff, #007ad0 3%, #005c9d);
background-image: linear-gradient(top, #0398ff, #007ad0 3%, #005c9d);
width: 1.7em;
height: 1.7em;
margin: 0.5em 0.5em 0 0;
}
/* line 103, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list.x-list-indexed .x-list-disclosure {
margin-right: 1.8em;
}
/* line 107, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list .x-item-selected .x-list-disclosure {
background: #fff none;
}
/* line 111, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list .x-list-scrolldock-hidden {
display: none;
}
/* line 115, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list .x-list-item {
position: absolute !important;
left: 0;
top: 0;
color: black;
width: 100%;
}
/* line 123, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list .x-list-item.x-item-pressed .x-dock-horizontal {
background: #b6e1ff none;
}
/* line 128, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list .x-list-item.x-item-selected .x-dock-horizontal {
background-image: none;
background-color: #006bb6;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0398ff), color-stop(3%, #007ad0), color-stop(100%, #005c9d));
background-image: -webkit-linear-gradient(top, #0398ff, #007ad0 3%, #005c9d);
background-image: linear-gradient(top, #0398ff, #007ad0 3%, #005c9d);
color: white;
text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
}
/* line 134, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list .x-list-item > .x-dock {
height: auto;
}
/* line 140, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-item-body {
min-height: 46px;
padding: 0.65em 0.8em;
}
/* line 145, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-header-swap {
position: absolute;
left: 0;
width: 100%;
z-index: 2 !important;
}
/* line 152, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-ios .x-list-header-swap {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
/* line 156, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-item .x-list-header {
display: none;
}
/* line 160, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-grouped .x-list-header-wrap .x-list-header {
position: absolute;
top: 0;
left: 0;
width: 100%;
display: block;
}
/* line 169, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-normal.x-list-grouped .x-list-header-wrap .x-dock-horizontal {
padding-top: 26px;
}
/* line 174, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-normal .x-list-header-wrap .x-item-header, .x-list-normal .x-list-header {
background-image: none;
background-color: #5ab5f5;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a2d6f9), color-stop(3%, #72c0f6), color-stop(100%, #42abf4));
background-image: -webkit-linear-gradient(top, #a2d6f9, #72c0f6 3%, #42abf4);
background-image: linear-gradient(top, #a2d6f9, #72c0f6 3%, #42abf4);
color: #0a6aac;
text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0;
border-top: 1px solid #5ab5f5;
border-bottom: 1px solid #0d87dc;
font-weight: bold;
font-size: 0.8em;
padding: 0.2em 1.02em;
text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0;
}
/* line 202, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-normal .x-list-item .x-dock-horizontal {
border-top: 1px solid #dedede;
}
/* line 206, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-normal .x-list-item.x-list-footer-wrap .x-dock-horizontal {
border-bottom: 1px solid #dedede;
}
/* line 214, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-normal .x-list-item.x-item-pressed .x-dock-horizontal {
border-top-color: #b6e1ff;
background-color: #b6e1ff;
}
/* line 219, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-normal .x-list-item.x-item-selected .x-dock-horizontal {
border-top-color: #006bb6;
border-bottom: 1px solid #003e6a;
}
/* line 227, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-normal.x-list-grouped .x-list-item.x-list-header-wrap .x-dock-horizontal {
border-top: 0;
}
/* line 232, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal {
padding-top: 31px;
}
/* line 236, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round .x-scroll-view {
background-color: #eee !important;
}
/* line 241, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round .x-list-header-swap {
padding-right: 13px;
}
/* line 245, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round .x-list-inner .x-scroll-container {
top: 13px;
left: 13px;
bottom: 13px;
right: 13px;
width: auto !important;
height: auto !important;
}
/* line 254, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round .x-list-disclosure {
overflow: hidden;
-webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat;
-webkit-mask-size: 1.5em;
background-image: none;
background-color: #419cdb;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #81bde7), color-stop(3%, #56a7df), color-stop(100%, #2b91d7));
background-image: -webkit-linear-gradient(top, #81bde7, #56a7df 3%, #2b91d7);
background-image: linear-gradient(top, #81bde7, #56a7df 3%, #2b91d7);
width: 1.5em;
height: 1.5em;
margin: 0.5em 0.5em 0 0;
}
/* line 264, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round .x-list-header {
color: #777;
font-size: 1em;
font-weight: bold;
padding-left: 26px;
line-height: 1.7em;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee), color-stop(30%, rgba(238, 238, 238, 0.9)), color-stop(100%, rgba(238, 238, 238, 0.4)));
background-image: -webkit-linear-gradient(top, #eeeeee, rgba(238, 238, 238, 0.9) 30%, rgba(238, 238, 238, 0.4));
background-image: linear-gradient(top, #eeeeee, rgba(238, 238, 238, 0.9) 30%, rgba(238, 238, 238, 0.4));
}
/* line 274, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round .x-list-container {
padding: 13px 13px 0 13px;
}
/* line 277, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round .x-list-container .x-list-header {
padding-left: 13px;
background-image: none;
}
/* line 285, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round.x-list-ungrouped .x-list-item .x-dock-horizontal, .x-list-round.x-list-grouped .x-list-item .x-dock-horizontal {
border: 1px solid #dedede;
border-width: 1px 1px 0 1px;
background: #f7f7f7;
}
/* line 295, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round.x-list-ungrouped .x-list-item:first-child {
-webkit-border-top-left-radius: 0.4em;
border-top-left-radius: 0.4em;
-webkit-border-top-right-radius: 0.4em;
border-top-right-radius: 0.4em;
}
/* line 299, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round.x-list-ungrouped .x-list-item:last-child {
-webkit-border-bottom-left-radius: 0.4em;
border-bottom-left-radius: 0.4em;
-webkit-border-bottom-right-radius: 0.4em;
border-bottom-right-radius: 0.4em;
border-width: 1px;
margin-bottom: 13px;
}
/* line 310, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal {
-webkit-border-top-left-radius: 0.4em;
border-top-left-radius: 0.4em;
-webkit-border-top-right-radius: 0.4em;
border-top-right-radius: 0.4em;
}
/* line 314, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round.x-list-grouped .x-list-header-wrap .x-list-header {
border: 1px solid #dedede;
border-width: 1px 1px 0 1px;
-webkit-border-top-left-radius: 0.4em;
border-top-left-radius: 0.4em;
-webkit-border-top-right-radius: 0.4em;
border-top-right-radius: 0.4em;
}
/* line 321, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round.x-list-grouped .x-list-footer-wrap {
background: transparent;
}
/* line 324, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal {
border: none;
background: transparent;
padding-bottom: 13px;
}
/* line 329, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal > .x-dock-body {
border: 1px solid #dedede;
background: #f7f7f7;
-webkit-border-bottom-left-radius: 0.4em;
border-bottom-left-radius: 0.4em;
-webkit-border-bottom-right-radius: 0.4em;
border-bottom-right-radius: 0.4em;
}
/* line 340, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-dataview-inlineblock .x-dataview-item, .x-dataview-inlineblock .x-data-item {
display: inline-block !important;
}
/* line 346, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-dataview-nowrap .x-dataview-container {
white-space: nowrap !important;
}
/* line 352, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-inlineblock .x-list-item {
display: inline-block !important;
}
/* line 358, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-nowrap .x-list-inner {
width: auto;
}
/* line 361, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-nowrap .x-list-container {
white-space: nowrap !important;
}
/* line 368, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-paging {
padding: 1em 0;
}
/* line 370, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-paging .x-loading-spinner {
display: none;
margin: auto;
}
/* line 375, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-paging .x-list-paging-msg {
text-align: center;
color: #006bb6;
clear: both;
-webkit-border-radius: 6px;
border-radius: 6px;
}
/* line 382, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-paging.x-loading {
padding: 0.5em;
}
/* line 385, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-paging.x-loading .x-loading-spinner {
display: block;
}
/* line 389, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-paging.x-loading .x-list-paging-msg {
display: none;
}
/* line 397, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-pullrefresh {
display: -webkit-box;
display: box;
-webkit-box-orient: horizontal;
box-orient: horizontal;
-webkit-box-align: center;
box-align: center;
-webkit-box-pack: center;
box-pack: center;
position: absolute;
top: -5em;
left: 0;
width: 100%;
height: 4.5em;
}
/* line 408, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-pullrefresh .x-loading-spinner {
display: none;
}
/* line 413, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-pullrefresh-arrow {
width: 2.5em;
height: 4.5em;
background: center center url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAA8CAYAAAAUufjgAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAjFJREFUeNrsmU8oREEYwOexdtNuKBfFwdVhCyfuysnFiXISS+1BLopyUpKLXETkRLaUi1LK3Q2lpPbiQLnIn03a/Hm+z86Ttv0zM++bfbOar36Hbad5v535Zp7v47iuy0wOpyoEHccRHV9L9NxPkUE/bhKCOKiOSPAdn69DsJ5I8E2HYA0QJRJ8Bb50CDYRCT7pEMQD0kwk+CByUFQEW4gE73UIhoA2IsFb4ENEMCQ5MdU1IxwygpT3oKNLMGyyYFVscdhusc8tDpu+xRG7xf95BW0O2kNiV1AgIvaQ2BzUJNgJNJYZGyUU7OG1cal4Bi68oqkDPszy2teEwJp5Cdyu/lZ1g8CwIYJ7wEF+2YmrNw90Byx3BizgKhaqizEP1wg7CLLxCEzy/CtauMeBlQDyEfNuGrgU6SyM8F9SyVgHdmRaH6tAb4XkToEp2d4M5mOK0TWMigU2koa8vJMRZPxEb2ss2LEVPMpPLlMRxBgDZjQJLgNbxb6Uab9tAn3EcifAeKkBMoLY+j0GWonk7oB+lmsFkwhidAGHBPmIeTcAnJcbKCuIMQEs+hScAzZEBqoIYuzyFVCJI36lMJ2CDfxibZeUu+EX/4uMIFP8ZyLejxkgK0hG5a8kP4IYSZbr1IuQVHmAX0HGX4VuGfZVJ6cQxPd1uoRcWqDW0SroFVzZAnJZ/h0LWhAjUUAw4XdSSsH8fExRTEgtGAOuOTETBb16Jk412e+bxOSwglYw6PgWYABvLk8P7zGJFwAAAABJRU5ErkJggg==') no-repeat;
background-size: 2em 3em;
-webkit-transition-property: -webkit-transform;
-webkit-transition-duration: 200ms;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
/* line 424, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-android-2 .x-list-pullrefresh-arrow {
-webkit-transition-property: none;
-webkit-transition-duration: 0;
}
/* line 429, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-pullrefresh-release .x-list-pullrefresh-arrow {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
/* line 433, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-pullrefresh-wrap {
width: 20em;
font-size: 0.7em;
}
/* line 438, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-pullrefresh-message {
font-weight: bold;
font-size: 1.3em;
margin-bottom: 0.1em;
text-align: center;
}
/* line 445, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-pullrefresh-updated {
text-align: center;
}
/* line 450, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-pullrefresh-loading *.x-loading-spinner {
display: block;
}
/* line 454, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-list-pullrefresh-loading .x-list-pullrefresh-arrow {
display: none;
}
/* line 460, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
.x-android-2 .x-list-pullrefresh-loading *.x-loading-spinner {
display: none;
}
/* line 41, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
html, body {
width: 100%;
height: 100%;
}
@-webkit-keyframes x-paint-monitor-helper {
/* line 47, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
from {
zoom: 1;
}
/* line 48, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
to {
zoom: 1;
}
}
/* line 51, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-paint-monitored {
position: relative;
}
/* line 55, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-paint-monitor {
width: 0 !important;
height: 0 !important;
visibility: hidden;
}
/* line 59, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-paint-monitor.cssanimation {
-webkit-animation-duration: 0.0001ms;
-webkit-animation-name: x-paint-monitor-helper;
}
/* line 63, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-paint-monitor.overflowchange {
overflow: hidden;
}
/* line 65, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-paint-monitor.overflowchange::after {
content: "";
display: block;
width: 1px !important;
height: 1px !important;
}
/* line 74, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-size-monitored {
position: relative;
}
/* line 78, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-size-monitors {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
visibility: hidden;
z-index: -9999;
overflow: hidden;
}
/* line 87, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-size-monitors > * {
width: 100%;
height: 100%;
overflow: hidden;
}
/* line 93, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-size-monitors.scroll > *.shrink::after {
content: "";
display: block;
width: 200%;
height: 200%;
min-width: 1px;
min-height: 1px;
}
/* line 101, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-size-monitors.scroll > *.expand::after {
content: "";
display: block;
width: 100000px;
height: 100000px;
}
/* line 110, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-size-monitors.overflowchanged > *.shrink > * {
width: 100%;
height: 100%;
}
/* line 116, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-size-monitors.overflowchanged > *.expand > * {
width: 200%;
height: 200%;
}
/* line 130, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-body {
position: relative;
z-index: 0;
}
/* line 135, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-inner, .x-body {
width: 100%;
height: 100%;
}
/* line 140, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-dock, .x-dock-body {
height: 100%;
}
/* line 144, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-sized {
position: relative;
}
/* line 148, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-stretched.x-container {
display: -webkit-box;
-webkit-box-orient: vertical;
box-orient: vertical;
}
/* line 151, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-stretched.x-container > .x-inner, .x-stretched.x-container > .x-body, .x-stretched.x-container > .x-body > .x-inner {
display: -webkit-box;
-webkit-box-flex: 1;
box-flex: 1;
-webkit-box-orient: vertical;
box-orient: vertical;
}
/* line 158, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-innerhtml {
width: 100%;
}
/* line 162, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-card {
position: relative;
overflow: hidden;
}
/* line 167, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-card-item-container {
width: auto;
height: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
/* line 171, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-card-item {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
/* line 175, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-newcard-item, .x-layout-newcard-item > * {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
/* line 179, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-newcard-item:not(.active) {
display: none;
}
/* line 183, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-fit.x-stretched > .x-layout-fit-item {
display: -webkit-box;
-webkit-box-flex: 1;
box-flex: 1;
}
/* line 188, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-fit {
position: relative;
}
/* line 193, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-fit-item.x-sized {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
/* line 196, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-fit-item.x-unsized {
width: 100%;
height: 100%;
}
/* line 202, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-center, .x-centered {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: -webkit-box;
-webkit-box-align: center;
box-align: center;
-webkit-box-pack: center;
box-pack: center;
}
/* line 207, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-center > *, .x-centered > * {
position: relative;
}
/* line 210, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-center > .x-floating, .x-centered > .x-floating {
position: relative !important;
}
/* line 215, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-floating {
position: absolute;
}
/* line 219, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-dock {
display: -webkit-box;
}
/* line 222, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-dock.x-sized, .x-dock.x-sized > .x-dock-body > *, .x-dock.x-sized > .x-dock-body > .x-body > .x-inner {
width: auto;
height: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
/* line 225, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-dock .x-dock-body {
display: -webkit-box;
-webkit-box-flex: 1;
box-flex: 1;
}
/* line 229, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-dock.x-sized > .x-dock-body {
position: relative;
}
/* line 233, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-dock.x-unsized > .x-dock-body, .x-dock.x-stretched > .x-dock-body {
-webkit-box-orient: vertical;
box-orient: vertical;
}
/* line 235, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-dock.x-unsized > .x-dock-body > *, .x-dock.x-stretched > .x-dock-body > * {
-webkit-box-flex: 1;
box-flex: 1;
}
/* line 240, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-dock.x-dock-vertical {
-webkit-box-orient: vertical;
box-orient: vertical;
}
/* line 243, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-dock.x-dock-horizontal {
-webkit-box-orient: horizontal;
box-orient: horizontal;
}
/* line 245, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-dock.x-dock-horizontal > .x-dock-item {
display: -webkit-box;
}
/* line 248, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-inner, .x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-body {
width: auto;
height: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
/* line 252, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-dock.x-dock-horizontal > .x-dock-item.x-unsized {
-webkit-box-orient: vertical;
box-orient: vertical;
}
/* line 254, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-dock.x-dock-horizontal > .x-dock-item.x-unsized > * {
-webkit-box-flex: 1;
box-flex: 1;
}
/* line 301, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box {
display: -webkit-box;
}
/* line 303, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box.x-horizontal {
-webkit-box-orient: horizontal !important;
}
/* line 305, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box.x-horizontal > .x-layout-box-item.x-flexed {
width: 0 !important;
}
/* line 309, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box.x-vertical {
-webkit-box-orient: vertical;
box-orient: vertical;
}
/* line 311, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box.x-vertical > .x-layout-box-item.x-flexed {
height: 0 !important;
}
/* line 315, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box > .x-layout-box-item {
display: -webkit-box !important;
}
/* line 318, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box.x-align-start {
-webkit-box-align: start;
box-align: start;
}
/* line 321, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box.x-align-center {
-webkit-box-align: center;
box-align: center;
}
/* line 324, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box.x-align-end {
-webkit-box-align: end;
box-align: end;
}
/* line 327, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box.x-align-stretch {
-webkit-box-align: stretch;
box-align: stretch;
}
/* line 330, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box.x-pack-start {
-webkit-box-pack: start;
box-pack: start;
}
/* line 333, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box.x-pack-center {
-webkit-box-pack: center;
box-pack: center;
}
/* line 336, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box.x-pack-end {
-webkit-box-pack: end;
box-pack: end;
}
/* line 339, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box.x-pack-justify {
-webkit-box-pack: justify;
box-pack: justify;
}
/* line 345, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-box-item.x-sized > .x-inner, .x-layout-box-item.x-sized > .x-body, .x-layout-box-item.x-sized > .x-dock-outer {
width: auto;
height: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
/* line 350, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-float {
overflow: hidden;
}
/* line 352, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-float > .x-layout-float-item {
float: left;
}
/* line 356, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-layout-float.x-direction-right > .x-layout-float-item {
float: right;
}
/* line 362, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-table-inner {
display: table !important;
width: 100% !important;
height: 100% !important;
}
/* line 367, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-table-inner.x-fixed-layout {
table-layout: fixed !important;
}
/* line 372, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-table-row {
display: table-row !important;
}
/* line 376, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-table-cell {
display: table-cell !important;
vertical-align: middle;
}
/* line 381, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-translatable {
position: absolute;
top: 100% !important;
left: 100% !important;
overflow: visible !important;
z-index: 1;
}
/* line 387, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-translatable::before {
content: "";
display: block;
position: absolute;
top: 100%;
left: 100%;
width: 100%;
height: 100%;
visibility: hidden;
}
/* line 399, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-translatable-container {
overflow: hidden;
width: auto;
height: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
/* line 402, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-translatable-container::before {
content: "";
display: block;
width: 300%;
height: 300%;
visibility: hidden;
}
/* line 411, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-size-change-detector {
visibility: hidden;
position: absolute;
left: 0;
top: 0;
z-index: -1;
width: 100%;
height: 100%;
overflow: hidden;
}
/* line 422, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-size-change-detector > * {
visibility: hidden;
}
/* line 426, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-size-change-detector-shrink > * {
width: 200%;
height: 200%;
}
/* line 431, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-size-change-detector-expand > * {
width: 100000px;
height: 100000px;
}
/* line 436, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-view {
position: relative;
display: block;
overflow: hidden;
}
/* line 442, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-container {
position: absolute;
width: 100%;
height: 100%;
}
/* line 448, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-scroller {
position: absolute;
min-width: 100%;
min-height: 100%;
width: auto !important;
height: auto !important;
}
/* line 456, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-ios .x-scroll-scroller {
-webkit-transform: translate3d(0, 0, 0);
}
/* line 460, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-stretcher {
position: absolute;
visibility: hidden;
}
/* line 465, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-grid-wrapper {
position: absolute;
width: 100%;
height: 100%;
}
/* line 471, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-grid {
display: table;
width: 100%;
height: 100%;
}
/* line 476, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-grid > * {
display: table-row;
}
/* line 480, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-grid > * > * {
display: table-cell;
}
/* line 484, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-grid > :first-child > :first-child {
width: 100%;
height: 100%;
}
/* line 489, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-grid > :first-child > :nth-child(2) {
padding: 3px 3px 0 0;
}
/* line 493, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-grid > :nth-child(2) > :first-child {
padding: 0 0 3px 3px;
}
/* line 498, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar {
position: relative;
overflow: hidden;
}
/* line 503, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-stretcher {
position: absolute;
visibility: hidden;
width: 100%;
height: 100%;
}
/* line 510, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-x {
width: 100%;
}
/* line 513, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-x > .x-scroll-bar-stretcher {
width: 300%;
}
/* line 517, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-x.active {
height: 6px;
}
/* line 522, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-y {
height: 100%;
}
/* line 525, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-y > .x-scroll-bar-stretcher {
height: 300%;
}
/* line 529, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-bar-y.active {
width: 6px;
}
/* line 534, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator {
background: #333;
position: absolute;
z-index: 3;
opacity: 0.5;
}
/* line 541, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-android-4 .x-scroll-indicator {
opacity: 1;
}
/* line 545, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.default {
-webkit-border-top-left-radius: 3px;
border-top-left-radius: 3px;
-webkit-border-top-right-radius: 3px;
border-top-right-radius: 3px;
-webkit-border-bottom-left-radius: 3px;
border-bottom-left-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
border-bottom-right-radius: 3px;
}
/* line 552, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-list-light .x-scroll-indicator,
.x-dataview-light .x-scroll-indicator {
background: #fff;
opacity: 1;
}
/* line 558, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator-x {
height: 100%;
}
/* line 562, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator-y {
width: 100%;
}
/* line 566, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.csstransform {
background: none;
}
/* line 569, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.csstransform > * {
position: absolute;
background-color: #333;
}
/* line 574, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.csstransform > :nth-child(2) {
-webkit-transform-origin: 0% 0%;
background: none;
content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA);
}
/* line 581, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.csstransform.x-scroll-indicator-light > * {
background-color: #eee;
}
/* line 585, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.csstransform.x-scroll-indicator-light > :nth-child(2) {
content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA);
}
/* line 591, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.csstransform.x-scroll-indicator-y > * {
width: 100%;
}
/* line 595, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.csstransform.x-scroll-indicator-y > :first-child {
height: 3px;
-webkit-border-top-left-radius: 3px;
border-top-left-radius: 3px;
-webkit-border-top-right-radius: 3px;
border-top-right-radius: 3px;
}
/* line 600, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.csstransform.x-scroll-indicator-y > :nth-child(2) {
height: 1px;
}
/* line 604, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.csstransform.x-scroll-indicator-y > :last-child {
height: 3px;
-webkit-border-bottom-left-radius: 3px;
border-bottom-left-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
border-bottom-right-radius: 3px;
}
/* line 611, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.csstransform.x-scroll-indicator-x > * {
height: 100%;
}
/* line 615, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.csstransform.x-scroll-indicator-x > :first-child {
width: 3px;
-webkit-border-top-left-radius: 3px;
border-top-left-radius: 3px;
-webkit-border-bottom-left-radius: 3px;
border-bottom-left-radius: 3px;
}
/* line 620, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.csstransform.x-scroll-indicator-x > :nth-child(2) {
width: 1px;
}
/* line 623, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
.x-scroll-indicator.csstransform.x-scroll-indicator-x > :last-child {
width: 3px;
-webkit-border-top-right-radius: 3px;
border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
border-bottom-right-radius: 3px;
}
/* line 51, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
.x-carousel-inner {
position: relative;
overflow: hidden;
}
/* line 56, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
.x-carousel-item {
position: absolute !important;
width: 100%;
height: 100%;
}
/* line 61, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
.x-carousel-item > * {
position: absolute !important;
width: 100%;
height: 100%;
}
/* line 68, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
.x-carousel-indicator {
padding: 0;
-webkit-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
background-color: transparent;
background-image: none;
}
/* line 78, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
.x-carousel-indicator {
-webkit-box-flex: 1;
display: -webkit-box;
display: box;
-webkit-box-pack: center;
box-pack: center;
-webkit-box-align: center;
box-align: center;
}
/* line 85, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
.x-carousel-indicator span {
display: block;
width: 0.5em;
height: 0.5em;
-webkit-border-radius: 0.25em;
border-radius: 0.25em;
margin: 0.2em;
}
/* line 94, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
.x-carousel-indicator-horizontal {
height: 1.5em;
width: 100%;
}
/* line 99, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
.x-carousel-indicator-vertical {
-webkit-box-orient: vertical;
box-orient: vertical;
width: 1.5em;
height: 100%;
}
/* line 34, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
.x-carousel-indicator-light span {
background-image: none;
background-color: rgba(255, 255, 255, 0.1);
}
/* line 37, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
.x-carousel-indicator-light span.x-carousel-indicator-active {
background-image: none;
background-color: rgba(255, 255, 255, 0.3);
}
/* line 34, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
.x-carousel-indicator-dark span {
background-image: none;
background-color: rgba(0, 0, 0, 0.1);
}
/* line 37, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
.x-carousel-indicator-dark span.x-carousel-indicator-active {
background-image: none;
background-color: rgba(0, 0, 0, 0.3);
}
/* line 134, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form .x-scroll-container {
background-color: #eeeeee;
}
/* line 137, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form .x-scroll-container > .x-inner {
padding: 1em;
}
/* line 144, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form-label {
text-shadow: #fff 0 1px 1px;
color: #333333;
text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0;
padding: 0.6em;
display: none !important;
background-color: #f7f7f7;
}
/* line 151, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form-label span {
font-size: .8em;
font-weight: bold;
}
/* line 156, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form-label-nowrap .x-form-label {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* line 162, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field {
display: -webkit-box;
display: box;
min-height: 2.5em;
background: #fff;
}
/* line 167, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field .x-field-input {
position: relative;
min-width: 3.7em;
}
/* line 173, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field .x-field-input, .x-field .x-input-el {
width: 100%;
}
/* line 178, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field.x-field-labeled .x-form-label {
display: block !important;
}
/* line 183, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field:last-child {
border-bottom: 0;
}
/* line 190, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-label-align-left .x-component-outer,
.x-label-align-right .x-component-outer {
-webkit-box-flex: 1;
box-flex: 1;
}
/* line 197, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-label-align-left:first-child .x-form-label {
-webkit-border-top-left-radius: 0.4em;
border-top-left-radius: 0.4em;
}
/* line 203, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-label-align-left:last-child .x-form-label {
-webkit-border-bottom-left-radius: 0.4em;
border-bottom-left-radius: 0.4em;
}
/* line 213, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-label-align-right {
-webkit-box-direction: reverse;
box-direction: reverse;
}
/* line 217, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-label-align-right:first-child .x-form-label {
-webkit-border-top-right-radius: 0.4em;
border-top-right-radius: 0.4em;
}
/* line 222, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-label-align-right:last-child {
border-bottom: 0;
}
/* line 225, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-label-align-right:last-child .x-form-label {
-webkit-border-bottom-right-radius: 0.4em;
border-bottom-right-radius: 0.4em;
}
/* line 235, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-label-align-left,
.x-label-align-right {
-webkit-box-orient: horizontal !important;
box-orient: horizontal !important;
}
/* line 240, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-label-align-top,
.x-label-align-bottom {
-webkit-box-orient: vertical !important;
box-orient: vertical !important;
}
/* line 249, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-label-align-top:first-child .x-form-label {
-webkit-border-top-left-radius: 0.4em;
border-top-left-radius: 0.4em;
-webkit-border-top-right-radius: 0.4em;
border-top-right-radius: 0.4em;
}
/* line 255, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-label-align-top .x-component-outer {
position: relative;
}
/* line 260, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-label-align-bottom {
-webkit-box-direction: reverse;
box-direction: reverse;
}
/* line 264, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-label-align-bottom:last-child .x-form-label {
-webkit-border-bottom-left-radius: 0.4em;
border-bottom-left-radius: 0.4em;
-webkit-border-bottom-right-radius: 0.4em;
border-bottom-right-radius: 0.4em;
}
/* line 270, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-input-el {
padding: .4em;
min-height: 2.5em;
display: block;
border-width: 0;
background: transparent;
-webkit-appearance: none;
}
/* line 279, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-mask {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
/* line 286, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-required label:after, .x-field-required .x-form-label:after {
content: "*";
display: inline;
}
/* line 294, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-item-disabled label:after, .x-item-disabled .x-form-label:after {
color: #666 !important;
}
/* line 301, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-textarea textarea {
min-height: 6em;
padding-top: .5em;
}
/* line 313, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-checkmark-base, .x-field-checkbox .x-input-el:after, .x-field-checkbox .x-input-el:checked:after, .x-select-overlay .x-item-selected .x-list-item-inner:before, .x-select-overlay .x-item-selected .x-list-item-inner:after {
content: "";
position: absolute;
width: 1.4em;
height: 1.4em;
top: 50%;
left: auto;
right: 1.1em;
-webkit-mask-size: 1.4em;
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAE+klEQVRoBe2aS28URxRGsY0h2FmwCQuEWLHjvUNgZAQ4PMwrEkIRIGEgySKwB8QvYIvEP+ANO0CwsJAA88wGBEKBZJUVQkJCQrwJ5nxN31Z5pnpc7e4ZT9vT0peqqanquqfurVvlIW3Dw8NTJtPTPplgxdoCnugeb3m45eEJtgJTJwJPGw8cP8V6TfmC4/Z/H9uEAAZsIdqHZiMBn2UNbvigSw8M2AIAD6PtqBPpmYe+8t1NoL9GLfYf3bTKKhiWo9PoA9KV0dUgn/tRh8tXWg/Hnj0KUB8yz1JNnjXUuhFd264A/f0O7dKXpQ7EIiTPfkKuVyvrSlx3US+KPF26cMbwxeg8Gg3W4LWHFd6rUUepQprQnI/Rh9A25AtjmqseHVkK7w59UxpgYFdg7wH0CwqFpWvyrKI23GZ7OWluwgqwOnqOobVoWh4Tm97DwCpBHUFp2TiUX3v5QVMnLQzMmqAsUVWWyta3UX/TAmOcwjjk6KmE830W7GbU0ZTAGKYEJdj3yAcQ2qYw1jmsG9e0KF8122UDw/SHwFX0EYWC+fpZGG/hPcn1sqk8jGHas+dQ6KXCB6o2g91IPfKsObZpgDGsqAT1hXdpz25A7QZqZU1gBsxFSh5zbEA9yniOU5R5PSvvCnYTSsLYtdkLTGf9uKdD/gS6gI6jPndgUXXe24OKSFAK4zsoSVA+G6uAGaC758/oBrIs+Zb6rbg9up35Xpa1jffpUqEEldezysbJ0VPLjhHADOpEfUiw2gtuUtAKDiGtYNXeqDWJ7zveYQnqM3V3nqx1s2s97xmRoLzzWqMgkLLaTVQJa0ZoJe+hXjRmaMYKVlslr2dlp5wgu4PsiTyszmg5qgVr0CqvoZW2WFlKxhV5gxJsdIMKtYH+Eew6yksoNLy0soJeFzqR+vEI9gx6h9wFzFoPSlA+25g3SlChnnUNU3grkWmxRg0n+ihBnUR5w9j2bCbPGjzzR3sgbc+6gL66TV4zkTHHEqSfZSzr+94V0mbzKUF1GkSWknG5QktGyoj7qBdVeZo2S1Ch2yUNXOMVUcEJyrcQjOeP4vzQCu9BpBtOck5T70HybN4w1iJcR7ouem9QPjhfG+On7EBPUNrKhrYLWp7+FS1FCjtdKvJ6VvM/Q9o2uWC1AHq60QB6hELh0voJ+im6iHReF+FZwe5HP/g8lrXNzuEfeeFu9C9Kg8nSrr9lBZ9ljK/v37xjL5qRFSytf3K15KXy9EH0D/JN3ui2Qj1rC5AAq4FnJvoDPUSNBnTnUy4YQF1maFHlCOAYuouJFN6PkWtEo+ryrH5sL2TPVi5UFXAMrfDegxrtae3ZfWh6paFFffYCx9BKZLtQo/a0YLXIhSUo3yKlAsfQ8vSBBkALtrCjxwdqbTWBY2glst9REee0Lw/ULUEZpFuOChxD1yuRybNbUV0SlAtq9SDgGFp7ushEJlhdKuqWoAzSLYOBHeidGPkc+cIztE2wA6iuCcoFtXom4Bha4f0nGmv2FqyOnoaFscFG9rsfQusYq0T2G8qayASrbdEdOlfR/TJ72AzAaHla5/QD9BnVCucvfK/fjZXtx8WzZneu/+WBf53XOb0G6XetHjQXyfv2vKLyH7qLLqMhJn5DOW5PLmBZDfRUilloGUoD/ovvXgIrT4/rkxt4XK0fw+TtYxhT6iEt4FK7L8D4locDFqnUXSadh78Bx5bEl2CLG+8AAAAASUVORK5CYII=');
margin-top: -0.7em;
}
/* line 322, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-radiomark-base, .x-field-radio .x-input-el:before, .x-field-radio .x-input-el:after {
content: "";
position: absolute;
width: 1.4em;
height: 1.4em;
top: 50%;
left: auto;
right: 1.1em;
margin-top: -0.7em;
-webkit-mask-size: 1.4em;
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 330, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-checkbox .x-input-el {
position: relative;
}
/* line 332, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-checkbox .x-input-el:after {
background-color: #dddddd;
}
/* line 335, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-checkbox .x-input-el:checked:after {
background-color: #006bb6;
}
/* line 340, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-radio .x-input-el {
position: relative;
}
/* line 342, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-radio .x-input-el:before {
background-color: #d0d0d0;
}
/* line 345, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-radio .x-input-el:after {
background-color: #dddddd;
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAABL1JREFUeNrk282LVnUUwPHPvY6OisKgia8Y4ihNkeREFi50oYSbEBduItQgcRnhJmlRtPAPCMTAlYswkzBpE1EtXPRiJGKmia+go/gGajqZL/NrMeehaTSb5977vEwdOPDA89zfOd/n97u/e37nnJullDRKsiybgHGYiNmYhwfDfjYGZ9CHftxNKf3eMJ+qBs6ybDZm4Tm8hGfxwggv/xE/43scwoWUUl9bAmdZthS9WI0XMbnkkL/hB+zDwZTSt5U4mlIqpQG4B9eQGqTXwsbq0v4WhMyxBLtxFQMNhK3pQNjaHbbzpgCjC+/EJtMM0EeB94UPXQ0FxmJ8FLtparH2hy+LGwKM9Tgej5XUJvogfFpfKTA240KLlvBIlvgFbC4NHEHB27FZpDbXq+HrmELAsRO/jiujALamV8LnvAjwUhxrs3t2JPf0MSytCxgL8SXujyLYmt4P3xeOCBgT8CFujkLYmt4MhgmPBUaG13CiTXfkenbuE8GSDWXsGBZa92AD5gZ8FXIB+3EAh3ESl+K76ejGoggXl8VJq/RZJhg24CCOPnR4iEfQe7hc0b98BO9iUR3BzaK45khFPlwOpjEPLWkswNe4V8Fy2o7eEiew3hij7G11L5gW/A0YHXgDZ0sauDjSiKeOCO9iSZ/OBlvHUODZ+Bi3S8Juqgp2CPSmktC3g212LdmRYUXc2GWW8eaqYYfNdJnlfTQYM+jE1pIh5PZGwQ6B3l4y5NyKzhxjY5PoKvgI+AU7NF52hK0i0hWMY/N4Xs2MjauI7EkpHWw0bdjYU/DyjmCcm8eDv6tEULFX82Rv2Cw6y9055mBSwUH2p5QON4s2bO0vePkkzMkxIyoDReSA5ktRmxMxI8dUjC84yOEWABe1OR5T85KHhJMtAC5jM8tLGr/UAuBSNnP/MykLPL0FPk9vJXB3C4C7ywLfjcC8iCxqAXBRmwO4m0dWoL/gIEtaAFzUZj8u5ziHWwUHWZZlWdNmOWwtK3j5LZzLcQo3Cg4yC2uaOLtrSiT5buBUHunMWu2oiKzNsqy3CbPbi7VFw/BgPJHHVB+PVEgReQYbmzC7G8NWEbkdjLdqO/WrOP0fTvGcDsa8NmAPvlOucNauSbwHwdYzNGs5Ge9HnPpfS9NeCrbJwxPxy+PoVUVdp10S8SmYlj+q8jANn6iuYaUdSi39wTTtn6qHawy2/FVZF+7DLrwVueEn4zA+Pj6viO92xW+rrBMfwprHlUvH4QNcN3pLpTW9Hizj/q0g3oNvlC+qtVLvBUPPSFse1hls6R2twGewrp4ejw68aXS2PdwM3zvq7eKZgp3ao82wnl15J6YUbUybY7Bf+c4ogL0Tvs4p1XoYKZXP2hz6TvjYXVWvZTc+bVPoO+Fbd9XdtF3YErFpO7Q0DYQvW9TRN11vjNuJVQZbgVrZpXc/fFiFzma8AjAP23C+ybM9EDa3YV7T3nkYAr4ydsYrDQYfCBv7sLKMz6Vf48mybAyexyuxxHorLOEMxNL9Ap/jp5TSg1L+Vvje0th4bj+Nl2P2nyoAP4Bf8ZXBrtijOJ9SuleJn414FS/Lss4oQM/0Vx/lfDwROj9+eiqyiVfjc60f8yL6U0p/VO3bnwMAgXFQ4e97RG4AAAAASUVORK5CYII=');
}
/* line 349, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-radio .x-input-el:checked:before {
background-color: #006bb6;
}
/* line 356, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-item-disabled.x-field-radio .x-input-el:checked:before {
background: #84afcd;
}
/* line 360, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-item-disabled.x-field-radio .x-input-el:after {
background: #eee;
}
/* line 367, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-item-disabled.x-field-checkbox .x-input-el:checked:after {
background: #84afcd;
}
/* line 376, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-spinner .x-component-outer {
display: -webkit-box;
display: box;
}
/* line 379, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-spinner .x-component-outer > * {
width: auto;
}
/* line 384, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-spinner .x-field-input {
-webkit-box-flex: 1;
}
/* line 387, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-spinner .x-field-input .x-input-el {
-webkit-text-fill-color: #000;
width: 100%;
text-align: center;
}
/* line 395, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-spinner .x-field-input input::-webkit-outer-spin-button, .x-spinner .x-field-input input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* line 402, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-spinner.x-item-disabled .x-input-el {
-webkit-text-fill-color: #B3B3B3;
}
/* line 406, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-spinner.x-item-disabled .x-spinner-button {
color: #aaa !important;
}
/* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button {
border: 1px solid #c4c4c4;
border-top-color: #d0d0d0;
color: #1e1e1e;
}
/* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before {
background: #c4c4c4;
}
/* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-spinner.x-item-disabled .x-spinner-button, .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after {
background-image: none;
background-color: #f7f7f7;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #eaeaea));
background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea);
background-image: linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea);
}
/* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask {
background-image: none;
background-color: black;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000));
background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000);
background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000);
}
/* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after {
background-image: none;
background-color: #efefef;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d5d5d5), color-stop(10%, #e2e2e2), color-stop(65%, #efefef), color-stop(100%, #f0f0f0));
background-image: -webkit-linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0);
background-image: linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0);
}
/* line 412, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-spinner .x-spinner-button {
margin-top: .25em;
margin-bottom: .25em;
width: 2em;
padding: .23em 0 .27em;
font-weight: bold;
text-align: center;
border: 1px solid #dddddd !important;
-webkit-border-radius: 1em;
border-radius: 1em;
}
/* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button {
border: 1px solid #b7b7b7;
border-top-color: #c4c4c4;
color: #111111;
}
/* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-spinner .x-spinner-button.x-button-back:before, .x-spinner .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:before {
background: #b7b7b7;
}
/* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-spinner .x-spinner-button, .x-spinner .x-spinner-button.x-button-back:after, .x-spinner .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:after {
background-image: none;
background-color: #eaeaea;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #f7f7f7), color-stop(100%, #dddddd));
background-image: -webkit-linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd);
background-image: linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd);
}
/* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-spinner .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner .x-spinner-button .x-button-icon.x-icon-mask {
background-image: none;
background-color: black;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000));
background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000);
background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000);
}
/* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-spinner .x-spinner-button.x-button-pressing, .x-spinner .x-spinner-button.x-button-pressing:after, .x-spinner .x-spinner-button.x-button-pressed, .x-spinner .x-spinner-button.x-button-pressed:after, .x-spinner .x-spinner-button.x-button-active, .x-spinner .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner .x-spinner-button.x-button-active, .x-toolbar .x-spinner .x-spinner-button.x-button-active:after {
background-image: none;
background-color: #e2e2e2;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c9c9c9), color-stop(10%, #d5d5d5), color-stop(65%, #e2e2e2), color-stop(100%, #e3e3e3));
background-image: -webkit-linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3);
background-image: linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3);
}
/* line 424, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-spinner .x-spinner-button-down {
margin-left: .25em;
}
/* line 427, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-spinner .x-spinner-button-up {
margin-right: .25em;
}
/* line 432, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-spinner.x-field-grouped-buttons .x-input-el {
text-align: left;
}
/* line 436, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-spinner.x-field-grouped-buttons .x-spinner-button-down {
margin-right: .5em;
}
/* line 443, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-android .x-spinner-button {
padding: .40em 0 .11em !important;
}
/* line 450, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-select-overlay .x-list-item-label {
height: 2.6em;
}
/* line 454, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-select-overlay .x-list-label {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
}
/* line 460, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-select-overlay .x-item-selected .x-list-label {
margin-right: 2.6em;
}
/* line 465, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-select-overlay .x-item-selected .x-list-item-inner:before {
background-color: rgba(0, 0, 0, 0.3);
margin-top: -0.8em;
}
/* line 470, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-select-overlay .x-item-selected .x-list-item-inner:after {
background-color: #dddddd;
}
/* line 11, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
.x-slider-field .x-component-outer, .x-toggle-field .x-component-outer {
padding: 0.6em;
}
/* line 17, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
.x-slider,
.x-toggle {
position: relative;
height: 2.2em;
min-height: 0;
min-width: 0;
}
/* line 23, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
.x-slider > *,
.x-toggle > * {
position: absolute;
width: 100%;
height: 100%;
}
/* line 30, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
.x-slider.x-item-disabled {
opacity: .6;
}
/* line 57, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
.x-thumb {
position: absolute;
height: 2.2em;
width: 2.2em;
}
/* line 63, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
.x-thumb:after {
content: "";
position: absolute;
width: 1.85em;
height: 1.85em;
top: 0.175em;
left: 0.175em;
border: 1px solid #919191;
-webkit-border-radius: 0.925em;
border-radius: 0.925em;
background-image: none;
background-color: #dddddd;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #eaeaea), color-stop(100%, #d0d0d0));
background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0);
background-image: linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0);
-webkit-background-clip: padding;
background-clip: padding-box;
}
/* line 72, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
.x-thumb.x-dragging {
opacity: 1;
}
/* line 73, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
.x-thumb.x-dragging:after {
background-image: none;
background-color: #d0d0d0;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(3%, #dddddd), color-stop(100%, #c4c4c4));
background-image: -webkit-linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4);
background-image: linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4);
}
/* line 81, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
.x-slider:after {
content: "";
position: absolute;
width: auto;
height: 0.8em;
top: 0.737em;
left: 0;
right: 0;
margin: 0 0.925em;
background-image: none;
background-color: #dddddd;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede));
background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede);
background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede);
border: 0.1em solid rgba(0, 0, 0, 0.1);
border-bottom: 0;
-webkit-box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0;
box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0;
-webkit-border-radius: 0.4em;
border-radius: 0.4em;
}
/* line 93, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
.x-toggle {
width: 4.4em;
-webkit-border-radius: 1.1em;
border-radius: 1.1em;
overflow: hidden;
border: 1px solid #b7b7b7;
background-image: none;
background-color: #dddddd;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede));
background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede);
background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede);
-webkit-box-flex: 0;
}
/* line 113, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
.x-toggle .x-thumb.x-dragging {
opacity: 1;
}
/* line 117, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
.x-toggle .x-thumb:before {
top: 0.175em;
}
/* line 146, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
.x-toggle-on {
background-image: none;
background-color: #92cf00;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6e9c00), color-stop(10%, #80b500), color-stop(65%, #92cf00), color-stop(100%, #94d200));
background-image: -webkit-linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200);
background-image: linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200);
}
/* line 482, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
}
/* line 488, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-number input::-webkit-outer-spin-button, .x-field-number input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* line 495, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-search .x-field-input {
position: relative;
}
/* line 498, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-search .x-field-input:before {
content: "";
position: absolute;
width: 0.86em;
height: 0.86em;
top: 50%;
left: 0.5em;
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAGdElEQVRoBdWaa4ycUxjHd9rpbm2bqKhiUavbVZdo0LCyLl3iHhGEkkZsKBYJX4RISHwQIYIPNJoQlUjTuCakUZ9oVGRF0GywslvqbgkpDarqsn7/6XsmM5n38pzzvtudeZL/nplznvM8z//cz5ktTU5OtuWRUqk0i/qdoAN0gcXgP+CkzIcx8APYBXbi82/SaZFSKGGILiTibnA+GADHgbkgSXZT8CF4GwyDEXxvI92r4k0Yoj1EeAG4CvSDEggRkX8VbID4lhADQXXUwxZgfAF4CGwFmgdFYQJb68HJljjy6mSSJZAZ4CLwESiKZJydb7A/CGblJZVWP5UwzueBB8AfIC7IovO0mK0B89KCzlOWSBinWoBeAkWTstiT3948xJLqxhLG2Xzw4jSRdQ0yiv/upMBD8xsI40Rzdu00k3WknyeO+aHk4urFEb4TJ/80CWEdYB4BhS1kdfswe+zpGNf80RYUIr9QSdgOdNCYCfaLcABpqFxBbymu3FIlDFkdD18B5wRYHaHOJvAeGCU4fa8IdnXUPAaoMZeDk4CvfEKFM7CrhswnbpxjZQX4C7j5Y0m1d64EXc5OWoqeFsPLwTvAYt/p/Iv+6jTb1rLKHMbYgWCjZxCb0T/e6qhWj3o6hz8HRMSRykp17l5WayfksyN8oafzTegfHOLQ1aG+blc6ZGQRdeVawB4GlWno7Pim1G9rB08AZzgrfRfdw3wdxelHvl/38K01Itc2Rf22Q8BPIIuoynXQL/SQj71DwcfA4n8nev1xjWfN0yGjD2gxsYh6432LolWHQL9F91Gj/j7oacUPFhE+11hbLxbrCFBzqWh5A4PDRqN90RZqVK9XE+ET67MSv41D9s3E0nwFX1Ndu4RFjkZpjkUxTkeEdTDIEvXqW1lKoeU0pOavXj10OsuSI1CYnaWUVC7COvpliR7f9CQzlaK5/LPBQRc6mstBIsIW0WXiO4tiDh35mIr1oS4kK2ENOctwqzPu+SX0MdDLjZWw9Pb1suyv7EPYR7cuEithLRLL6moW/0VriaVRtT1qTQkSER411Cyjc4pBL4/KEirPNRj4FZ3gXy5EWM+vWaIhtJQNf2GWYkg5dtWzui9bhuqn6OkVNUhE+ANjTZG91Kjrq6bDxHnGStqvcxHWsU5bQpZ0orCK3rDs21m2quXY6+DLTWBBNTP9wxbOKZZ4E63omLYZWG4r0nkQtOtwVASwdYeH723o9uTxS/3Ks+ytHk5/R3cI5LqIK2hEDw86XVkb+wV0Z+YiHDnWCjnu4Vj3Ug3DzhDn1NPacTX4HljJ6gFPr5e5RpZ74tFz6l0ezhWk5tFTYJFPEOjrLKxhrEazktWR8zVQ9vEVp1ttLYyplyeANQinN0ydIXBUnAOXR7nsrwAbgatrTbX3nu1s5Ul1oKgIRsZYMR/jy72gY0+u6a8OJMJX1P+C9MsaqDcPAseCHtANQkRTwHIoybZd21qR0Q2k1pZP0tNJSIubLhxJOr75egO/sjbekM/VIe0qY1RDb6p//PYl6/QniO0sF2tI2kBYRpBTgVrUOWqm9DPiGgghW+GWVBGj/UCvEM1E1sWinr4sKfa0/NgedhUwqsVITzvOUTOl6gxv0qmERRw5HOi/bHz2zb3VMHp28hremYQj0rq23QhGwFSQ0ZVPu8NvAfa3Use8kJkI1wzxxRhfDcYDAotrKF0GngYnRA17D599f7KVXcVzmoszLfUi7AxhfBG4GKwFPudhBacnmpfBStDwnzrkrQIhpDW8L3ExJqXV/wBA2Vs4WelquT9Qzy8FvdHnDlKR01RQ8OrJMaAp8TnYQUA7SBsEm6pzPXgcyI6PaCG7Hdu6VcVLUkuE5ONBR8ByDGb42sPGteBPEDcV0vK0ZZ2Z5C9oSCcZKzqfwO8OJK2FbCAunqYmrICRQaA3rLRejSvTWtGwTzc94Yj0DQS/O4C05nQd6VYhrIVMpEN6Wqv3crBngY4b582aR9DXgJCFTPt05T+AtKq2jNARzxLs/UBbnY/0onwLO97sXPuwj8cidQn8OuytAe0edjUyuluqh2vIPcNnPS1rIbOKfkRf0pKEGdqSJyFwM/AZ3j+2JGHXpZDWWf4+sMvlpaTal7e3xLYEsdQ4ITIIsras29AppxrKctRM5ZDRLUvv13GnLl1p5yjellylCb5BolvWkRQMgT6g6apXmnVgPWQrc/1/boJCaHVWyukAAAAASUVORK5CYII=');
-webkit-mask-size: .86em;
background-color: #ccc;
-webkit-mask-repeat: no-repeat;
margin-top: -0.43em;
}
/* line 506, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-search .x-field-input .x-form-field {
margin-left: 1.0em;
}
/* line 516, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-input .x-clear-icon {
display: none;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAADHmlDQ1BJQ0MgUHJvZmlsZQAAeAGFVN9r01AU/tplnbDhizpnEQk+aJFuZFN0Q5y2a1e6zVrqNrchSJumbVyaxiTtfrAH2YtvOsV38Qc++QcM2YNve5INxhRh+KyIIkz2IrOemzRNJ1MDufe73/nuOSfn5F6g+XFa0xQvDxRVU0/FwvzE5BTf8gFeHEMr/GhNi4YWSiZHQA/Tsnnvs/MOHsZsdO5v36v+Y9WalQwR8BwgvpQ1xCLhWaBpXNR0E+DWie+dMTXCzUxzWKcECR9nOG9jgeGMjSOWZjQ1QJoJwgfFQjpLuEA4mGng8w3YzoEU5CcmqZIuizyrRVIv5WRFsgz28B9zg/JfsKiU6Zut5xCNbZoZTtF8it4fOX1wjOYA1cE/Xxi9QbidcFg246M1fkLNJK4RJr3n7nRpmO1lmpdZKRIlHCS8YlSuM2xp5gsDiZrm0+30UJKwnzS/NDNZ8+PtUJUE6zHF9fZLRvS6vdfbkZMH4zU+pynWf0D+vff1corleZLw67QejdX0W5I6Vtvb5M2mI8PEd1E/A0hCgo4cZCjgkUIMYZpjxKr4TBYZIkqk0ml0VHmyONY7KJOW7RxHeMlfDrheFvVbsrj24Pue3SXXjrwVhcW3o9hR7bWB6bqyE5obf3VhpaNu4Te55ZsbbasLCFH+iuWxSF5lyk+CUdd1NuaQU5f8dQvPMpTuJXYSWAy6rPBe+CpsCk+FF8KXv9TIzt6tEcuAcSw+q55TzcbsJdJM0utkuL+K9ULGGPmQMUNanb4kTZyKOfLaUAsnBneC6+biXC/XB567zF3h+rkIrS5yI47CF/VFfCHwvjO+Pl+3b4hhp9u+02TrozFa67vTkbqisXqUj9sn9j2OqhMZsrG+sX5WCCu0omNqSrN0TwADJW1Ol/MFk+8RhAt8iK4tiY+rYleQTysKb5kMXpcMSa9I2S6wO4/tA7ZT1l3maV9zOfMqcOkb/cPrLjdVBl4ZwNFzLhegM3XkCbB8XizrFdsfPJ63gJE722OtPW1huos+VqvbdC5bHgG7D6vVn8+q1d3n5H8LeKP8BqkjCtbCoV8yAAAACXBIWXMAAAsTAAALEwEAmpwYAAABbmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNC40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iPgogICAgICAgICA8ZGM6c3ViamVjdD4KICAgICAgICAgICAgPHJkZjpCYWcvPgogICAgICAgICA8L2RjOnN1YmplY3Q+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgrlPw1BAAAIWklEQVRoBdVbS2hVRxiee83LmJeaRBOTCKWgtIiJoQYNFAnSRSF205AqKEJ3urDQlq7aECuuCqUUzK5gS20XBUMLlQYaH3TRoGJsaTURN0mMryQGE40mJun3He65zL2ZmTPnZZOBm3POzPz//N/MN/88k1hcXBRxh2vXrlUsLCxsWbVq1WaUV5JIJIpRZi5+0/iewvc40gdvI7S1tc3GaU8iDsBXr17dlpOTsxeGt+C3G791NiBgyzzA30De83jvffLkye/Nzc1TNrK2eSIDDJBVAHkIhh6E0a/bGmDKB10zSO9G659ubGzswXdoOoYGfOXKlVcA9BOAPAzj8kwAwqQB67+QP3nr1q0fQfv5oLoCA+7r6yvJz88/joKPAmxOUAMCyN2cn58/umPHjt4AsiIQ4P7+/ndQWBeAVgUpNAoZtPgP0HOkvr5+0o8+X4ABMAGP+xkeHSgk4aegmPIOQO++7du3D9rqtwYMp1SIYeU0wL5rq/xl5ENLT8KmdoDusSkvaZPp8uXLtXBMfyw3sLQdNpUB9K/oZsdssHi2MMHm5ub2QfH/1l9tgDAPhq8TDQ0Nn5ryGwGTxmxZKGgwKVlOaQB9AKDp0JRBS2m0aIJ9FlIrBiwRJpPJb0DvN5Roma5LSHnjZeWgdLZmxRfguxv2V2fFO59KwBxn0cAcelZkgO3V+J29cOHCkgnRkojUDKoLSI3jbF1dnVi7dq22QsbGxsSdO3e06aaE2tpasW6dfr0xMjIixsfHTSrovXeWlZV9gExfyBmXtDCni8js6ZEJZm5uTtaV8b5+/XpRVFSUEWfzQRlTRT5+/FhMTEzYqCLoDjRgjZw5AzAXAkg8KmfQvWM+K4aGhnTJLEzU1NTQiWjzZCe4MnyqwosXLwRbF+OuKlkVV1RQUNApJ2RYk1r1LKG5LCC/Y70qHj58KEdlvIMtoqrKkyxpmY0bNwrK6ALBmlilkkPlHMTwWuempQFzPYuaPewm2DxZ0/fv3xfPnj3TZmdftKF2YWGhKC8v1+ohjUlnvwGYctGQH7lyacCIPIRI3+tZUnt4eNjVt+RJSm/atMmh+JJEKYJ5dPSfnZ0Vd+/e9UNlSbOg3MFz58451EkDZmRGLh8fMzMzjkE6EdK0ulo5LDoiGzZsEKtXr9aJO/2W/TdoQCuXobu0Ut4BDDpvQ2TgbRlSm8ME+7QqQLfjeVXUhlNxqMw8qvDgwQMxPT2tSvIVB/bsp4ADGHTe60takZnU5lCFuawiVQhMU51WzqYtWx7lK2XIHDpFVmjYAB0tnZ2d6TGjJaxCytN5sa/pAluTntgNprGaIFmBYajslsMnad3a2trg9uFmOTHoO4189OiR1pvK1M7LyxOVlZVaZ3bv3j3x9OnToKYo5VD+7hxukoNm+jmiUlQfSWqzlTnMqKjKOI7N9LwErQpTU1PObCoKKsv6AXhrEkq3ypFRvHtRmx65pKREWRQpzNaNispyIQC8JcnjDzkyqvfJyUmH3ip9pHa283LzcSITNZVd3WjczUl4VZ7zRB7orTmkPH/+3Fq3qZKslRgyoqJLkvgTC2CWS2qzxWz6IiuGeekD4gqwo5hemqd4sQWOpXRQXoEOzDTb8pK3TM8l4PDTGE1pnGxw2mhaAbmi7NfMy7E6xjBNLx3pcaRsLBfy2HWQo4zvrBiOzayoOAIqdYp92LxXErBkjsNsMVWgQ9P1a1ZSaWmpSix0HMocp5ceDK0pSwEnF5xCqiYezMp1Lfu2LnBiElN/HkzymgGQR+Ya2Re56C8uVjt/d23L2ZhucuFWWNTUhm0DSd6pwMsNXW37jSeV5QWCLE8ac2wmaC75OO/WUZszMdKbFRhVAJuvu4uH81EoZcuYdjcIUt5e5RTStD1EakfotRcB+KIDGLUc6DRdriS2REVFhbbvkb6jo6OyiLN2ZpxussHpJyswCmoD41+4JzLmAOZtGUTovUiGmeoP7mZwSFEF0pYLeVVrelF7zZo1guvmsNSGDb/QNgdw6mpQt8pYmzhSmXvQukCPzL6rC2xl05w7Cq8NtnzH8t0+THp9qzPIFM+ap0G6tS30eh65kAGm7SGWz+OXENT+070WkQYMfv+Ggnk1yFegNzWdA/GMyWa5R2qbjlDovDiRCUjtL11QacAAy52yk26CzRM3A4xUJk3piW0Dx2YTtekU2ad9hoHu7u6fXJk0YEbw0hceN91E05M1zX6rm02x/nyeAzle20uGp5Z+qA07jnd0dKS3UjMA84YbgtVhGmms26ZhRXFSQZr6DdljdbY8WcWhyiYA7CXc4zoj51Xe8cCB+Bm0oLNxLWdeSe8AOwcMDXBW/8h2Z7SwlHAE7wPS94p7BeBj2WAJQgk4dZ1vH4R8XetbLrUCu0/hJk+Xyh4lYGbkuAVKtEM4spWUyoAY4nqxGai9pKYFnALdg+eHMRgVi0o0zm2M+W179uzRHjUaAdMq0PsrzJZOxGJhhEoJFox8e9euXcYLIJ6AaROv8wH0Abzqj/ojNN6vKoA9j/n6TnZDL1krwFTC63xQ/CZ+mWs8rxJiToc9p9Bn3/JqWdcM5TjsJqqevOEG6pzFb6cq/WXFAegcfsd03lhnh3ULuwpQwChqtBmFfYw4/1MpV1GIJ8q+hAqHKeqhx6TadwvLynjpC6uYThjA/2SJ9QQjVe4AyvocjvR72Q4/775bWFbe1NQ0AkfxPubfryL+axgT10SlD/rbsep5LQxY2h6qhalADrwahM2AfWjt9wC+BU/7YwdZkXPTaPFv6PiZOxU23jdTXP8VKWC5GF4g4Z0KgG7Gbwt+WwFgM57FeHLTml1gGt/8d7wxvHNmN4Dh7zp+F7nhJuuL6v0/Vc+vwPfknLsAAAAASUVORK5CYII=') no-repeat;
background-position: center center;
background-size: 55% 55%;
width: 2.2em;
height: 2.2em;
margin: .5em;
margin-top: -1.1em;
position: absolute;
top: 50%;
right: -0.5em;
}
/* line 532, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-clearable .x-clear-icon {
display: block;
}
/* line 536, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-clearable .x-field-input {
padding-right: 2.2em;
}
/* line 541, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-android .x-input-el {
-webkit-text-fill-color: #000;
}
/* line 545, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-android .x-empty .x-input-el {
-webkit-text-fill-color: #A9A9A9;
}
/* line 556, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-item-disabled .x-form-label span,
.x-item-disabled input,
.x-item-disabled .x-input-el,
.x-item-disabled .x-spinner-body,
.x-item-disabled select,
.x-item-disabled textarea,
.x-item-disabled .x-field-clear-container {
color: #b3b3b3;
-webkit-text-fill-color: #b3b3b3;
pointer-events: none;
}
/* line 563, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form-fieldset {
margin: 0 0 1.5em;
}
/* line 566, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form-fieldset .x-form-label {
border-top: 1px solid white;
}
/* line 570, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form-fieldset .x-form-fieldset-inner {
border: 1px solid #dddddd;
background: #fff;
padding: 0;
-webkit-border-radius: 0.4em;
border-radius: 0.4em;
overflow: hidden;
}
/* line 579, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form-fieldset .x-field {
border-bottom: 1px solid #dddddd;
background: transparent;
}
/* line 583, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form-fieldset .x-field:first-child {
-webkit-border-top-left-radius: 0.4em;
border-top-left-radius: 0.4em;
-webkit-border-top-right-radius: 0.4em;
border-top-right-radius: 0.4em;
}
/* line 589, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form-fieldset .x-field:last-child {
border-bottom: 0;
-webkit-border-bottom-left-radius: 0.4em;
border-bottom-left-radius: 0.4em;
-webkit-border-bottom-right-radius: 0.4em;
border-bottom-right-radius: 0.4em;
}
/* line 599, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form-fieldset-title {
text-shadow: #fff 0 1px 1px;
color: #333333;
margin: 1em 0.7em 0.3em;
color: #333333;
font-weight: bold;
}
/* line 605, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form-fieldset-title .x-innerhtml {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* line 610, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-form-fieldset-instructions {
text-shadow: #fff 0 1px 1px;
color: #333333;
color: gray;
margin: 1em 0.7em 0.3em;
font-size: .8em;
text-align: center;
}
/* line 619, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-selectmark-base, .x-field-select .x-component-outer:after {
content: "";
position: absolute;
width: 1em;
height: 1em;
top: 50%;
left: auto;
right: 0.7em;
-webkit-mask-size: 1em;
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC');
margin-top: -0.5em;
}
/* line 629, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-select {
position: relative;
z-index: 1;
}
/* line 634, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-select .x-component-outer:after {
background-color: #dddddd;
}
/* line 639, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-select .x-component-outer:before, .x-field-select .x-component-outer:after {
pointer-events: none;
position: absolute;
display: block;
}
/* line 645, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
.x-field-select .x-component-outer:before {
content: "";
position: absolute;
width: 4em;
height: auto;
top: 0;
left: auto;
right: 0;
bottom: 0;
-webkit-border-top-right-radius: 0.4em;
border-top-right-radius: 0.4em;
-webkit-border-bottom-right-radius: 0.4em;
border-bottom-right-radius: 0.4em;
background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(rgba(255, 255, 255, 0)), color-stop(0.5, white));
}
/* line 7, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox {
min-width: 15em;
max-width: 20em;
max-height: 90%;
margin: .5em;
-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em;
box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em;
-webkit-border-radius: 0.3em;
border-radius: 0.3em;
border: 0.15em solid #1985d0;
}
/* line 17, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-docking-vertical {
overflow: hidden;
}
/* line 22, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-icon {
margin: 0 0.8em 0 0.5em;
background: #fff;
-webkit-mask-size: 100%;
}
/* line 28, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-msgbox-info {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 32, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-msgbox-warning {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 36, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-msgbox-question {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 40, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-msgbox-error {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC');
}
/* line 44, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-title {
font-size: .9em;
line-height: 1.4em;
}
/* line 49, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-body {
background: transparent !important;
}
/* line 53, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-toolbar {
background: transparent none;
-webkit-box-shadow: none;
box-shadow: none;
}
/* line 57, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-toolbar.x-docked-top {
border-bottom: 0;
height: 1.3em;
}
/* line 62, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-toolbar.x-docked-bottom {
border-top: 0;
}
/* line 67, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-field {
min-height: 2em;
background: #fff;
-webkit-border-radius: 0.2em;
border-radius: 0.2em;
}
/* line 73, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-form-field {
min-height: 1.5em;
padding-right: 0 !important;
-webkit-appearance: none;
}
/* line 79, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox .x-field-input {
padding-right: 2.2em;
}
/* line 84, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox-text {
text-align: center;
padding: 6px 0;
line-height: 1.4em;
}
/* line 90, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox-buttons {
padding: 0.4em 0;
height: auto;
}
/* line 94, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox-buttons .x-button {
min-width: 4.5em;
}
/* line 98, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox-buttons .x-button-normal span {
opacity: .7;
}
/* line 109, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox-dark .x-msgbox-text {
color: rgba(190, 224, 247, 0.9);
text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
}
/* line 113, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
.x-msgbox-dark .x-msgbox-input {
background-image: none;
background-color: rgba(190, 224, 247, 0.9);
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(144, 202, 242, 0.9)), color-stop(10%, rgba(167, 213, 244, 0.9)), color-stop(65%, rgba(190, 224, 247, 0.9)), color-stop(100%, rgba(192, 225, 247, 0.9)));
background-image: -webkit-linear-gradient(top, rgba(144, 202, 242, 0.9), rgba(167, 213, 244, 0.9) 10%, rgba(190, 224, 247, 0.9) 65%, rgba(192, 225, 247, 0.9));
background-image: linear-gradient(top, rgba(144, 202, 242, 0.9), rgba(167, 213, 244, 0.9) 10%, rgba(190, 224, 247, 0.9) 65%, rgba(192, 225, 247, 0.9));
border: 0.1em solid rgba(25, 133, 208, 0.9);
}
/* line 20, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner {
font-size: 250%;
height: 1em;
width: 1em;
position: relative;
-webkit-transform-origin: 0.5em 0.5em;
/* Shared Properties for all the bars */
}
/* line 29, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span, .x-loading-spinner > span:before, .x-loading-spinner > span:after {
display: block;
position: absolute;
width: 0.1em;
height: 0.25em;
top: 0;
-webkit-transform-origin: 0.05em 0.5em;
-webkit-border-radius: 0.05em;
border-radius: 0.05em;
content: " ";
}
/* line 41, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-top {
background-color: rgba(170, 170, 170, 0.99);
}
/* line 42, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-top::after {
background-color: rgba(170, 170, 170, 0.9);
}
/* line 43, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-left::before {
background-color: rgba(170, 170, 170, 0.8);
}
/* line 44, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-left {
background-color: rgba(170, 170, 170, 0.7);
}
/* line 45, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-left::after {
background-color: rgba(170, 170, 170, 0.6);
}
/* line 46, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-bottom::before {
background-color: rgba(170, 170, 170, 0.5);
}
/* line 47, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-bottom {
background-color: rgba(170, 170, 170, 0.4);
}
/* line 48, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-bottom::after {
background-color: rgba(170, 170, 170, 0.35);
}
/* line 49, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-right::before {
background-color: rgba(170, 170, 170, 0.3);
}
/* line 50, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-right {
background-color: rgba(170, 170, 170, 0.25);
}
/* line 51, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-right::after {
background-color: rgba(170, 170, 170, 0.2);
}
/* line 52, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-top::before {
background-color: rgba(170, 170, 170, 0.15);
}
/* line 56, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span {
left: 50%;
margin-left: -0.05em;
}
/* Rotate each of the 4 Spans */
/* line 65, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-top {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
}
/* line 66, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-right {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
}
/* line 67, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-bottom {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
}
/* line 68, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span.x-loading-left {
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
}
/* These are the two lines that surround each of the 4 Span lines */
/* line 72, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span::before {
-webkit-transform: rotate(30deg);
-moz-transform: rotate(30deg);
}
/* line 73, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner > span::after {
-webkit-transform: rotate(-30deg);
-moz-transform: rotate(-30deg);
}
/* Set Animation */
/* line 77, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
.x-loading-spinner {
-webkit-animation-name: x-loading-spinner-rotate;
-webkit-animation-duration: .5s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
@-webkit-keyframes x-loading-spinner-rotate {
/* line 85, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
0% {
-webkit-transform: rotate(0deg);
}
/* line 86, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
8.32% {
-webkit-transform: rotate(0deg);
}
/* line 88, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
8.33% {
-webkit-transform: rotate(30deg);
}
/* line 89, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
16.65% {
-webkit-transform: rotate(30deg);
}
/* line 91, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
16.66% {
-webkit-transform: rotate(60deg);
}
/* line 92, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
24.99% {
-webkit-transform: rotate(60deg);
}
/* line 94, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
25% {
-webkit-transform: rotate(90deg);
}
/* line 95, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
33.32% {
-webkit-transform: rotate(90deg);
}
/* line 97, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
33.33% {
-webkit-transform: rotate(120deg);
}
/* line 98, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
41.65% {
-webkit-transform: rotate(120deg);
}
/* line 100, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
41.66% {
-webkit-transform: rotate(150deg);
}
/* line 101, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
49.99% {
-webkit-transform: rotate(150deg);
}
/* line 103, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
50% {
-webkit-transform: rotate(180deg);
}
/* line 104, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
58.32% {
-webkit-transform: rotate(180deg);
}
/* line 106, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
58.33% {
-webkit-transform: rotate(210deg);
}
/* line 107, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
66.65% {
-webkit-transform: rotate(210deg);
}
/* line 109, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
66.66% {
-webkit-transform: rotate(240deg);
}
/* line 110, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
74.99% {
-webkit-transform: rotate(240deg);
}
/* line 112, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
75% {
-webkit-transform: rotate(270deg);
}
/* line 113, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
83.32% {
-webkit-transform: rotate(270deg);
}
/* line 115, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
83.33% {
-webkit-transform: rotate(300deg);
}
/* line 116, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
91.65% {
-webkit-transform: rotate(300deg);
}
/* line 118, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
91.66% {
-webkit-transform: rotate(330deg);
}
/* line 119, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
100% {
-webkit-transform: rotate(330deg);
}
}
/* line 4, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
.x-android-3 .x-surface-wrap, .x-android-3 .x-surface-wrap > * {
-webkit-perspective: 1;
}
/* line 8, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
.x-draw-component {
position: relative;
}
/* line 10, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
.x-draw-component .x-inner {
overflow: hidden;
}
/* line 15, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
.x-surface {
position: absolute;
}
/* line 19, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
.x-chart-watermark {
opacity: 0.5;
z-index: 9;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: white;
padding: 4px 6px;
font-family: "Helvetica";
font-size: 12px;
position: absolute;
border-top-left-radius: 4px;
white-space: nowrap;
-webkit-border-top-left-radius: 4px;
}
/* line 4, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
.x-android-3 .x-surface-wrap, .x-android-3 .x-surface-wrap > * {
-webkit-perspective: 1;
}
/* line 8, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
.x-draw-component {
position: relative;
}
/* line 10, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
.x-draw-component .x-inner {
overflow: hidden;
}
/* line 15, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
.x-surface {
position: absolute;
}
/* line 19, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
.x-chart-watermark {
opacity: 0.5;
z-index: 9;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: white;
padding: 4px 6px;
font-family: "Helvetica";
font-size: 12px;
position: absolute;
border-top-left-radius: 4px;
white-space: nowrap;
-webkit-border-top-left-radius: 4px;
}
/* line 17, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-legend .x-legend-inner .x-legend-container {
-webkit-border-radius: 5px;
border-radius: 5px;
border: 1px solid #cccccc;
background: white;
}
/* line 27, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-legend .x-legend-inner .x-legend-container .x-legend-item {
padding: 0.8em 1em 0.8em 1.8em;
color: #333333;
background: rgba(255, 255, 255, 0);
max-width: 20em;
min-width: 0;
font-size: 14px;
line-height: 14px;
font-weight: bold;
white-space: nowrap;
position: relative;
}
/* line 39, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-inactive {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
opacity: 0.3;
}
/* line 43, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-item-marker {
position: absolute;
width: 0.8em;
height: 0.8em;
-webkit-border-radius: 0.4em;
border-radius: 0.4em;
-webkit-box-shadow: rgba(255, 255, 255, 0.3) 0 1px 0, rgba(0, 0, 0, 0.4) 0 1px 0 inset;
box-shadow: rgba(255, 255, 255, 0.3) 0 1px 0, rgba(0, 0, 0, 0.4) 0 1px 0 inset;
left: .7em;
top: 1em;
}
/* line 57, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-legend.x-docked-top .x-legend-item, .x-legend.x-docked-bottom .x-legend-item {
border-right: 1px solid rgba(204, 204, 204, 0.5);
}
/* line 59, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-legend.x-docked-top .x-legend-item:last-child, .x-legend.x-docked-bottom .x-legend-item:last-child {
border-right: 0;
}
/* line 66, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-legend.x-docked-left .x-legend-inner, .x-legend.x-docked-right .x-legend-inner {
display: -webkit-box;
-webkit-box-align: center;
-webkit-box-pack: center;
}
/* line 74, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-legend-button-icon {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAADqklEQVRoBe2aS2jUUBSGO7UPX1UrIj4Wgi8EFYvUlUtdKmp14aMggigidSNIFwWRogtBEFwouHMjrkQRLYIKIqKI6MIufBUsglAQLFqrtHX8/tA7jGnuTHAKzcnkwEcy99ybnj8nuTm5aS6fz9dUk9VWk1hpzQSnPeN1EpjD2DTAdHBZH2N/GEa5zyNvdIZpfBNYsaGacS3NRHwEPoHE/YHXsAsa1ScKfK0wCBpjgTbiDDJ02RPwN9oPQ21aBOvy3QNHIcrm0ngW1kc5LbZJ8GnQPeyzhTjafU5r7RK8LEbQa2L0MdFFgkdjRBqnT4zDTH0XCX5SJgzNvo/K9DHjluAL8BUkLGzKbC/cCjus/q7jcXOHAuIUArpgATSCnsO/4A10Qj/4TAXKCESdMN+YqWrPB5UWf/0aKJPbYQMMwVPo4YS8Y+szFR0PYA5IeJJNV/NATgWFMzKt7BYyjK/kZEX/afSf5cYb2A7/I9hAwBWHqDRXlWWC057uLMNZhlN2BqruknaVlta16knmfJgBqka+wyDFh7eCYozWwRaBlRM3EAgmcJWGm2ArLAHVxm/hIb5eRKuujrKlNKoOnwmqv5NsWuS4pAD1wnAevoAyW4xeHo5Dg0rQMLS3gqVFvN26FA/AIdClGba1NJyAdWGH0d95CT4GyrLPVuPY6XNaa5fgVTGC1itjKkyCvbNwkcLfRfumdyX4WQwFL2L0MdFFgi/C+xLRPsd3u4TflEvP4R7QDH0Q9JjRSZDp2fsYrkCpZR7cZiwXrHhQXGhZZyVshMWgIqIPXsJnX7XFOPXdB6q4LNjNwhIPwasS0edSV1r+RGjJyYohWtNSlaarQgVL0u1HQXDSI52s+Nz9OlnHS/xxMsGJT1GFAWYZrvAEJn54luHEp6jCAIMlHncMConZ7Lusj1B46P+0vDZeeJj6mBYIJnCtSW2BdpgHqpr6aL+K6Ffs+2w5jnNg5XNpt8pJ1cEnoQOaQeWiTAt5H6ET7iF8QunICdHLxn3QlTHBT1vSbK8C2g++hTh9H/4ALdIbhnZri3htul+VXV2SUaZsr4AdUU6LbRLcEiNwvTamwtyMXE6MhfuznIbAL8GlZmF3kDh9XN9EbyX4TJkItd51vUwfM24J1mOlG6JWN/pp7wLN1Omw8cerqqVtcBckXP+ZdwM2Q334ceR+4zP3WHKLeCpAVHVpMU+fTTVJqfCQ+DEERk5aFB4a0wRWbChb07KSqv+NU5NWVVnVCf4LlUj5R3Y0QSkAAAAASUVORK5CYII=');
}
/* line 78, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-panzoom-toggle-icon {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 82, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-zooming > .x-panzoom-toggle-icon {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAEn0lEQVRoBeWZWYjNURzH7zWYse+yvcib0uSBpEQikfXBm2QiyZBmauzrA7JkSyN7QolSypRHxYO8iMg+Yx5G1uxblvH5ao7+/u79u3PnnHtO+dWn/37O73PP+f//5/xvOpVKDYWBUIhIN1VyubGx8WkhKsxURzU7GwvIUerqinDKB60y/QIO99VQdiWirx3WkVh0oYTVgw7BHGRfJWbk+GBrx+WreMkehCpk32qHz3At/B25Y7AE2c8+RU3drrv0ESpaGoqspF218DfKluwyZL09oCQYDxctrG6sB9Q6eBOv0Pe27RbWfaqWXRVay5of2rbwRQpWN35vKghtabtLlyI4OZ1O2/4hrf1utoX7ktkBWIx0W2tZWizItrBS6wQboDJEaRfCRnoNK7ORbqMdoYQrYfm1hx1Qpo1QwqWwHNW9d9PKVf+LsDxLYD3SFSFIu25h46juvRHp1WC+ephjBV3mKvyCrN6Bpnr5Rjsu1INsIc5qdS+Ri3ADmS0D3Yf18APyDb2by6FbvgXYuC7pm9YHKpgL7Rguqq4JcB00G9KO5lLHNSOglcrzAXWnsgl/5Nhm6BFNjO3xcBc0K2qOcC3nT4qW5WOdHDIKq2V3Qcavi+yfCc2RfsD5o30Ixuskj7+EJbsT+sdPjm5zfDpIWvd0UkurG4+KXutznVz+EH7O9krolUtSnDcKbkG27n2FYyNyKatQ55DPb2HNYddCTrImQc7XPX0T4tLqxiOhyJwbwpJ8fgnrHbsdBuSTFNeNgYdguvcd1idC63zKc3mNRj3b4CvsoaInLPMKBhMzuHAL6JW1EC5Rnlo9qJDwcHhEcs9amhnS4yhDXymvhSgrvzSJaRlk8AP+GneTY4uTpCjNy0uCFSbBLiSoW0T/Ra1uSY+hrGLKGA2DvQzv1GBJkFhvOAF6CH4CfUhom3RNtmNcp0nLFLgB1YkVZyvE5X6S6glnQN3YIOnlUNKcujlfkxW9NjVWUFlhCZOQZlEa5RnR6FLjhBWQU0vrPBgDl8CUE44wSXWA05HkTJLR5ReO675OlOa4uvE00Hggen0YwiTVEU7GkosmGl3Xf8xboThT92a//gTQOD8uqzL8C5NED/hXy0aFta7urdncH/c023r1jIV7EL/GvzBJ6avm2SzJZUo4uu8N1+meNh8n1LIaRJkHVPRcs+6vhUlMT+PzYJLJZ6mW3gudYQhchaRyqvWr+AqN3/W6aUnoQVcG/UFP+GGQGF5HWoyA+pDdcRiXmKW9g/ty+Wppr7pYSTxlNTubDzWxQ842vQrLCuk6FuVwQduuw7uwBJGuZzELTmnbZQQhLEGkX7KoghPadhXBCDcJNrBcDs7u6aCEaWW9Qx9DBZwD6xGUsOwkTdxndQEc1D6bEZywkUNar6x1YLWlgxVmUFKEbClofGwtghRGVkPeSXAY+lqzpaDghJtkJ5ObJgX9bMqqLJ+Th79cIrJHOKjJgPUIrYWnYrgfnMjq1wumhWld3bN6DXVXYq4iiBZGVvfsUXAqqx/RuzCyi8hDc2J9fHceXrs0svq6uAn0basg4U0Y2UEYzoPboL9YCxG1PwHz6gsWqUp56gAAAABJRU5ErkJggg==');
}
/* line 86, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-chart-toolbar {
position: absolute;
z-index: 9;
display: -webkit-box;
display: box;
padding: .6em;
}
/* line 92, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-chart-toolbar .x-button {
margin: .2em;
}
/* line 96, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-chart-toolbar[data-side=left], .x-chart-toolbar[data-side=right] {
top: 0;
-webkit-box-orient: vertical;
box-orient: vertical;
}
/* line 101, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-chart-toolbar[data-side=left] {
left: 0;
}
/* line 105, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-chart-toolbar[data-side=right] {
right: 0;
}
/* line 109, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-chart-toolbar[data-side=top], .x-chart-toolbar[data-side=bottom] {
-webkit-box-orient: horizontal;
box-orient: horizontal;
right: 0;
}
/* line 114, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-chart-toolbar[data-side=top] {
top: 0;
}
/* line 118, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
.x-chart-toolbar[data-side=bottom] {
bottom: 0;
-webkit-box-orient: horizontal;
box-orient: horizontal;
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.bookmarks,
.x-button .x-button-icon.x-icon-mask.bookmarks {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.download,
.x-button .x-button-icon.x-icon-mask.download {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAGb0lEQVRoBd2aX4gVVRzH3V1dU5JMk9Q2wVxCo0QNTYRYS4l6CBFBomA1qjcjSOgPPUgR0VNBFBT0Bx96qAiSXipCH4rKIhGNUqE2SK3MqKwsLbXPZ7rnMo73jnPnzF6v9wefPefMnPP7/b7z58yZudtz6tSpMaNlPT09E/DdDxPhMpgNJyBtfTRG4AAchePk9BflqFhP1YIRqbCZsACWwjWwGIrYZ3TaDZ/ATjhIfh6IyqwywQhdRlaLYBVcB5Mgxn5n8HbYAjsQ/lGMs/pYz3AMOFLgG/AzeH+MBvo2xqqYXB1bSiyBe2EJvAaH4SSMhtC0T2MYy5jG7i0jvmXBBJoMj4D3VjuEpkVbN6axzWFyq6JbEkyAhfAqOJtmE2l32xzMZWErogsLxvE62As+Vtotrlk8czGndUVFFxKMw41wEM7FJdxMbNhuTua2sYjoXME4cVHwEDhZhACdWpqjufblCW8qmIHOxHfCT9CpIrN5mas5N53B8wS7kPgKOumezQrMts3VnJc1O8sNV1qsmq5k0LNwI3hZx9ovONgEPk4amcvRR+HiRjtb3KborbAB0fvOGJs9EnRwwf88HIHsESzbVuisbKzQdh/Yp6z/7DhzV8OEECOU3qd148z20FgDK+DC+o74in59Y2pm7rNPVWbualhT01T3e5pgts6D9eARrzIB3LXVzF0N60FNdasL5kj0sXUtzIf+eo/zt6IGtaytaUuU1AXTugKuhyomjsR5B/xRi5rUllgimCMwltYQzAHr3WJqUdNQTWOyuFDcpbASptnoMlOT2tQ4phfl3uBzwes9byZl93lpalLbXLV6SXtzr4BuPLvISkxtauxX8DjwW5Qv9t1qalPjOAX7vJoB3TRZIec0U5saZyl4ELr57CIvMTUOKngAqlxGJt478I8aBxQ8Hbpxds4eczVOV/BUuCC7twvbapyq4Ha8JPQVOIBF+hRwk9slWVLm9miy8xjbj0PRA/YHfU828eVm99mnyFziu6/9XT+Mh5as7KPIoE/BB/BPgYgeoP05/dx3OxQR4LrBF4IHoWUrK9j7wZeNzXxJGGk5amYAPvyovj2zuWGT1eEcdjwOpeYdL8mytpyBr5BAW5akroOxy4n5MiyFUqZg78W8+yvPsZfWEyQy3WzyOsbsq/n2Q9+TYMwypsbjCj4EXlJlzPHDcD/48W+0TN8PgF9kyh5YNR4y4e/AGbKsOVveC8OcCSeUSg2fir0H7oayc445qVGtY5bBHnDmjeFXxt8GY8Mn0dhSX+Ds/RvE5OZYNao1eQ/+kNJrPNapoocg9/edIgdCH3AL6DM2L7WpcZqXtKd6L/wJsXYRDl6ABVyK+i5ltbGLGfw06DPW1KbG5NY1MS+bbyD2SIbxO/G1HFo+046BG+ALCP5iS7WpsTf5MY3KPPgYTkCs8zD+XXzNLHL5hj70dwb2WbsNgp/YUk1qm2ecINh/MXoMfoTYAGG8gV6ES4Kgs5X2hZegivkk5KEmtU2qC04q/082u9gROlZRmvgmSH6lzBNMHx9pJlZF3LQPNQ2F2PXfh9noEvF18AGdHhBb/xd/d4SAzUr63AX2jY2XHq8WNU0LceuC3YCtBiecqgP7HF0XgmZL9m2AI5BONrauBrWsTsfLCnbV9AxU8ezLJnwAv2vSwa27DX6AbP/YthrU0p+OeZrgWgLO2FvB99zYoNnx+/B5dUiA+kL4FrL9YtvmroZkZg7xEn3pRqjTcRhGIDZwo/E+rpyNZ4D1Rn1it43gdzjoSZdnnGF3Yq5h74Oq76sg5D18b4PQrrI0Z3NvuKZvKLgmegqDNkPVs3aV4rK+zNWcp6TParreVHBN9ACDt8DfkHXeaW1zNNeBtMBsPVdwTfQgTt6CThZtbuY4mBWYbZ9VcEr0mx0qWrHmdlaxiZbsEWjWxuFkeBhcm7pkPNeXtDmYizkV/r/pQmc4HAQc+934ZtgBVa/GWjmAxjYHcxkf8itStiQ4OCTIbHgO9kM7z7axjGns2SGfVspSgkMAgq4EZ0b/i3U0hevbGMZaGeKXKRv+cylOCxufY/xCcS3cCl5ii6AXqjCFeum+A2/D54j0Pbu0RQsOkRHu+6zP7avgJvDsz4VWxStyD7wPrsi+hP0ILfIbFl3zrTLB6TCId3KbCK6X58MSmAOuocW69jUcrmH9U9gF38NRRB6jrNT+AwkLDdxcvfCRAAAAAElFTkSuQmCC');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.favorites,
.x-button .x-button-icon.x-icon-mask.favorites {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFfUlEQVRoBd2aXahVRRTHz/Ujv+2mZRGZB7W6mtpFikC7+UWUZiqBD0JPFdRL1EMFPfjoU4baS0FUD/UWZBEVShA+BCpmWApRSkgllNpDmZWZt9//eOay72afvWfWOTPn3rvgz8yeWbPW+s/XmT379AwODtZSSQ+CryVgA/gVfIx/pelEhFMBVlvBOaBeFo6Cean8y09KsnMg932TqCOs9M2UhMfhMJVsxtHcAmcbmekLCsqjFKUkvAYG1xSwmEHZqoLyKEVJCDOCNxH9HUCbVl6mULAuXxjrOQlhgl8Bbi0h0Uen3FBS37GqVIQHiHh2SdR16jTlo0t0woycpuxiUDSdHcFeMv3uIWYanTDB3wIWVZBQHP10zuQKvbarUxDWT1HRz1E++Ds99fLtgp6jEmbExhPNcs+IbkZPiCpRCRP5TPCQJ4MJ6A3QSUqjSWzC2ozuC4j+fnSnB+gHq8YmvJKIJgVEpRPX9QH6waqxCa8PjEhHT981H2j6qno0wqzF63BhOUxsom3Zb7aJqGsUjTAONFJlpysXQz7VuXpavrBTzzEJaz1adlzNjHs6RTBvJyZhjZTF/kTaWZZCnlvhsyWgQkPZQpagzsX1bFlAXjGtDdAPUu1p3PPQhCCXkdwG/mta0PWLds060AuAnqtEOjpdbQR3VymX1P9F3UfgGJA9X9F92c/ADaQ2P8V0DJ4/kDbeYKaSvgI2AN0+OGJK1VAbSIhTOXEOybYll2kte77yD4rqrHyb85S9Cl4HtReAyI11/A7HpRq5PSD6oR0f3Rad+H7S1DvV7UgS+tc1cU3n3V/AWJ/SX8BxVuMinow2rNNjlPQVeH0GFg378kDBfLAPXARjZbTPwmUXmOG+bgz71EKFfqKeAUWfREZbJxyCxyOOqEuHER4qrNUWovwy0CFktBHV4eNZMNvxyaaFhKWAaBt/HJwEo4W0luSKLMF8viVhp4iBeeBd8CcYqcQ1qi+CKS7uVmklYdcQY0+C42Ckkf6EmO51cVal3oRlCFkCdKgfCWtbo7obDO3AVWQbHHyUsjo40E6uq9cvQbdG+wN892fj8s0HjXDWKA51/t4JUo72H/jTDtybjSUkbyYsJ0gdfAtSjfTn+JoWQjCv2+57a4M1QaQSvZvrMsIs7RJejGcdUlLJUhzpZsYsZsJcCen6ZwCE3IaYA2021OfUdU3fJltmwni7Fvh+KDMF16KR3ux0lWuSdgjPxeNdJq/tNdKNqJaSSUyEmVK6JNPomtqbIh3eSKNsEmvAarfJ5LEzjbbR59MtpqyEb8eZjpndkhtxvNri3Er4YZxpx+yW6Jdhi8V5MOHm+n0QZ9afo0u0fQO8A5S3iPaQ1cTSG9w4f/SqesZBH/gRWI6T+gyyxfkgvw2cMdrS+/lTzpZvGnyWxsnTwHLRd4R2a/OBqQyoztKBe/P2qp6DCBOUptKHhuA+pU1fq2Co0/F0L9CVaghxXTbWW9ktKg8lrFfCrwODeh/9wgu1bEDo6OT2Fvgb+JLWq+nQEsnaa5UPJbwKBxc8A9KXPG1O3u+u6E4F24GvD3XMDjCxFcF8uTdhjGpHfwn49L42lCeAdyDZwGi3HpwAPr6+Q29htn1ZPoSwfuz3ewShXVcBNz62lzkvq6O9DjZHgQ9p72kdQljvob9VBPAN9Q+UEQmpw5b+Sf8e0FotI/4a9ZN8bIcQXlnh9AD1y3ychuhgU0tpJyhb14epn+ljN+Sk9S9G1ct50d8SdgF9x9EO3lHB5hXwPEYfA8dbGD9LuWZBtfj0inSQWUDTKzu1dAB5Dkz2tdOOHn70LvwVyMag/FYwzse295Rukq5j+G1wEOib66PAy5FPMD46+NPmqTV7CpwGGvkJPm2l8z8GWDNDloqpGQAAAABJRU5ErkJggg==');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.info,
.x-button .x-button-icon.x-icon-mask.info {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.more,
.x-button .x-button-icon.x-icon-mask.more {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAADJ0lEQVRoBe2YS2sUQRSFp5MgvmLU+CAMiBJFDBHcCeoPEFciuHMjroMK4lZBcONG0JW60U1UEgRx59IXuNMoKEElKL7GRwyIqNHxO0N66FT3UNU9IHRNFXz0VNW5t+vW6RcT1ev1Sie1rk4qVrWGgn13PDgcHPZsB8Il7ZmhqXKCw6kt8WwgOOyZoalygsOpLfFsIDjsmaGpcoLDqS3xbCA47JmhqXKCw6kt8Wyg6XAURV2wEy7BM5iFtzAKu2BB0dqJ7YEtcBYmQblfwzjshUVt5O4mfhjOwwQodw3GYA8snpd77n9pFXMYvoP+qDaZZewcVKXPAzE64Qn4CmZe9f/AFSiSu4e4IzANrXJfZ24gXjO/KxEcg9+QFZQcU/CSONh2RKsraMQhr85xE/psOeN5tCr2APyA5Bqzfl9D06tYtX3wC7KE5pg2ZX98UtsR7XZo5ayZW/1DENnyzi18CO1nyMqTNXYcrTapcitHkBLJiZW2RaGRuxcg6+Stxu6i73fI3Y3uZM7cU+hXQeVvzsBP6Dc5LupxztzaiEGH3AvR3S+Qe4dc0D2cp/Uj1oPI1pR7g030n+erWlTe9pMA3cu2Jre+2ERtzBdZe01BL3Ke9Al6vQZsTbfKQ5vImH9PXxtqa3qVPbWJjHk94J6r4DPGhK17A8EHm4j7UAWP2nTG/GX6NWMs1SW3rrCroLeLaxtDqDdG4368zbHVkzM5Polus+2hEs+j7YNxx9zv0FkfhoncvegvOuZ+iW6rYhtfTXTWgV7OyeLM3w+Y3xaf0PVIzAqwFf0IzW7XnLGOmLUg58y1JvsTzA83Y5o/eLcyMQISJAN0z56G9bE275HYNXAU7kAy9xv6p2Bj3pyxntjVcBDuQTL3FH19Dg/FWh0bXzUMNhsf23JkOQzCK9B1P4NY39OFG3kjgpeB8g/AR/gG0+3mJkeF9Lp9lkIVZkDfC1r3vPs8VTAir1uRd1mpNyQUXGr7HBYfHHbYpFJLgsOlts9h8cFhh00qtSQ4XGr7HBYfHHbYpFJLgsOlts9h8cFhh00qtSQ4XGr7HBYfHHbYpFJLOs7hf5j4Vg3iLoGkAAAAAElFTkSuQmCC');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.time,
.x-button .x-button-icon.x-icon-mask.time {
-webkit-mask-image: url('data:image/png;base64,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');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.user,
.x-button .x-button-icon.x-icon-mask.user {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAEWElEQVRoBe2aS0gVYRiGO1lmF8nQQlETutGFokAiqEV0ISKwgmrdMtzUpnW7drWKbFGbQAKpJIhuUGIUFUkW0T1Jq4V2U4ui7GLPexpDD+ecuX1jHqcPHseZ+f9vvnf++e8n0d/fPyZONjZOYqU1doLHRV3CiURCz5gMxTANJsJg+8XJJ+iBt9BHNdO1SCwRZR1GbAFRl8F8WAFLoRwGLME/ffAM7kETvIYPxPWDo7lFIhiheURaCVtgBywHXXOzbhJcggZoRvR7twy+76uELSEAtQsqySPwGdQN+KWDPHuh2DI2+TIVm3T455M9G0Bk6ktRvd4NBZaiTQUT3AQnSNW/VAFBzl/iZw0kq56FcOtuaQHB7QIv9ZVkrqZ2YA9Mck3pMYGZYKeh2sBz1SJb2mqcmfk0E0xQ6l9rwNoKcWjm11JwEYFVW6t1/K218mspeB5B5VsFluKnIuU88Kml4PGBo3DPqBGZiVkKNgvKRFkGJ5aCv2Z4xoi6bCm4DWUaXERhZhMJS8FfolDq+DSbRFgKjrIOa8poYpaCTQKK2sl/wSHfcFSNlll1sSzhn7ys3pAvLFP275lu+L1uKVhBPfYbgMf0zz2mc01mKfgbT7vi+kT/CeT3sv9s6XNYCtbg4CJ0pX9U4Kv3yXk3cO6UjGaCWX5Rg/UArqY8I8yp1qdPQ08YJ4Pzmgl2nCqwc2DVyKjunuddqkE0MVPBBKYSuQ7tJtEhFj9apDczU8FOVB0ctZiuHYUw9obMjbxErW2bmblgApTQengVIkq1B83QEsJH2qzmgp2n3ObYCEGndZ3krbcuXcUWiWACldCjoA0yv6a8J6HJb0Yv6SMRrAcj+gmHA+B3aneDPHXk/8jR3LR3a2rOfnAlTmfDVPDb6Khrq8bPDI5PoRPxZpMSk+1SgtOKpTa8l8BC0JaLmAkloA1xr/aOhJqEtINGWeqW7jjHXrQHbRdw4WxSJf8L8Aeh2m1QaWoBfiUsA61PTwGtUYeZ1qlP1zhan3YraBSnz/0mdAUVHqiEESoxKs0a2AxloJIMI5DsWU0vQH2z2oZToAnFI7+fu2/BiF3PgzbCKqgC1bXhNH3S6rba4BocR7TquifzLBih5XjcCSrROaAGKbJWHt9uJuGq67fgAki4zrNaVsGIzCP3dNgE20B1VJ+uro8UUz3Xr39UvxugCeEZl3UzCkZsBZn1+W6HRaB6qtZ4pJp2PtTna+58DFoR3sVxqHFxyM8euFsIW6EeXoDeoPrBXEEbAlpqqoN1kD9YY6rYxSQ4DGoE9KOSXBGZLk4NYB7CfigZEP1XMBfVEJ0BJUznIFevaSBzEEolOimYkyo4AfocclVYtrjViB0C9SzJEdE+jrn+CWcTrHvdUKuRUSm0gPrZ0W7tGjjMhTiIVWFWSbAGEnGxhAT/y+HhsL9oiVWFjo3FqnRVqrETrG5pFmiSEAuTYC3TFMVCLSIzTg9H6wuIXR2OneDfMJq1NmzzbS8AAAAASUVORK5CYII=');
}
/* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
.x-tab .x-button-icon.team,
.x-button .x-button-icon.x-icon-mask.team {
-webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFI0lEQVRoBe2ZSYgdVRSG+yUmnagRQYU4NbZKNLYKWTgg4gQOaDYqJIIGl4LixhBwoy50LSIiulEjCkpAUBBRURpdGceFMQ7YtgkOJE4xTjGa9vuedUl1Vd2qevSrFqvrwJ97695zzj3/PXd6nd7MzMzIQpJFC4msXDvCbc94l+Euwy2bgW5JtyyhOTpdhnNT0rKGLsMtS2iOTpfh3JS0rOGQ+eLT6/VWMNYJ4NjUmN9T/xLs4WfqvPxO7TU9DkTdNmvBbeAskJ7kv/n+AjwKXiSW7yibFQk3BSIPZHdTl5xZzML238DDYFlTsQS/jZF1AGQ1mAZZkkXfe9FbGwJrqmz6lL4cEmOgjhyO0jq2gGVj0hhhAl9M1FeB3gDRn4Pu/5NwQnJ0ALKqrgKHDmgzkHpjGR4oioPKP1H96+Dn8GvpKyLqneV5Lp0XgnHggTMFJjlYPqAcpnyLsz/LHBLL0fRfCzwbvNN3gLeI5WXKaik7DbF2/20A28HPYF+CPZQfg9tj9vS5h18DRSdyrO0j9FeW+PQenwTe138AJ+d34OPFa215zDa0l15LOLgamM0DIBukbQ60JjhLl7RL+HWQtSv7jhLGz1FgM3DJZ30Yy69gYzqGonrVHr4eJ+OgB7Ji2xi4lGUW8+PsD0vOwNGNwInMirF42K0nlmXZzvR3LNARDN3fx6WVI3VJF50Fzvr7EZtY8zQdLtUiOYXGIrJpXUmvTDdk61HCKEqiagD9SSwnLCeX3RYwSJafRd/zoUj2FzVm2hyzMJ6gV0Y46Myl/BzjeqfnyMg36G5NJqpoTPvnLGWEnS0f9lVStL/7NgT/C5XNoHTW6XesV4En/1wlGo+Oo4QJ1ivoxxqju+fKCG2lf1uFH7P3eEl2K8xndRt3VKKEE4sPKWOHiCreg28TaPR1RN/X6GwEO0GReJ3cg95kUWeqzT8W6KtMpujcVaZQRfgFjL8qcbCDvndi/Zz0h4Hr6L8JHBHRW0L7DejdAU6K6Nj8CfBQi4mH4xYmrmy1sXlK/gCAAyfkQaAT91kWj9HW/6tJ8MO3NmeC+4CHlqdu1q7o25Xk5Hqynw+WBp+hpO1K4JItsnfr5GyCbSirCHstnQpcKulBXMK+o1frCPGgWAomwL2gLsm0z3S9ny38XARWgEXJOI7xNMiS9ns9MN5ZCQhEQ1lIGCOXmZf4ZeAW8C4IAblv3wBXAIn6sjkZ3Arc80FvGKW/nu4H/nhZDiR0IngI+LYPY3i43gWuAeNgFBQSn0UYJZejRH3CPQ8cMDi19Jp6AviuVfd48ADwRZXWG3Z9J/6fApeAJUm2TYRE02OZjPfA3WAM9HVDdvt2iXHI1HkoPQd2g7SjUHef+NyU7AXgFRD65qOcZrybQXgFmtUDIDu2xE3CBuCWWBxIU+8vk9MozdQukDUO3x4qm5IJOp36ZyW6waaJci/jrkviWEV9qiQOdd8Ebr/+T0fKkYvBp6AqOB2fnQz0SA39Kn9z6Z9mfPeze/UlUOXrB3Q2AW36a77KwP7tYCwh7Mupjk1TOmZuNInlyZqxuN8n3ItrQF1xryvRl9W/3Y3/60QGCTGF71h5JB0Tbn7vsDqyP6Vkva5dymxoVQ+lIE6+3+lJCH3Zcp+E78y2Fny7Evw7kstC8YA7BtQZRP1hiwTDKnuGun8aSiekaDxXwrbG/zOtaOT/ss3MLSjpCLc93V2Guwy3bAa6Jd2yhObodBnOTUnLGroMtyyhOTpdhnNT0rKGfwD3f6JVZi/xSQAAAABJRU5ErkJggg==');
}