5841 lines
452 KiB
CSS
5841 lines
452 KiB
CSS
|
@charset "UTF-8";
|
||
|
/**
|
||
|
* Time it takes for a default button to grow and change colors when pressed
|
||
|
*
|
||
|
*/
|
||
|
/**
|
||
|
* @var {color} $loading-spinner-color
|
||
|
* Background-color for the bars in the loading spinner.
|
||
|
*/
|
||
|
/**
|
||
|
* 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
|
||
|
*/
|
||
|
/**
|
||
|
* 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 the element text overflow to use ellipsis.
|
||
|
*/
|
||
|
/**
|
||
|
* Includes an icon to be used on Button or Tab components. The $name is the name of the icon, or the character
|
||
|
* of the font being used.
|
||
|
*
|
||
|
* @include icon('attachment');
|
||
|
*
|
||
|
* @param {string} $name The name of the icon to be included. This is then usable as the iconCls in your app.
|
||
|
* @param {string} $character The character
|
||
|
* @param {string} $font-family The `font-family` used for this icon. Defaults to the `Pictos` font.
|
||
|
*/
|
||
|
/* line 2, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Abstract.scss */
|
||
|
html,
|
||
|
body {
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
/* line 8, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Abstract.scss */
|
||
|
.x-fullscreen {
|
||
|
position: absolute !important;
|
||
|
}
|
||
|
|
||
|
/* line 12, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Abstract.scss */
|
||
|
.x-body {
|
||
|
position: relative;
|
||
|
z-index: 0;
|
||
|
}
|
||
|
|
||
|
/* line 18, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Abstract.scss */
|
||
|
.x-inner,
|
||
|
.x-body {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
/* line 23, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Abstract.scss */
|
||
|
.x-sized {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
/* line 27, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Abstract.scss */
|
||
|
.x-innerhtml {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.layout.Box
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
}
|
||
|
/* line 8, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box.x-horizontal {
|
||
|
-webkit-box-orient: horizontal !important;
|
||
|
-ms-flex-direction: row !important;
|
||
|
flex-direction: row !important;
|
||
|
}
|
||
|
/* line 11, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box.x-horizontal > .x-layout-box-item.x-flexed {
|
||
|
min-width: 0 !important;
|
||
|
}
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box.x-vertical {
|
||
|
-webkit-box-orient: vertical !important;
|
||
|
-ms-flex-direction: column !important;
|
||
|
flex-direction: column !important;
|
||
|
}
|
||
|
/* line 19, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box.x-vertical > .x-layout-box-item.x-flexed {
|
||
|
min-height: 0 !important;
|
||
|
}
|
||
|
/* line 24, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box > .x-layout-box-item {
|
||
|
display: flex !important;
|
||
|
display: -webkit-box !important;
|
||
|
display: -ms-flexbox !important;
|
||
|
}
|
||
|
/* line 28, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box.x-align-start {
|
||
|
-webkit-box-align: start;
|
||
|
-ms-flex-align: start;
|
||
|
align-items: flex-start;
|
||
|
}
|
||
|
/* line 32, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box.x-align-center {
|
||
|
-webkit-box-align: center;
|
||
|
-ms-flex-align: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
/* line 36, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box.x-align-end {
|
||
|
-webkit-box-align: end;
|
||
|
-ms-flex-align: end;
|
||
|
align-items: flex-end;
|
||
|
}
|
||
|
/* line 40, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box.x-align-stretch {
|
||
|
-webkit-box-align: stretch;
|
||
|
-ms-flex-align: stretch;
|
||
|
align-items: stretch;
|
||
|
}
|
||
|
/* line 44, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box.x-pack-start {
|
||
|
-webkit-box-pack: start;
|
||
|
-ms-flex-pack: start;
|
||
|
justify-content: flex-start;
|
||
|
}
|
||
|
/* line 48, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box.x-pack-center {
|
||
|
-webkit-box-pack: center;
|
||
|
-ms-flex-pack: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
/* line 52, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box.x-pack-end {
|
||
|
-webkit-box-pack: end;
|
||
|
-ms-flex-pack: end;
|
||
|
justify-content: flex-end;
|
||
|
}
|
||
|
/* line 56, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-layout-box.x-pack-justify {
|
||
|
-webkit-box-pack: justify;
|
||
|
-ms-flex-pack: justify;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
/* line 62, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.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 71, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-webkit .x-layout-box.x-horizontal > .x-layout-box-item.x-flexed {
|
||
|
width: 0 !important;
|
||
|
}
|
||
|
/* line 75, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-webkit .x-layout-box.x-vertical > .x-layout-box-item.x-flexed {
|
||
|
height: 0 !important;
|
||
|
}
|
||
|
|
||
|
/* line 84, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-firefox .x-stretched.x-dock-horizontal > .x-dock-body {
|
||
|
width: 0;
|
||
|
}
|
||
|
/* line 90, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-firefox .x-stretched.x-dock-vertical > .x-dock-body {
|
||
|
height: 0;
|
||
|
}
|
||
|
/* line 98, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-firefox .x-container .x-dock-horizontal.x-unsized .x-dock-body {
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 0px;
|
||
|
flex: 1 0 0px;
|
||
|
min-height: 0;
|
||
|
min-width: 0;
|
||
|
}
|
||
|
/* line 107, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss */
|
||
|
.x-firefox .x-has-height > .x-dock.x-unsized.x-dock-vertical > .x-dock-body {
|
||
|
height: 0;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.layout.Card
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Card.scss */
|
||
|
.x-layout-card {
|
||
|
position: relative;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
/* line 10, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Card.scss */
|
||
|
.x-layout-card-perspective {
|
||
|
-webkit-perspective: 1000px;
|
||
|
-ms-perspective: 1000px;
|
||
|
perspective: 1000px;
|
||
|
}
|
||
|
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Card.scss */
|
||
|
.x-layout-card-item-container {
|
||
|
width: auto;
|
||
|
height: auto;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
}
|
||
|
|
||
|
/* line 20, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Card.scss */
|
||
|
.x-layout-card-item {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
position: absolute !important;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.layout.Dock
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-dock {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
}
|
||
|
/* line 8, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-dock > .x-dock-body {
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
/* line 13, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.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 17, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-dock.x-sized > .x-dock-body {
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 auto;
|
||
|
flex: 1 0 auto;
|
||
|
min-height: 0;
|
||
|
min-width: 0;
|
||
|
}
|
||
|
/* line 26, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-dock.x-unsized, .x-dock.x-stretched {
|
||
|
height: 100%;
|
||
|
}
|
||
|
/* line 29, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-dock.x-unsized > .x-dock-body, .x-dock.x-stretched > .x-dock-body {
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 auto;
|
||
|
flex: 1 0 auto;
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
min-height: 0;
|
||
|
min-width: 0;
|
||
|
}
|
||
|
/* line 37, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-dock.x-unsized > .x-dock-body > *, .x-dock.x-stretched > .x-dock-body > * {
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 auto;
|
||
|
flex: 1 0 auto;
|
||
|
min-height: 0;
|
||
|
min-width: 0;
|
||
|
}
|
||
|
/* line 45, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-dock.x-dock-vertical {
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
/* line 49, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-dock.x-dock-horizontal {
|
||
|
-webkit-box-orient: horizontal !important;
|
||
|
-ms-flex-direction: row !important;
|
||
|
flex-direction: row !important;
|
||
|
}
|
||
|
/* line 52, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-dock.x-dock-horizontal > .x-dock-item {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
}
|
||
|
/* line 56, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.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 61, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-dock.x-dock-horizontal > .x-dock-item.x-unsized {
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
/* line 64, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-dock.x-dock-horizontal > .x-dock-item.x-unsized > * {
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 auto;
|
||
|
flex: 1 0 auto;
|
||
|
min-height: 0;
|
||
|
min-width: 0;
|
||
|
}
|
||
|
|
||
|
/* line 79, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-ie .x-stretched.x-dock-horizontal > .x-dock-body {
|
||
|
width: 0;
|
||
|
}
|
||
|
/* line 85, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-ie .x-stretched.x-dock-vertical > .x-dock-body {
|
||
|
height: 0;
|
||
|
}
|
||
|
/* line 92, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-ie .x-has-width > .x-dock.x-unsized.x-dock-horizontal > .x-dock-body {
|
||
|
width: 0;
|
||
|
}
|
||
|
/* line 98, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss */
|
||
|
.x-ie .x-has-height > .x-dock.x-unsized.x-dock-vertical > .x-dock-body {
|
||
|
height: 0;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.layout.Fit
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Fit.scss */
|
||
|
.x-stretched.x-container {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
/* line 10, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Fit.scss */
|
||
|
.x-stretched.x-container > .x-inner, .x-stretched.x-container > .x-body,
|
||
|
.x-stretched.x-container > .x-body > .x-inner {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 auto;
|
||
|
flex: 1 0 auto;
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
min-height: 0px;
|
||
|
}
|
||
|
|
||
|
/* line 18, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Fit.scss */
|
||
|
.x-layout-fit.x-stretched > .x-layout-fit-item {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 auto;
|
||
|
flex: 1 0 auto;
|
||
|
min-height: 0;
|
||
|
min-width: 0;
|
||
|
}
|
||
|
|
||
|
/* line 25, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Fit.scss */
|
||
|
.x-layout-fit {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
/* line 30, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Fit.scss */
|
||
|
.x-layout-fit-item.x-sized {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
}
|
||
|
/* line 34, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Fit.scss */
|
||
|
.x-layout-fit-item.x-unsized {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
/* line 45, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Fit.scss */
|
||
|
.x-ie .x-stretched > .x-inner,
|
||
|
.x-ie .x-stretched > .x-body {
|
||
|
min-height: inherit;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.layout.Float
|
||
|
*/
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Float.scss */
|
||
|
.x-center,
|
||
|
.x-centered {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-align: center;
|
||
|
-ms-flex-align: center;
|
||
|
align-items: center;
|
||
|
-webkit-box-pack: center;
|
||
|
-ms-flex-pack: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
/* line 12, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Float.scss */
|
||
|
.x-center > *,
|
||
|
.x-centered > * {
|
||
|
position: relative;
|
||
|
}
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Float.scss */
|
||
|
.x-center > .x-floating,
|
||
|
.x-centered > .x-floating {
|
||
|
position: relative !important;
|
||
|
}
|
||
|
|
||
|
/* line 21, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Float.scss */
|
||
|
.x-floating {
|
||
|
position: absolute !important;
|
||
|
}
|
||
|
|
||
|
/* line 25, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Float.scss */
|
||
|
.x-layout-float {
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
/* line 28, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Float.scss */
|
||
|
.x-layout-float > .x-layout-float-item {
|
||
|
float: left;
|
||
|
}
|
||
|
/* line 33, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Float.scss */
|
||
|
.x-layout-float.x-direction-right > .x-layout-float-item {
|
||
|
float: right;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.util.PaintMonitor
|
||
|
*/
|
||
|
@-webkit-keyframes x-paint-monitor-helper {
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_PaintMonitor.scss */
|
||
|
from {
|
||
|
zoom: 1;
|
||
|
}
|
||
|
|
||
|
/* line 9, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_PaintMonitor.scss */
|
||
|
to {
|
||
|
zoom: 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes x-paint-monitor-helper {
|
||
|
/* line 15, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_PaintMonitor.scss */
|
||
|
from {
|
||
|
zoom: 1;
|
||
|
}
|
||
|
|
||
|
/* line 18, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_PaintMonitor.scss */
|
||
|
to {
|
||
|
zoom: 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* line 23, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_PaintMonitor.scss */
|
||
|
.x-paint-monitored {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
/* line 27, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_PaintMonitor.scss */
|
||
|
.x-paint-monitor {
|
||
|
width: 0 !important;
|
||
|
height: 0 !important;
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
/* line 32, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_PaintMonitor.scss */
|
||
|
.x-paint-monitor.cssanimation {
|
||
|
-webkit-animation-duration: 0.0001ms;
|
||
|
-webkit-animation-name: x-paint-monitor-helper;
|
||
|
animation-duration: 0.0001ms;
|
||
|
animation-name: x-paint-monitor-helper;
|
||
|
}
|
||
|
/* line 39, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_PaintMonitor.scss */
|
||
|
.x-paint-monitor.overflowchange {
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
/* line 42, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_PaintMonitor.scss */
|
||
|
.x-paint-monitor.overflowchange::after {
|
||
|
content: '';
|
||
|
display: block;
|
||
|
width: 1px !important;
|
||
|
height: 1px !important;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.util.SizeMonitor
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_SizeMonitor.scss */
|
||
|
.x-size-monitored {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
/* line 9, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_SizeMonitor.scss */
|
||
|
.x-size-monitors {
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
visibility: hidden;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
/* line 18, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_SizeMonitor.scss */
|
||
|
.x-size-monitors > * {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
/* line 25, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_SizeMonitor.scss */
|
||
|
.x-size-monitors.scroll > *.shrink::after {
|
||
|
content: '';
|
||
|
display: block;
|
||
|
width: 200%;
|
||
|
height: 200%;
|
||
|
min-width: 1px;
|
||
|
min-height: 1px;
|
||
|
}
|
||
|
/* line 34, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_SizeMonitor.scss */
|
||
|
.x-size-monitors.scroll > *.expand::after {
|
||
|
content: '';
|
||
|
display: block;
|
||
|
width: 100000px;
|
||
|
height: 100000px;
|
||
|
}
|
||
|
/* line 44, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_SizeMonitor.scss */
|
||
|
.x-size-monitors.overflowchanged > *.shrink > * {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
/* line 51, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_SizeMonitor.scss */
|
||
|
.x-size-monitors.overflowchanged > *.expand > * {
|
||
|
width: 200%;
|
||
|
height: 200%;
|
||
|
}
|
||
|
|
||
|
/* line 59, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_SizeMonitor.scss */
|
||
|
.x-size-change-detector {
|
||
|
visibility: hidden;
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
z-index: -1;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
/* line 70, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_SizeMonitor.scss */
|
||
|
.x-size-change-detector > * {
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
|
||
|
/* line 74, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_SizeMonitor.scss */
|
||
|
.x-size-change-detector-shrink > * {
|
||
|
width: 200%;
|
||
|
height: 200%;
|
||
|
}
|
||
|
|
||
|
/* line 79, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_SizeMonitor.scss */
|
||
|
.x-size-change-detector-expand > * {
|
||
|
width: 100000px;
|
||
|
height: 100000px;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.util.Translatable
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_Translatable.scss */
|
||
|
.x-translatable {
|
||
|
position: absolute !important;
|
||
|
top: 500000px !important;
|
||
|
left: 500000px !important;
|
||
|
overflow: visible !important;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
|
||
|
/* line 13, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_Translatable.scss */
|
||
|
.x-translatable-hboxfix {
|
||
|
position: absolute;
|
||
|
min-width: 100%;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
}
|
||
|
/* line 19, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_Translatable.scss */
|
||
|
.x-translatable-hboxfix > .x-translatable {
|
||
|
position: relative !important;
|
||
|
}
|
||
|
|
||
|
/* line 24, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_Translatable.scss */
|
||
|
.x-translatable-container {
|
||
|
overflow: hidden;
|
||
|
width: auto;
|
||
|
height: auto;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
}
|
||
|
/* line 28, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_Translatable.scss */
|
||
|
.x-translatable-container::before {
|
||
|
content: '';
|
||
|
display: block;
|
||
|
width: 1000000px;
|
||
|
height: 1000000px;
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.Button
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Button.scss */
|
||
|
.x-button {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-align: center;
|
||
|
-ms-flex-align: center;
|
||
|
align-items: center;
|
||
|
background-color: #eee;
|
||
|
border: 1px solid #ccc;
|
||
|
position: relative;
|
||
|
overflow: hidden;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Button.scss */
|
||
|
.x-button .x-button-icon {
|
||
|
position: relative;
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center;
|
||
|
}
|
||
|
/* line 22, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Button.scss */
|
||
|
.x-button .x-button-icon.x-shown {
|
||
|
display: block;
|
||
|
}
|
||
|
/* line 26, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Button.scss */
|
||
|
.x-button .x-button-icon.x-hidden {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
/* line 33, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Button.scss */
|
||
|
.x-iconalign-left,
|
||
|
.x-icon-align-right {
|
||
|
-webkit-box-orient: horizontal;
|
||
|
-ms-flex-direction: row;
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
|
||
|
/* line 38, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Button.scss */
|
||
|
.x-iconalign-top,
|
||
|
.x-iconalign-bottom {
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
/* line 43, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Button.scss */
|
||
|
.x-iconalign-bottom,
|
||
|
.x-iconalign-right {
|
||
|
-webkit-box-direction: reverse;
|
||
|
-ms-flex-direction: row-reverse;
|
||
|
flex-direction: row-reverse;
|
||
|
}
|
||
|
|
||
|
/* line 47, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Button.scss */
|
||
|
.x-iconalign-center {
|
||
|
-webkit-box-pack: center;
|
||
|
-ms-flex-pack: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
/* line 52, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Button.scss */
|
||
|
.x-button-label, .x-badge {
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 auto;
|
||
|
flex: 1 0 auto;
|
||
|
-webkit-box-align: center;
|
||
|
-ms-flex-align: center;
|
||
|
align-items: center;
|
||
|
white-space: nowrap;
|
||
|
text-overflow: ellipsis;
|
||
|
text-align: center;
|
||
|
display: block;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
/* line 62, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Button.scss */
|
||
|
.x-badge {
|
||
|
background-color: #ccc;
|
||
|
border: 1px solid #aaa;
|
||
|
z-index: 2;
|
||
|
position: absolute !important;
|
||
|
width: auto;
|
||
|
font-size: .6em;
|
||
|
right: 0;
|
||
|
top: 0;
|
||
|
max-width: 95%;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
html, body {
|
||
|
font-family: "Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif;
|
||
|
font-weight: normal;
|
||
|
-webkit-text-size-adjust: none;
|
||
|
margin: 0;
|
||
|
cursor: default;
|
||
|
}
|
||
|
|
||
|
/* line 12, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.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 17, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
table {
|
||
|
border-collapse: collapse;
|
||
|
border-spacing: 0;
|
||
|
}
|
||
|
|
||
|
/* line 22, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
fieldset, img {
|
||
|
border: 0;
|
||
|
}
|
||
|
|
||
|
/* line 26, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
address, caption, cite, code, dfn, em, strong, th, var {
|
||
|
font-style: normal;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
/* line 31, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
li {
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
/* line 35, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
caption, th {
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
/* line 39, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
h1, h2, h3, h4, h5, h6 {
|
||
|
font-size: 100%;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
/* line 45, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
q:before,
|
||
|
q:after {
|
||
|
content: '';
|
||
|
}
|
||
|
|
||
|
/* line 49, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
abbr, acronym {
|
||
|
border: 0;
|
||
|
font-variant: normal;
|
||
|
}
|
||
|
|
||
|
/* line 54, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
sup {
|
||
|
vertical-align: text-top;
|
||
|
}
|
||
|
|
||
|
/* line 58, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
sub {
|
||
|
vertical-align: text-bottom;
|
||
|
}
|
||
|
|
||
|
/* line 62, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
input, textarea, select {
|
||
|
font-family: inherit;
|
||
|
font-size: inherit;
|
||
|
font-weight: inherit;
|
||
|
}
|
||
|
|
||
|
/* line 68, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
*:focus {
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
/* line 72, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
body.x-desktop {
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
@-ms-viewport {
|
||
|
width: device-width;
|
||
|
}
|
||
|
|
||
|
/* line 80, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
*, *:after, *:before {
|
||
|
-webkit-box-sizing: border-box;
|
||
|
-moz-box-sizing: border-box;
|
||
|
box-sizing: border-box;
|
||
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||
|
-webkit-touch-callout: none;
|
||
|
-webkit-user-drag: none;
|
||
|
-webkit-user-select: none;
|
||
|
-ms-user-select: none;
|
||
|
-ms-touch-action: none;
|
||
|
-moz-user-select: -moz-none;
|
||
|
}
|
||
|
|
||
|
/* line 91, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
input, textarea {
|
||
|
-webkit-user-select: text;
|
||
|
-ms-user-select: auto;
|
||
|
-moz-user-select: text;
|
||
|
}
|
||
|
|
||
|
/* line 97, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
.x-hidden-visibility {
|
||
|
visibility: hidden !important;
|
||
|
}
|
||
|
|
||
|
/* line 101, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
.x-hidden-display, .x-field-hidden {
|
||
|
display: none !important;
|
||
|
}
|
||
|
|
||
|
/* line 105, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
.x-hidden-offsets {
|
||
|
position: absolute !important;
|
||
|
left: -10000em;
|
||
|
top: -10000em;
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
|
||
|
/* line 112, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
.x-html {
|
||
|
-webkit-user-select: auto;
|
||
|
-webkit-touch-callout: inherit;
|
||
|
-ms-user-select: auto;
|
||
|
line-height: 1.5;
|
||
|
color: #333;
|
||
|
font-size: .8em;
|
||
|
padding: 1.2em;
|
||
|
}
|
||
|
/* line 33, /var/lib/gems/1.9.1/gems/compass-0.12.2/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, /var/lib/gems/1.9.1/gems/compass-0.12.2/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, /var/lib/gems/1.9.1/gems/compass-0.12.2/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, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html h1 {
|
||
|
font-size: 3em;
|
||
|
line-height: 1;
|
||
|
margin-bottom: 0.50em;
|
||
|
}
|
||
|
/* line 54, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html h2 {
|
||
|
font-size: 2em;
|
||
|
margin-bottom: 0.75em;
|
||
|
}
|
||
|
/* line 55, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html h3 {
|
||
|
font-size: 1.5em;
|
||
|
line-height: 1;
|
||
|
margin-bottom: 1.00em;
|
||
|
}
|
||
|
/* line 56, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html h4 {
|
||
|
font-size: 1.2em;
|
||
|
line-height: 1.25;
|
||
|
margin-bottom: 1.25em;
|
||
|
}
|
||
|
/* line 57, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html h5 {
|
||
|
font-size: 1em;
|
||
|
font-weight: bold;
|
||
|
margin-bottom: 1.50em;
|
||
|
}
|
||
|
/* line 58, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html h6 {
|
||
|
font-size: 1em;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
/* line 59, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html p {
|
||
|
margin: 0 0 1.5em;
|
||
|
}
|
||
|
/* line 60, /var/lib/gems/1.9.1/gems/compass-0.12.2/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, /var/lib/gems/1.9.1/gems/compass-0.12.2/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, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html a {
|
||
|
text-decoration: underline;
|
||
|
color: #0066cc;
|
||
|
}
|
||
|
/* line 18, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
|
||
|
.x-html a:visited {
|
||
|
color: #004c99;
|
||
|
}
|
||
|
/* line 21, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
|
||
|
.x-html a:focus {
|
||
|
color: #0099ff;
|
||
|
}
|
||
|
/* line 24, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
|
||
|
.x-html a:hover {
|
||
|
color: #0099ff;
|
||
|
}
|
||
|
/* line 27, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
|
||
|
.x-html a:active {
|
||
|
color: #bf00ff;
|
||
|
}
|
||
|
/* line 63, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html blockquote {
|
||
|
margin: 1.5em;
|
||
|
color: #666666;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
/* line 64, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html strong, .x-html dfn {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
/* line 65, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html em, .x-html dfn {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
/* line 66, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html sup, .x-html sub {
|
||
|
line-height: 0;
|
||
|
}
|
||
|
/* line 67, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html abbr, .x-html acronym {
|
||
|
border-bottom: 1px dotted #666666;
|
||
|
}
|
||
|
/* line 68, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html address {
|
||
|
margin: 0 0 1.5em;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
/* line 69, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html del {
|
||
|
color: #666666;
|
||
|
}
|
||
|
/* line 70, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html pre {
|
||
|
margin: 1.5em 0;
|
||
|
white-space: pre;
|
||
|
}
|
||
|
/* line 71, /var/lib/gems/1.9.1/gems/compass-0.12.2/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, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html li ul, .x-html li ol {
|
||
|
margin: 0;
|
||
|
}
|
||
|
/* line 73, /var/lib/gems/1.9.1/gems/compass-0.12.2/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, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html ul {
|
||
|
list-style-type: disc;
|
||
|
}
|
||
|
/* line 75, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html ol {
|
||
|
list-style-type: decimal;
|
||
|
}
|
||
|
/* line 76, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html dl {
|
||
|
margin: 0 0 1.5em 0;
|
||
|
}
|
||
|
/* line 77, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html dl dt {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
/* line 78, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html dd {
|
||
|
margin-left: 1.5em;
|
||
|
}
|
||
|
/* line 79, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html table {
|
||
|
margin-bottom: 1.4em;
|
||
|
width: 100%;
|
||
|
}
|
||
|
/* line 80, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html th {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
/* line 81, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html thead th {
|
||
|
background: #c3d9ff;
|
||
|
}
|
||
|
/* line 82, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html th, .x-html td, .x-html caption {
|
||
|
padding: 4px 10px 4px 5px;
|
||
|
}
|
||
|
/* line 85, /var/lib/gems/1.9.1/gems/compass-0.12.2/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, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html tfoot {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
/* line 87, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html caption {
|
||
|
background: #eeeeee;
|
||
|
}
|
||
|
/* line 88, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html .quiet {
|
||
|
color: #666666;
|
||
|
}
|
||
|
/* line 89, /var/lib/gems/1.9.1/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
||
|
.x-html .loud {
|
||
|
color: #111111;
|
||
|
}
|
||
|
/* line 124, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
.x-html ul li {
|
||
|
list-style-type: circle;
|
||
|
}
|
||
|
/* line 127, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
.x-html ol li {
|
||
|
list-style-type: decimal;
|
||
|
}
|
||
|
|
||
|
@-webkit-keyframes x-loading-spinner-rotate {
|
||
|
/* line 133, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
0% {
|
||
|
-webkit-transform: rotate(0deg);
|
||
|
}
|
||
|
|
||
|
/* line 134, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
8.32% {
|
||
|
-webkit-transform: rotate(0deg);
|
||
|
}
|
||
|
|
||
|
/* line 136, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
8.33% {
|
||
|
-webkit-transform: rotate(30deg);
|
||
|
}
|
||
|
|
||
|
/* line 137, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
16.65% {
|
||
|
-webkit-transform: rotate(30deg);
|
||
|
}
|
||
|
|
||
|
/* line 139, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
16.66% {
|
||
|
-webkit-transform: rotate(60deg);
|
||
|
}
|
||
|
|
||
|
/* line 140, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
24.99% {
|
||
|
-webkit-transform: rotate(60deg);
|
||
|
}
|
||
|
|
||
|
/* line 142, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
25% {
|
||
|
-webkit-transform: rotate(90deg);
|
||
|
}
|
||
|
|
||
|
/* line 143, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
33.32% {
|
||
|
-webkit-transform: rotate(90deg);
|
||
|
}
|
||
|
|
||
|
/* line 145, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
33.33% {
|
||
|
-webkit-transform: rotate(120deg);
|
||
|
}
|
||
|
|
||
|
/* line 146, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
41.65% {
|
||
|
-webkit-transform: rotate(120deg);
|
||
|
}
|
||
|
|
||
|
/* line 148, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
41.66% {
|
||
|
-webkit-transform: rotate(150deg);
|
||
|
}
|
||
|
|
||
|
/* line 149, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
49.99% {
|
||
|
-webkit-transform: rotate(150deg);
|
||
|
}
|
||
|
|
||
|
/* line 151, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
50% {
|
||
|
-webkit-transform: rotate(180deg);
|
||
|
}
|
||
|
|
||
|
/* line 152, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
58.32% {
|
||
|
-webkit-transform: rotate(180deg);
|
||
|
}
|
||
|
|
||
|
/* line 154, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
58.33% {
|
||
|
-webkit-transform: rotate(210deg);
|
||
|
}
|
||
|
|
||
|
/* line 155, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
66.65% {
|
||
|
-webkit-transform: rotate(210deg);
|
||
|
}
|
||
|
|
||
|
/* line 157, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
66.66% {
|
||
|
-webkit-transform: rotate(240deg);
|
||
|
}
|
||
|
|
||
|
/* line 158, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
74.99% {
|
||
|
-webkit-transform: rotate(240deg);
|
||
|
}
|
||
|
|
||
|
/* line 160, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
75% {
|
||
|
-webkit-transform: rotate(270deg);
|
||
|
}
|
||
|
|
||
|
/* line 161, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
83.32% {
|
||
|
-webkit-transform: rotate(270deg);
|
||
|
}
|
||
|
|
||
|
/* line 163, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
83.33% {
|
||
|
-webkit-transform: rotate(300deg);
|
||
|
}
|
||
|
|
||
|
/* line 164, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
91.65% {
|
||
|
-webkit-transform: rotate(300deg);
|
||
|
}
|
||
|
|
||
|
/* line 166, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
91.66% {
|
||
|
-webkit-transform: rotate(330deg);
|
||
|
}
|
||
|
|
||
|
/* line 167, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
100% {
|
||
|
-webkit-transform: rotate(330deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes x-loading-spinner-rotate {
|
||
|
/* line 171, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
0% {
|
||
|
-ms-transform: rotate(0deg);
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
|
||
|
/* line 172, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
8.32% {
|
||
|
-ms-transform: rotate(0deg);
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
|
||
|
/* line 174, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
8.33% {
|
||
|
-ms-transform: rotate(30deg);
|
||
|
transform: rotate(30deg);
|
||
|
}
|
||
|
|
||
|
/* line 175, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
16.65% {
|
||
|
-ms-transform: rotate(30deg);
|
||
|
transform: rotate(30deg);
|
||
|
}
|
||
|
|
||
|
/* line 177, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
16.66% {
|
||
|
-ms-transform: rotate(60deg);
|
||
|
transform: rotate(60deg);
|
||
|
}
|
||
|
|
||
|
/* line 178, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
24.99% {
|
||
|
-ms-transform: rotate(60deg);
|
||
|
transform: rotate(60deg);
|
||
|
}
|
||
|
|
||
|
/* line 180, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
25% {
|
||
|
-ms-transform: rotate(90deg);
|
||
|
transform: rotate(90deg);
|
||
|
}
|
||
|
|
||
|
/* line 181, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
33.32% {
|
||
|
-ms-transform: rotate(90deg);
|
||
|
transform: rotate(90deg);
|
||
|
}
|
||
|
|
||
|
/* line 183, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
33.33% {
|
||
|
-ms-transform: rotate(120deg);
|
||
|
transform: rotate(120deg);
|
||
|
}
|
||
|
|
||
|
/* line 184, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
41.65% {
|
||
|
-ms-transform: rotate(120deg);
|
||
|
transform: rotate(120deg);
|
||
|
}
|
||
|
|
||
|
/* line 186, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
41.66% {
|
||
|
-ms-transform: rotate(150deg);
|
||
|
transform: rotate(150deg);
|
||
|
}
|
||
|
|
||
|
/* line 187, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
49.99% {
|
||
|
-ms-transform: rotate(150deg);
|
||
|
transform: rotate(150deg);
|
||
|
}
|
||
|
|
||
|
/* line 189, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
50% {
|
||
|
-ms-transform: rotate(180deg);
|
||
|
transform: rotate(180deg);
|
||
|
}
|
||
|
|
||
|
/* line 190, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
58.32% {
|
||
|
-ms-transform: rotate(180deg);
|
||
|
transform: rotate(180deg);
|
||
|
}
|
||
|
|
||
|
/* line 192, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
58.33% {
|
||
|
-ms-transform: rotate(210deg);
|
||
|
transform: rotate(210deg);
|
||
|
}
|
||
|
|
||
|
/* line 193, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
66.65% {
|
||
|
-ms-transform: rotate(210deg);
|
||
|
transform: rotate(210deg);
|
||
|
}
|
||
|
|
||
|
/* line 195, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
66.66% {
|
||
|
-ms-transform: rotate(240deg);
|
||
|
transform: rotate(240deg);
|
||
|
}
|
||
|
|
||
|
/* line 196, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
74.99% {
|
||
|
-ms-transform: rotate(240deg);
|
||
|
transform: rotate(240deg);
|
||
|
}
|
||
|
|
||
|
/* line 198, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
75% {
|
||
|
-ms-transform: rotate(270deg);
|
||
|
transform: rotate(270deg);
|
||
|
}
|
||
|
|
||
|
/* line 199, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
83.32% {
|
||
|
-ms-transform: rotate(270deg);
|
||
|
transform: rotate(270deg);
|
||
|
}
|
||
|
|
||
|
/* line 201, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
83.33% {
|
||
|
-ms-transform: rotate(300deg);
|
||
|
transform: rotate(300deg);
|
||
|
}
|
||
|
|
||
|
/* line 202, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
91.65% {
|
||
|
-ms-transform: rotate(300deg);
|
||
|
transform: rotate(300deg);
|
||
|
}
|
||
|
|
||
|
/* line 204, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
91.66% {
|
||
|
-ms-transform: rotate(330deg);
|
||
|
transform: rotate(330deg);
|
||
|
}
|
||
|
|
||
|
/* line 205, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss */
|
||
|
100% {
|
||
|
-ms-transform: rotate(330deg);
|
||
|
transform: rotate(330deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: "Pictos";
|
||
|
src: url('data:application/x-font-woff;base64,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
|
||
|
}
|
||
|
|
||
|
/* line 387, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon:before,
|
||
|
.x-button .x-button-icon:before {
|
||
|
font-family: "Pictos";
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.Img
|
||
|
*/
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Img.scss */
|
||
|
.x-img.x-img-image {
|
||
|
text-align: center;
|
||
|
}
|
||
|
/* line 9, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Img.scss */
|
||
|
.x-img.x-img-image img {
|
||
|
width: auto;
|
||
|
height: 100%;
|
||
|
}
|
||
|
/* line 15, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Img.scss */
|
||
|
.x-img.x-img-background {
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center;
|
||
|
background-size: auto 100%;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.Map
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Map.scss */
|
||
|
.x-map {
|
||
|
background-color: #edeae2;
|
||
|
}
|
||
|
/* line 8, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Map.scss */
|
||
|
.x-map * {
|
||
|
-webkit-box-sizing: content-box;
|
||
|
box-sizing: content-box;
|
||
|
}
|
||
|
|
||
|
/* line 14, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Map.scss */
|
||
|
.x-mask-map {
|
||
|
background: transparent !important;
|
||
|
}
|
||
|
|
||
|
/* line 18, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Map.scss */
|
||
|
.x-map-container {
|
||
|
position: absolute !important;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.Mask
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Mask.scss */
|
||
|
.x-mask {
|
||
|
min-width: 8.5em;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
bottom: 0;
|
||
|
right: 0;
|
||
|
height: 100%;
|
||
|
z-index: 10;
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-align: center;
|
||
|
-ms-flex-align: center;
|
||
|
align-items: center;
|
||
|
-webkit-box-pack: center;
|
||
|
-ms-flex-pack: center;
|
||
|
justify-content: center;
|
||
|
background: rgba(0, 0, 0, 0.3) center center no-repeat;
|
||
|
}
|
||
|
/* line 22, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Mask.scss */
|
||
|
.x-mask.x-mask-gray {
|
||
|
background-color: rgba(0, 0, 0, 0.5);
|
||
|
}
|
||
|
/* line 26, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Mask.scss */
|
||
|
.x-mask.x-mask-transparent {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
/* line 30, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Mask.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;
|
||
|
}
|
||
|
/* line 40, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Mask.scss */
|
||
|
.x-mask .x-loading-spinner-outer {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
-webkit-box-align: center;
|
||
|
-ms-flex-align: center;
|
||
|
align-items: center;
|
||
|
-webkit-box-pack: center;
|
||
|
-ms-flex-pack: center;
|
||
|
justify-content: center;
|
||
|
width: 100%;
|
||
|
min-width: 8em;
|
||
|
height: 8em;
|
||
|
}
|
||
|
/* line 51, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Mask.scss */
|
||
|
.x-mask.x-indicator-hidden .x-mask-inner {
|
||
|
padding-bottom: 0 !important;
|
||
|
}
|
||
|
/* line 54, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Mask.scss */
|
||
|
.x-mask.x-indicator-hidden .x-loading-spinner-outer {
|
||
|
display: none;
|
||
|
}
|
||
|
/* line 58, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Mask.scss */
|
||
|
.x-mask.x-indicator-hidden .x-mask-message {
|
||
|
position: relative;
|
||
|
bottom: .25em;
|
||
|
}
|
||
|
/* line 64, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Mask.scss */
|
||
|
.x-mask .x-mask-message {
|
||
|
position: absolute;
|
||
|
bottom: 5px;
|
||
|
color: #333;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
-webkit-box-flex: 0;
|
||
|
-ms-flex: 0 0 auto;
|
||
|
flex: 0 0 auto;
|
||
|
}
|
||
|
/* line 74, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Mask.scss */
|
||
|
.x-mask.x-has-message .x-mask-inner {
|
||
|
padding-bottom: 2em;
|
||
|
}
|
||
|
/* line 78, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Mask.scss */
|
||
|
.x-mask.x-has-message .x-loading-spinner-outer {
|
||
|
height: 168px;
|
||
|
}
|
||
|
|
||
|
/* line 94, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Mask.scss */
|
||
|
.x-ie .x-mask[visibility='visible'] ~ div:not(.x-mask) .x-input-el,
|
||
|
.x-ie .x-mask[visibility='visible'] ~ div:not(.x-panel) .x-input-el,
|
||
|
.x-ie .x-mask[visibility='visible'] ~ div:not(.x-floating) .x-input-el,
|
||
|
.x-ie .x-mask[visibility='visible'] ~ div:not(.x-center) .x-input-el,
|
||
|
.x-ie .x-mask[visibility='visible'] ~ div:not(.x-msgbox) .x-input-el, .x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-mask) .x-input-el,
|
||
|
.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-panel) .x-input-el,
|
||
|
.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-floating) .x-input-el,
|
||
|
.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-center) .x-input-el,
|
||
|
.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-msgbox) .x-input-el {
|
||
|
visibility: collapse;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.Media
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Media.scss */
|
||
|
.x-video {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
background-color: #000;
|
||
|
}
|
||
|
|
||
|
/* line 11, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Media.scss */
|
||
|
.x-video > * {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
position: absolute;
|
||
|
}
|
||
|
|
||
|
/* line 17, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Media.scss */
|
||
|
.x-video-ghost {
|
||
|
-webkit-background-size: 100% auto;
|
||
|
background: black url() center center no-repeat;
|
||
|
}
|
||
|
|
||
|
/* line 22, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Media.scss */
|
||
|
audio {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.MessageBox
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_MessageBox.scss */
|
||
|
.x-msgbox {
|
||
|
min-width: 15em;
|
||
|
max-width: 20em;
|
||
|
max-height: 90%;
|
||
|
margin: 6px;
|
||
|
border: 1px solid #ccc;
|
||
|
}
|
||
|
/* line 14, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_MessageBox.scss */
|
||
|
.x-msgbox .x-docking-vertical {
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
/* line 19, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_MessageBox.scss */
|
||
|
.x-msgbox .x-toolbar.x-docked-top {
|
||
|
border-bottom: 0;
|
||
|
}
|
||
|
/* line 23, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_MessageBox.scss */
|
||
|
.x-msgbox .x-toolbar.x-docked-bottom {
|
||
|
border-top: 0;
|
||
|
}
|
||
|
|
||
|
/* line 33, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_MessageBox.scss */
|
||
|
.x-ie .x-msgbox .x-dock.x-dock-horizontal.x-unsized > .x-dock-body {
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 0px;
|
||
|
flex: 1 0 0px;
|
||
|
}
|
||
|
|
||
|
/* line 40, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_MessageBox.scss */
|
||
|
.x-msgbox-text {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
/* line 45, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_MessageBox.scss */
|
||
|
.x-msgbox-buttons .x-button {
|
||
|
min-width: 4.5em;
|
||
|
}
|
||
|
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_ProgressIndicator.scss */
|
||
|
.x-progressindicator {
|
||
|
width: 50%;
|
||
|
height: 1.3em;
|
||
|
}
|
||
|
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_ProgressIndicator.scss */
|
||
|
.x-progressindicator .x-progressindicator-inner {
|
||
|
background: #222222;
|
||
|
padding: 10px;
|
||
|
height: 100%;
|
||
|
border-radius: 20px;
|
||
|
box-shadow: 0px 5px 17px rgba(40, 40, 40, 0.5);
|
||
|
box-sizing: content-box;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_ProgressIndicator.scss */
|
||
|
.x-progressindicator .x-progressindicator-text {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-align: center;
|
||
|
-ms-flex-align: center;
|
||
|
align-items: center;
|
||
|
-webkit-box-pack: center;
|
||
|
-ms-flex-pack: center;
|
||
|
justify-content: center;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
position: absolute;
|
||
|
top: 0px;
|
||
|
left: 0px;
|
||
|
color: white;
|
||
|
text-shadow: 1px 1px 2px black;
|
||
|
}
|
||
|
|
||
|
/* line 29, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_ProgressIndicator.scss */
|
||
|
.x-progressindicator .x-progressindicator-bar {
|
||
|
height: 100%;
|
||
|
width: 0%;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
|
||
|
/* line 35, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_ProgressIndicator.scss */
|
||
|
.x-progressindicator:not(.x-item-hidden) .x-progressindicator-bar .x-progressindicator-bar-fill {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
background-color: gray;
|
||
|
border-radius: 10px;
|
||
|
-webkit-animation-name: progressIndicator;
|
||
|
-moz-animation-name: progressIndicator;
|
||
|
-ms-animation-name: progressIndicator;
|
||
|
-o-animation-name: progressIndicator;
|
||
|
animation-name: progressIndicator;
|
||
|
-webkit-animation-duration: 1s;
|
||
|
-moz-animation-duration: 1s;
|
||
|
-ms-animation-duration: 1s;
|
||
|
-o-animation-duration: 1s;
|
||
|
animation-duration: 1s;
|
||
|
-webkit-animation-timing-function: linear;
|
||
|
-moz-animation-timing-function: linear;
|
||
|
-ms-animation-timing-function: linear;
|
||
|
-o-animation-timing-function: linear;
|
||
|
animation-timing-function: linear;
|
||
|
-webkit-animation-iteration-count: infinite;
|
||
|
-moz-animation-iteration-count: infinite;
|
||
|
-ms-animation-iteration-count: infinite;
|
||
|
-o-animation-iteration-count: infinite;
|
||
|
animation-iteration-count: infinite;
|
||
|
background-repeat: repeat-x;
|
||
|
background-size: 30px 30px;
|
||
|
background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
|
background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
|
background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
|
background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
|
}
|
||
|
|
||
|
@-webkit-keyframes progressIndicator {
|
||
|
/* line 54, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_ProgressIndicator.scss */
|
||
|
to {
|
||
|
background-position: 30px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@-moz-keyframes progressIndicator {
|
||
|
/* line 60, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_ProgressIndicator.scss */
|
||
|
to {
|
||
|
background-position: 30px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes progressIndicator {
|
||
|
/* line 66, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_ProgressIndicator.scss */
|
||
|
to {
|
||
|
background-position: 30px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.Panel
|
||
|
*/
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Panel.scss */
|
||
|
.x-panel,
|
||
|
.x-msgbox {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
/* line 12, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Panel.scss */
|
||
|
.x-panel.x-floating,
|
||
|
.x-msgbox,
|
||
|
.x-form.x-floating {
|
||
|
padding: 6px;
|
||
|
background-color: #ccc;
|
||
|
}
|
||
|
/* line 17, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_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;
|
||
|
}
|
||
|
|
||
|
/* line 25, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Panel.scss */
|
||
|
.x-panel.x-floating > .x-dock,
|
||
|
.x-msgbox > .x-dock,
|
||
|
.x-form.x-floating > .x-dock {
|
||
|
z-index: 1;
|
||
|
}
|
||
|
|
||
|
/* line 31, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_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;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.Sheet
|
||
|
*/
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Sheet.scss */
|
||
|
.x-sheet,
|
||
|
.x-sheet-action {
|
||
|
height: auto;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.Toolbar
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toolbar.scss */
|
||
|
.x-toolbar {
|
||
|
position: relative;
|
||
|
background-color: #eee;
|
||
|
min-height: 2.6em;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
/* line 11, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toolbar.scss */
|
||
|
.x-toolbar.x-docked-top {
|
||
|
border-bottom: 1px solid;
|
||
|
}
|
||
|
/* line 15, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toolbar.scss */
|
||
|
.x-toolbar.x-docked-bottom {
|
||
|
border-top: 1px solid;
|
||
|
}
|
||
|
/* line 19, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toolbar.scss */
|
||
|
.x-toolbar.x-docked-left {
|
||
|
width: 50px;
|
||
|
height: auto;
|
||
|
border-right: 1px solid;
|
||
|
}
|
||
|
/* line 25, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toolbar.scss */
|
||
|
.x-toolbar.x-docked-right {
|
||
|
width: 50px;
|
||
|
height: auto;
|
||
|
border-left: 1px solid;
|
||
|
}
|
||
|
|
||
|
/* line 32, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toolbar.scss */
|
||
|
.x-title {
|
||
|
font-size: 1.2em;
|
||
|
text-align: center;
|
||
|
font-weight: bold;
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
/* line 39, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toolbar.scss */
|
||
|
.x-title.x-title-align-left {
|
||
|
padding-left: 10px;
|
||
|
}
|
||
|
/* line 44, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toolbar.scss */
|
||
|
.x-title.x-title-align-right {
|
||
|
padding-right: 10px;
|
||
|
}
|
||
|
/* line 48, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toolbar.scss */
|
||
|
.x-title .x-innerhtml {
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
|
||
|
/* line 54, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toolbar.scss */
|
||
|
.x-navigation-bar .x-container {
|
||
|
overflow: visible;
|
||
|
}
|
||
|
|
||
|
/* line 61, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toolbar.scss */
|
||
|
.x-toolbar-inner .x-field .x-component-outer {
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 auto;
|
||
|
flex: 1 0 auto;
|
||
|
}
|
||
|
|
||
|
/* line 67, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toolbar.scss */
|
||
|
.x-ie .x-toolbar-inner {
|
||
|
height: 100% !important;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.Toast
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toast.scss */
|
||
|
.x-toast {
|
||
|
min-width: 15em;
|
||
|
max-width: 20em;
|
||
|
max-height: 90%;
|
||
|
margin: 6px;
|
||
|
}
|
||
|
/* line 12, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toast.scss */
|
||
|
.x-toast .x-toast-text {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
/* line 21, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toast.scss */
|
||
|
.x-ie .x-toast .x-dock.x-dock-horizontal.x-unsized > .x-dock-body {
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 0px;
|
||
|
flex: 1 0 0px;
|
||
|
}
|
||
|
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/_Menu.scss */
|
||
|
.x-menu {
|
||
|
background: #eee;
|
||
|
}
|
||
|
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/carousel/_Carousel.scss */
|
||
|
.x-carousel-inner {
|
||
|
position: relative;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
/* line 7, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/carousel/_Carousel.scss */
|
||
|
.x-carousel-item,
|
||
|
.x-carousel-item > * {
|
||
|
position: absolute !important;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
/* line 13, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/carousel/_Carousel.scss */
|
||
|
.x-carousel-indicator {
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 auto;
|
||
|
flex: 1 0 auto;
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-pack: center;
|
||
|
-ms-flex-pack: center;
|
||
|
justify-content: center;
|
||
|
-webkit-box-align: center;
|
||
|
-ms-flex-align: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
/* line 20, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/carousel/_Carousel.scss */
|
||
|
.x-carousel-indicator span {
|
||
|
display: block;
|
||
|
width: 10px;
|
||
|
height: 10px;
|
||
|
margin: 3px;
|
||
|
background-color: #eee;
|
||
|
}
|
||
|
/* line 27, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/carousel/_Carousel.scss */
|
||
|
.x-carousel-indicator span.x-carousel-indicator-active {
|
||
|
background-color: #ccc;
|
||
|
}
|
||
|
|
||
|
/* line 33, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/carousel/_Carousel.scss */
|
||
|
.x-carousel-indicator-horizontal {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
/* line 37, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/carousel/_Carousel.scss */
|
||
|
.x-carousel-indicator-vertical {
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss */
|
||
|
.x-android-3 .x-surface-wrap, .x-android-3 .x-surface-wrap > * {
|
||
|
-webkit-perspective: 1;
|
||
|
}
|
||
|
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss */
|
||
|
.x-draw-component {
|
||
|
position: relative;
|
||
|
}
|
||
|
/* line 7, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss */
|
||
|
.x-draw-component .x-inner {
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
/* line 12, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss */
|
||
|
.x-surface {
|
||
|
position: absolute;
|
||
|
}
|
||
|
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.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 43, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss */
|
||
|
.x-legend .x-legend-inner .x-legend-container {
|
||
|
-webkit-border-radius: 5px;
|
||
|
-moz-border-radius: 5px;
|
||
|
-ms-border-radius: 5px;
|
||
|
-o-border-radius: 5px;
|
||
|
border-radius: 5px;
|
||
|
border: 1px solid #cccccc;
|
||
|
background: white;
|
||
|
}
|
||
|
/* line 53, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.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 65, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.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 69, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.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;
|
||
|
-moz-border-radius: 0.4em;
|
||
|
-ms-border-radius: 0.4em;
|
||
|
-o-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;
|
||
|
-moz-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 83, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.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 85, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.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 92, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.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 100, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss */
|
||
|
.x-chart-toolbar {
|
||
|
position: absolute;
|
||
|
z-index: 9;
|
||
|
display: -webkit-box;
|
||
|
display: -moz-box;
|
||
|
display: -ms-box;
|
||
|
display: box;
|
||
|
padding: .6em;
|
||
|
}
|
||
|
/* line 106, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss */
|
||
|
.x-chart-toolbar .x-button {
|
||
|
margin: .2em;
|
||
|
}
|
||
|
/* line 110, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss */
|
||
|
.x-chart-toolbar[data-side=left], .x-chart-toolbar[data-side=right] {
|
||
|
top: 0;
|
||
|
-webkit-box-orient: vertical;
|
||
|
-moz-box-orient: vertical;
|
||
|
-ms-box-orient: vertical;
|
||
|
box-orient: vertical;
|
||
|
}
|
||
|
/* line 115, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss */
|
||
|
.x-chart-toolbar[data-side=left] {
|
||
|
left: 0;
|
||
|
}
|
||
|
/* line 119, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss */
|
||
|
.x-chart-toolbar[data-side=right] {
|
||
|
right: 0;
|
||
|
}
|
||
|
/* line 123, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss */
|
||
|
.x-chart-toolbar[data-side=top], .x-chart-toolbar[data-side=bottom] {
|
||
|
-webkit-box-orient: horizontal;
|
||
|
-moz-box-orient: horizontal;
|
||
|
-ms-box-orient: horizontal;
|
||
|
box-orient: horizontal;
|
||
|
right: 0;
|
||
|
}
|
||
|
/* line 128, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss */
|
||
|
.x-chart-toolbar[data-side=top] {
|
||
|
top: 0;
|
||
|
}
|
||
|
/* line 132, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss */
|
||
|
.x-chart-toolbar[data-side=bottom] {
|
||
|
bottom: 0;
|
||
|
-webkit-box-orient: horizontal;
|
||
|
-moz-box-orient: horizontal;
|
||
|
-ms-box-orient: horizontal;
|
||
|
box-orient: horizontal;
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.list:before,
|
||
|
.x-button .x-button-icon.list:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "l";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.expand:before,
|
||
|
.x-button .x-button-icon.expand:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "`";
|
||
|
}
|
||
|
|
||
|
/* line 2, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_DataView.scss */
|
||
|
.x-dataview-inlineblock .x-dataview-item, .x-dataview-inlineblock .x-data-item {
|
||
|
display: inline-block !important;
|
||
|
}
|
||
|
|
||
|
/* line 8, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_DataView.scss */
|
||
|
.x-dataview-nowrap .x-dataview-container {
|
||
|
white-space: nowrap !important;
|
||
|
}
|
||
|
|
||
|
/* line 14, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_DataView.scss */
|
||
|
.x-dataview-nowrap .x-container.x-dataview {
|
||
|
white-space: nowrap !important;
|
||
|
}
|
||
|
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list {
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
/* line 4, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-scroll-scroller {
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
/* line 8, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-inner {
|
||
|
width: 100% !important;
|
||
|
}
|
||
|
/* line 12, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list.x-list-indexed .x-list-disclosure {
|
||
|
margin-right: 50px;
|
||
|
}
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-item-selected .x-list-disclosure {
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
/* line 20, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-scrolldock-hidden {
|
||
|
display: none;
|
||
|
}
|
||
|
/* line 24, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-item {
|
||
|
position: absolute !important;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
width: 100%;
|
||
|
}
|
||
|
/* line 30, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-item > .x-dock {
|
||
|
height: auto;
|
||
|
}
|
||
|
/* line 34, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-item .x-dock-horizontal {
|
||
|
border-top: 1px solid #ccc;
|
||
|
}
|
||
|
/* line 39, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-item.x-item-selected .x-dock-horizontal, .x-list .x-list-item.x-item-selected.x-list-item-tpl {
|
||
|
background-color: #ccc;
|
||
|
}
|
||
|
/* line 45, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-item.x-item-pressed.x-list-item-tpl,
|
||
|
.x-list .x-list-item.x-item-pressed .x-dock-horizontal {
|
||
|
background-color: #ddd;
|
||
|
}
|
||
|
/* line 51, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-item .x-list-item-body, .x-list .x-list-item.x-list-item-tpl .x-innerhtml {
|
||
|
padding: 5px;
|
||
|
}
|
||
|
/* line 55, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-item.x-list-item-relative {
|
||
|
position: relative !important;
|
||
|
}
|
||
|
/* line 60, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-header {
|
||
|
background-color: #eee;
|
||
|
border-top: 1px solid #ccc;
|
||
|
border-bottom: 1px solid #ccc;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
/* line 66, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-header.x-list-item-relative {
|
||
|
position: relative !important;
|
||
|
}
|
||
|
/* line 71, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-disclosure {
|
||
|
margin: 5px 15px 5px 0;
|
||
|
overflow: visible;
|
||
|
width: 20px;
|
||
|
height: 20px;
|
||
|
border: 1px solid #ccc;
|
||
|
background-color: #eee;
|
||
|
}
|
||
|
/* line 80, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-item-tpl .x-list-disclosure {
|
||
|
position: absolute;
|
||
|
right: 0px;
|
||
|
top: 0px;
|
||
|
}
|
||
|
/* line 86, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-emptytext {
|
||
|
text-align: center;
|
||
|
pointer-events: none;
|
||
|
font-color: #333333;
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
-webkit-box-pack: center;
|
||
|
-ms-flex-pack: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
/* line 95, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list.x-list-indexed .x-list-disclosure {
|
||
|
margin-right: 35px;
|
||
|
}
|
||
|
/* line 99, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list .x-list-scrolldockitem {
|
||
|
position: absolute !important;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
/* line 110, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-ie .x-list-grouped .x-translatable-container .x-list-item:before, .x-ie .x-list-grouped .x-translatable-container .x-list-header:before {
|
||
|
content: ". .";
|
||
|
color: transparent;
|
||
|
position: absolute;
|
||
|
left: 0px;
|
||
|
word-spacing: 3000px;
|
||
|
opacity: 0;
|
||
|
}
|
||
|
|
||
|
/* line 121, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list-header {
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
z-index: 2 !important;
|
||
|
}
|
||
|
|
||
|
/* line 128, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-ios .x-list-header {
|
||
|
-webkit-transform: translate3d(0, 0, 0);
|
||
|
-moz-transform: translate3d(0, 0, 0);
|
||
|
-ms-transform: translate3d(0, 0, 0);
|
||
|
-o-transform: translate3d(0, 0, 0);
|
||
|
transform: translate3d(0, 0, 0);
|
||
|
}
|
||
|
|
||
|
/* line 133, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list-grouped .x-list-item.x-list-header-wrap .x-dock-horizontal,
|
||
|
.x-list-grouped .x-list-item-tpl.x-list-header-wrap {
|
||
|
border-top: 0;
|
||
|
}
|
||
|
|
||
|
/* line 138, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list-inlineblock .x-list-item {
|
||
|
display: inline-block !important;
|
||
|
}
|
||
|
|
||
|
/* line 144, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list-nowrap .x-list-inner {
|
||
|
width: auto;
|
||
|
}
|
||
|
/* line 148, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list-nowrap .x-list-container {
|
||
|
white-space: nowrap !important;
|
||
|
}
|
||
|
|
||
|
/* line 153, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss */
|
||
|
.x-list-item-dragging {
|
||
|
border-bottom: 1px solid #ccc;
|
||
|
background: #fff !important;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_IndexBar.scss */
|
||
|
.x-indexbar-wrapper {
|
||
|
-webkit-box-pack: end !important;
|
||
|
-ms-flex-pack: end !important;
|
||
|
justify-content: flex-end !important;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_IndexBar.scss */
|
||
|
.x-indexbar {
|
||
|
pointer-events: auto;
|
||
|
z-index: 2;
|
||
|
min-height: 0 !important;
|
||
|
height: auto !important;
|
||
|
-webkit-box-flex: 0 !important;
|
||
|
-ms-flex: 0 0 auto !important;
|
||
|
flex: 0 0 auto !important;
|
||
|
}
|
||
|
/* line 14, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_IndexBar.scss */
|
||
|
.x-indexbar > div {
|
||
|
font-size: 0.6em;
|
||
|
text-align: center;
|
||
|
line-height: 1.1em;
|
||
|
font-weight: bold;
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
/* line 23, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_IndexBar.scss */
|
||
|
.x-indexbar-vertical {
|
||
|
width: 15px;
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
margin-right: 15px;
|
||
|
}
|
||
|
|
||
|
/* line 29, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_IndexBar.scss */
|
||
|
.x-indexbar-horizontal {
|
||
|
height: 15px;
|
||
|
-webkit-box-orient: horizontal;
|
||
|
-ms-flex-direction: row;
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
|
||
|
/* line 35, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_IndexBar.scss */
|
||
|
.x-phone.x-landscape .x-indexbar > div {
|
||
|
font-size: 0.38em;
|
||
|
line-height: 1em;
|
||
|
}
|
||
|
|
||
|
/* line 41, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_IndexBar.scss */
|
||
|
.x-indexbar-pressed {
|
||
|
background-color: #ccc;
|
||
|
}
|
||
|
|
||
|
/* line 2, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-form-label {
|
||
|
display: none !important;
|
||
|
}
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-form-label span {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
/* line 9, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-form-label-nowrap .x-form-label {
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
|
||
|
/* line 15, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
}
|
||
|
/* line 18, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field .x-field-input {
|
||
|
position: relative;
|
||
|
min-width: 3.7em;
|
||
|
}
|
||
|
/* line 24, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field .x-field-input,
|
||
|
.x-field .x-input-el {
|
||
|
width: 100%;
|
||
|
}
|
||
|
/* line 29, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field.x-field-labeled .x-form-label {
|
||
|
display: block !important;
|
||
|
}
|
||
|
/* line 34, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field .x-component-outer {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
/* line 40, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-label-align-left,
|
||
|
.x-label-align-right {
|
||
|
-webkit-box-orient: horizontal !important;
|
||
|
-ms-flex-direction: row !important;
|
||
|
flex-direction: row !important;
|
||
|
}
|
||
|
/* line 43, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-label-align-left .x-component-outer,
|
||
|
.x-label-align-right .x-component-outer {
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 0px;
|
||
|
flex: 1 0 0px;
|
||
|
}
|
||
|
|
||
|
/* line 48, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-label-align-right {
|
||
|
-webkit-box-direction: reverse;
|
||
|
-ms-flex-direction: row-reverse;
|
||
|
flex-direction: row-reverse;
|
||
|
}
|
||
|
|
||
|
/* line 53, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-label-align-top,
|
||
|
.x-label-align-bottom {
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
/* line 57, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-label-align-bottom {
|
||
|
-webkit-box-direction: reverse;
|
||
|
-ms-flex-direction: column-reverse;
|
||
|
flex-direction: column-reverse;
|
||
|
}
|
||
|
|
||
|
/* line 61, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-input-el {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
/* line 65, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field-mask {
|
||
|
width: auto;
|
||
|
height: auto;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
}
|
||
|
|
||
|
/* line 73, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-ie .x-field.x-field-text .x-field-mask, .x-ie .x-field.x-field-textarea .x-field-mask, .x-ie .x-field.x-field-search .x-field-mask {
|
||
|
z-index: -1;
|
||
|
}
|
||
|
|
||
|
/* line 80, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field-required .x-form-label:after {
|
||
|
content: "*";
|
||
|
display: inline;
|
||
|
}
|
||
|
|
||
|
/* line 92, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-spinner .x-component-outer {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
}
|
||
|
/* line 95, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-spinner .x-component-outer > * {
|
||
|
width: auto;
|
||
|
}
|
||
|
/* line 100, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-spinner .x-field-input {
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 0px;
|
||
|
flex: 1 0 0px;
|
||
|
}
|
||
|
/* line 103, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-spinner .x-field-input .x-input-el {
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
}
|
||
|
/* line 110, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.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 116, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-spinner .x-spinner-button {
|
||
|
text-align: center;
|
||
|
border: 1px solid #ccc !important;
|
||
|
background-color: #eee;
|
||
|
}
|
||
|
/* line 123, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-spinner.x-field-grouped-buttons .x-input-el {
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
/* line 132, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-select-overlay .x-list-label {
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
/* line 140, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
input[type="search"]::-webkit-search-cancel-button {
|
||
|
-webkit-appearance: none;
|
||
|
}
|
||
|
|
||
|
/* line 146, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field-number input::-webkit-outer-spin-button,
|
||
|
.x-field-number input::-webkit-inner-spin-button {
|
||
|
-webkit-appearance: none;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
/* line 152, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field-input .x-clear-icon, .x-field-input .x-reveal-icon {
|
||
|
display: none;
|
||
|
width: 10px;
|
||
|
height: 10px;
|
||
|
background-color: #ccc;
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
right: 0;
|
||
|
}
|
||
|
|
||
|
/* line 163, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field-clearable .x-clear-icon {
|
||
|
display: block;
|
||
|
}
|
||
|
/* line 167, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field-clearable .x-field-input {
|
||
|
padding-right: 10px;
|
||
|
}
|
||
|
|
||
|
/* line 173, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field-revealable .x-reveal-icon {
|
||
|
display: block;
|
||
|
}
|
||
|
/* line 177, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field-revealable .x-field-input {
|
||
|
padding-right: 10px;
|
||
|
}
|
||
|
|
||
|
/* line 183, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-field-clearable.x-field-revealable .x-reveal-icon {
|
||
|
right: 20px;
|
||
|
}
|
||
|
|
||
|
/* line 188, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-android .x-input-el {
|
||
|
-webkit-text-fill-color: #000;
|
||
|
}
|
||
|
|
||
|
/* line 192, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-android .x-empty .x-input-el {
|
||
|
-webkit-text-fill-color: #A9A9A9;
|
||
|
}
|
||
|
|
||
|
/* line 196, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-android .x-item-disabled .x-input-el {
|
||
|
-webkit-text-fill-color: #b3b3b3;
|
||
|
}
|
||
|
|
||
|
/* line 202, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-form-fieldset .x-form-fieldset-inner {
|
||
|
border: 1px solid #ccc;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
/* line 208, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-form-fieldset .x-dock .x-dock-body {
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 auto;
|
||
|
flex: 1 0 auto;
|
||
|
}
|
||
|
|
||
|
/* line 214, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-form-fieldset-title {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
/* line 217, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-form-fieldset-title .x-innerhtml {
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
|
||
|
/* line 222, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-form-fieldset-instructions {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
/* line 227, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss */
|
||
|
.x-ie .x-field-select .x-field-mask {
|
||
|
z-index: 3;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.picker.Picker
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-sheet.x-picker {
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
/* line 9, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-sheet.x-picker .x-sheet-inner {
|
||
|
background-color: #fff;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
/* line 14, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_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 20, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-first .x-body {
|
||
|
border-left: 0;
|
||
|
}
|
||
|
/* line 26, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-last .x-body {
|
||
|
border-left: 0;
|
||
|
border-right: 0;
|
||
|
}
|
||
|
|
||
|
/* line 34, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-picker-slot .x-scroll-view {
|
||
|
z-index: 2;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
/* line 39, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-picker-mask {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
z-index: 3;
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-align: stretch;
|
||
|
-ms-flex-align: stretch;
|
||
|
align-items: stretch;
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
-webkit-box-pack: center;
|
||
|
-ms-flex-pack: center;
|
||
|
justify-content: center;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
/* line 53, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-picker-slot-title {
|
||
|
position: relative;
|
||
|
z-index: 2;
|
||
|
}
|
||
|
/* line 57, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-picker-slot-title > div {
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
/* line 64, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-picker-slot .x-dataview-inner {
|
||
|
width: 100% !important;
|
||
|
}
|
||
|
/* line 68, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-picker-slot .x-dataview-item {
|
||
|
vertical-align: middle;
|
||
|
height: 30px;
|
||
|
line-height: 30px;
|
||
|
}
|
||
|
/* line 73, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-picker-slot .x-dataview-item.x-item-selected {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
/* line 78, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-picker-slot .x-picker-item {
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
|
||
|
/* line 83, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-ie .x-picker-item {
|
||
|
cursor: default;
|
||
|
}
|
||
|
|
||
|
/* line 87, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-ie .x-picker-item::before {
|
||
|
content: ". .";
|
||
|
color: transparent;
|
||
|
position: absolute;
|
||
|
left: 0px;
|
||
|
word-spacing: 3000px;
|
||
|
}
|
||
|
|
||
|
/* line 95, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-picker-right {
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
/* line 99, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-picker-center {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
/* line 103, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss */
|
||
|
.x-picker-left {
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.plugin.ListPaging
|
||
|
*/
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_ListPaging.scss */
|
||
|
.x-list-paging .x-loading-spinner {
|
||
|
display: none;
|
||
|
margin: auto;
|
||
|
}
|
||
|
/* line 11, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_ListPaging.scss */
|
||
|
.x-list-paging .x-list-paging-msg {
|
||
|
text-align: center;
|
||
|
clear: both;
|
||
|
}
|
||
|
/* line 17, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_ListPaging.scss */
|
||
|
.x-list-paging.x-loading .x-loading-spinner {
|
||
|
display: block;
|
||
|
}
|
||
|
/* line 21, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_ListPaging.scss */
|
||
|
.x-list-paging.x-loading .x-list-paging-msg {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.plugin.PullRefresh
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_PullRefresh.scss */
|
||
|
.x-list-pullrefresh {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-orient: horizontal;
|
||
|
-ms-flex-direction: row;
|
||
|
flex-direction: row;
|
||
|
-webkit-box-align: center;
|
||
|
-ms-flex-align: center;
|
||
|
align-items: center;
|
||
|
-webkit-box-pack: center;
|
||
|
-ms-flex-pack: center;
|
||
|
justify-content: center;
|
||
|
-webkit-box-direction: normal;
|
||
|
-ms-flex-direction: row;
|
||
|
flex-direction: row;
|
||
|
position: absolute;
|
||
|
top: -5em;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 4.5em;
|
||
|
}
|
||
|
/* line 18, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_PullRefresh.scss */
|
||
|
.x-list-pullrefresh .x-loading-spinner {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
/* line 23, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_PullRefresh.scss */
|
||
|
.x-list-pullrefresh-arrow {
|
||
|
width: 2.5em;
|
||
|
height: 4.5em;
|
||
|
background-color: #bbb;
|
||
|
}
|
||
|
|
||
|
/* line 29, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_PullRefresh.scss */
|
||
|
.x-list-pullrefresh-wrap {
|
||
|
width: 20em;
|
||
|
font-size: 0.7em;
|
||
|
}
|
||
|
|
||
|
/* line 34, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_PullRefresh.scss */
|
||
|
.x-list-pullrefresh-message {
|
||
|
font-weight: bold;
|
||
|
font-size: 1.3em;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
/* line 40, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_PullRefresh.scss */
|
||
|
.x-list-pullrefresh-updated {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
/* line 45, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_PullRefresh.scss */
|
||
|
.x-list-pullrefresh-loading *.x-loading-spinner {
|
||
|
display: block;
|
||
|
}
|
||
|
/* line 49, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_PullRefresh.scss */
|
||
|
.x-list-pullrefresh-loading .x-list-pullrefresh-arrow {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
/* line 55, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_PullRefresh.scss */
|
||
|
.x-android-2 .x-list-pullrefresh-loading *.x-loading-spinner {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.slider.Slider
|
||
|
*/
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/slider/_Slider.scss */
|
||
|
.x-slider,
|
||
|
.x-toggle {
|
||
|
position: relative;
|
||
|
height: 16px;
|
||
|
min-height: 0;
|
||
|
min-width: 0;
|
||
|
}
|
||
|
/* line 12, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/slider/_Slider.scss */
|
||
|
.x-slider > *,
|
||
|
.x-toggle > * {
|
||
|
position: absolute;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
/* line 19, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/slider/_Slider.scss */
|
||
|
.x-thumb {
|
||
|
position: absolute;
|
||
|
height: 16px;
|
||
|
width: 10px;
|
||
|
border: 1px solid #ccc;
|
||
|
background-color: #ddd;
|
||
|
}
|
||
|
|
||
|
/* line 28, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/slider/_Slider.scss */
|
||
|
.x-slider:before {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
width: auto;
|
||
|
height: 8px;
|
||
|
top: 4px;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
margin: 0 5px;
|
||
|
background-color: #eee;
|
||
|
}
|
||
|
|
||
|
/* line 35, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/slider/_Slider.scss */
|
||
|
.x-toggle {
|
||
|
border: 1px solid #ccc;
|
||
|
width: 30px;
|
||
|
overflow: hidden;
|
||
|
-webkit-box-flex: 0;
|
||
|
-ms-flex: 0 0 auto;
|
||
|
flex: 0 0 auto;
|
||
|
}
|
||
|
|
||
|
/* line 42, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/slider/_Slider.scss */
|
||
|
.x-toggle-on {
|
||
|
background-color: #eee;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.tab.Panel
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/tab/_Panel.scss */
|
||
|
.x-tab {
|
||
|
z-index: 1;
|
||
|
overflow: visible !important;
|
||
|
background-color: #eee;
|
||
|
border: 1px solid #ccc;
|
||
|
}
|
||
|
|
||
|
/* line 12, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/tab/_Panel.scss */
|
||
|
.x-tabbar {
|
||
|
border-color: #ccc;
|
||
|
border-style: solid;
|
||
|
border-width: 0;
|
||
|
background-color: #eee;
|
||
|
}
|
||
|
|
||
|
/* line 19, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/tab/_Panel.scss */
|
||
|
.x-tabbar.x-docked-top {
|
||
|
border-bottom-width: 1px;
|
||
|
}
|
||
|
/* line 22, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/tab/_Panel.scss */
|
||
|
.x-tabbar.x-docked-top .x-tab .x-button-icon {
|
||
|
position: relative;
|
||
|
}
|
||
|
/* line 25, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/tab/_Panel.scss */
|
||
|
.x-tabbar.x-docked-top .x-tab .x-button-icon.x-shown {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
/* line 29, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/tab/_Panel.scss */
|
||
|
.x-tabbar.x-docked-top .x-tab .x-button-icon.x-hidden {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
/* line 35, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/tab/_Panel.scss */
|
||
|
.x-tabbar.x-docked-bottom {
|
||
|
border-top-width: 1px;
|
||
|
}
|
||
|
/* line 38, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/tab/_Panel.scss */
|
||
|
.x-tabbar.x-docked-bottom .x-tab .x-button-icon {
|
||
|
display: block;
|
||
|
position: relative;
|
||
|
}
|
||
|
/* line 42, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/tab/_Panel.scss */
|
||
|
.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-shown {
|
||
|
visibility: visible;
|
||
|
}
|
||
|
/* line 46, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/tab/_Panel.scss */
|
||
|
.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-hidden {
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
|
||
|
/* line 52, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/tab/_Panel.scss */
|
||
|
.x-tab {
|
||
|
position: relative;
|
||
|
min-width: 3.3em;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.table.Table
|
||
|
* @ignore
|
||
|
*/
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/table/_Table.scss */
|
||
|
.x-table-inner {
|
||
|
display: table !important;
|
||
|
width: 100% !important;
|
||
|
height: 100% !important;
|
||
|
}
|
||
|
/* line 11, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/table/_Table.scss */
|
||
|
.x-table-inner.x-fixed-layout {
|
||
|
table-layout: fixed !important;
|
||
|
}
|
||
|
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/table/_Table.scss */
|
||
|
.x-table-row {
|
||
|
display: table-row !important;
|
||
|
}
|
||
|
|
||
|
/* line 20, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/table/_Table.scss */
|
||
|
.x-table-cell {
|
||
|
display: table-cell !important;
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/viewport/_Default.scss */
|
||
|
.x-orientation-inspector {
|
||
|
display: none;
|
||
|
content: "landscape";
|
||
|
}
|
||
|
@media (orientation: portrait) {
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/viewport/_Default.scss */
|
||
|
.x-orientation-inspector {
|
||
|
content: "portrait";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* line 2, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-header-container {
|
||
|
border-width: 0 1px 1px 0;
|
||
|
border-style: solid;
|
||
|
height: 65px;
|
||
|
font-weight: bold;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
/* line 9, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-header-container .x-grid-column {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
/* line 13, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-header-container .x-grid-header-container-inner {
|
||
|
width: 100000px;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
}
|
||
|
/* line 21, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-column {
|
||
|
height: 64px;
|
||
|
border-width: 1px 1px 0 1px;
|
||
|
border-style: solid;
|
||
|
line-height: 64px;
|
||
|
vertical-align: middle;
|
||
|
padding: 0 8px;
|
||
|
}
|
||
|
/* line 29, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-column .x-innerhtml {
|
||
|
display: inline-block;
|
||
|
width: auto;
|
||
|
position: relative;
|
||
|
}
|
||
|
/* line 37, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after, .x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after {
|
||
|
position: absolute;
|
||
|
width: 12px;
|
||
|
line-height: 64px;
|
||
|
top: 0;
|
||
|
height: 64px;
|
||
|
font-family: 'Pictos';
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
/* line 50, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-column.x-column-align-left .x-innerhtml:after, .x-grid .x-grid-column.x-column-align-center .x-innerhtml:after {
|
||
|
right: -16px;
|
||
|
}
|
||
|
/* line 54, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-column.x-column-align-right .x-innerhtml:after {
|
||
|
left: -16px;
|
||
|
}
|
||
|
/* line 58, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after {
|
||
|
content: "{";
|
||
|
}
|
||
|
/* line 61, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after {
|
||
|
content: "}";
|
||
|
}
|
||
|
/* line 66, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-headergroup {
|
||
|
display: inline-block;
|
||
|
position: relative;
|
||
|
vertical-align: bottom;
|
||
|
height: 64px;
|
||
|
padding-top: 32px;
|
||
|
}
|
||
|
/* line 73, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-headergroup .x-inner > .x-innerhtml {
|
||
|
height: 32px;
|
||
|
line-height: 28px;
|
||
|
vertical-align: middle;
|
||
|
display: block;
|
||
|
position: absolute;
|
||
|
width: 100%;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
border-style: solid;
|
||
|
border-width: 1px;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
/* line 89, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-headergroup .x-grid-column {
|
||
|
height: 32px !important;
|
||
|
line-height: 27px !important;
|
||
|
font-size: 0.7em;
|
||
|
}
|
||
|
/* line 96, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-asc .x-innerhtml:after, .x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-desc .x-innerhtml:after {
|
||
|
line-height: 27px;
|
||
|
height: 27px;
|
||
|
}
|
||
|
/* line 104, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-row {
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
border-width: 0 0 1px 0;
|
||
|
border-style: solid;
|
||
|
}
|
||
|
/* line 112, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-cell {
|
||
|
display: inline-block;
|
||
|
vertical-align: middle;
|
||
|
line-height: 60px;
|
||
|
padding: 0 8px;
|
||
|
height: 60px;
|
||
|
overflow: hidden;
|
||
|
border-width: 0 1px 0 0;
|
||
|
}
|
||
|
/* line 123, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-cell-align-center,
|
||
|
.x-grid .x-grid-column-align-center {
|
||
|
text-align: center;
|
||
|
}
|
||
|
/* line 128, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-cell-align-right,
|
||
|
.x-grid .x-grid-column-align-right {
|
||
|
text-align: right;
|
||
|
}
|
||
|
/* line 132, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions {
|
||
|
border-width: 0 0 0 1px;
|
||
|
border-style: solid;
|
||
|
}
|
||
|
/* line 136, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-list-item .x-innerhtml {
|
||
|
padding: 0px !important;
|
||
|
}
|
||
|
/* line 140, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-header {
|
||
|
height: 32px;
|
||
|
line-height: 28px;
|
||
|
vertical-align: middle;
|
||
|
border-style: solid;
|
||
|
border-width: 1px;
|
||
|
overflow: hidden;
|
||
|
padding-left: 10px;
|
||
|
}
|
||
|
/* line 154, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-sortablehandle,
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-visibleindicator,
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-groupindicator,
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-folder,
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-leaf {
|
||
|
width: 40px;
|
||
|
height: 48px;
|
||
|
position: absolute;
|
||
|
bottom: 0;
|
||
|
}
|
||
|
/* line 160, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after,
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after,
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after,
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-folder:after,
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-leaf:after {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
font-size: 24px;
|
||
|
font-family: 'Pictos';
|
||
|
line-height: 48px;
|
||
|
content: "l";
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
/* line 175, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-sortablehandle {
|
||
|
left: 0;
|
||
|
}
|
||
|
/* line 177, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after {
|
||
|
line-height: 54px;
|
||
|
}
|
||
|
/* line 181, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-visibleindicator {
|
||
|
right: 0;
|
||
|
}
|
||
|
/* line 183, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after {
|
||
|
font-size: 30px;
|
||
|
line-height: 54px;
|
||
|
content: "E";
|
||
|
}
|
||
|
/* line 190, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-groupindicator {
|
||
|
right: 40px;
|
||
|
}
|
||
|
/* line 192, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after {
|
||
|
font-size: 30px;
|
||
|
line-height: 54px;
|
||
|
content: "g";
|
||
|
}
|
||
|
/* line 200, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-folder,
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-leaf {
|
||
|
width: 30px;
|
||
|
left: 40px;
|
||
|
}
|
||
|
/* line 204, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-folder:after,
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-leaf:after {
|
||
|
line-height: 52px;
|
||
|
content: "o";
|
||
|
}
|
||
|
/* line 210, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-leaf:after {
|
||
|
content: "F";
|
||
|
}
|
||
|
/* line 214, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl {
|
||
|
background: transparent;
|
||
|
}
|
||
|
/* line 216, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl .x-innerhtml {
|
||
|
background: transparent;
|
||
|
}
|
||
|
/* line 221, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-viewoptions .x-column-options-text {
|
||
|
display: block;
|
||
|
height: 30px;
|
||
|
margin: 10px 50px 5px 80px;
|
||
|
position: relative;
|
||
|
vertical-align: middle;
|
||
|
line-height: 28px;
|
||
|
}
|
||
|
/* line 231, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-columnoptions {
|
||
|
border-width: 0 0 1px;
|
||
|
}
|
||
|
/* line 235, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-multiselection-column {
|
||
|
position: relative;
|
||
|
padding: 0;
|
||
|
}
|
||
|
/* line 239, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-multiselection-column:after {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 60px;
|
||
|
height: 64px;
|
||
|
line-height: 64px;
|
||
|
font-family: 'Pictos';
|
||
|
font-size: 26px;
|
||
|
text-align: center;
|
||
|
content: "2";
|
||
|
}
|
||
|
/* line 253, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-multiselection-cell {
|
||
|
position: relative;
|
||
|
padding: 0;
|
||
|
}
|
||
|
/* line 257, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-multiselection-cell:after {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 60px;
|
||
|
height: 60px;
|
||
|
line-height: 60px;
|
||
|
font-family: 'Pictos';
|
||
|
font-size: 20px;
|
||
|
text-align: center;
|
||
|
content: "_";
|
||
|
}
|
||
|
/* line 271, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-item-selected .x-grid-multiselection-cell:after {
|
||
|
content: "3";
|
||
|
}
|
||
|
/* line 276, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-pagingtoolbar > .x-body {
|
||
|
padding: 0 30px 0 50px;
|
||
|
}
|
||
|
/* line 281, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-pagingtoolbar-currentpage {
|
||
|
position: relative;
|
||
|
height: 22px;
|
||
|
}
|
||
|
/* line 285, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-pagingtoolbar-currentpage span {
|
||
|
position: absolute;
|
||
|
right: 0;
|
||
|
top: 0;
|
||
|
line-height: 22px;
|
||
|
height: 22px;
|
||
|
}
|
||
|
/* line 294, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-summaryrow {
|
||
|
height: 32px;
|
||
|
font-size: 0.8em;
|
||
|
position: relative;
|
||
|
}
|
||
|
/* line 299, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-summaryrow .x-grid-cell {
|
||
|
height: 32px;
|
||
|
line-height: 30px;
|
||
|
border-width: 0 0 1px;
|
||
|
border-style: solid;
|
||
|
}
|
||
|
/* line 307, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-summaryrow .x-grid-multiselection-cell:after {
|
||
|
content: '';
|
||
|
}
|
||
|
|
||
|
/* line 315, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-ie .x-grid-grouped .x-translatable-container .x-grid-row:before, .x-ie .x-grid-grouped .x-translatable-container .x-grid-header:before {
|
||
|
content: ". .";
|
||
|
color: transparent;
|
||
|
position: absolute;
|
||
|
left: 0px;
|
||
|
word-spacing: 3000px;
|
||
|
opacity: 0;
|
||
|
}
|
||
|
|
||
|
/* line 326, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid-header {
|
||
|
line-height: 44px;
|
||
|
font-weight: bold;
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
z-index: 2 !important;
|
||
|
}
|
||
|
|
||
|
/* line 335, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-ios .x-grid-header {
|
||
|
-webkit-transform: translate3d(0, 0, 0);
|
||
|
-moz-transform: translate3d(0, 0, 0);
|
||
|
-ms-transform: translate3d(0, 0, 0);
|
||
|
-o-transform: translate3d(0, 0, 0);
|
||
|
transform: translate3d(0, 0, 0);
|
||
|
}
|
||
|
|
||
|
/* line 340, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss */
|
||
|
.x-grid-grouped .x-grid-row.x-grid-header-wrap .x-dock-horizontal,
|
||
|
.x-grid-grouped .x-grid-row-tpl.x-grid-header-wrap {
|
||
|
border-top: 0;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.scroll.Scroller
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-view {
|
||
|
position: relative;
|
||
|
display: block;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
/* line 11, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-container {
|
||
|
position: absolute;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
/* line 17, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-scroller {
|
||
|
position: absolute;
|
||
|
min-width: 100%;
|
||
|
min-height: 100%;
|
||
|
height: auto !important;
|
||
|
width: auto !important;
|
||
|
/*
|
||
|
&.x-scroll-scroller-vertical {
|
||
|
height: auto !important;
|
||
|
}
|
||
|
|
||
|
&.x-scroll-scroller-horizontal {
|
||
|
width: auto !important;
|
||
|
}
|
||
|
*/
|
||
|
}
|
||
|
|
||
|
/* line 36, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-stretcher {
|
||
|
position: absolute;
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
|
||
|
/* line 41, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-grid-wrapper {
|
||
|
position: absolute;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
/* line 47, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-grid {
|
||
|
display: table;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
/* line 52, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-grid > * {
|
||
|
display: table-row;
|
||
|
}
|
||
|
/* line 56, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-grid > * > * {
|
||
|
display: table-cell;
|
||
|
}
|
||
|
/* line 60, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-grid > :first-child > :first-child {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
/* line 65, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-grid > :first-child > :nth-child(2) {
|
||
|
padding: 3px 3px 0 0;
|
||
|
}
|
||
|
/* line 69, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-grid > :nth-child(2) > :first-child {
|
||
|
padding: 0 0 3px 3px;
|
||
|
}
|
||
|
|
||
|
/* line 74, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar {
|
||
|
position: relative;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
/* line 79, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-stretcher {
|
||
|
position: absolute;
|
||
|
visibility: hidden;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
/* line 86, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-x {
|
||
|
width: 100%;
|
||
|
}
|
||
|
/* line 89, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-x > .x-scroll-bar-stretcher {
|
||
|
width: 300%;
|
||
|
}
|
||
|
/* line 93, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-x.active {
|
||
|
height: 6px;
|
||
|
}
|
||
|
|
||
|
/* line 98, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-y {
|
||
|
height: 100%;
|
||
|
}
|
||
|
/* line 101, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-y > .x-scroll-bar-stretcher {
|
||
|
height: 300%;
|
||
|
}
|
||
|
/* line 105, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-bar-y.active {
|
||
|
width: 6px;
|
||
|
}
|
||
|
|
||
|
/* line 110, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator {
|
||
|
background: #333;
|
||
|
position: absolute;
|
||
|
z-index: 3;
|
||
|
}
|
||
|
|
||
|
/* line 116, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator-x {
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
/* line 120, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator-y {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
/* line 124, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator.rounded {
|
||
|
background: none;
|
||
|
}
|
||
|
/* line 127, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator.rounded > * {
|
||
|
position: absolute;
|
||
|
background-color: #333;
|
||
|
}
|
||
|
/* line 132, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator.rounded > :nth-child(2) {
|
||
|
-webkit-transform-origin: 0% 0%;
|
||
|
background: none;
|
||
|
content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA);
|
||
|
}
|
||
|
/* line 139, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator.rounded.x-scroll-indicator-light > * {
|
||
|
background-color: #eee;
|
||
|
}
|
||
|
/* line 143, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator.rounded.x-scroll-indicator-light > :nth-child(2) {
|
||
|
content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA);
|
||
|
}
|
||
|
/* line 149, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator.rounded.x-scroll-indicator-y > * {
|
||
|
width: 100%;
|
||
|
}
|
||
|
/* line 153, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator.rounded.x-scroll-indicator-y > :first-child {
|
||
|
height: 3px;
|
||
|
-moz-border-radius-topleft: 3px;
|
||
|
-webkit-border-top-left-radius: 3px;
|
||
|
border-top-left-radius: 3px;
|
||
|
-moz-border-radius-topright: 3px;
|
||
|
-webkit-border-top-right-radius: 3px;
|
||
|
border-top-right-radius: 3px;
|
||
|
}
|
||
|
/* line 158, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator.rounded.x-scroll-indicator-y > :nth-child(2) {
|
||
|
height: 1px;
|
||
|
}
|
||
|
/* line 162, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator.rounded.x-scroll-indicator-y > :last-child {
|
||
|
height: 3px;
|
||
|
-moz-border-radius-bottomleft: 3px;
|
||
|
-webkit-border-bottom-left-radius: 3px;
|
||
|
border-bottom-left-radius: 3px;
|
||
|
-moz-border-radius-bottomright: 3px;
|
||
|
-webkit-border-bottom-right-radius: 3px;
|
||
|
border-bottom-right-radius: 3px;
|
||
|
}
|
||
|
/* line 169, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator.rounded.x-scroll-indicator-x > * {
|
||
|
height: 100%;
|
||
|
}
|
||
|
/* line 173, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator.rounded.x-scroll-indicator-x > :first-child {
|
||
|
width: 3px;
|
||
|
-moz-border-radius-topleft: 3px;
|
||
|
-webkit-border-top-left-radius: 3px;
|
||
|
border-top-left-radius: 3px;
|
||
|
-moz-border-radius-bottomleft: 3px;
|
||
|
-webkit-border-bottom-left-radius: 3px;
|
||
|
border-bottom-left-radius: 3px;
|
||
|
}
|
||
|
/* line 178, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator.rounded.x-scroll-indicator-x > :nth-child(2) {
|
||
|
width: 1px;
|
||
|
}
|
||
|
/* line 182, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-scroll-indicator.rounded.x-scroll-indicator-x > :last-child {
|
||
|
width: 3px;
|
||
|
-moz-border-radius-topright: 3px;
|
||
|
-webkit-border-top-right-radius: 3px;
|
||
|
border-top-right-radius: 3px;
|
||
|
-moz-border-radius-bottomright: 3px;
|
||
|
-webkit-border-bottom-right-radius: 3px;
|
||
|
border-bottom-right-radius: 3px;
|
||
|
}
|
||
|
|
||
|
/* line 191, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-list-light .x-scroll-indicator,
|
||
|
.x-dataview-light .x-scroll-indicator {
|
||
|
background: #fff;
|
||
|
}
|
||
|
|
||
|
/* line 197, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-ios .x-scroll-scroller {
|
||
|
-webkit-transform: translate3d(0, 0, 0);
|
||
|
}
|
||
|
|
||
|
/* line 202, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss */
|
||
|
.x-ie .x-scroll-bar-y {
|
||
|
position: absolute;
|
||
|
margin-left: -5px;
|
||
|
}
|
||
|
|
||
|
/* line 2, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Class.scss */
|
||
|
body,
|
||
|
html {
|
||
|
font-family: "Slate Pro",Slate,"Myriad Pro",Helvetica;
|
||
|
font-size: 12pt;
|
||
|
}
|
||
|
|
||
|
/* line 7, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Class.scss */
|
||
|
.x-layout-card-item {
|
||
|
background: #fff;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.Button
|
||
|
*/
|
||
|
/* line 11, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-button {
|
||
|
border: 0px;
|
||
|
height: 35px;
|
||
|
padding: 0 3px;
|
||
|
position: relative;
|
||
|
background: transparent;
|
||
|
overflow: visible;
|
||
|
background: -webkit-linear-gradient(#f3f3f3, #e6e6e6);
|
||
|
background: -moz-linear-gradient(#f3f3f3, #e6e6e6);
|
||
|
background: -o-linear-gradient(#f3f3f3, #e6e6e6);
|
||
|
background: -ms-linear-gradient(#f3f3f3, #e6e6e6);
|
||
|
background: linear-gradient(#f3f3f3, #e6e6e6);
|
||
|
}
|
||
|
/* line 20, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-button .x-button-label, .x-button .x-badge {
|
||
|
color: #323232;
|
||
|
}
|
||
|
|
||
|
/* line 26, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-button-pressed,
|
||
|
.x-button-pressing {
|
||
|
background: #646464;
|
||
|
}
|
||
|
|
||
|
/* line 30, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-button-icon {
|
||
|
width: 40px;
|
||
|
height: 40px;
|
||
|
background-size: 36px;
|
||
|
background-position: bottom center;
|
||
|
}
|
||
|
/* line 36, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-button-icon:after {
|
||
|
display: block;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background-size: 42px;
|
||
|
background-position: 50%;
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
|
||
|
/* line 53, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-button-round,
|
||
|
.x-button-decline-round,
|
||
|
.x-button-confirm-round {
|
||
|
-webkit-border-radius: 20px;
|
||
|
-moz-border-radius: 20px;
|
||
|
-ms-border-radius: 20px;
|
||
|
-o-border-radius: 20px;
|
||
|
border-radius: 20px;
|
||
|
}
|
||
|
/* line 56, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-button-round:before,
|
||
|
.x-button-decline-round:before,
|
||
|
.x-button-confirm-round:before {
|
||
|
-webkit-border-radius: 19px;
|
||
|
-moz-border-radius: 19px;
|
||
|
-ms-border-radius: 19px;
|
||
|
-o-border-radius: 19px;
|
||
|
border-radius: 19px;
|
||
|
}
|
||
|
|
||
|
/* line 61, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-button-label, .x-badge {
|
||
|
position: relative;
|
||
|
font-size: 14px;
|
||
|
padding: 0 5px;
|
||
|
}
|
||
|
|
||
|
/* line 67, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-badge {
|
||
|
right: 5px;
|
||
|
}
|
||
|
|
||
|
/* line 74, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-toolbar .x-button {
|
||
|
margin: 0 5px;
|
||
|
padding: 0 10px;
|
||
|
}
|
||
|
|
||
|
/* line 83, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-toolbar .x-button-back,
|
||
|
.x-toolbar .x-button-forward {
|
||
|
height: 100%;
|
||
|
margin: 0 !important;
|
||
|
border: 0;
|
||
|
-webkit-border-radius: 0;
|
||
|
-moz-border-radius: 0;
|
||
|
-ms-border-radius: 0;
|
||
|
-o-border-radius: 0;
|
||
|
border-radius: 0;
|
||
|
-webkit-box-shadow: none;
|
||
|
-moz-box-shadow: none;
|
||
|
box-shadow: none;
|
||
|
background: transparent;
|
||
|
background-image: none;
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
overflow: hidden;
|
||
|
min-width: 4em;
|
||
|
}
|
||
|
/* line 95, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-toolbar .x-button-back .x-button-icon,
|
||
|
.x-toolbar .x-button-forward .x-button-icon {
|
||
|
margin: 0 auto;
|
||
|
display: block;
|
||
|
height: 42px;
|
||
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAAAsTAAALEwEAmpwYAAA5omlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMwMTQgNzkuMTU2Nzk3LCAyMDE0LzA4LzIwLTA5OjUzOjAyICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgICAgICAgICB4bWxuczpleGlmPSJodHRwOi8vbnMuYWRvYmUuY29tL2V4aWYvMS4wLyI+CiAgICAgICAgIDx4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+eG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEY2MkYxMTU2NTc0MjBCNDwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06RG9jdW1lbnRJRD54bXAuZGlkOjNCNTI2RDI5OTJGQTExRTM5NURGQzdDNUFBODFBNDk0PC94bXBNTTpEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOmQzYWFmMDM1LTJkNzgtNGEwYy1hYzUzLTgyZTY0ZWU4Njk0YzwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDowMjkzOTNEMzE1MjA2ODExODIyQUQwNEY0MzYwRUM0Njwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEY2MkYxMTU2NTc0MjBCNDwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPHhtcE1NOkhpc3Rvcnk+CiAgICAgICAgICAgIDxyZGY6U2VxPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOmQzYWFmMDM1LTJkNzgtNGEwYy1hYzUzLTgyZTY0ZWU4Njk0Yzwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNS0wNi0wMVQxMDoxODo0MC0wNTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICA8L3JkZjpTZXE+CiAgICAgICAgIDwveG1wTU06SGlzdG9yeT4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoTWFjaW50b3NoKTwveG1wOkNyZWF0b3JUb29sPgogICAgICAgICA8eG1wOkNyZWF0ZURhdGU+MjAxNC0wNy0xNlQwODoyMToxNi0wNTowMDwveG1wOkNyZWF0ZURhdGU+CiAgICAgICAgIDx4bXA6TW9kaWZ5RGF0ZT4yMDE1LTA2LTAxVDEwOjE4OjQwLTA1OjAwPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNS0wNi0wMVQxMDoxODo0MC0wNTowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9wbmc8L2RjOmZvcm1hdD4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WVJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDxleGlmOkNvbG9yU3BhY2U+NjU1MzU8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjk2PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjk2PC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
|
||
|
background-size: 30px;
|
||
|
background-position: 10px center;
|
||
|
}
|
||
|
/* line 103, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-toolbar .x-button-back .x-button-icon:before,
|
||
|
.x-toolbar .x-button-forward .x-button-icon:before {
|
||
|
content: '';
|
||
|
}
|
||
|
/* line 108, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-toolbar .x-button-back:before,
|
||
|
.x-toolbar .x-button-forward:before {
|
||
|
background: transparent;
|
||
|
background-image: none;
|
||
|
}
|
||
|
/* line 114, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-toolbar .x-button-back.x-button-pressed, .x-toolbar .x-button-back.x-button-pressing,
|
||
|
.x-toolbar .x-button-forward.x-button-pressed,
|
||
|
.x-toolbar .x-button-forward.x-button-pressing {
|
||
|
background: transparent;
|
||
|
background-image: none;
|
||
|
}
|
||
|
/* line 118, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-toolbar .x-button-back.x-button-pressed:before, .x-toolbar .x-button-back.x-button-pressing:before,
|
||
|
.x-toolbar .x-button-forward.x-button-pressed:before,
|
||
|
.x-toolbar .x-button-forward.x-button-pressing:before {
|
||
|
background: transparent;
|
||
|
background-image: none;
|
||
|
}
|
||
|
/* line 124, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-toolbar .x-button-back .x-button-label, .x-toolbar .x-button-back .x-badge,
|
||
|
.x-toolbar .x-button-forward .x-button-label,
|
||
|
.x-toolbar .x-button-forward .x-badge {
|
||
|
display: none;
|
||
|
}
|
||
|
/* line 129, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-landscape .x-toolbar .x-button-back .x-button-icon, .x-landscape
|
||
|
.x-toolbar .x-button-forward .x-button-icon {
|
||
|
margin-top: 8px;
|
||
|
background-position: center 4px;
|
||
|
}
|
||
|
|
||
|
/* line 136, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-toolbar .x-button-back {
|
||
|
padding: 0 30px 0 14px;
|
||
|
}
|
||
|
/* line 139, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-toolbar .x-button-back:before {
|
||
|
-webkit-transform: rotate(10deg);
|
||
|
-moz-transform: rotate(10deg);
|
||
|
-ms-transform: rotate(10deg);
|
||
|
-o-transform: rotate(10deg);
|
||
|
transform: rotate(10deg);
|
||
|
position: absolute;
|
||
|
right: 0px;
|
||
|
top: 5px;
|
||
|
bottom: 5px;
|
||
|
border-color: #0f76c2;
|
||
|
border-width: 0 2px 0 0;
|
||
|
border-style: solid;
|
||
|
-webkit-border-radius: 0;
|
||
|
-moz-border-radius: 0;
|
||
|
-ms-border-radius: 0;
|
||
|
-o-border-radius: 0;
|
||
|
border-radius: 0;
|
||
|
content: '';
|
||
|
}
|
||
|
|
||
|
/* line 153, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-toolbar .x-button-forward {
|
||
|
padding: 0 14px 0 20px;
|
||
|
}
|
||
|
/* line 156, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-toolbar .x-button-forward:before {
|
||
|
-webkit-transform: rotate(-6deg);
|
||
|
-moz-transform: rotate(-6deg);
|
||
|
-ms-transform: rotate(-6deg);
|
||
|
-o-transform: rotate(-6deg);
|
||
|
transform: rotate(-6deg);
|
||
|
left: 5px;
|
||
|
top: -5px;
|
||
|
bottom: -5px;
|
||
|
border-color: #0099cc;
|
||
|
border-width: 0 0 0 2px;
|
||
|
-webkit-border-radius: 0;
|
||
|
-moz-border-radius: 0;
|
||
|
-ms-border-radius: 0;
|
||
|
-o-border-radius: 0;
|
||
|
border-radius: 0;
|
||
|
}
|
||
|
/* line 166, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-toolbar .x-button-forward .x-button-icon {
|
||
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAAAsTAAALEwEAmpwYAAA5omlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMwMTQgNzkuMTU2Nzk3LCAyMDE0LzA4LzIwLTA5OjUzOjAyICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgICAgICAgICB4bWxuczpleGlmPSJodHRwOi8vbnMuYWRvYmUuY29tL2V4aWYvMS4wLyI+CiAgICAgICAgIDx4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+eG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEY2MkYxMTU2NTc0MjBCNDwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06RG9jdW1lbnRJRD54bXAuZGlkOjNCODFCRTM1OTJGQTExRTM5NURGQzdDNUFBODFBNDk0PC94bXBNTTpEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOmEzMTJhZGRhLTRhMGQtNGFmMS1hNWMzLTE1ZGM5NWY2NmMwZTwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDowMjkzOTNEMzE1MjA2ODExODIyQUQwNEY0MzYwRUM0Njwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEY2MkYxMTU2NTc0MjBCNDwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPHhtcE1NOkhpc3Rvcnk+CiAgICAgICAgICAgIDxyZGY6U2VxPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOmEzMTJhZGRhLTRhMGQtNGFmMS1hNWMzLTE1ZGM5NWY2NmMwZTwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNS0wNi0wMVQxMDoxODozNi0wNTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICA8L3JkZjpTZXE+CiAgICAgICAgIDwveG1wTU06SGlzdG9yeT4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoTWFjaW50b3NoKTwveG1wOkNyZWF0b3JUb29sPgogICAgICAgICA8eG1wOkNyZWF0ZURhdGU+MjAxNC0wNy0xNlQwODoyMToxNi0wNTowMDwveG1wOkNyZWF0ZURhdGU+CiAgICAgICAgIDx4bXA6TW9kaWZ5RGF0ZT4yMDE1LTA2LTAxVDEwOjE4OjM2LTA1OjAwPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNS0wNi0wMVQxMDoxODozNi0wNTowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9wbmc8L2RjOmZvcm1hdD4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WVJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDxleGlmOkNvbG9yU3BhY2U+NjU1MzU8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjk2PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjk2PC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
|
||
|
}
|
||
|
|
||
|
/* line 173, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-hasbadge {
|
||
|
overflow: visible;
|
||
|
}
|
||
|
|
||
|
/* line 177, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-badge {
|
||
|
background-color: #0092CC;
|
||
|
}
|
||
|
|
||
|
/* line 183, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-button-icon {
|
||
|
width: 1.5em;
|
||
|
height: 1.5em;
|
||
|
}
|
||
|
/* line 187, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss */
|
||
|
.x-button-icon:before {
|
||
|
color: #323232;
|
||
|
font-size: 24px;
|
||
|
line-height: .9em;
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.calendar:before,
|
||
|
.x-button .x-button-icon.calendar:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "\005C";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.action:before,
|
||
|
.x-button .x-button-icon.action:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "R";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.add:before,
|
||
|
.x-button .x-button-icon.add:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "&";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.arrow_down:before,
|
||
|
.x-button .x-button-icon.arrow_down:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "}";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.arrow_left:before,
|
||
|
.x-button .x-button-icon.arrow_left:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "[";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.arrow_right:before,
|
||
|
.x-button .x-button-icon.arrow_right:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "]";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.arrow_up:before,
|
||
|
.x-button .x-button-icon.arrow_up:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "{";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.compose:before,
|
||
|
.x-button .x-button-icon.compose:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "W";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.delete:before,
|
||
|
.x-button .x-button-icon.delete:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "*";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.organize:before,
|
||
|
.x-button .x-button-icon.organize:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "I";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.refresh:before,
|
||
|
.x-button .x-button-icon.refresh:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "1";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.reply:before,
|
||
|
.x-button .x-button-icon.reply:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "R";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.search:before,
|
||
|
.x-button .x-button-icon.search:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "s";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.settings:before,
|
||
|
.x-button .x-button-icon.settings:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "y";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.star:before,
|
||
|
.x-button .x-button-icon.star:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "S";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.trash:before,
|
||
|
.x-button .x-button-icon.trash:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "#";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.maps:before,
|
||
|
.x-button .x-button-icon.maps:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "@";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.locate:before,
|
||
|
.x-button .x-button-icon.locate:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "@";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.home:before,
|
||
|
.x-button .x-button-icon.home:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "H";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.bookmarks:before,
|
||
|
.x-button .x-button-icon.bookmarks:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "I";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.download:before,
|
||
|
.x-button .x-button-icon.download:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "~";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.favorites:before,
|
||
|
.x-button .x-button-icon.favorites:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "S";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.info:before,
|
||
|
.x-button .x-button-icon.info:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "i";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.more:before,
|
||
|
.x-button .x-button-icon.more:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: ".";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.time:before,
|
||
|
.x-button .x-button-icon.time:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "t";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.user:before,
|
||
|
.x-button .x-button-icon.user:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "U";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.team:before,
|
||
|
.x-button .x-button-icon.team:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "g";
|
||
|
}
|
||
|
|
||
|
/* line 343, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss */
|
||
|
.x-tab .x-button-icon.list:before,
|
||
|
.x-button .x-button-icon.list:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Pictos";
|
||
|
content: "l";
|
||
|
}
|
||
|
|
||
|
/* line 3, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_SegmentedButton.scss */
|
||
|
.x-segmentedbutton {
|
||
|
padding: 0 2px;
|
||
|
height: 35px;
|
||
|
background-color: #e6e6e6;
|
||
|
}
|
||
|
/* line 8, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_SegmentedButton.scss */
|
||
|
.x-segmentedbutton .x-button {
|
||
|
height: 28px;
|
||
|
margin: 3px 0;
|
||
|
padding: 0 2px;
|
||
|
background: none;
|
||
|
}
|
||
|
/* line 14, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_SegmentedButton.scss */
|
||
|
.x-segmentedbutton .x-button {
|
||
|
border-right: 1px solid #969696;
|
||
|
}
|
||
|
/* line 18, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_SegmentedButton.scss */
|
||
|
.x-segmentedbutton .x-button.x-last {
|
||
|
border-right: 0px;
|
||
|
}
|
||
|
/* line 22, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_SegmentedButton.scss */
|
||
|
.x-segmentedbutton .x-button:last-child {
|
||
|
margin-right: 0;
|
||
|
}
|
||
|
/* line 26, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_SegmentedButton.scss */
|
||
|
.x-segmentedbutton .x-button:before {
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
border: 0;
|
||
|
background: none;
|
||
|
}
|
||
|
/* line 35, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_SegmentedButton.scss */
|
||
|
.x-segmentedbutton .x-button .x-button-label, .x-segmentedbutton .x-button .x-badge {
|
||
|
padding: 4px;
|
||
|
color: #2d2d2d;
|
||
|
}
|
||
|
/* line 40, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_SegmentedButton.scss */
|
||
|
.x-segmentedbutton .x-button .x-button-icon:before {
|
||
|
color: #000;
|
||
|
}
|
||
|
/* line 47, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_SegmentedButton.scss */
|
||
|
.x-segmentedbutton .x-button-pressing .x-button-label, .x-segmentedbutton .x-button-pressing .x-badge,
|
||
|
.x-segmentedbutton .x-button-pressed .x-button-label,
|
||
|
.x-segmentedbutton .x-button-pressed .x-badge, .x-toolbar .x-segmentedbutton .x-button.x-button-pressed .x-button-label, .x-toolbar .x-segmentedbutton .x-button.x-button-pressed .x-badge {
|
||
|
background-color: #fff;
|
||
|
color: #0099cc;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Includes default message box styles.
|
||
|
*
|
||
|
* @member Ext.MessageBox
|
||
|
*/
|
||
|
/* line 7, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_MessageBox.scss */
|
||
|
.x-msgbox {
|
||
|
padding: 0;
|
||
|
border: 0;
|
||
|
background: #fff;
|
||
|
-webkit-border-radius: 10px;
|
||
|
-moz-border-radius: 10px;
|
||
|
-ms-border-radius: 10px;
|
||
|
-o-border-radius: 10px;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
/* line 13, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_MessageBox.scss */
|
||
|
.x-msgbox .x-msgbox-title {
|
||
|
-webkit-box-shadow: none;
|
||
|
-moz-box-shadow: none;
|
||
|
box-shadow: none;
|
||
|
-moz-border-radius-topleft: 5px;
|
||
|
-webkit-border-top-left-radius: 5px;
|
||
|
border-top-left-radius: 5px;
|
||
|
-moz-border-radius-topright: 5px;
|
||
|
-webkit-border-top-right-radius: 5px;
|
||
|
border-top-right-radius: 5px;
|
||
|
}
|
||
|
/* line 18, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_MessageBox.scss */
|
||
|
.x-msgbox .x-msgbox-buttons {
|
||
|
border: 1px solid red;
|
||
|
-moz-border-radius-bottomleft: 5px;
|
||
|
-webkit-border-bottom-left-radius: 5px;
|
||
|
border-bottom-left-radius: 5px;
|
||
|
-moz-border-radius-bottomright: 5px;
|
||
|
-webkit-border-bottom-right-radius: 5px;
|
||
|
border-bottom-right-radius: 5px;
|
||
|
}
|
||
|
/* line 23, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_MessageBox.scss */
|
||
|
.x-msgbox .x-field-input {
|
||
|
padding: 0 10px 5px;
|
||
|
}
|
||
|
|
||
|
/* line 29, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_MessageBox.scss */
|
||
|
.x-form.x-floating,
|
||
|
.x-panel.x-floating {
|
||
|
background: #fff;
|
||
|
padding: 0;
|
||
|
border: 0;
|
||
|
}
|
||
|
|
||
|
/* line 35, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_MessageBox.scss */
|
||
|
.x-msgbox-text {
|
||
|
padding: 10px;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
/* line 3, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Panel.scss */
|
||
|
.x-panel {
|
||
|
background: #fff;
|
||
|
}
|
||
|
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu {
|
||
|
background: #000;
|
||
|
width: 70%;
|
||
|
padding: 17px 2px;
|
||
|
}
|
||
|
|
||
|
/* line 8, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-context {
|
||
|
width: 281px;
|
||
|
}
|
||
|
/* line 11, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-context .x-button {
|
||
|
background: transparent;
|
||
|
background-image: none;
|
||
|
border: 0;
|
||
|
border-bottom: 1px solid #4c4c4c;
|
||
|
-webkit-border-radius: 0;
|
||
|
-moz-border-radius: 0;
|
||
|
-ms-border-radius: 0;
|
||
|
-o-border-radius: 0;
|
||
|
border-radius: 0;
|
||
|
height: 60px;
|
||
|
}
|
||
|
/* line 19, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-context .x-button:before {
|
||
|
display: none;
|
||
|
}
|
||
|
/* line 23, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-context .x-button.x-button-pressing {
|
||
|
background: #323232;
|
||
|
}
|
||
|
/* line 27, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-context .x-button:first-child {
|
||
|
border-top: 1px solid #4c4c4c;
|
||
|
}
|
||
|
/* line 32, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-context .x-button.x-docked-top, .x-menu-context .x-button.x-docked-bottom {
|
||
|
border-width: 0;
|
||
|
}
|
||
|
/* line 37, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-context .x-button-label, .x-menu-context .x-badge {
|
||
|
text-align: left;
|
||
|
color: #fff;
|
||
|
font-size: 17px;
|
||
|
}
|
||
|
/* line 43, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-context .x-button-icon {
|
||
|
margin: 0 12px 0 7px;
|
||
|
width: 2.0em;
|
||
|
height: 2.0em;
|
||
|
}
|
||
|
/* line 48, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-context .x-button-icon:before {
|
||
|
font-size: 30px;
|
||
|
line-height: 28px;
|
||
|
}
|
||
|
/* line 54, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-context.action-over-flow {
|
||
|
width: 250px;
|
||
|
}
|
||
|
|
||
|
/* line 60, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-application {
|
||
|
padding: 0 10px;
|
||
|
}
|
||
|
/* line 63, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-application .x-button-label, .x-menu-application .x-badge {
|
||
|
color: #fff;
|
||
|
}
|
||
|
/* line 67, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-application .x-button {
|
||
|
border-width: 0 !important;
|
||
|
}
|
||
|
/* line 71, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-application .x-button:before {
|
||
|
background: transparent !important;
|
||
|
}
|
||
|
/* line 75, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-menu-application .x-button-pressing {
|
||
|
background: transparent !important;
|
||
|
}
|
||
|
|
||
|
/* line 81, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-button.overflow {
|
||
|
width: 61px;
|
||
|
margin-left: 0;
|
||
|
margin-right: 0;
|
||
|
}
|
||
|
/* line 86, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-button.overflow:before {
|
||
|
background-color: transparent !important;
|
||
|
}
|
||
|
/* line 90, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss */
|
||
|
.x-button.overflow .x-button-icon:before {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
background-size: 30px;
|
||
|
background-position: center;
|
||
|
background-repeat: no-repeat;
|
||
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAAAsTAAALEwEAmpwYAAA5omlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMwMTQgNzkuMTU2Nzk3LCAyMDE0LzA4LzIwLTA5OjUzOjAyICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgICAgICAgICB4bWxuczpleGlmPSJodHRwOi8vbnMuYWRvYmUuY29tL2V4aWYvMS4wLyI+CiAgICAgICAgIDx4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+eG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEY2MkYxMTU2NTc0MjBCNDwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06RG9jdW1lbnRJRD54bXAuZGlkOjNCM0FFNDExOTJGQTExRTM5NURGQzdDNUFBODFBNDk0PC94bXBNTTpEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOjYzYTczOWVlLTNiMzAtNGY5NC04MWIyLWI3MGY5ZDA4NmNhNTwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDowMjkzOTNEMzE1MjA2ODExODIyQUQwNEY0MzYwRUM0Njwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEY2MkYxMTU2NTc0MjBCNDwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPHhtcE1NOkhpc3Rvcnk+CiAgICAgICAgICAgIDxyZGY6U2VxPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjYzYTczOWVlLTNiMzAtNGY5NC04MWIyLWI3MGY5ZDA4NmNhNTwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNS0wNi0wMVQxMDoxODozOC0wNTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICA8L3JkZjpTZXE+CiAgICAgICAgIDwveG1wTU06SGlzdG9yeT4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoTWFjaW50b3NoKTwveG1wOkNyZWF0b3JUb29sPgogICAgICAgICA8eG1wOkNyZWF0ZURhdGU+MjAxNC0wNy0xNlQwODoyMToxNi0wNTowMDwveG1wOkNyZWF0ZURhdGU+CiAgICAgICAgIDx4bXA6TW9kaWZ5RGF0ZT4yMDE1LTA2LTAxVDEwOjE4OjM4LTA1OjAwPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNS0wNi0wMVQxMDoxODozOC0wNTowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9wbmc8L2RjOmZvcm1hdD4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WVJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDxleGlmOkNvbG9yU3BhY2U+NjU1MzU8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjk2PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjk2PC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.Sheet
|
||
|
*/
|
||
|
/* line 7, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Sheet.scss */
|
||
|
.x-sheet,
|
||
|
.x-picker,
|
||
|
.x-sheet-action {
|
||
|
padding: .7em;
|
||
|
border-top: 1px solid #002633;
|
||
|
background-color: white;
|
||
|
-webkit-border-radius: 0;
|
||
|
-moz-border-radius: 0;
|
||
|
-ms-border-radius: 0;
|
||
|
-o-border-radius: 0;
|
||
|
border-radius: 0;
|
||
|
}
|
||
|
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Sheet.scss */
|
||
|
.x-sheet-inner > .x-button,
|
||
|
.x-sheet-action-inner > .x-button {
|
||
|
margin-bottom: .5em;
|
||
|
}
|
||
|
/* line 19, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Sheet.scss */
|
||
|
.x-sheet-inner > .x-button:last-child,
|
||
|
.x-sheet-action-inner > .x-button:last-child {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.Mask
|
||
|
*/
|
||
|
@keyframes spin {
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Mask.scss */
|
||
|
0% {
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
|
||
|
/* line 10, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Mask.scss */
|
||
|
100% {
|
||
|
transform: rotate(360deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@-webkit-keyframes webkit-spin {
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Mask.scss */
|
||
|
from {
|
||
|
-webkit-transform: rotate(0deg);
|
||
|
}
|
||
|
|
||
|
/* line 20, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Mask.scss */
|
||
|
to {
|
||
|
-webkit-transform: rotate(360deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* line 25, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Mask.scss */
|
||
|
.x-mask .x-mask-inner {
|
||
|
width: 50%;
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-pack: center;
|
||
|
-ms-flex-pack: center;
|
||
|
justify-content: center;
|
||
|
-webkit-box-align: center;
|
||
|
-ms-flex-align: center;
|
||
|
align-items: center;
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
/* line 33, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Mask.scss */
|
||
|
.x-mask.x-loading-mask {
|
||
|
background-color: rgba(255, 255, 255, 0.75);
|
||
|
}
|
||
|
|
||
|
/* line 37, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Mask.scss */
|
||
|
.x-mask .x-loading-spinner-outer {
|
||
|
position: relative;
|
||
|
height: auto;
|
||
|
}
|
||
|
|
||
|
/* line 42, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Mask.scss */
|
||
|
.x-mask.x-has-message .x-loading-spinner-outer {
|
||
|
height: 168px;
|
||
|
}
|
||
|
|
||
|
/* line 48, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Mask.scss */
|
||
|
.x-loading-spinner, .x-mask.x-has-message .x-loading-spinner-outer {
|
||
|
width: 64px;
|
||
|
height: 64px;
|
||
|
min-width: 64px;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||
|
viewBox="0 0 155 155" enable-background="new 0 0 155 155" xml:space="preserve">
|
||
|
<g id="Layer_1">
|
||
|
<circle fill="none" stroke="#969696" stroke-width="6" stroke-miterlimit="10" cx="77.5" cy="77.5" r="74.5"/>
|
||
|
</g>
|
||
|
<g id="Layer_2">
|
||
|
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="0" y1="40.25" x2="80.5" y2="40.25">
|
||
|
<stop offset="4.000000e-02" style="stop-color:#969696"/>
|
||
|
<stop offset="5.740377e-02" style="stop-color:#8E8E8E"/>
|
||
|
<stop offset="0.1465" style="stop-color:#686868"/>
|
||
|
<stop offset="0.2428" style="stop-color:#484848"/>
|
||
|
<stop offset="0.3461" style="stop-color:#2E2E2E"/>
|
||
|
<stop offset="0.4592" style="stop-color:#191919"/>
|
||
|
<stop offset="0.5871" style="stop-color:#0B0B0B"/>
|
||
|
<stop offset="0.7422" style="stop-color:#030303"/>
|
||
|
<stop offset="1" style="stop-color:#000000"/>
|
||
|
</linearGradient>
|
||
|
|
||
|
<path fill="none" stroke="url(#SVGID_1_)" stroke-width="6" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
|
||
|
M3,77.5C3,36.4,36.4,3,77.5,3"/>
|
||
|
</g>
|
||
|
</svg>
|
||
|
*/
|
||
|
/* line 80, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Mask.scss */
|
||
|
.x-loading-spinner {
|
||
|
background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDE1NSAxNTUiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE1NSAxNTUiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGcgaWQ9IkxheWVyXzEiPg0KCTxjaXJjbGUgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjOTY5Njk2IiBzdHJva2Utd2lkdGg9IjYiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgY3g9Ijc3LjUiIGN5PSI3Ny41IiByPSI3NC41Ii8+DQo8L2c+DQo8ZyBpZD0iTGF5ZXJfMiI+DQoJPGxpbmVhckdyYWRpZW50IGlkPSJTVkdJRF8xXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwIiB5MT0iNDAuMjUiIHgyPSI4MC41IiB5Mj0iNDAuMjUiPg0KCQk8c3RvcCAgb2Zmc2V0PSI0LjAwMDAwMGUtMDIiIHN0eWxlPSJzdG9wLWNvbG9yOiM5Njk2OTYiLz4NCgkJPHN0b3AgIG9mZnNldD0iNS43NDAzNzdlLTAyIiBzdHlsZT0ic3RvcC1jb2xvcjojOEU4RThFIi8+DQoJCTxzdG9wICBvZmZzZXQ9IjAuMTQ2NSIgc3R5bGU9InN0b3AtY29sb3I6IzY4Njg2OCIvPg0KCQk8c3RvcCAgb2Zmc2V0PSIwLjI0MjgiIHN0eWxlPSJzdG9wLWNvbG9yOiM0ODQ4NDgiLz4NCgkJPHN0b3AgIG9mZnNldD0iMC4zNDYxIiBzdHlsZT0ic3RvcC1jb2xvcjojMkUyRTJFIi8+DQoJCTxzdG9wICBvZmZzZXQ9IjAuNDU5MiIgc3R5bGU9InN0b3AtY29sb3I6IzE5MTkxOSIvPg0KCQk8c3RvcCAgb2Zmc2V0PSIwLjU4NzEiIHN0eWxlPSJzdG9wLWNvbG9yOiMwQjBCMEIiLz4NCgkJPHN0b3AgIG9mZnNldD0iMC43NDIyIiBzdHlsZT0ic3RvcC1jb2xvcjojMDMwMzAzIi8+DQoJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiMwMDAwMDAiLz4NCgk8L2xpbmVhckdyYWRpZW50Pg0KCQ0KCQk8cGF0aCBmaWxsPSJub25lIiBzdHJva2U9InVybCgjU1ZHSURfMV8pIiBzdHJva2Utd2lkdGg9IjYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBkPSINCgkJTTMsNzcuNUMzLDM2LjQsMzYuNCwzLDc3LjUsMyIvPg0KPC9nPg0KPC9zdmc+DQo=");
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: top left;
|
||
|
width: 64px;
|
||
|
height: 64px;
|
||
|
background-size: 100%;
|
||
|
-webkit-animation: webkit-spin 1s infinite linear;
|
||
|
animation: spin 1s infinite linear;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.Toolbar
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toolbar.scss */
|
||
|
.x-toolbar {
|
||
|
min-height: 44px;
|
||
|
background-color: #f0f0f0;
|
||
|
overflow: visible;
|
||
|
}
|
||
|
/* line 10, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toolbar.scss */
|
||
|
.x-toolbar .x-button {
|
||
|
background: transparent;
|
||
|
}
|
||
|
/* line 14, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toolbar.scss */
|
||
|
.x-toolbar .x-button.x-button-pressed, .x-toolbar .x-button.x-button-pressing {
|
||
|
background: #e6e6e6;
|
||
|
}
|
||
|
/* line 19, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toolbar.scss */
|
||
|
.x-toolbar .x-field-select .x-component-outer {
|
||
|
background: -webkit-linear-gradient(#e8e8e8, #dbdbdb);
|
||
|
background: -moz-linear-gradient(#e8e8e8, #dbdbdb);
|
||
|
background: -o-linear-gradient(#e8e8e8, #dbdbdb);
|
||
|
background: -ms-linear-gradient(#e8e8e8, #dbdbdb);
|
||
|
background: linear-gradient(#e8e8e8, #dbdbdb);
|
||
|
}
|
||
|
|
||
|
/* line 25, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toolbar.scss */
|
||
|
.x-toolbar,
|
||
|
.x-tabbar {
|
||
|
border-width: 0 !important;
|
||
|
height: 50px;
|
||
|
}
|
||
|
|
||
|
/* line 31, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toolbar.scss */
|
||
|
.x-tabbar.x-docked-bottom,
|
||
|
.x-toolbar.x-docked-bottom {
|
||
|
height: 66px;
|
||
|
}
|
||
|
/* line 34, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toolbar.scss */
|
||
|
.x-tabbar.x-docked-bottom .x-button-normal:before,
|
||
|
.x-toolbar.x-docked-bottom .x-button-normal:before {
|
||
|
height: 2px !important;
|
||
|
}
|
||
|
/* line 38, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toolbar.scss */
|
||
|
.x-tabbar.x-docked-bottom .x-button.menu,
|
||
|
.x-toolbar.x-docked-bottom .x-button.menu {
|
||
|
margin: 0;
|
||
|
border-right-style: solid;
|
||
|
border-right-width: 1px;
|
||
|
}
|
||
|
|
||
|
/* line 45, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toolbar.scss */
|
||
|
.x-title {
|
||
|
color: #323232;
|
||
|
font-size: 20px;
|
||
|
font-weight: normal;
|
||
|
letter-spacing: 1px;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Includes default toast styles.
|
||
|
*
|
||
|
* @member Ext.Toast
|
||
|
*/
|
||
|
/* line 7, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toast.scss */
|
||
|
.x-toast {
|
||
|
padding: 0;
|
||
|
border: 1px solid #fff;
|
||
|
background: #000;
|
||
|
color: #fff;
|
||
|
-webkit-border-radius: 10px;
|
||
|
-moz-border-radius: 10px;
|
||
|
-ms-border-radius: 10px;
|
||
|
-o-border-radius: 10px;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toast.scss */
|
||
|
.x-form.x-floating,
|
||
|
.x-panel.x-floating {
|
||
|
background: #fff;
|
||
|
padding: 0;
|
||
|
border: 0;
|
||
|
}
|
||
|
|
||
|
/* line 22, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toast.scss */
|
||
|
.x-toast-text {
|
||
|
padding: 20px;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/layout/_Dock.scss */
|
||
|
.x-dock > .x-dock-body {
|
||
|
overflow: visible;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.carousel.Indicator
|
||
|
*/
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/carousel/_Carousel.scss */
|
||
|
.x-carousel-indicator-dark span {
|
||
|
background-color: #999;
|
||
|
}
|
||
|
/* line 10, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/carousel/_Carousel.scss */
|
||
|
.x-carousel-indicator-dark .x-carousel-indicator-active {
|
||
|
background-color: #777 !important;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.dataview.List
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-list {
|
||
|
background: #fff;
|
||
|
}
|
||
|
|
||
|
/* line 9, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-list-item {
|
||
|
border-bottom: 1px solid #F7F3F7;
|
||
|
color: #292429;
|
||
|
font-size: 20px;
|
||
|
padding: 0 10px;
|
||
|
line-height: 38px;
|
||
|
}
|
||
|
|
||
|
/* line 17, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-list .x-list-disclosure {
|
||
|
margin-top: 13px;
|
||
|
border: 0;
|
||
|
background: transparent;
|
||
|
}
|
||
|
/* line 22, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-list .x-list-disclosure:before {
|
||
|
content: '>';
|
||
|
color: #444;
|
||
|
font-weight: bold;
|
||
|
line-height: 19px;
|
||
|
font-size: 22px;
|
||
|
text-align: center;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
}
|
||
|
|
||
|
/* line 38, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-list .x-list-item.x-item-pressed.x-list-item-tpl,
|
||
|
.x-list .x-list-item.x-item-pressed .x-dock-horizontal {
|
||
|
background-color: #ddd;
|
||
|
}
|
||
|
|
||
|
/* line 43, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-list .x-list-item.x-item-selected .x-dock-horizontal,
|
||
|
.x-list .x-list-item.x-item-selected.x-list-item-tpl {
|
||
|
background-color: #0099cc;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
/* line 48, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-list .x-item-selected .x-list-disclosure {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
/* line 49, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-list .x-item-selected .x-list-disclosure:before {
|
||
|
color: black;
|
||
|
}
|
||
|
|
||
|
/* line 55, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-list .x-list-header {
|
||
|
font-weight: normal;
|
||
|
font-size: 14px;
|
||
|
padding: 2px 10px;
|
||
|
border-top-color: #D1D1D1;
|
||
|
border-bottom: 2px solid #e6e6e6;
|
||
|
background: transparent;
|
||
|
}
|
||
|
|
||
|
/* line 64, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-indexbar {
|
||
|
color: #888;
|
||
|
padding: 3px 0;
|
||
|
-webkit-border-radius: 0px;
|
||
|
-moz-border-radius: 0px;
|
||
|
-ms-border-radius: 0px;
|
||
|
-o-border-radius: 0px;
|
||
|
border-radius: 0px;
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
height: 100% !important;
|
||
|
background: rgba(255, 255, 255, 0.75);
|
||
|
}
|
||
|
/* line 72, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-indexbar > div {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 auto;
|
||
|
flex: 1 0 auto;
|
||
|
color: #8e8e8e;
|
||
|
font-size: 0.75em;
|
||
|
}
|
||
|
|
||
|
/* line 85, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-indexbar-indicator {
|
||
|
width: 120px;
|
||
|
height: 50px;
|
||
|
background-color: #e6e6e6;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
z-index: 100;
|
||
|
border-top-left-radius: 5px;
|
||
|
border-bottom-left-radius: 5px;
|
||
|
}
|
||
|
/* line 96, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-indexbar-indicator .x-indexbar-indicator-inner {
|
||
|
color: black;
|
||
|
line-height: 50px;
|
||
|
font-size: 2em;
|
||
|
padding-left: 20px;
|
||
|
}
|
||
|
/* line 103, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-indexbar-indicator:after {
|
||
|
content: '';
|
||
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAAAsTAAALEwEAmpwYAAA5omlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMwMTQgNzkuMTU2Nzk3LCAyMDE0LzA4LzIwLTA5OjUzOjAyICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgICAgICAgICB4bWxuczpleGlmPSJodHRwOi8vbnMuYWRvYmUuY29tL2V4aWYvMS4wLyI+CiAgICAgICAgIDx4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+eG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEY2MkYxMTU2NTc0MjBCNDwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06RG9jdW1lbnRJRD54bXAuZGlkOjNCMjk4QjJBOTJGQTExRTM5NURGQzdDNUFBODFBNDk0PC94bXBNTTpEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOjQzY2QyNzgwLTYyMzktNGFiZi1iODY5LThiMGEzNjQzMWExMTwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDowMjkzOTNEMzE1MjA2ODExODIyQUQwNEY0MzYwRUM0Njwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEY2MkYxMTU2NTc0MjBCNDwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPHhtcE1NOkhpc3Rvcnk+CiAgICAgICAgICAgIDxyZGY6U2VxPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjQzY2QyNzgwLTYyMzktNGFiZi1iODY5LThiMGEzNjQzMWExMTwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNS0wNi0wMVQxMDoxODozOC0wNTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICA8L3JkZjpTZXE+CiAgICAgICAgIDwveG1wTU06SGlzdG9yeT4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoTWFjaW50b3NoKTwveG1wOkNyZWF0b3JUb29sPgogICAgICAgICA8eG1wOkNyZWF0ZURhdGU+MjAxNC0wNy0xNlQwODoyMToxNi0wNTowMDwveG1wOkNyZWF0ZURhdGU+CiAgICAgICAgIDx4bXA6TW9kaWZ5RGF0ZT4yMDE1LTA2LTAxVDEwOjE4OjM4LTA1OjAwPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNS0wNi0wMVQxMDoxODozOC0wNTowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9wbmc8L2RjOmZvcm1hdD4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WVJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDxleGlmOkNvbG9yU3BhY2U+NjU1MzU8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjk2PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjk2PC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
|
||
|
background-size: 50%;
|
||
|
background-position: 50%;
|
||
|
background-repeat: no-repeat;
|
||
|
opacity: .5;
|
||
|
width: 40px;
|
||
|
height: 100%;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
}
|
||
|
|
||
|
/* line 118, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-indexbar-vertical {
|
||
|
width: 30px;
|
||
|
margin-right: 0px;
|
||
|
-webkit-box-align: center;
|
||
|
-ms-flex-align: center;
|
||
|
align-items: center;
|
||
|
-webkit-box-direction: vertical;
|
||
|
-ms-flex-direction: row;
|
||
|
flex-direction: row;
|
||
|
padding-top: .5em;
|
||
|
}
|
||
|
|
||
|
/* line 126, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-indexbar-pressed {
|
||
|
background: white;
|
||
|
}
|
||
|
|
||
|
/* line 132, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss */
|
||
|
.x-list-item-odd.x-list-item-tpl,
|
||
|
.x-list-item-odd .x-dock-horizontal {
|
||
|
background-color: #f2f2f2;
|
||
|
border-bottom: 1px solid #f2f2f2;
|
||
|
}
|
||
|
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/grid/_Grid.scss */
|
||
|
.x-grid .x-grid-header {
|
||
|
font-weight: normal;
|
||
|
font-size: 18px;
|
||
|
padding: 0px 10px;
|
||
|
border-top-color: #D1D1D1;
|
||
|
border-bottom: 2px solid #0AA9DC;
|
||
|
background: -webkit-linear-gradient(#fefefe, #dddddd);
|
||
|
background: -moz-linear-gradient(#fefefe, #dddddd);
|
||
|
background: -o-linear-gradient(#fefefe, #dddddd);
|
||
|
background: -ms-linear-gradient(#fefefe, #dddddd);
|
||
|
background: linear-gradient(#fefefe, #dddddd);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @member Ext.form.Panel
|
||
|
*/
|
||
|
/* line 7, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/form/_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: 0;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @member Ext.form.FieldSet
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/form/_FieldSet.scss */
|
||
|
.x-form-fieldset-inner {
|
||
|
border-width: 0 !important;
|
||
|
padding: 3px;
|
||
|
}
|
||
|
|
||
|
/* line 10, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/form/_FieldSet.scss */
|
||
|
.x-form-fieldset-title {
|
||
|
font-weight: bold;
|
||
|
font-size: 18px;
|
||
|
padding: 1px 10px;
|
||
|
border-top: 1px solid #F7F3F7;
|
||
|
border-bottom: 2px solid #0AA9DC;
|
||
|
}
|
||
|
|
||
|
/* line 18, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/form/_FieldSet.scss */
|
||
|
.x-form-fieldset-instructions {
|
||
|
font-size: 14px;
|
||
|
padding: 10px 0;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @member Ext.field.Field
|
||
|
*/
|
||
|
/* line 10, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-form .x-field-input {
|
||
|
padding: 8px 3px;
|
||
|
}
|
||
|
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-label-align-top .x-form-label {
|
||
|
line-height: 32px;
|
||
|
}
|
||
|
|
||
|
/* line 21, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-form-label {
|
||
|
color: #292429;
|
||
|
font-size: 20px;
|
||
|
padding: 0 3px;
|
||
|
line-height: 50px;
|
||
|
}
|
||
|
/* line 27, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-form-label span {
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
/* line 32, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-field-input {
|
||
|
padding: 5px 3px 6px 3px;
|
||
|
}
|
||
|
|
||
|
/* line 36, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-field-clearable .x-field-input {
|
||
|
padding-right: 3px;
|
||
|
}
|
||
|
|
||
|
/* line 40, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-field-input .x-reveal-icon {
|
||
|
top: 13px;
|
||
|
right: 8px;
|
||
|
background: url('data:image/png;base64,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
|
||
|
width: 24px;
|
||
|
height: 24px;
|
||
|
}
|
||
|
/* line 47, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-field-input .x-reveal-icon.x-pressing {
|
||
|
background-position: top right;
|
||
|
}
|
||
|
|
||
|
/* line 52, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-field.x-revealed .x-reveal-icon {
|
||
|
background-position: top right;
|
||
|
}
|
||
|
|
||
|
/* line 57, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-field-clearable.x-field-revealable .x-reveal-icon {
|
||
|
right: 36px;
|
||
|
}
|
||
|
|
||
|
/* line 62, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-field-input .x-clear-icon {
|
||
|
top: 13px;
|
||
|
right: 8px;
|
||
|
background: url('data:image/png;base64,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
|
||
|
width: 24px;
|
||
|
height: 24px;
|
||
|
}
|
||
|
/* line 69, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-field-input .x-clear-icon.x-pressing {
|
||
|
background-position: top right;
|
||
|
}
|
||
|
|
||
|
/* line 80, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-input-text,
|
||
|
.x-input-url,
|
||
|
.x-input-email,
|
||
|
.x-input-search,
|
||
|
.x-input-number,
|
||
|
.x-input-password,
|
||
|
.x-spinner-button {
|
||
|
padding: 9px 5px;
|
||
|
border: 1px solid #C7C7C7;
|
||
|
background-color: #ffffff;
|
||
|
-webkit-border-radius: 1px;
|
||
|
-moz-border-radius: 1px;
|
||
|
-ms-border-radius: 1px;
|
||
|
-o-border-radius: 1px;
|
||
|
border-radius: 1px;
|
||
|
}
|
||
|
/* line 86, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-input-text::-webkit-input-placeholder,
|
||
|
.x-input-url::-webkit-input-placeholder,
|
||
|
.x-input-email::-webkit-input-placeholder,
|
||
|
.x-input-search::-webkit-input-placeholder,
|
||
|
.x-input-number::-webkit-input-placeholder,
|
||
|
.x-input-password::-webkit-input-placeholder,
|
||
|
.x-spinner-button::-webkit-input-placeholder {
|
||
|
font-style: italic;
|
||
|
font-weight: 100;
|
||
|
}
|
||
|
|
||
|
/* line 93, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-item-disabled input {
|
||
|
color: #888;
|
||
|
}
|
||
|
/* line 97, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss */
|
||
|
.x-item-disabled .x-form-label {
|
||
|
color: #bbb;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.field.Checkbox
|
||
|
*/
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Checkbox.scss */
|
||
|
.x-field-checkbox .x-field-mask,
|
||
|
.x-field-radio .x-field-mask {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
}
|
||
|
/* line 9, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Checkbox.scss */
|
||
|
.x-field-checkbox .x-field-mask::after,
|
||
|
.x-field-radio .x-field-mask::after {
|
||
|
content: '';
|
||
|
width: 28px;
|
||
|
height: 28px;
|
||
|
position: absolute;
|
||
|
top: 9px;
|
||
|
right: 5px;
|
||
|
-webkit-border-radius: 2px;
|
||
|
-moz-border-radius: 2px;
|
||
|
-ms-border-radius: 2px;
|
||
|
-o-border-radius: 2px;
|
||
|
border-radius: 2px;
|
||
|
background-color: #e6e6e6;
|
||
|
font-family: 'Pictos';
|
||
|
font-size: 1.3em;
|
||
|
text-align: center;
|
||
|
line-height: 1.25em;
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
/* line 27, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Checkbox.scss */
|
||
|
.x-input-checkbox,
|
||
|
.x-input-radio {
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
|
||
|
/* line 31, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Checkbox.scss */
|
||
|
.x-input-checkbox:checked ~ .x-field-mask:after {
|
||
|
background-color: #0099cc;
|
||
|
content: '3';
|
||
|
}
|
||
|
|
||
|
/* line 37, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Checkbox.scss */
|
||
|
.x-item-disabled.x-field-checkbox .x-input-checkbox:checked ~ .x-field-mask:after {
|
||
|
background: -webkit-linear-gradient(#bfd7e3, #85b3c9);
|
||
|
background: -moz-linear-gradient(#bfd7e3, #85b3c9);
|
||
|
background: -o-linear-gradient(#bfd7e3, #85b3c9);
|
||
|
background: -ms-linear-gradient(#bfd7e3, #85b3c9);
|
||
|
background: linear-gradient(#bfd7e3, #85b3c9);
|
||
|
-webkit-box-shadow: inset 0 1px 0 0 #aac5d3;
|
||
|
-moz-box-shadow: inset 0 1px 0 0 #aac5d3;
|
||
|
box-shadow: inset 0 1px 0 0 #aac5d3;
|
||
|
}
|
||
|
|
||
|
/* line 2, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Radio.scss */
|
||
|
.x-field-radio .x-field-mask {
|
||
|
height: 47px;
|
||
|
}
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Radio.scss */
|
||
|
.x-field-radio .x-field-mask::before {
|
||
|
-webkit-border-radius: 35px;
|
||
|
-moz-border-radius: 35px;
|
||
|
-ms-border-radius: 35px;
|
||
|
-o-border-radius: 35px;
|
||
|
border-radius: 35px;
|
||
|
width: 20px;
|
||
|
height: 20px;
|
||
|
top: 16px;
|
||
|
right: 6px;
|
||
|
}
|
||
|
/* line 13, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Radio.scss */
|
||
|
.x-field-radio .x-field-mask::after {
|
||
|
-webkit-border-radius: 35px;
|
||
|
-moz-border-radius: 35px;
|
||
|
-ms-border-radius: 35px;
|
||
|
-o-border-radius: 35px;
|
||
|
border-radius: 35px;
|
||
|
width: 16px;
|
||
|
height: 16px;
|
||
|
top: 18px;
|
||
|
right: 8px;
|
||
|
}
|
||
|
|
||
|
/* line 22, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Radio.scss */
|
||
|
.x-input-radio:checked ~ .x-field-mask::after {
|
||
|
background: -webkit-linear-gradient(#0099cc, #007399);
|
||
|
background: -moz-linear-gradient(#0099cc, #007399);
|
||
|
background: -o-linear-gradient(#0099cc, #007399);
|
||
|
background: -ms-linear-gradient(#0099cc, #007399);
|
||
|
background: linear-gradient(#0099cc, #007399);
|
||
|
-webkit-box-shadow: inset 0 1px 0 0 #55aad5;
|
||
|
-moz-box-shadow: inset 0 1px 0 0 #55aad5;
|
||
|
box-shadow: inset 0 1px 0 0 #55aad5;
|
||
|
font-family: Helvetica;
|
||
|
font-size: 26px;
|
||
|
line-height: 13px;
|
||
|
content: '•';
|
||
|
}
|
||
|
|
||
|
/* line 32, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Radio.scss */
|
||
|
.x-item-disabled.x-field-radio .x-input-radio:checked ~ .x-field-mask:after {
|
||
|
background: -webkit-linear-gradient(#bfd7e3, #85b3c9);
|
||
|
background: -moz-linear-gradient(#bfd7e3, #85b3c9);
|
||
|
background: -o-linear-gradient(#bfd7e3, #85b3c9);
|
||
|
background: -ms-linear-gradient(#bfd7e3, #85b3c9);
|
||
|
background: linear-gradient(#bfd7e3, #85b3c9);
|
||
|
-webkit-box-shadow: inset 0 1px 0 0 #aac5d3;
|
||
|
-moz-box-shadow: inset 0 1px 0 0 #aac5d3;
|
||
|
box-shadow: inset 0 1px 0 0 #aac5d3;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.field.Select
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Select.scss */
|
||
|
.x-form .x-field-select {
|
||
|
padding-bottom: 18px;
|
||
|
}
|
||
|
|
||
|
/* line 9, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Select.scss */
|
||
|
.x-field-select {
|
||
|
padding-left: 5px;
|
||
|
padding-right: 5px;
|
||
|
}
|
||
|
/* line 13, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Select.scss */
|
||
|
.x-field-select .x-component-outer {
|
||
|
display: flex;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
-webkit-box-align: center;
|
||
|
-ms-flex-align: center;
|
||
|
align-items: center;
|
||
|
-webkit-box-direction: horizontal;
|
||
|
-ms-flex-direction: row;
|
||
|
flex-direction: row;
|
||
|
background: -webkit-linear-gradient(#f3f3f3, #e6e6e6);
|
||
|
background: -moz-linear-gradient(#f3f3f3, #e6e6e6);
|
||
|
background: -o-linear-gradient(#f3f3f3, #e6e6e6);
|
||
|
background: -ms-linear-gradient(#f3f3f3, #e6e6e6);
|
||
|
background: linear-gradient(#f3f3f3, #e6e6e6);
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
height: 43px;
|
||
|
padding: 0 3px;
|
||
|
position: relative;
|
||
|
overflow: hidden;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
/* line 27, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Select.scss */
|
||
|
.x-field-select .x-component-outer .x-form-label {
|
||
|
font-size: 15px;
|
||
|
line-height: inherit;
|
||
|
}
|
||
|
/* line 32, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Select.scss */
|
||
|
.x-field-select .x-component-outer .x-field-input {
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1 0 auto;
|
||
|
flex: 1 0 auto;
|
||
|
}
|
||
|
/* line 36, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Select.scss */
|
||
|
.x-field-select .x-component-outer .x-input-el {
|
||
|
background: transparent;
|
||
|
border: 0px;
|
||
|
text-align: right;
|
||
|
padding: 0px;
|
||
|
font-size: 15px;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
|
||
|
/* line 48, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Select.scss */
|
||
|
.x-panel.x-select-overlay > .x-panel-inner {
|
||
|
overflow: hidden;
|
||
|
border: 1px solid #cfcdcf;
|
||
|
}
|
||
|
/* line 53, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Select.scss */
|
||
|
.x-panel.x-select-overlay .x-list {
|
||
|
background: #e3e0e3;
|
||
|
}
|
||
|
/* line 56, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Select.scss */
|
||
|
.x-panel.x-select-overlay .x-list .x-list-item {
|
||
|
border-color: #cfcdcf;
|
||
|
color: #5e5d5e;
|
||
|
}
|
||
|
/* line 61, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Select.scss */
|
||
|
.x-panel.x-select-overlay .x-list .x-item-selected {
|
||
|
-webkit-box-shadow: none;
|
||
|
-moz-box-shadow: none;
|
||
|
box-shadow: none;
|
||
|
background-color: #efebef;
|
||
|
color: #343334;
|
||
|
}
|
||
|
/* line 67, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Select.scss */
|
||
|
.x-panel.x-select-overlay .x-list .x-item-pressed {
|
||
|
background-color: #0099cc;
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
/* line 2, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Spinner.scss */
|
||
|
.x-spinner .x-spinner-button {
|
||
|
margin: 9px 3px;
|
||
|
padding: 0;
|
||
|
width: 30px !important;
|
||
|
line-height: 33px;
|
||
|
height: 36px;
|
||
|
font-weight: bold;
|
||
|
border: none !important;
|
||
|
}
|
||
|
/* line 12, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Spinner.scss */
|
||
|
.x-spinner .x-input-el {
|
||
|
-webkit-text-fill-color: black;
|
||
|
}
|
||
|
/* line 17, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Spinner.scss */
|
||
|
.x-spinner.x-item-disabled .x-input-el {
|
||
|
-webkit-text-fill-color: #B3B3B3;
|
||
|
}
|
||
|
/* line 21, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Spinner.scss */
|
||
|
.x-spinner.x-item-disabled .x-spinner-button {
|
||
|
color: #aaa !important;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.picker.Picker
|
||
|
*/
|
||
|
/* line 7, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/picker/_Picker.scss */
|
||
|
.x-picker .x-picker-inner {
|
||
|
overflow: hidden;
|
||
|
-webkit-background-clip: padding;
|
||
|
-moz-background-clip: padding;
|
||
|
background-clip: padding-box;
|
||
|
}
|
||
|
|
||
|
/* line 12, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/picker/_Picker.scss */
|
||
|
.x-picker-slot {
|
||
|
background-color: #e6e6e6;
|
||
|
}
|
||
|
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/picker/_Picker.scss */
|
||
|
.x-picker-bar {
|
||
|
border-top: 1px solid rgba(0, 153, 204, 0.7);
|
||
|
border-bottom: 1px solid rgba(0, 153, 204, 0.7);
|
||
|
background: rgba(255, 255, 255, 0.3);
|
||
|
height: 2.9em;
|
||
|
}
|
||
|
|
||
|
/* line 24, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/picker/_Picker.scss */
|
||
|
.x-use-titles .x-picker-bar {
|
||
|
margin-top: 1.5em;
|
||
|
}
|
||
|
|
||
|
/* line 29, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/picker/_Picker.scss */
|
||
|
.x-picker-slot-title {
|
||
|
height: 1.5em;
|
||
|
background-image: -webkit-linear-gradient(top, #f7f7f7, #e0e0e0);
|
||
|
background-image: -moz-linear-gradient(top, #f7f7f7, #e0e0e0);
|
||
|
background-image: -o-linear-gradient(top, #f7f7f7, #e0e0e0);
|
||
|
background-image: -ms-linear-gradient(top, #f7f7f7, #e0e0e0);
|
||
|
border-bottom: 1px solid #adadad;
|
||
|
padding: 0.3em 1.02em;
|
||
|
}
|
||
|
/* line 35, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/picker/_Picker.scss */
|
||
|
.x-picker-slot-title > div {
|
||
|
font-weight: normal;
|
||
|
font-size: 0.8em;
|
||
|
}
|
||
|
|
||
|
/* line 42, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/picker/_Picker.scss */
|
||
|
.x-picker-slot .x-dataview-item {
|
||
|
text-align: center;
|
||
|
color: #000;
|
||
|
height: 2.9em;
|
||
|
line-height: 2.9em;
|
||
|
padding: 0 10px;
|
||
|
font-weight: normal !important;
|
||
|
-webkit-box-shadow: none;
|
||
|
-moz-box-shadow: none;
|
||
|
box-shadow: none;
|
||
|
}
|
||
|
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-slider {
|
||
|
height: 3em;
|
||
|
overflow: hidden;
|
||
|
-webkit-border-radius: 5px;
|
||
|
-moz-border-radius: 5px;
|
||
|
-ms-border-radius: 5px;
|
||
|
-o-border-radius: 5px;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
/* line 6, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-slider > * {
|
||
|
top: .25em;
|
||
|
}
|
||
|
/* line 10, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-slider:before {
|
||
|
top: 16px;
|
||
|
margin: .25em 0 0 0;
|
||
|
}
|
||
|
/* line 15, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-slider .x-thumb {
|
||
|
margin-top: .25em;
|
||
|
}
|
||
|
/* line 20, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-slider.x-item-disabled:before {
|
||
|
opacity: .8;
|
||
|
box-shadow: none;
|
||
|
}
|
||
|
/* line 26, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-slider.x-item-disabled .x-thumb:before {
|
||
|
background-color: #e6e6e6;
|
||
|
opacity: .8;
|
||
|
}
|
||
|
/* line 31, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-slider.x-item-disabled .x-thumb:after {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
width: 1em;
|
||
|
height: 1em;
|
||
|
top: 0.5em;
|
||
|
left: 0.5em;
|
||
|
}
|
||
|
/* line 38, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-slider .x-thumb-pressing:after {
|
||
|
background-color: #fff;
|
||
|
border: 0;
|
||
|
-webkit-box-shadow: none;
|
||
|
-moz-box-shadow: none;
|
||
|
box-shadow: none;
|
||
|
}
|
||
|
/* line 43, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-slider .x-thumb-pressing .x-thumb-inner {
|
||
|
background-color: #e6e6e6;
|
||
|
opacity: .6;
|
||
|
width: 3em;
|
||
|
height: 3em;
|
||
|
position: absolute;
|
||
|
top: -.5em;
|
||
|
left: -.5em;
|
||
|
border-radius: 3em;
|
||
|
}
|
||
|
|
||
|
/* line 58, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-toggle .x-thumb:before,
|
||
|
.x-slider-multiple .x-thumb:before {
|
||
|
border: 0;
|
||
|
background: transparent;
|
||
|
background-image: none;
|
||
|
-webkit-box-shadow: none;
|
||
|
-moz-box-shadow: none;
|
||
|
box-shadow: none;
|
||
|
width: 0px;
|
||
|
}
|
||
|
|
||
|
/* line 67, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-thumb {
|
||
|
width: 2em;
|
||
|
height: 2em;
|
||
|
background: transparent none;
|
||
|
border: 0;
|
||
|
}
|
||
|
/* line 73, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-thumb:after {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
width: 2em;
|
||
|
height: 2em;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
background-color: #e6e6e6;
|
||
|
-webkit-border-radius: 1em;
|
||
|
-moz-border-radius: 1em;
|
||
|
-ms-border-radius: 1em;
|
||
|
-o-border-radius: 1em;
|
||
|
border-radius: 1em;
|
||
|
}
|
||
|
/* line 79, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-thumb:before {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
top: 12px;
|
||
|
width: 5000px;
|
||
|
right: 1em;
|
||
|
height: 8px;
|
||
|
background-color: #0099cc;
|
||
|
}
|
||
|
|
||
|
/* line 91, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss */
|
||
|
.x-thumb.x-item-disabled:after {
|
||
|
background: -webkit-linear-gradient(#c0c0c0, #c0c0c0);
|
||
|
background: -moz-linear-gradient(#c0c0c0, #c0c0c0);
|
||
|
background: -o-linear-gradient(#c0c0c0, #c0c0c0);
|
||
|
background: -ms-linear-gradient(#c0c0c0, #c0c0c0);
|
||
|
background: linear-gradient(#c0c0c0, #c0c0c0);
|
||
|
border-color: #919191;
|
||
|
-webkit-box-shadow: inset 0 0 1px white;
|
||
|
-moz-box-shadow: inset 0 0 1px white;
|
||
|
box-shadow: inset 0 0 1px white;
|
||
|
}
|
||
|
|
||
|
/* line 1, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Toggle.scss */
|
||
|
.x-toggle {
|
||
|
height: 2.15em;
|
||
|
-webkit-border-radius: 1.05em;
|
||
|
-moz-border-radius: 1.05em;
|
||
|
-ms-border-radius: 1.05em;
|
||
|
-o-border-radius: 1.05em;
|
||
|
border-radius: 1.05em;
|
||
|
width: 65px;
|
||
|
background-color: #e6e6e6;
|
||
|
}
|
||
|
/* line 7, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Toggle.scss */
|
||
|
.x-toggle:before {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
padding: 0 .2em 0 2em;
|
||
|
font-size: 16px;
|
||
|
line-height: 32px;
|
||
|
}
|
||
|
/* line 16, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Toggle.scss */
|
||
|
.x-toggle.x-item-disabled:before {
|
||
|
opacity: .8;
|
||
|
}
|
||
|
/* line 22, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Toggle.scss */
|
||
|
.x-toggle .x-thumb:after {
|
||
|
background-color: #fff;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
line-height: 1.7em;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
/* line 31, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Toggle.scss */
|
||
|
.x-toggle-on {
|
||
|
background-color: #0099cc;
|
||
|
}
|
||
|
/* line 33, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Toggle.scss */
|
||
|
.x-toggle-on .x-thumb:after {
|
||
|
content: "|";
|
||
|
}
|
||
|
|
||
|
/* line 39, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Toggle.scss */
|
||
|
.x-toggle-off .x-thumb:after {
|
||
|
content: "O";
|
||
|
line-height: 1.9em;
|
||
|
}
|
||
|
|
||
|
/* line 8, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-tab,
|
||
|
.x-menu-application .x-button-tab,
|
||
|
.x-toolbar.x-docked-bottom .x-button,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab {
|
||
|
min-width: 3.3em;
|
||
|
height: 100%;
|
||
|
background-color: transparent;
|
||
|
border: 0;
|
||
|
padding: 0;
|
||
|
-webkit-border-radius: 0;
|
||
|
-moz-border-radius: 0;
|
||
|
-ms-border-radius: 0;
|
||
|
-o-border-radius: 0;
|
||
|
border-radius: 0;
|
||
|
color: #323232;
|
||
|
}
|
||
|
/* line 18, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-landscape .x-tab, .x-bb-keyboard .x-tab, .x-landscape
|
||
|
.x-menu-application .x-button-tab, .x-bb-keyboard
|
||
|
.x-menu-application .x-button-tab, .x-landscape
|
||
|
.x-toolbar.x-docked-bottom .x-button, .x-bb-keyboard
|
||
|
.x-toolbar.x-docked-bottom .x-button, .x-landscape
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab, .x-bb-keyboard
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab {
|
||
|
min-width: 60px;
|
||
|
}
|
||
|
/* line 22, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-landscape .x-tab .x-button-icon:before, .x-bb-keyboard .x-tab .x-button-icon:before, .x-landscape
|
||
|
.x-menu-application .x-button-tab .x-button-icon:before, .x-bb-keyboard
|
||
|
.x-menu-application .x-button-tab .x-button-icon:before, .x-landscape
|
||
|
.x-toolbar.x-docked-bottom .x-button .x-button-icon:before, .x-bb-keyboard
|
||
|
.x-toolbar.x-docked-bottom .x-button .x-button-icon:before, .x-landscape
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab .x-button-icon:before, .x-bb-keyboard
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab .x-button-icon:before {
|
||
|
line-height: 2em;
|
||
|
font-size: 20px;
|
||
|
}
|
||
|
/* line 29, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-tab.bb-default.x-button-pressing .x-button-icon,
|
||
|
.x-menu-application .x-button-tab.bb-default.x-button-pressing .x-button-icon,
|
||
|
.x-toolbar.x-docked-bottom .x-button.bb-default.x-button-pressing .x-button-icon,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab.bb-default.x-button-pressing .x-button-icon {
|
||
|
-webkit-transform: scale(1.1);
|
||
|
transform: scale(1.1);
|
||
|
}
|
||
|
/* line 32, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-tab.bb-default.x-button-pressing .x-button-icon:before,
|
||
|
.x-menu-application .x-button-tab.bb-default.x-button-pressing .x-button-icon:before,
|
||
|
.x-toolbar.x-docked-bottom .x-button.bb-default.x-button-pressing .x-button-icon:before,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab.bb-default.x-button-pressing .x-button-icon:before {
|
||
|
background-color: #087099;
|
||
|
}
|
||
|
/* line 38, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-tab.bb-default .x-button-icon,
|
||
|
.x-menu-application .x-button-tab.bb-default .x-button-icon,
|
||
|
.x-toolbar.x-docked-bottom .x-button.bb-default .x-button-icon,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab.bb-default .x-button-icon {
|
||
|
top: -20px;
|
||
|
-webkit-transform: inherit;
|
||
|
transform: inherit;
|
||
|
-webkit-transition: -webkit-transform 0.2s;
|
||
|
transition: transform 0.2s;
|
||
|
}
|
||
|
/* line 45, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-tab.bb-default .x-button-icon:after,
|
||
|
.x-menu-application .x-button-tab.bb-default .x-button-icon:after,
|
||
|
.x-toolbar.x-docked-bottom .x-button.bb-default .x-button-icon:after,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab.bb-default .x-button-icon:after {
|
||
|
top: 3px;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
/* line 48, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-bb-keyboard .x-tab.bb-default .x-button-icon:after, .x-bb-keyboard
|
||
|
.x-menu-application .x-button-tab.bb-default .x-button-icon:after, .x-bb-keyboard
|
||
|
.x-toolbar.x-docked-bottom .x-button.bb-default .x-button-icon:after, .x-bb-keyboard
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab.bb-default .x-button-icon:after {
|
||
|
top: 4px;
|
||
|
}
|
||
|
/* line 53, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-tab.bb-default .x-button-icon:before,
|
||
|
.x-menu-application .x-button-tab.bb-default .x-button-icon:before,
|
||
|
.x-toolbar.x-docked-bottom .x-button.bb-default .x-button-icon:before,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab.bb-default .x-button-icon:before {
|
||
|
background-color: #0092cc;
|
||
|
-webkit-transition: background-color 0.2s;
|
||
|
width: 52px;
|
||
|
height: 52px;
|
||
|
display: block;
|
||
|
border-radius: 100%;
|
||
|
text-align: center;
|
||
|
position: absolute;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
/* line 58, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-bb-keyboard .x-tab.bb-default .x-button-icon:before, .x-bb-keyboard
|
||
|
.x-menu-application .x-button-tab.bb-default .x-button-icon:before, .x-bb-keyboard
|
||
|
.x-toolbar.x-docked-bottom .x-button.bb-default .x-button-icon:before, .x-bb-keyboard
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab.bb-default .x-button-icon:before {
|
||
|
left: 4px;
|
||
|
}
|
||
|
/* line 69, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-tab .x-button-icon:before,
|
||
|
.x-menu-application .x-button-tab .x-button-icon:before,
|
||
|
.x-toolbar.x-docked-bottom .x-button .x-button-icon:before,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab .x-button-icon:before {
|
||
|
line-height: 1.7em;
|
||
|
}
|
||
|
/* line 73, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-tab .x-button-icon,
|
||
|
.x-menu-application .x-button-tab .x-button-icon,
|
||
|
.x-toolbar.x-docked-bottom .x-button .x-button-icon,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab .x-button-icon {
|
||
|
margin: 0 auto !important;
|
||
|
display: block !important;
|
||
|
width: 100%;
|
||
|
height: 42px;
|
||
|
background-size: 32px;
|
||
|
background-position: center;
|
||
|
-webkit-box-flex: 1;
|
||
|
-moz-box-flex: 1;
|
||
|
-ms-box-flex: 1;
|
||
|
box-flex: 1;
|
||
|
}
|
||
|
/* line 82, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-tab .x-button-icon:before,
|
||
|
.x-menu-application .x-button-tab .x-button-icon:before,
|
||
|
.x-toolbar.x-docked-bottom .x-button .x-button-icon:before,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab .x-button-icon:before {
|
||
|
font-size: 27px;
|
||
|
}
|
||
|
/* line 87, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-tab:before,
|
||
|
.x-menu-application .x-button-tab:before,
|
||
|
.x-toolbar.x-docked-bottom .x-button:before,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab:before {
|
||
|
-webkit-border-radius: 0;
|
||
|
-moz-border-radius: 0;
|
||
|
-ms-border-radius: 0;
|
||
|
-o-border-radius: 0;
|
||
|
border-radius: 0;
|
||
|
}
|
||
|
/* line 91, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-tab .x-button-icon.x-hidden,
|
||
|
.x-menu-application .x-button-tab .x-button-icon.x-hidden,
|
||
|
.x-toolbar.x-docked-bottom .x-button .x-button-icon.x-hidden,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab .x-button-icon.x-hidden {
|
||
|
display: block !important;
|
||
|
}
|
||
|
/* line 96, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-landscape .x-tab .x-button-icon, .x-landscape
|
||
|
.x-menu-application .x-button-tab .x-button-icon, .x-landscape
|
||
|
.x-toolbar.x-docked-bottom .x-button .x-button-icon, .x-landscape
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab .x-button-icon {
|
||
|
margin-bottom: 0 !important;
|
||
|
}
|
||
|
/* line 99, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-landscape .x-tab .x-button-icon:before, .x-landscape
|
||
|
.x-menu-application .x-button-tab .x-button-icon:before, .x-landscape
|
||
|
.x-toolbar.x-docked-bottom .x-button .x-button-icon:before, .x-landscape
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab .x-button-icon:before {
|
||
|
font-size: 20px;
|
||
|
}
|
||
|
|
||
|
/* line 106, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-button.tabmenu {
|
||
|
width: 61px;
|
||
|
margin-left: 0;
|
||
|
}
|
||
|
/* line 110, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-button.tabmenu .x-button-icon:after {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
background-size: 32px !important;
|
||
|
background-repeat: no-repeat;
|
||
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAAAsTAAALEwEAmpwYAAA5omlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMwMTQgNzkuMTU2Nzk3LCAyMDE0LzA4LzIwLTA5OjUzOjAyICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgICAgICAgICB4bWxuczpleGlmPSJodHRwOi8vbnMuYWRvYmUuY29tL2V4aWYvMS4wLyI+CiAgICAgICAgIDx4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+eG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEY2MkYxMTU2NTc0MjBCNDwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06RG9jdW1lbnRJRD54bXAuZGlkOjNCMjk4QjJBOTJGQTExRTM5NURGQzdDNUFBODFBNDk0PC94bXBNTTpEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOjQzY2QyNzgwLTYyMzktNGFiZi1iODY5LThiMGEzNjQzMWExMTwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDowMjkzOTNEMzE1MjA2ODExODIyQUQwNEY0MzYwRUM0Njwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEY2MkYxMTU2NTc0MjBCNDwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPHhtcE1NOkhpc3Rvcnk+CiAgICAgICAgICAgIDxyZGY6U2VxPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjQzY2QyNzgwLTYyMzktNGFiZi1iODY5LThiMGEzNjQzMWExMTwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNS0wNi0wMVQxMDoxODozOC0wNTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICA8L3JkZjpTZXE+CiAgICAgICAgIDwveG1wTU06SGlzdG9yeT4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoTWFjaW50b3NoKTwveG1wOkNyZWF0b3JUb29sPgogICAgICAgICA8eG1wOkNyZWF0ZURhdGU+MjAxNC0wNy0xNlQwODoyMToxNi0wNTowMDwveG1wOkNyZWF0ZURhdGU+CiAgICAgICAgIDx4bXA6TW9kaWZ5RGF0ZT4yMDE1LTA2LTAxVDEwOjE4OjM4LTA1OjAwPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNS0wNi0wMVQxMDoxODozOC0wNTowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9wbmc8L2RjOmZvcm1hdD4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WVJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDxleGlmOkNvbG9yU3BhY2U+NjU1MzU8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjk2PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjk2PC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
|
||
|
}
|
||
|
|
||
|
/* line 128, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-menu-application .x-tab,
|
||
|
.x-menu-application .x-button,
|
||
|
.x-menu-application .x-button-tab,
|
||
|
.x-toolbar.x-docked-bottom .x-tab,
|
||
|
.x-toolbar.x-docked-bottom .x-button,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab,
|
||
|
.x-tabbar .x-tab,
|
||
|
.x-tabbar .x-button,
|
||
|
.x-tabbar .x-button-tab {
|
||
|
-webkit-box-orient: vertical;
|
||
|
-ms-flex-direction: column;
|
||
|
flex-direction: column;
|
||
|
border-color: #1e1e1e;
|
||
|
background: none transparent;
|
||
|
-webkit-box-shadow: none;
|
||
|
-moz-box-shadow: none;
|
||
|
box-shadow: none;
|
||
|
border-width: 0 !important;
|
||
|
overflow: visible;
|
||
|
}
|
||
|
/* line 136, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-menu-application .x-tab .x-button-icon,
|
||
|
.x-menu-application .x-button .x-button-icon,
|
||
|
.x-menu-application .x-button-tab .x-button-icon,
|
||
|
.x-toolbar.x-docked-bottom .x-tab .x-button-icon,
|
||
|
.x-toolbar.x-docked-bottom .x-button .x-button-icon,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab .x-button-icon,
|
||
|
.x-tabbar .x-tab .x-button-icon,
|
||
|
.x-tabbar .x-button .x-button-icon,
|
||
|
.x-tabbar .x-button-tab .x-button-icon {
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
/* line 140, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-menu-application .x-tab .x-button-label, .x-menu-application .x-tab .x-badge,
|
||
|
.x-menu-application .x-button .x-button-label,
|
||
|
.x-menu-application .x-button .x-badge,
|
||
|
.x-menu-application .x-button-tab .x-button-label,
|
||
|
.x-menu-application .x-button-tab .x-badge,
|
||
|
.x-toolbar.x-docked-bottom .x-tab .x-button-label,
|
||
|
.x-toolbar.x-docked-bottom .x-tab .x-badge,
|
||
|
.x-toolbar.x-docked-bottom .x-button .x-button-label,
|
||
|
.x-toolbar.x-docked-bottom .x-button .x-badge,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab .x-button-label,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab .x-badge,
|
||
|
.x-tabbar .x-tab .x-button-label,
|
||
|
.x-tabbar .x-tab .x-badge,
|
||
|
.x-tabbar .x-button .x-button-label,
|
||
|
.x-tabbar .x-button .x-badge,
|
||
|
.x-tabbar .x-button-tab .x-button-label,
|
||
|
.x-tabbar .x-button-tab .x-badge {
|
||
|
margin: 1px 0;
|
||
|
font-size: 11px;
|
||
|
line-height: 1.5em;
|
||
|
padding-bottom: .5em;
|
||
|
}
|
||
|
/* line 147, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-menu-application .x-tab .x-badge,
|
||
|
.x-menu-application .x-button .x-badge,
|
||
|
.x-menu-application .x-button-tab .x-badge,
|
||
|
.x-toolbar.x-docked-bottom .x-tab .x-badge,
|
||
|
.x-toolbar.x-docked-bottom .x-button .x-badge,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab .x-badge,
|
||
|
.x-tabbar .x-tab .x-badge,
|
||
|
.x-tabbar .x-button .x-badge,
|
||
|
.x-tabbar .x-button-tab .x-badge {
|
||
|
margin: 3px;
|
||
|
}
|
||
|
/* line 154, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-menu-application .x-tab-active,
|
||
|
.x-menu-application .x-button.x-button-pressing,
|
||
|
.x-menu-application .x-button-tab.x-button-pressing,
|
||
|
.x-toolbar.x-docked-bottom .x-tab-active,
|
||
|
.x-toolbar.x-docked-bottom .x-button.x-button-pressing,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab.x-button-pressing,
|
||
|
.x-tabbar .x-tab-active,
|
||
|
.x-tabbar .x-button.x-button-pressing,
|
||
|
.x-tabbar .x-button-tab.x-button-pressing {
|
||
|
background-color: #e6e6e6;
|
||
|
}
|
||
|
/* line 159, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss */
|
||
|
.x-menu-application .x-button.bb-default.x-button-pressing,
|
||
|
.x-menu-application .x-button-tab.bb-default.x-button-pressing,
|
||
|
.x-toolbar.x-docked-bottom .x-button.bb-default.x-button-pressing,
|
||
|
.x-toolbar.x-docked-bottom .x-button-tab.bb-default.x-button-pressing,
|
||
|
.x-tabbar .x-button.bb-default.x-button-pressing,
|
||
|
.x-tabbar .x-button-tab.bb-default.x-button-pressing {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @class Ext.plugin.PullRefresh
|
||
|
*/
|
||
|
/* line 5, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/plugin/_PullRefresh.scss */
|
||
|
.x-list-pullrefresh-arrow {
|
||
|
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);
|
||
|
-moz-transform: rotate(0deg);
|
||
|
-ms-transform: rotate(0deg);
|
||
|
-o-transform: rotate(0deg);
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
|
||
|
/* line 13, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/plugin/_PullRefresh.scss */
|
||
|
.x-android-2 .x-list-pullrefresh-arrow {
|
||
|
-webkit-transition-property: none;
|
||
|
-webkit-transition-duration: 0;
|
||
|
}
|
||
|
|
||
|
/* line 18, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/plugin/_PullRefresh.scss */
|
||
|
.x-list-pullrefresh-release .x-list-pullrefresh-arrow {
|
||
|
-webkit-transform: rotate(-180deg);
|
||
|
-moz-transform: rotate(-180deg);
|
||
|
-ms-transform: rotate(-180deg);
|
||
|
-o-transform: rotate(-180deg);
|
||
|
transform: rotate(-180deg);
|
||
|
}
|
||
|
|
||
|
/* line 22, /home/teamcity/buildAgent/work/856564e37705b5b7/touch/resources/themes/stylesheets/sencha-touch/bb103/src/plugin/_PullRefresh.scss */
|
||
|
.x-list-pullrefresh-message {
|
||
|
margin-bottom: 0.1em;
|
||
|
}
|