+
+
+
diff --git a/build/dark/development/Rambox/resources/Icon.ico b/build/dark/development/Rambox/resources/Icon.ico
new file mode 100644
index 00000000..00c0c927
Binary files /dev/null and b/build/dark/development/Rambox/resources/Icon.ico differ
diff --git a/build/dark/development/Rambox/resources/Icon.png b/build/dark/development/Rambox/resources/Icon.png
new file mode 100644
index 00000000..a6fb01bf
Binary files /dev/null and b/build/dark/development/Rambox/resources/Icon.png differ
diff --git a/build/dark/development/Rambox/resources/IconTray.png b/build/dark/development/Rambox/resources/IconTray.png
new file mode 100644
index 00000000..0a9deb8c
Binary files /dev/null and b/build/dark/development/Rambox/resources/IconTray.png differ
diff --git a/build/dark/development/Rambox/resources/IconTray@2x.png b/build/dark/development/Rambox/resources/IconTray@2x.png
new file mode 100644
index 00000000..82f34a98
Binary files /dev/null and b/build/dark/development/Rambox/resources/IconTray@2x.png differ
diff --git a/build/dark/development/Rambox/resources/IconTray@4x.png b/build/dark/development/Rambox/resources/IconTray@4x.png
new file mode 100644
index 00000000..94cd4215
Binary files /dev/null and b/build/dark/development/Rambox/resources/IconTray@4x.png differ
diff --git a/build/dark/development/Rambox/resources/IconTrayUnread.ico b/build/dark/development/Rambox/resources/IconTrayUnread.ico
new file mode 100644
index 00000000..dac31baa
Binary files /dev/null and b/build/dark/development/Rambox/resources/IconTrayUnread.ico differ
diff --git a/build/dark/development/Rambox/resources/IconTrayUnread.png b/build/dark/development/Rambox/resources/IconTrayUnread.png
new file mode 100644
index 00000000..0d223227
Binary files /dev/null and b/build/dark/development/Rambox/resources/IconTrayUnread.png differ
diff --git a/build/dark/development/Rambox/resources/IconTrayUnread@2x.png b/build/dark/development/Rambox/resources/IconTrayUnread@2x.png
new file mode 100644
index 00000000..2f8cec56
Binary files /dev/null and b/build/dark/development/Rambox/resources/IconTrayUnread@2x.png differ
diff --git a/build/dark/development/Rambox/resources/IconTrayUnread@4x.png b/build/dark/development/Rambox/resources/IconTrayUnread@4x.png
new file mode 100644
index 00000000..ba6c6aab
Binary files /dev/null and b/build/dark/development/Rambox/resources/IconTrayUnread@4x.png differ
diff --git a/build/dark/development/Rambox/resources/Rambox-all.css b/build/dark/development/Rambox/resources/Rambox-all.css
new file mode 100644
index 00000000..f5f245d6
--- /dev/null
+++ b/build/dark/development/Rambox/resources/Rambox-all.css
@@ -0,0 +1,23050 @@
+/* ======================== ETC ======================== */
+/* including package ext-theme-base */
+/**
+ * Creates a background gradient.
+ *
+ * Example usage:
+ * .foo {
+ * @include background-gradient(#808080, matte, left);
+ * }
+ *
+ * @param {Color} $bg-color The background color of the gradient
+ * @param {String/List} [$type=$base-gradient] The type of gradient to be used. Can either
+ * be a String which is a predefined gradient name, or it can can be a list of color stops.
+ * If null is passed, this mixin will still set the `background-color` to $bg-color.
+ * The available predefined gradient names are:
+ *
+ * * bevel
+ * * glossy
+ * * recessed
+ * * matte
+ * * matte-reverse
+ * * panel-header
+ * * tabbar
+ * * tab
+ * * tab-active
+ * * tab-over
+ * * tab-disabled
+ * * grid-header
+ * * grid-header-over
+ * * grid-row-over
+ * * grid-cell-special
+ * * glossy-button
+ * * glossy-button-over
+ * * glossy-button-pressed
+ *
+ * Each of these gradient names corresponds to a function named linear-gradient[name].
+ * Themes can override these functions to customize the color stops that they return.
+ * For example, to override the glossy-button gradient function add a function named
+ * "linear-gradient-glossy-button" to a file named "sass/etc/mixins/background-gradient.scss"
+ * in your theme. The function should return the result of calling the Compass linear-gradient
+ * function with the desired direction and color-stop information for the gradient. For example:
+ *
+ * @function linear-gradient-glossy-button($direction, $bg-color) {
+ * @return linear-gradient($direction, color_stops(
+ * mix(#fff, $bg-color, 10%),
+ * $bg-color 50%,
+ * mix(#000, $bg-color, 5%) 51%,
+ * $bg-color
+ * ));
+ * }
+ *
+ * @param {String} [$direction=top] The direction of the gradient. Can either be
+ * `top` or `left`.
+ *
+ * @member Global_CSS
+ */
+/*
+ * Method which inserts a full background-image property for a theme image.
+ * It checks if the file exists and if it doesn't, it'll throw an error.
+ * By default it will not include the background-image property if it is not found,
+ * but this can be changed by changing the default value of $include-missing-images to
+ * be true.
+ */
+/**
+ * Includes a google webfont for use in your theme.
+ * @param {string} $font-name The name of the font. If the font name contains spaces
+ * use "+" instead of space.
+ * @param {string} [$font-weights=400] Comma-separated list of font weights to include.
+ *
+ * Example usage:
+ *
+ * @include google-webfont(
+ * $font-name: Exo,
+ * $font-weights: 200 300 400
+ * );
+ *
+ * Outputs:
+ *
+ * @import url(http://fonts.googleapis.com/css?family=Exo:200,300,400);
+ *
+ * @member Global_CSS
+ */
+/**
+ * adds a css outline to an element with compatibility for IE8/outline-offset
+ * NOTE: the element receiving the outline must be positioned (either relative or absolute)
+ * in order for the outline to work in IE8
+ *
+ * @param {number} [$width=1px]
+ * The width of the outline
+ *
+ * @param {string} [$style=solid]
+ * The style of the outline
+ *
+ * @param {color} [$color=#000]
+ * The color of the outline
+ *
+ * @param {number} [$offset=0]
+ * The offset of the outline
+ *
+ * @param {number/list} [$border-width=0]
+ * The border-width of the element receiving the outline.
+ * Required in order for outline-offset to work in IE8
+ */
+/* including package ext-theme-neutral */
+/* including package ext-theme-neptune */
+/* including package ext-theme-crisp */
+/* including package rambox-dark-theme */
+@import url(../resources/fonts/font-awesome/css/font-awesome.min.css);
+@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:400,700,600);
+@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,700italic,700,500italic,500,400italic);
+/* Main component wrapper */
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+body {
+ overflow: hidden; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.component {
+ position: absolute;
+ z-index: 1;
+ width: 200px;
+ height: 200px;
+ margin: -100px 0 0 -100px;
+ top: 50%;
+ left: 50%; }
+
+/* Actual buttons (laid over shapes) */
+/* line 18, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.button {
+ font-weight: bold;
+ position: absolute;
+ bottom: 4px;
+ top: 50%;
+ left: 50%;
+ width: 200px;
+ height: 200px;
+ margin: -100px 0 0 -100px;
+ padding: 0;
+ text-align: center;
+ color: #00a7e7;
+ border: none;
+ background: none;
+ -webkit-transition: opacity 0.3s;
+ transition: opacity 0.3s;
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
+
+/* line 38, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.button:hover,
+.button:focus {
+ outline: none;
+ color: #048abd; }
+
+/* line 43, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.button--listen {
+ pointer-events: none; }
+
+/* line 47, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.button--close {
+ z-index: 10;
+ top: 0px;
+ right: 0px;
+ left: auto;
+ width: 40px;
+ height: 40px;
+ padding: 10px;
+ color: #fff; }
+
+/* line 59, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.button--close:hover,
+.button--close:focus {
+ color: #ddd; }
+
+/* line 63, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.button--hidden {
+ pointer-events: none;
+ opacity: 0; }
+
+/* Inner content of the start/*/
+/* line 71, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.button__content {
+ position: absolute;
+ opacity: 0;
+ -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
+ transition: transform 0.4s, opacity 0.4s; }
+
+/* line 78, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.button__content--listen {
+ font-size: 1.75em;
+ line-height: 64px;
+ bottom: 0;
+ left: 50%;
+ width: 60px;
+ height: 60px;
+ margin: 0 0 0 -30px;
+ border-radius: 50%;
+ -webkit-transform: translate3d(0, 25px, 0);
+ transform: translate3d(0, 25px, 0);
+ -webkit-transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
+ transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1); }
+
+/* line 94, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.button__content--listen::before,
+.button__content--listen::after {
+ content: '';
+ position: absolute;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ pointer-events: none;
+ opacity: 0;
+ border: 1px solid rgba(255, 255, 255, 0.2);
+ border-radius: 50%; }
+
+/* line 107, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.button--animate .button__content--listen::before,
+.button--animate .button__content--listen::after {
+ -webkit-animation: anim-ripple 1.2s ease-out infinite forwards;
+ animation: anim-ripple 1.2s ease-out infinite forwards; }
+
+/* line 112, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.button--animate .button__content--listen::after {
+ -webkit-animation-delay: 0.6s;
+ animation-delay: 0.6s; }
+
+@-webkit-keyframes anim-ripple {
+ /* line 118, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+ 0% {
+ opacity: 0;
+ -webkit-transform: scale3d(3, 3, 1);
+ transform: scale3d(3, 3, 1); }
+
+ /* line 123, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+ 50% {
+ opacity: 1; }
+
+ /* line 126, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+ 100% {
+ opacity: 0;
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1); } }
+
+@keyframes anim-ripple {
+ /* line 134, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+ 0% {
+ opacity: 0;
+ -webkit-transform: scale3d(3, 3, 1);
+ transform: scale3d(3, 3, 1); }
+
+ /* line 139, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+ 50% {
+ opacity: 1; }
+
+ /* line 142, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+ 100% {
+ opacity: 0;
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1); } }
+
+/* line 149, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.notes {
+ position: absolute;
+ z-index: -1;
+ bottom: 0;
+ left: 50%;
+ width: 200px;
+ height: 100px;
+ margin: 0 0 0 -100px; }
+
+/* line 159, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.note {
+ font-size: 2.8em;
+ position: absolute;
+ left: 50%;
+ width: 1em;
+ margin: 0 0 0 -0.5em;
+ opacity: 0;
+ color: rgba(255, 255, 255, 0.75); }
+
+/* line 169, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.note:nth-child(odd) {
+ color: rgba(0, 0, 0, 0.1); }
+
+/* line 173, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.note:nth-child(4n) {
+ font-size: 2em; }
+
+/* line 177, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.note:nth-child(6n) {
+ color: rgba(255, 255, 255, 0.3); }
+
+/* ICONS */
+@font-face {
+ font-family: 'icomoon';
+ src: url("../resources/fonts/icomoon/icomoon.eot?4djz1y");
+ src: url("../resources/fonts/icomoon/icomoon.eot?4djz1y#iefix") format("embedded-opentype"), url("../resources/fonts/icomoon/icomoon.ttf?4djz1y") format("truetype"), url("../resources/fonts/icomoon/icomoon.woff?4djz1y") format("woff"), url("../resources/fonts/icomoon/icomoon.svg?4djz1y#icomoon") format("svg");
+ font-weight: normal;
+ font-style: normal; }
+
+/* line 193, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.icon {
+ font-family: 'icomoon';
+ speak: none;
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale; }
+
+/* line 206, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.icon--microphone:before {
+ content: "\ea95"; }
+
+/* line 209, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.icon--cross:before {
+ content: "\e90c"; }
+
+/* line 212, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.icon--note1:before {
+ content: "\ea83"; }
+
+/* line 215, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.icon--note2:before {
+ content: "\eaad"; }
+
+/* line 218, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.icon--note3:before {
+ content: "\eac5"; }
+
+/* line 221, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.icon--note4:before {
+ content: "\ea93"; }
+
+/* line 224, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.icon--note5:before {
+ content: "\ea95"; }
+
+/* line 227, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/_loadscreen.scss */
+.icon--note6:before {
+ content: "\ea96"; }
+
+/* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+body {
+ margin: 0;
+ background-color: #162938; }
+
+@-webkit-keyframes uil-ring-anim {
+ /* line 33, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 0% {
+ -ms-transform: rotate(0deg);
+ -moz-transform: rotate(0deg);
+ -webkit-transform: rotate(0deg);
+ -o-transform: rotate(0deg);
+ transform: rotate(0deg); }
+
+ /* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 100% {
+ -ms-transform: rotate(360deg);
+ -moz-transform: rotate(360deg);
+ -webkit-transform: rotate(360deg);
+ -o-transform: rotate(360deg);
+ transform: rotate(360deg); } }
+
+@-webkit-keyframes uil-ring-anim {
+ /* line 49, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 0% {
+ -ms-transform: rotate(0deg);
+ -moz-transform: rotate(0deg);
+ -webkit-transform: rotate(0deg);
+ -o-transform: rotate(0deg);
+ transform: rotate(0deg); }
+
+ /* line 56, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 100% {
+ -ms-transform: rotate(360deg);
+ -moz-transform: rotate(360deg);
+ -webkit-transform: rotate(360deg);
+ -o-transform: rotate(360deg);
+ transform: rotate(360deg); } }
+
+@-moz-keyframes uil-ring-anim {
+ /* line 65, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 0% {
+ -ms-transform: rotate(0deg);
+ -moz-transform: rotate(0deg);
+ -webkit-transform: rotate(0deg);
+ -o-transform: rotate(0deg);
+ transform: rotate(0deg); }
+
+ /* line 72, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 100% {
+ -ms-transform: rotate(360deg);
+ -moz-transform: rotate(360deg);
+ -webkit-transform: rotate(360deg);
+ -o-transform: rotate(360deg);
+ transform: rotate(360deg); } }
+
+@-ms-keyframes uil-ring-anim {
+ /* line 81, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 0% {
+ -ms-transform: rotate(0deg);
+ -moz-transform: rotate(0deg);
+ -webkit-transform: rotate(0deg);
+ -o-transform: rotate(0deg);
+ transform: rotate(0deg); }
+
+ /* line 88, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 100% {
+ -ms-transform: rotate(360deg);
+ -moz-transform: rotate(360deg);
+ -webkit-transform: rotate(360deg);
+ -o-transform: rotate(360deg);
+ transform: rotate(360deg); } }
+
+@-moz-keyframes uil-ring-anim {
+ /* line 97, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 0% {
+ -ms-transform: rotate(0deg);
+ -moz-transform: rotate(0deg);
+ -webkit-transform: rotate(0deg);
+ -o-transform: rotate(0deg);
+ transform: rotate(0deg); }
+
+ /* line 104, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 100% {
+ -ms-transform: rotate(360deg);
+ -moz-transform: rotate(360deg);
+ -webkit-transform: rotate(360deg);
+ -o-transform: rotate(360deg);
+ transform: rotate(360deg); } }
+
+@-webkit-keyframes uil-ring-anim {
+ /* line 113, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 0% {
+ -ms-transform: rotate(0deg);
+ -moz-transform: rotate(0deg);
+ -webkit-transform: rotate(0deg);
+ -o-transform: rotate(0deg);
+ transform: rotate(0deg); }
+
+ /* line 120, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 100% {
+ -ms-transform: rotate(360deg);
+ -moz-transform: rotate(360deg);
+ -webkit-transform: rotate(360deg);
+ -o-transform: rotate(360deg);
+ transform: rotate(360deg); } }
+
+@-o-keyframes uil-ring-anim {
+ /* line 129, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 0% {
+ -ms-transform: rotate(0deg);
+ -moz-transform: rotate(0deg);
+ -webkit-transform: rotate(0deg);
+ -o-transform: rotate(0deg);
+ transform: rotate(0deg); }
+
+ /* line 136, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 100% {
+ -ms-transform: rotate(360deg);
+ -moz-transform: rotate(360deg);
+ -webkit-transform: rotate(360deg);
+ -o-transform: rotate(360deg);
+ transform: rotate(360deg); } }
+
+@keyframes uil-ring-anim {
+ /* line 145, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 0% {
+ -ms-transform: rotate(0deg);
+ -moz-transform: rotate(0deg);
+ -webkit-transform: rotate(0deg);
+ -o-transform: rotate(0deg);
+ transform: rotate(0deg); }
+
+ /* line 152, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ 100% {
+ -ms-transform: rotate(360deg);
+ -moz-transform: rotate(360deg);
+ -webkit-transform: rotate(360deg);
+ -o-transform: rotate(360deg);
+ transform: rotate(360deg); } }
+
+/* line 160, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.uil-ring-css {
+ background: url("../resources/Icon.png") no-repeat center center;
+ background-size: 160px 160px;
+ position: absolute;
+ width: 200px;
+ height: 200px;
+ top: 50%;
+ left: 50%;
+ margin-left: -100px;
+ margin-top: -100px; }
+
+/* line 171, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.uil-ring-css > div {
+ position: absolute;
+ display: block;
+ width: 160px;
+ height: 160px;
+ top: 20px;
+ left: 20px;
+ border-radius: 80px;
+ box-shadow: 0 6px 0 0 #07a6cb;
+ -ms-animation: uil-ring-anim 1s linear infinite;
+ -moz-animation: uil-ring-anim 1s linear infinite;
+ -webkit-animation: uil-ring-anim 1s linear infinite;
+ -o-animation: uil-ring-anim 1s linear infinite;
+ animation: uil-ring-anim 1s linear infinite; }
+
+/* line 188, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.x-badge {
+ position: relative;
+ overflow: visible; }
+
+/* line 193, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.x-badge[data-badge-text]:after {
+ content: attr(data-badge-text);
+ position: absolute;
+ font-size: 11px;
+ top: -5px;
+ right: -5px;
+ z-index: 100;
+ width: auto;
+ font-weight: bold;
+ color: white;
+ text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
+ -webkit-border-radius: 15px;
+ border-radius: 15px;
+ padding: 0 6px;
+ background-image: none;
+ background-color: #C00;
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(3%, #e60000), color-stop(100%, #b30000));
+ background-image: -webkit-linear-gradient(top, #ff1a1a, #e60000 3%, #b30000);
+ background-image: linear-gradient(top, #ff1a1a, #e60000 3%, #b30000);
+ -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 0.1em 0.1em;
+ box-shadow: rgba(0, 0, 0, 0.3) 0 0.1em 0.1em; }
+
+/* line 216, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.x-badge.green-badge[data-badge-text]:after {
+ background-color: #0C0;
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1aff1a), color-stop(3%, #00e600), color-stop(100%, #00b300));
+ background-image: -webkit-linear-gradient(top, #1aff1a, #00e600 3%, #00b300);
+ background-image: linear-gradient(top, #1aff1a, #00e600 3%, #00b300); }
+
+/* line 223, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.x-badge.blue-badge[data-badge-text]:after {
+ background-color: #00C;
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1a1aff), color-stop(3%, #0000e6), color-stop(100%, #0000b3));
+ background-image: -webkit-linear-gradient(top, #1a1aff, #0000e6 3%, #0000b3);
+ background-image: linear-gradient(top, #1a1aff, #0000e6 3%, #0000b3); }
+
+/* Additional classes needed for tab panels */
+/* line 231, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.allow-overflow .x-box-layout-ct, .allow-overflow .x-box-inner, .allow-overflow .x-box-item {
+ overflow: visible; }
+
+/* line 235, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.x-tab-closable.x-badge[data-badge-text]:after {
+ right: 16px; }
+
+/* line 240, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.x-action-col-glyph {
+ font-size: 16px;
+ line-height: 16px;
+ color: #CFCFCF;
+ width: 16px;
+ margin: 0 5px; }
+
+/* line 241, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.x-action-col-glyph:hover {
+ color: #162938; }
+
+/* line 242, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.x-grid-item-over .x-hidden-display, .x-grid-item-selected .x-hidden-display {
+ display: inline-block !important; }
+
+/* line 243, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.x-grid-cell-inner {
+ height: 44px;
+ line-height: 32px !important; }
+ /* line 246, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ .x-grid-cell-inner.x-grid-cell-inner-action-col {
+ line-height: 44px !important; }
+
+/* line 250, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.x-tab-icon-el-default {
+ background-size: 24px; }
+
+/* line 251, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.x-title-icon {
+ background-size: 16px; }
+
+/* line 256, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.x-box-inner.x-box-scroller-body-horizontal {
+ overflow: visible; }
+ /* line 258, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ .x-box-inner.x-box-scroller-body-horizontal .x-tab-default-top {
+ overflow: visible; }
+
+/* line 263, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.service {
+ width: 230px;
+ display: inline-block;
+ padding: 10px;
+ cursor: pointer; }
+ /* line 268, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ .service img {
+ float: left; }
+ /* line 271, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ .service span {
+ margin-left: 10px;
+ line-height: 48px; }
+ /* line 275, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ .service:hover {
+ background-color: #92b7d4; }
+
+/* line 281, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.auth0-lock.auth0-lock .auth0-lock-header-logo {
+ height: 50px !important; }
+
+/* line 285, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+.x-statusbar {
+ padding: 0px !important;
+ background-color: #162938 !important; }
+ /* line 288, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ .x-statusbar.x-docked-bottom {
+ border-top: 1px solid #CCC !important;
+ border-top-width: 1px !important; }
+ /* line 292, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/etc/all.scss */
+ .x-statusbar .x-toolbar-text-default {
+ color: #FFF !important; }
+
+/* ======================== VAR ======================== */
+/* including package rambox-dark-theme */
+/**
+ * @var {color}
+ * The color of the text in the grid cells
+ */
+/**
+ * @var {color}
+ * The background-color of the grid cells
+ */
+/**
+ * @var {color}
+ * The border-color of row/column borders. Can be specified as a single color, or as a list
+ * of colors containing the row border color followed by the column border color.
+ */
+/**
+ * @var {color}
+ * The background-color of "special" cells. Special cells are created by {@link
+ * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
+ * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ */
+/**
+ * @var {color}
+ * The background-color of "special" cells when the row is hovered. Special cells are
+ * created by {@link Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel
+ * Checkbox Selection Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ */
+/**
+ * @var {color}
+ * The text color of the hovered row
+ */
+/**
+ * @var {color}
+ * The background-color of the hovered row
+ */
+/**
+ * @var {color}
+ * The text color of the selected row
+ */
+/**
+ * @var {color}
+ * The background-color of the selected row
+ */
+/* including package ext-theme-crisp */
+/** @class Ext.resizer.Resizer */
+/* including package ext-theme-neptune */
+/** @class Global_CSS */
+/** @class Ext.form.Labelable */
+/** @class Ext.form.field.Base */
+/** @class Ext.LoadMask */
+/** @class Ext.resizer.Splitter */
+/** @class Ext.toolbar.Toolbar */
+/** @class Ext.toolbar.Paging */
+/** @class Ext.view.BoundList */
+/** @class Ext.panel.Tool */
+/** @class Ext.panel.Panel */
+/**
+ * @var {boolean}
+ * True to include the "light" panel UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "light-framed" panel UI
+ */
+/** @class Ext.tip.Tip */
+/** @class Ext.picker.Color */
+/** @class Ext.button.Button */
+/** @class Ext.ProgressBar */
+/** @class Ext.form.field.Display */
+/** @class Ext.form.field.Checkbox */
+/** @class Ext.grid.header.Container */
+/** @class Ext.grid.column.Column */
+/** @class Ext.layout.container.Border */
+/** @class Ext.tab.Tab */
+/** @class Ext.tab.Bar */
+/** @class Ext.window.Window */
+/** @class Ext.container.ButtonGroup */
+/** @class Ext.form.FieldSet */
+/** @class Ext.picker.Date */
+/** @class Ext.grid.column.Action */
+/** @class Ext.grid.feature.Grouping */
+/** @class Ext.menu.Menu */
+/** @class Ext.grid.plugin.RowEditing */
+/** @class Ext.layout.container.Accordion */
+/** @class Ext.resizer.Resizer */
+/** @class Ext.selection.CheckboxModel */
+/* including package ext-theme-neutral */
+/**
+ * @class Ext.Component
+ */
+/**
+ * @var {color}
+ * The background color of scroll indicators when touch scrolling is enabled
+ */
+/**
+ * @var {number}
+ * The opacity of scroll indicators when touch scrolling is enabled
+ */
+/**
+ * @var {number}
+ * The border-radius of scroll indicators when touch scrolling is enabled
+ */
+/**
+ * @var {color}
+ * The background color of scroll indicators when touch scrolling is enabled
+ */
+/**
+ * @var {number}
+ * The space between scroll indicators and the edge of their container
+ */
+/**
+ * @class Global_CSS
+ */
+/**
+ * @var {color} $color
+ * The default text color to be used throughout the theme.
+ */
+/**
+ * @var {string} $font-family
+ * The default font-family to be used throughout the theme.
+ */
+/**
+ * @var {number} $font-size
+ * The default font-size to be used throughout the theme.
+ */
+/**
+ * @var {string/number}
+ * The default font-weight to be used throughout the theme.
+ */
+/**
+ * @var {string/number}
+ * The default font-weight for bold font to be used throughout the theme.
+ */
+/**
+ * @var {string/number} $line-height
+ * The default line-height to be used throughout the theme.
+ */
+/**
+ * @var {string} $base-gradient
+ * The base gradient to be used throughout the theme.
+ */
+/**
+ * @var {color} $base-color
+ * The base color to be used throughout the theme.
+ */
+/**
+ * @var {color} $neutral-color
+ * The neutral color to be used throughout the theme.
+ */
+/**
+ * @var {color} $body-background-color
+ * Background color to apply to the body element. If set to transparent or 'none' no
+ * background-color style will be set on the body element.
+ */
+/**
+ * @class Ext.form.field.Base
+ */
+/**
+ * @var {number} $form-field-height
+ * Height for form fields.
+ */
+/**
+ * @var {number} $form-toolbar-field-height
+ * Height for form fields in toolbar.
+ */
+/**
+ * @var {number} $form-field-padding
+ * Padding around form fields.
+ */
+/**
+ * @var {number} $form-field-font-size
+ * Font size for form fields.
+ */
+/**
+ * @var {string} $form-field-font-family
+ * Font family for form fields.
+ */
+/**
+ * @var {string} $form-field-font-weight
+ * Font weight for form fields.
+ */
+/**
+ * @var {number} $form-toolbar-field-font-size
+ * Font size for toolbar form fields.
+ */
+/**
+ * @var {string} $form-toolbar-field-font-family
+ * Font family for toolbar form fields.
+ */
+/**
+ * @var {string} $form-toolbar-field-font-weight
+ * Font weight for toolbar form fields.
+ */
+/**
+ * @var {color} $form-field-color
+ * Text color for form fields.
+ */
+/**
+ * @var {color} $form-field-empty-color
+ * Text color for empty form fields.
+ */
+/**
+ * @var {color} $form-field-border-color
+ * Border color for form fields.
+ */
+/**
+ * @var {number} $form-field-border-width
+ * Border width for form fields.
+ */
+/**
+ * @var {string} $form-field-border-style
+ * Border style for form fields.
+ */
+/**
+ * @var {color} $form-field-focus-border-color
+ * Border color for focused form fields.
+ *
+ * In the default Neptune color scheme this is the same as $base-highlight-color
+ * but it does not change automatically when one changes the $base-color. This is because
+ * checkboxes and radio buttons have this focus color hard coded into their background
+ * images. If this color is changed, you should also modify checkbox and radio button
+ * background images to match
+ */
+/**
+ * @var {color} $form-field-invalid-border-color
+ * Border color for invalid form fields.
+ */
+/**
+ * @var {color} $form-field-background-color
+ * Background color for form fields.
+ */
+/**
+ * @var {string} $form-field-background-image
+ * Background image for form fields.
+ */
+/**
+ * @var {color} $form-field-invalid-background-color
+ * Background color for invalid form fields.
+ */
+/**
+ * @var {string} $form-field-invalid-background-image
+ * Background image for invalid form fields.
+ */
+/**
+ * @var {string} $form-field-invalid-background-repeat
+ * Background repeat for invalid form fields.
+ */
+/**
+ * @var {string/list} $form-field-invalid-background-position
+ * Background position for invalid form fields.
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" field UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "toolbar" field UI
+ */
+/**
+ * @class Ext.form.Labelable
+ */
+/**
+ * @var {color}
+ * The text color of form field labels
+ */
+/**
+ * @var {string}
+ * The font-weight of form field labels
+ */
+/**
+ * @var {number}
+ * The font-size of form field labels
+ */
+/**
+ * @var {string}
+ * The font-family of form field labels
+ */
+/**
+ * @var {number}
+ * The line-height of form field labels
+ */
+/**
+ * @var {number}
+ * Horizontal space between the label and the field body when the label is left-aligned.
+ */
+/**
+ * @var {number}
+ * Vertical space between the label and the field body when the label is top-aligned.
+ */
+/**
+ * @var {string}
+ * The background image for error icons
+ */
+/**
+ * @var {number}
+ * Width for form error icons.
+ */
+/**
+ * @var {number}
+ * Height for form error icons.
+ */
+/**
+ * @var {number/list}
+ * Margin for error icons that are aligned to the side of the field
+ */
+/**
+ * @var {number}
+ * The space between the icon and the message for errors that display under the field
+ */
+/**
+ * @var {number/list}
+ * The padding on errors that display under the form field
+ */
+/**
+ * @var {color}
+ * The text color of form error messages
+ */
+/**
+ * @var {string}
+ * The font-weight of form error messages
+ */
+/**
+ * @var {number}
+ * The font-size of form error messages
+ */
+/**
+ * @var {string}
+ * The font-family of form error messages
+ */
+/**
+ * @var {number}
+ * The line-height of form error messages
+ */
+/**
+ * @var {number}
+ * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout.
+ * This value is also used as the default border-spacing in a form-layout.
+ */
+/**
+ * @var {number}
+ * Opacity of disabled form fields
+ */
+/**
+ * @var {color}
+ * The text color of toolbar form field labels
+ */
+/**
+ * @var {string}
+ * The font-weight of toolbar form field labels
+ */
+/**
+ * @var {number}
+ * The font-size of toolbar form field labels
+ */
+/**
+ * @var {string}
+ * The font-family of toolbar form field labels
+ */
+/**
+ * @var {number}
+ * The line-height of toolbar form field labels
+ */
+/**
+ * @var {number}
+ * Horizontal space between the toolbar field's label and the field body when the label is left-aligned.
+ */
+/**
+ * @var {number}
+ * Vertical space between the toolbar field's label and the field body when the label is top-aligned.
+ */
+/**
+ * @var {string}
+ * The background image for toolbar field error icons
+ */
+/**
+ * @var {number}
+ * Width for toolbar field error icons.
+ */
+/**
+ * @var {number}
+ * Height for toolbar field error icons.
+ */
+/**
+ * @var {number/list}
+ * Margin for toolbar field error icons that are aligned to the side of the field
+ */
+/**
+ * @var {number}
+ * The space between the icon and the message for errors that display under a toolbar field
+ */
+/**
+ * @var {number/list}
+ * The padding on errors that display under the toolbar form field
+ */
+/**
+ * @var {color}
+ * The text color of toolbar form error messages
+ */
+/**
+ * @var {string}
+ * The font-weight of toolbar form field error messages
+ */
+/**
+ * @var {number}
+ * The font-size of toolbar form field error messages
+ */
+/**
+ * @var {string}
+ * The font-family of toolbar form field error messages
+ */
+/**
+ * @var {number}
+ * The line-height of toolbar form field error messages
+ */
+/**
+ * @var {number}
+ * Opacity of disabled toolbar form fields
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" label UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" label UI
+ */
+/**
+ * @class Ext.form.field.Text
+ */
+/**
+ * @var {number}
+ * The height of text fields
+ */
+/**
+ * @var {number}
+ * Font size for text fields.
+ */
+/**
+ * @var {string}
+ * Font family for text fields.
+ */
+/**
+ * @var {string}
+ * Font weight for text fields.
+ */
+/**
+ * @var {color}
+ * The color of the text field's input element
+ */
+/**
+ * @var {color}
+ * The background color of the text field's input element
+ */
+/**
+ * @var {number/list}
+ * The border width of text fields
+ */
+/**
+ * @var {string/list}
+ * The border style of text fields
+ */
+/**
+ * @var {color/list}
+ * The border color of text fields
+ */
+/**
+ * @var {color/list}
+ * The border color of the focused text field
+ */
+/**
+ * @var {color}
+ * Border color for invalid text fields.
+ */
+/**
+ * @var {number/list}
+ * Border radius for text fields
+ */
+/**
+ * @var {string}
+ * The background image of the text field's input element
+ */
+/**
+ * @var {number/list}
+ * The padding of the text field's input element
+ */
+/**
+ * @var {color}
+ * Text color for empty text fields.
+ */
+/**
+ * @var {number}
+ * The default width of the text field's body element (the element that contains the input
+ * element and triggers) when the field is not sized explicitly using the {@link #width}
+ * config, or sized by it's containing layout.
+ */
+/**
+ * @var {color}
+ * Background color of the text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string}
+ * Background image of the text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string}
+ * Background repeat of the text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string/list}
+ * Background position of the text field's input element when the field value is invalid.
+ */
+/**
+ * @var {boolean}
+ * `true` to use classic-theme styled border for text fields.
+ */
+/**
+ * @var {number} $form-textarea-line-height
+ * The line-height to use for the TextArea's text
+ */
+/**
+ * @var {number} $form-textarea-body-height
+ * The default width of the TextArea's body element (the element that contains the textarea
+ * html element when the field is not sized explicitly using the {@link #width}config, or
+ * sized by it's containing layout.
+ */
+/**
+ * @var {color}
+ * Text color for file fields
+ */
+/**
+ * @var {number}
+ * The width of the text field's trigger element
+ */
+/**
+ * @var {number/list}
+ * The width of the text field's trigger's border
+ */
+/**
+ * @var {color/list}
+ * The color of the text field's trigger's border
+ */
+/**
+ * @var {string/list}
+ * The style of the text field's trigger's border
+ */
+/**
+ * @var {color}
+ * The color of the text field's trigger's border when hovered
+ */
+/**
+ * @var {color}
+ * The color of the text field's trigger's border when the field is focused
+ */
+/**
+ * @var {color}
+ * The color of the text field's trigger's border when the field is focused and the trigger is hovered
+ */
+/**
+ * @var {string}
+ * The default background image for text field triggers
+ */
+/**
+ * @var {color}
+ * The background color of the text field's trigger element
+ */
+/**
+ * @var {number}
+ * The height of toolbar text fields
+ */
+/**
+ * @var {number}
+ * Font size for toolbar text fields.
+ */
+/**
+ * @var {string}
+ * Font family for toolbar text fields.
+ */
+/**
+ * @var {string}
+ * Font weight for toolbar text fields.
+ */
+/**
+ * @var {color}
+ * The color of the toolbar text field's input element
+ */
+/**
+ * @var {color}
+ * The background color of the toolbar text field's input element
+ */
+/**
+ * @var {number/list}
+ * The border width of toolbar text fields
+ */
+/**
+ * @var {string/list}
+ * The border style of toolbar text fields
+ */
+/**
+ * @var {color/list}
+ * The border color of toolbar text fields
+ */
+/**
+ * @var {color/list}
+ * The border color of the focused toolbar text field
+ */
+/**
+ * @var {color} $form-field-invalid-border-color
+ * Border color for invalid toolbar text fields.
+ */
+/**
+ * @var {number/list}
+ * Border radius for toolbar text fields
+ */
+/**
+ * @var {string}
+ * The background image of the toolbar text field's input element
+ */
+/**
+ * @var {number/list}
+ * The padding of the toolbar text field's input element
+ */
+/**
+ * @var {color}
+ * Text color for empty toolbar text fields.
+ */
+/**
+ * @var {number}
+ * The default width of the toolbar text field's body element (the element that contains the input
+ * element and triggers) when the field is not sized explicitly using the {@link #width}
+ * config, or sized by it's containing layout.
+ */
+/**
+ * @var {color}
+ * Background color of the toolbar text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string}
+ * Background image of the toolbar text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string}
+ * Background repeat of the toolbar text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string/list}
+ * Background position of the toolbar text field's input element when the field value is invalid.
+ */
+/**
+ * @var {boolean}
+ * `true` to use classic-theme styled border for toolbar text fields.
+ */
+/**
+ * @var {number/string}
+ * The line-height to use for the toolbar TextArea's text
+ */
+/**
+ * @var {number}
+ * The default width of the toolbar TextArea's body element (the element that contains the
+ * textarea html element when the field is not sized explicitly using the {@link #width}
+ * config, or sized by it's containing layout.
+ */
+/**
+ * @var {color}
+ * Text color for toolbar file fields
+ */
+/**
+ * @var {number}
+ * The width of the toolbar text field's trigger element
+ */
+/**
+ * @var {number/list}
+ * The width of the toolbar text field's trigger's border
+ */
+/**
+ * @var {color/list}
+ * The color of the toolbar text field's trigger's border
+ */
+/**
+ * @var {string/list}
+ * The style of the toolbar text field's trigger's border
+ */
+/**
+ * @var {color}
+ * The color of the toolbar text field's trigger's border when hovered
+ */
+/**
+ * @var {color}
+ * The color of the toolbar text field's trigger's border when the field is focused
+ */
+/**
+ * @var {color}
+ * The color of the toolbar text field's trigger's border when the field is focused and the trigger is hovered
+ */
+/**
+ * @var {string}
+ * The default background image for toolbar text field triggers
+ */
+/**
+ * @var {color}
+ * The background color of the toolbar text field's trigger element
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" text field UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "toolbar" text field UI
+ */
+/**
+ * @class Ext.form.field.Spinner
+ */
+/**
+ * @var {boolean}
+ * True to use vertically oriented triggers. False to use horizontally oriented triggers.
+ * Themes that set this property to true must also override the
+ * {@link Ext.form.trigger.Spinner#vertical} config to match. Defaults to true. When
+ * 'vertical' orientation is used, the background image for both triggers is
+ * 'form/spinner'. When 'horizontal' is used, the triggers use separate background
+ * images - 'form/spinner-up', and 'form/spinner-down'.
+ */
+/**
+ * @var {string}
+ * Background image for vertically oriented spinner triggers
+ */
+/**
+ * @var {string}
+ * Background image for the "up" trigger when trigger buttons are horizontally aligned
+ */
+/**
+ * @var {string}
+ * Background image for the "down" trigger when trigger buttons are horizontally aligned
+ */
+/**
+ * @var {boolean}
+ * `true` to use vertically oriented triggers for fields with the 'toolbar' UI.
+ */
+/**
+ * @var {string}
+ * Background image for vertically oriented toolbar spinner triggers
+ */
+/**
+ * @var {string}
+ * Background image for the "up" toolbar trigger when trigger buttons are horizontally aligned
+ */
+/**
+ * @var {string}
+ * Background image for the "down" toolbar trigger when trigger buttons are horizontally aligned
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" spinner UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "toolbar" spinner UI
+ */
+/**
+ * @class Ext.form.field.Checkbox
+ */
+/**
+ * @var {number}
+ * The size of the checkbox
+ */
+/**
+ * @var {string}
+ * The background-image of the checkbox
+ */
+/**
+ * @var {string}
+ * The background-image of the radio button
+ */
+/**
+ * @var {color}
+ * The color of the checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The font-weight of the checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The font-size of the checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The font-family of the checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The line-height of the checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {number}
+ * The space between the {@link #boxLabel} and the checkbox.
+ */
+/**
+ * @var {number}
+ * The size of the toolbar checkbox
+ */
+/**
+ * @var {string}
+ * The background-image of the toolbar checkbox
+ */
+/**
+ * @var {string}
+ * The background-image of the toolbar radio button
+ */
+/**
+ * @var {color}
+ * The color of the toolbar checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The font-weight of the toolbar checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The font-size of the toolbar checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The font-family of the toolbar checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The line-height of the toolbar checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {number}
+ * The space between the {@link #boxLabel} and the toolbar checkbox.
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" checkbox UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "toolbar" checkbox UI
+ */
+/**
+ * @class Ext.form.field.Display
+ */
+/**
+ * @var {color}
+ * The text color of display fields
+ */
+/**
+ * @var {number}
+ * The font-size of display fields
+ */
+/**
+ * @var {string}
+ * The font-family of display fields
+ */
+/**
+ * @var {string}
+ * The font-weight of display fields
+ */
+/**
+ * @var {number}
+ * The line-height of display fields
+ */
+/**
+ * @var {color}
+ * The text color of toolbar display fields
+ */
+/**
+ * @var {number}
+ * The font-size of toolbar display fields
+ */
+/**
+ * @var {string}
+ * The font-family of toolbar display fields
+ */
+/**
+ * @var {string}
+ * The font-weight of toolbar display fields
+ */
+/**
+ * @var {number}
+ * The line-height of toolbar display fields
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" display field UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "toolbar" display field UI
+ */
+/**
+ * @class Ext.LoadMask
+ */
+/**
+ * @var {number}
+ * Opacity of the LoadMask
+ */
+/**
+ * @var {color}
+ * The background-color of the LoadMask
+ */
+/**
+ * @var {string}
+ * The type of cursor to dislay when the cursor is over the LoadMask
+ */
+/**
+ * @var {string}
+ * The border-style of the LoadMask focus border
+ */
+/**
+ * @var {string}
+ * The border-color of the LoadMask focus border
+ */
+/**
+ * @var {string}
+ * The border-width of the LoadMask focus border
+ */
+/**
+ * @var {number/list}
+ * The padding to apply to the LoadMask's message element
+ */
+/**
+ * @var {string}
+ * The border-style of the LoadMask's message element
+ */
+/**
+ * @var {color}
+ * The border-color of the LoadMask's message element
+ */
+/**
+ * @var {number}
+ * The border-width of the LoadMask's message element
+ */
+/**
+ * @var {color}
+ * The background-color of the LoadMask's message element
+ */
+/**
+ * @var {string/list}
+ * The background-gradient of the LoadMask's message element. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {number/list}
+ * The padding of the message inner element
+ */
+/**
+ * @var {string}
+ * The icon to display in the message inner element
+ */
+/**
+ * @var {list}
+ * The background-position of the icon
+ */
+/**
+ * @var {string}
+ * The border-style of the message inner element
+ */
+/**
+ * @var {color}
+ * The border-color of the message inner element
+ */
+/**
+ * @var {number}
+ * The border-width of the message inner element
+ */
+/**
+ * @var {color}
+ * The background-color of the message inner element
+ */
+/**
+ * @var {color}
+ * The text color of the message inner element
+ */
+/**
+ * @var {number}
+ * The font-size of the message inner element
+ */
+/**
+ * @var {string}
+ * The font-weight of the message inner element
+ */
+/**
+ * @var {string}
+ * The font-family of the message inner element
+ */
+/**
+ * @var {number/list}
+ * The padding of the message element
+ */
+/**
+ * @var {number}
+ * The border-radius of the message element
+ */
+/**
+ * @class Ext.resizer.Splitter
+ */
+/**
+ * @var {number}
+ * The size of the Splitter
+ */
+/**
+ * @var {color}
+ * The background-color of the active Splitter (the Splitter currently being dragged)
+ */
+/**
+ * @var {number}
+ * The opacity of the active Splitter (the Splitter currently being dragged)
+ */
+/**
+ * @var {number}
+ * The opacity of the collapse tool on the active Splitter (the Splitter currently being dragged)
+ */
+/**
+ * @var {color}
+ * The color of the outline around the splitter when it is focused
+ */
+/**
+ * @var {string}
+ * The outline-style of the splitter when it is focused
+ */
+/**
+ * @var {number}
+ * The outline-width of the splitter when it is focused
+ */
+/**
+ * @var {number}
+ * The outline-offset of the splitter when it is focused
+ */
+/**
+ * @var {string}
+ * The the type of cursor to display when the cursor is over the collapse tool
+ */
+/**
+ * @var {number}
+ * The size of the collapse tool. This becomes the width of the collapse tool for
+ * horizontal splitters, and the height for vertical splitters.
+ */
+/**
+ * @var {number}
+ * The opacity of the collapse tool.
+ */
+/**
+ * @class Ext.toolbar.Toolbar
+ */
+/**
+ * @var {number}
+ * The default font-size of Toolbar text
+ */
+/**
+ * @var {color}
+ * The background-color of the Toolbar
+ */
+/**
+ * @var {string/list}
+ * The background-gradient of the Toolbar. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {number}
+ * The horizontal spacing of Toolbar items
+ */
+/**
+ * @var {number}
+ * The vertical spacing of Toolbar items
+ */
+/**
+ * @var {number}
+ * The horizontal spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items
+ */
+/**
+ * @var {number}
+ * The vertical spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items
+ */
+/**
+ * @var {color}
+ * The background-color of {@link Ext.panel.Panel#fbar footer} Toolbars
+ */
+/**
+ * @var {number}
+ * The border-width of {@link Ext.panel.Panel#fbar footer} Toolbars
+ */
+/**
+ * @var {color}
+ * The border-color of Toolbars
+ */
+/**
+ * @var {number}
+ * The border-width of Toolbars
+ */
+/**
+ * @var {string}
+ * The border-style of Toolbars
+ */
+/**
+ * @var {number}
+ * The width of Toolbar {@link Ext.toolbar.Spacer Spacers}
+ */
+/**
+ * @var {color}
+ * The main border-color of Toolbar {@link Ext.toolbar.Separator Separators}
+ */
+/**
+ * @var {color}
+ * The highlight border-color of Toolbar {@link Ext.toolbar.Separator Separators}
+ */
+/**
+ * @var {number/list}
+ * The margin of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
+ */
+/**
+ * @var {number}
+ * The height of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
+ */
+/**
+ * @var {string}
+ * The border-style of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
+ */
+/**
+ * @var {number}
+ * The border-width of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
+ */
+/**
+ * @var {number/list}
+ * The margin of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar
+ */
+/**
+ * @var {string}
+ * The border-style of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar
+ */
+/**
+ * @var {number}
+ * The border-width of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar
+ */
+/**
+ * @var {string}
+ * The default font-family of Toolbar text
+ */
+/**
+ * @var {number}
+ * The default font-size of Toolbar text
+ */
+/**
+ * @var {number}
+ * The default font-size of Toolbar text
+ */
+/**
+ * @var {color}
+ * The text-color of Toolbar text
+ */
+/**
+ * @var {number}
+ * The line-height of Toolbar text
+ */
+/**
+ * @var {number/list}
+ * The padding of Toolbar text
+ */
+/**
+ * @var {number}
+ * The width of Toolbar scrollers
+ */
+/**
+ * @var {number}
+ * The height of Toolbar scrollers
+ */
+/**
+ * @var {number}
+ * The width of scrollers on vertically aligned toolbars
+ */
+/**
+ * @var {number}
+ * The height of scrollers on vertically aligned toolbars
+ */
+/**
+ * @var {color}
+ * The border-color of Toolbar scroller buttons
+ */
+/**
+ * @var {number}
+ * The border-width of Toolbar scroller buttons
+ */
+/**
+ * @var {color}
+ * The border-color of scroller buttons on vertically aligned toolbars
+ */
+/**
+ * @var {number}
+ * The border-width of scroller buttons on vertically aligned toolbars
+ */
+/**
+ * @var {number/list}
+ * The margin of "top" Toolbar scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "right" Toolbar scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "bottom" Toolbar scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "left" Toolbar scroller buttons
+ */
+/**
+ * @var {string}
+ * The cursor of Toolbar scroller buttons
+ */
+/**
+ * @var {string}
+ * The cursor of disabled Toolbar scroller buttons
+ */
+/**
+ * @var {number}
+ * The opacity of Toolbar scroller buttons. Only applicable when
+ * {@link #$toolbar-classic-scrollers} is `false`.
+ */
+/**
+ * @var {number}
+ * The opacity of hovered Toolbar scroller buttons. Only applicable when
+ * {@link #$toolbar-classic-scrollers} is `false`.
+ */
+/**
+ * @var {number}
+ * The opacity of pressed Toolbar scroller buttons. Only applicable when
+ * {@link #$toolbar-classic-scrollers} is `false`.
+ */
+/**
+ * @var {number}
+ * The opacity of disabled Toolbar scroller buttons.
+ */
+/**
+ * @var {boolean}
+ * `true` to use classic-style scroller buttons. When `true` scroller buttons are given their
+ * hover state by changing their background-position, When `false` scroller buttons are
+ * given their hover state by applying opacity.
+ */
+/**
+ * @var {string}
+ * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" toolbar UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "footer" toolbar UI
+ */
+/**
+ * @class Ext.toolbar.Paging
+ */
+/**
+ * @var {boolean}
+ * True to include different icons when the paging toolbar buttons are disabled.
+ */
+/**
+ * @class Ext.view.BoundList
+ */
+/**
+ * @var {color}
+ * The background-color of the BoundList
+ */
+/**
+ * @var {color}
+ * The border-color of the BoundList
+ */
+/**
+ * @var {number}
+ * The border-width of the BoundList
+ */
+/**
+ * @var {string}
+ * The border-style of the BoundList
+ */
+/**
+ * @var {number}
+ * The height of BoundList items
+ */
+/**
+ * @var {string}
+ * The font family of the BoundList items
+ */
+/**
+ * @var {number}
+ * The font size of the BoundList items
+ */
+/**
+ * @var {string}
+ * The font-weight of the BoundList items
+ */
+/**
+ * @var {number/list}
+ * The padding of BoundList items
+ */
+/**
+ * @var {number}
+ * The border-width of BoundList items
+ */
+/**
+ * @var {string}
+ * The border-style of BoundList items
+ */
+/**
+ * @var {color}
+ * The border-color of BoundList items
+ */
+/**
+ * @var {color}
+ * The border-color of hovered BoundList items
+ */
+/**
+ * @var {color}
+ * The border-color of selected BoundList items
+ */
+/**
+ * @var {color}
+ * The background-color of hovered BoundList items
+ */
+/**
+ * @var {color}
+ * The background-color of selected BoundList items
+ */
+/**
+ * @class Ext.panel.Tool
+ */
+/**
+ * @var {number}
+ * The size of Tools
+ */
+/**
+ * @var {boolean}
+ * True to change the background-position of the Tool on hover. Allows for a separate
+ * hover state icon in the sprite.
+ */
+/**
+ * @var {string}
+ * The cursor to display when the mouse cursor is over a Tool
+ */
+/**
+ * @var {number}
+ * The opacity of Tools
+ */
+/**
+ * @var {number}
+ * The opacity of hovered Tools
+ */
+/**
+ * @var {number}
+ * The opacity of pressed Tools
+ */
+/**
+ * @var {string}
+ * The sprite to use as the background-image for Tools
+ */
+/** @class Ext.panel.Header */
+/**
+ * @class Ext.panel.Panel
+ */
+/**
+ * @var {number}
+ * The default border-width of Panels
+ */
+/**
+ * @var {color}
+ * The base color of Panels
+ */
+/**
+ * @var {color}
+ * The default border-color of Panels
+ */
+/**
+ * @var {number}
+ * The maximum width a Panel's border can be before resizer handles are embedded
+ * into the borders using negative absolute positions.
+ *
+ * This defaults to 2, so that in the classic theme which uses 1 pixel borders,
+ * resize handles are in the content area within the border as they always have
+ * been.
+ *
+ * In the Neptune theme, the handles are embedded into the 5 pixel wide borders
+ * of any framed panel.
+ */
+/**
+ * @var {string}
+ * The default border-style of Panels
+ */
+/**
+ * @var {color}
+ * The default body background-color of Panels
+ */
+/**
+ * @var {color}
+ * The default color of text inside a Panel's body
+ */
+/**
+ * @var {color}
+ * The default border-color of the Panel body
+ */
+/**
+ * @var {number}
+ * The default border-width of the Panel body
+ */
+/**
+ * @var {number}
+ * The default font-size of the Panel body
+ */
+/**
+ * @var {string}
+ * The default font-weight of the Panel body
+ */
+/**
+ * @var {string}
+ * The default font-family of the Panel body
+ */
+/**
+ * @var {number}
+ * The space between the Panel {@link Ext.panel.Tool Tools}
+ */
+/**
+ * @var {string}
+ * The background sprite to use for Panel {@link Ext.panel.Tool Tools}
+ */
+/**
+ * @var {number}
+ * The border-width of Panel Headers
+ */
+/**
+ * @var {string}
+ * The border-style of Panel Headers
+ */
+/**
+ * @var {number/list}
+ * The padding of Panel Headers
+ */
+/**
+ * @var {number}
+ * The font-size of Panel Headers
+ */
+/**
+ * @var {number}
+ * The line-height of Panel Headers
+ */
+/**
+ * @var {string}
+ * The font-weight of Panel Headers
+ */
+/**
+ * @var {string}
+ * The font-family of Panel Headers
+ */
+/**
+ * @var {string}
+ * The text-transform of Panel Headers
+ */
+/**
+ * @var {number/list}
+ * The padding of the Panel Header's text element
+ */
+/**
+ * @var {number/list}
+ * The margin of the Panel Header's text element
+ */
+/**
+ * @var {string/list}
+ * The background-gradient of the Panel Header. Can be either the name of a predefined
+ * gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {color}
+ * The border-color of the Panel Header
+ */
+/**
+ * @var {color}
+ * The inner border-color of the Panel Header
+ */
+/**
+ * @var {number}
+ * The inner border-width of the Panel Header
+ */
+/**
+ * @var {color}
+ * The text color of the Panel Header
+ */
+/**
+ * @var {color}
+ * The background-color of the Panel Header
+ */
+/**
+ * @var {number}
+ * The width of the Panel Header icon
+ */
+/**
+ * @var {number}
+ * The height of the Panel Header icon
+ */
+/**
+ * @var {number}
+ * The space between the Panel Header icon and text
+ */
+/**
+ * @var {list}
+ * The background-position of the Panel Header icon
+ */
+/**
+ * @var {color}
+ * The color of the Panel Header glyph icon
+ */
+/**
+ * @var {number}
+ * The opacity of the Panel Header glyph icon
+ */
+/**
+ * @var {boolean}
+ * True to adjust the padding of borderless panel headers so that their height is the same
+ * as the height of bordered panels. This is helpful when borderless and bordered panels
+ * are used side-by-side, as it maintains a consistent vertical alignment.
+ */
+/**
+ * @var {color}
+ * The base color of the framed Panels
+ */
+/**
+ * @var {number}
+ * The border-radius of framed Panels
+ */
+/**
+ * @var {number}
+ * The border-width of framed Panels
+ */
+/**
+ * @var {string}
+ * The border-style of framed Panels
+ */
+/**
+ * @var {number}
+ * The padding of framed Panels
+ */
+/**
+ * @var {color}
+ * The background-color of framed Panels
+ */
+/**
+ * @var {color}
+ * The border-color of framed Panels
+ */
+/**
+ * @var {number}
+ * The border-width of the body element of framed Panels
+ */
+/**
+ * @var {number}
+ * The border-width of framed Panel Headers
+ */
+/**
+ * @var {color}
+ * The inner border-color of framed Panel Headers
+ */
+/**
+ * @var {number}
+ * The inner border-width of framed Panel Headers
+ */
+/**
+ * @var {number/list}
+ * The padding of framed Panel Headers
+ */
+/**
+ * @var {number}
+ * The opacity of ghost Panels while dragging
+ */
+/**
+ * @var {string}
+ * The direction to strech the background-gradient of top docked Headers when slicing images
+ * for IE using Sencha Cmd
+ */
+/**
+ * @var {string}
+ * The direction to strech the background-gradient of bottom docked Headers when slicing images
+ * for IE using Sencha Cmd
+ */
+/**
+ * @var {string}
+ * The direction to strech the background-gradient of right docked Headers when slicing images
+ * for IE using Sencha Cmd
+ */
+/**
+ * @var {string}
+ * The direction to strech the background-gradient of left docked Headers when slicing images
+ * for IE using Sencha Cmd
+ */
+/**
+ * @var {boolean}
+ * True to include neptune style border management rules.
+ */
+/**
+ * @var {color}
+ * The color to apply to the border that wraps the body and docked items in a framed
+ * panel. The presence of the wrap border in a framed panel is controlled by the
+ * {@link #border} config. Only applicable when `$panel-include-border-management-rules` is
+ * `true`.
+ */
+/**
+ * @var {number}
+ * The width to apply to the border that wraps the body and docked items in a framed
+ * panel. The presence of the wrap border in a framed panel is controlled by the
+ * {@link #border} config. Only applicable when `$panel-include-border-management-rules` is
+ * `true`.
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" panel UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "default-framed" panel UI
+ */
+/**
+ * @var {boolean}
+ * True to ignore the frame padding. By default, the frame mixin adds extra padding when
+ * border radius is larger than border width. This is intended to prevent the content
+ * from colliding with the rounded corners of the frame. Set this to true to prevent
+ * the panel frame from adding this extra padding.
+ */
+/**
+ * @class Ext.tip.Tip
+ */
+/**
+ * @var {color}
+ * The background-color of the Tip
+ */
+/**
+ * @var {string/list}
+ * The background-gradient of the Tip. Can be either the name of a predefined gradient or a
+ * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {color}
+ * The text color of the Tip body
+ */
+/**
+ * @var {number}
+ * The font-size of the Tip body
+ */
+/**
+ * @var {string}
+ * The font-weight of the Tip body
+ */
+/**
+ * @var {number/list}
+ * The padding of the Tip body
+ */
+/**
+ * @var {color}
+ * The text color of any anchor tags inside the Tip body
+ */
+/**
+ * @var {color}
+ * The text color of the Tip header
+ */
+/**
+ * @var {number}
+ * The font-size of the Tip header
+ */
+/**
+ * @var {string}
+ * The font-weight of the Tip header
+ */
+/**
+ * @var {number/list}
+ * The padding of the Tip header's body element
+ */
+/**
+ * @var {color}
+ * The border-color of the Tip
+ */
+/**
+ * @var {number}
+ * The border-width of the Tip
+ */
+/**
+ * @var {number}
+ * The border-radius of the Tip
+ */
+/**
+ * @var {color}
+ * The inner border-color of the form field error Tip
+ */
+/**
+ * @var {number}
+ * The inner border-width of the form field error Tip
+ */
+/**
+ * @var {color}
+ * The border-color of the form field error Tip
+ */
+/**
+ * @var {number}
+ * The border-radius of the form field error Tip
+ */
+/**
+ * @var {number}
+ * The border-width of the form field error Tip
+ */
+/**
+ * @var {color}
+ * The background-color of the form field error Tip
+ */
+/**
+ * @var {number/list}
+ * The padding of the form field error Tip's body element
+ */
+/**
+ * @var {color}
+ * The text color of the form field error Tip's body element
+ */
+/**
+ * @var {number}
+ * The font-size of the form field error Tip's body element
+ */
+/**
+ * @var {string}
+ * The font-weight of the form field error Tip's body element
+ */
+/**
+ * @var {color}
+ * The color of anchor tags in the form field error Tip's body element
+ */
+/**
+ * @var {number}
+ * The space between {@link Ext.panel.Tool Tools} in the header
+ */
+/**
+ * @var {string}
+ * The sprite to use for the header {@link Ext.panel.Tool Tools}
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" tip UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "form-invalid" tip UI
+ */
+/**
+ * @class Ext.picker.Color
+ */
+/**
+ * @var {color}
+ * The background-color of Color Pickers
+ */
+/**
+ * @var {color}
+ * The border-color of Color Pickers
+ */
+/**
+ * @var {number}
+ * The border-width of Color Pickers
+ */
+/**
+ * @var {string}
+ * The border-style of Color Pickers
+ */
+/**
+ * @var {number}
+ * The number of columns to display in the Color Picker
+ */
+/**
+ * @var {number}
+ * The number of rows to display in the Color Picker
+ */
+/**
+ * @var {number}
+ * The height of each Color Picker item
+ */
+/**
+ * @var {number}
+ * The width of each Color Picker item
+ */
+/**
+ * @var {number}
+ * The padding of each Color Picker item
+ */
+/**
+ * @var {string}
+ * The cursor to display when the mouse is over a Color Picker item
+ */
+/**
+ * @var {color}
+ * The border-color of Color Picker items
+ */
+/**
+ * @var {number}
+ * The border-width of Color Picker items
+ */
+/**
+ * @var {string}
+ * The border-style of Color Picker items
+ */
+/**
+ * @var {color}
+ * The border-color of hovered Color Picker items
+ */
+/**
+ * @var {color}
+ * The background-color of Color Picker items
+ */
+/**
+ * @var {color}
+ * The background-color of hovered Color Picker items
+ */
+/**
+ * @var {color}
+ * The border-color of the selected Color Picker item
+ */
+/**
+ * @var {color}
+ * The background-color of the selected Color Picker item
+ */
+/**
+ * @var {color}
+ * The inner border-color of Color Picker items
+ */
+/**
+ * @var {number}
+ * The inner border-width of Color Picker items
+ */
+/**
+ * @var {string}
+ * The inner border-style of Color Picker items
+ */
+/** @class Ext.button.Button */
+/**
+ * @var {number}
+ * The default width for a button's {@link #cfg-menu} arrow
+ */
+/**
+ * @var {number}
+ * The default height for a button's {@link #cfg-menu} arrow
+ */
+/**
+ * @var {number}
+ * The default width for a {@link Ext.button.Split Split Button}'s arrow
+ */
+/**
+ * @var {number}
+ * The default height for a {@link Ext.button.Split Split Button}'s arrow
+ */
+/**
+ * @var {number}
+ * The default space between a button's icon and text
+ */
+/**
+ * @var {number}
+ * The default border-radius for a small {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default border-width for a small {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default padding for a small {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default horizontal padding to add to the left and right of the text element for
+ * a small {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default font-size for a small {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default font-size for a small {@link #scale} button when the cursor is over the button
+ */
+/**
+ * @var {number}
+ * The default font-size for a small {@link #scale} button when the button is focused
+ */
+/**
+ * @var {number}
+ * The default font-size for a small {@link #scale} button when the button is pressed
+ */
+/**
+ * @var {number}
+ * The default font-size for a small {@link #scale} button when the button is focused and
+ * the cursor is over the button
+ */
+/**
+ * @var {number}
+ * The default font-size for a small {@link #scale} button when the button is focused and pressed
+ */
+/**
+ * @var {number}
+ * The default font-size for a small {@link #scale} button when the button is disabled
+ */
+/**
+ * @var {string}
+ * The default font-weight for a small {@link #scale} button
+ */
+/**
+ * @var {string}
+ * The default font-weight for a small {@link #scale} button when the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-weight for a small {@link #scale} button when the button is focused
+ */
+/**
+ * @var {string}
+ * The default font-weight for a small {@link #scale} button when the button is pressed
+ */
+/**
+ * @var {string}
+ * The default font-weight for a small {@link #scale} button when the button is focused
+ * and the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-weight for a small {@link #scale} button when the button is focused
+ * and pressed
+ */
+/**
+ * @var {string}
+ * The default font-weight for a small {@link #scale} button when the button is disabled
+ */
+/**
+ * @var {string}
+ * The default font-family for a small {@link #scale} button
+ */
+/**
+ * @var {string}
+ * The default font-family for a small {@link #scale} button when the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-family for a small {@link #scale} button when the button is focused
+ */
+/**
+ * @var {string}
+ * The default font-family for a small {@link #scale} button when the button is pressed
+ */
+/**
+ * @var {string}
+ * The default font-family for a small {@link #scale} button when the button is focused
+ * and the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-family for a small {@link #scale} button when the button is focused
+ * and pressed
+ */
+/**
+ * @var {string}
+ * The default font-family for a small {@link #scale} button when the button is disabled
+ */
+/**
+ * @var {number}
+ * The line-height for the text in a small {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default icon size for a small {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The space between a small {@link #scale} button's icon and text
+ */
+/**
+ * @var {number}
+ * The default width of a small {@link #scale} button's {@link #cfg-menu} arrow
+ */
+/**
+ * @var {number}
+ * The default height of a small {@link #scale} button's {@link #cfg-menu} arrow
+ */
+/**
+ * @var {number}
+ * The default width of a small {@link #scale} {@link Ext.button.Split Split Button}'s arrow
+ */
+/**
+ * @var {number}
+ * The default height of a small {@link #scale} {@link Ext.button.Split Split Button}'s arrow
+ */
+/**
+ * @var {number}
+ * The default border-radius for a medium {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default border-width for a medium {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default padding for a medium {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default horizontal padding to add to the left and right of the text element for
+ * a medium {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default font-size for a medium {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default font-size for a medium {@link #scale} button when the cursor is over the button
+ */
+/**
+ * @var {number}
+ * The default font-size for a medium {@link #scale} button when the button is focused
+ */
+/**
+ * @var {number}
+ * The default font-size for a medium {@link #scale} button when the button is pressed
+ */
+/**
+ * @var {number}
+ * The default font-size for a medium {@link #scale} button when the button is focused
+ * and the cursor is over the button
+ */
+/**
+ * @var {number}
+ * The default font-size for a medium {@link #scale} button when the button is focused
+ * and pressed
+ */
+/**
+ * @var {number}
+ * The default font-size for a medium {@link #scale} button when the button is disabled
+ */
+/**
+ * @var {string}
+ * The default font-weight for a medium {@link #scale} button
+ */
+/**
+ * @var {string}
+ * The default font-weight for a medium {@link #scale} button when the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-weight for a medium {@link #scale} button when the button is focused
+ */
+/**
+ * @var {string}
+ * The default font-weight for a medium {@link #scale} button when the button is pressed
+ */
+/**
+ * @var {string}
+ * The default font-weight for a medium {@link #scale} button when the button is focused
+ * and the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-weight for a medium {@link #scale} button when the button is focused
+ * and pressed
+ */
+/**
+ * @var {string}
+ * The default font-weight for a medium {@link #scale} button when the button is disabled
+ */
+/**
+ * @var {string}
+ * The default font-family for a medium {@link #scale} button
+ */
+/**
+ * @var {string}
+ * The default font-family for a medium {@link #scale} button when the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-family for a medium {@link #scale} button when the button is focused
+ */
+/**
+ * @var {string}
+ * The default font-family for a medium {@link #scale} button when the button is pressed
+ */
+/**
+ * @var {string}
+ * The default font-family for a medium {@link #scale} button when the button is focused
+ * and the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-family for a medium {@link #scale} button when the button is focused
+ * and pressed
+ */
+/**
+ * @var {string}
+ * The default font-family for a medium {@link #scale} button when the button is disabled
+ */
+/**
+ * @var {number}
+ * The line-height for the text in a medium {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default icon size for a medium {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The space between a medium {@link #scale} button's icon and text
+ */
+/**
+ * @var {number}
+ * The default width of a medium {@link #scale} button's {@link #cfg-menu} arrow
+ */
+/**
+ * @var {number}
+ * The default height of a medium {@link #scale} button's {@link #cfg-menu} arrow
+ */
+/**
+ * @var {number}
+ * The default width of a medium {@link #scale} {@link Ext.button.Split Split Button}'s arrow
+ */
+/**
+ * @var {number}
+ * The default height of a medium {@link #scale} {@link Ext.button.Split Split Button}'s arrow
+ */
+/**
+ * @var {number}
+ * The default border-radius for a large {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default border-width for a large {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default padding for a large {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default horizontal padding to add to the left and right of the text element for
+ * a large {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default font-size for a large {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default font-size for a large {@link #scale} button when the cursor is over the button
+ */
+/**
+ * @var {number}
+ * The default font-size for a large {@link #scale} button when the button is focused
+ */
+/**
+ * @var {number}
+ * The default font-size for a large {@link #scale} button when the button is pressed
+ */
+/**
+ * @var {number}
+ * The default font-size for a large {@link #scale} button when the button is focused
+ * and the cursor is over the button
+ */
+/**
+ * @var {number}
+ * The default font-size for a large {@link #scale} button when the button is focused
+ * and pressed
+ */
+/**
+ * @var {number}
+ * The default font-size for a large {@link #scale} button when the button is disabled
+ */
+/**
+ * @var {string}
+ * The default font-weight for a large {@link #scale} button
+ */
+/**
+ * @var {string}
+ * The default font-weight for a large {@link #scale} button when the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-weight for a large {@link #scale} button when the button is focused
+ */
+/**
+ * @var {string}
+ * The default font-weight for a large {@link #scale} button when the button is pressed
+ */
+/**
+ * @var {string}
+ * The default font-weight for a large {@link #scale} button when the button is focused
+ * and the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-weight for a large {@link #scale} button when the button is focused
+ * and pressed
+ */
+/**
+ * @var {string}
+ * The default font-weight for a large {@link #scale} button when the button is disabled
+ */
+/**
+ * @var {string}
+ * The default font-family for a large {@link #scale} button
+ */
+/**
+ * @var {string}
+ * The default font-family for a large {@link #scale} button when the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-family for a large {@link #scale} button when the button is focused
+ */
+/**
+ * @var {string}
+ * The default font-family for a large {@link #scale} button when the button is pressed
+ */
+/**
+ * @var {string}
+ * The default font-family for a large {@link #scale} button when the button is focused
+ * and the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-family for a large {@link #scale} button when the button is focused
+ * and pressed
+ */
+/**
+ * @var {string}
+ * The default font-family for a large {@link #scale} button when the button is disabled
+ */
+/**
+ * @var {number}
+ * The line-height for the text in a large {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The default icon size for a large {@link #scale} button
+ */
+/**
+ * @var {number}
+ * The space between a large {@link #scale} button's icon and text
+ */
+/**
+ * @var {number}
+ * The default width of a large {@link #scale} button's {@link #cfg-menu} arrow
+ */
+/**
+ * @var {number}
+ * The default height of a large {@link #scale} button's {@link #cfg-menu} arrow
+ */
+/**
+ * @var {number}
+ * The default width of a large {@link #scale} {@link Ext.button.Split Split Button}'s arrow
+ */
+/**
+ * @var {number}
+ * The default height of a large {@link #scale} {@link Ext.button.Split Split Button}'s arrow
+ */
+/**
+ * @var {color}
+ * The base color for the `default` button UI
+ */
+/**
+ * @var {color}
+ * The base color for the `default` button UI when the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The base color for the `default` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The base color for the `default` button UI when the button is pressed
+ */
+/**
+ * @var {color}
+ * The base color for the `default` button UI when the button is focused and the cursor
+ * is over the button
+ */
+/**
+ * @var {color}
+ * The base color for the `default` button UI when the button is focused and pressed
+ */
+/**
+ * @var {color}
+ * The base color for the `default` button UI when the button is disabled
+ */
+/**
+ * @var {color}
+ * The border-color for the `default` button UI
+ */
+/**
+ * @var {color}
+ * The border-color for the `default` button UI when the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The border-color for the `default` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The border-color for the `default` button UI when the button is pressed
+ */
+/**
+ * @var {color}
+ * The border-color for the `default` button UI when the button is focused and the cursor
+ * is over the button
+ */
+/**
+ * @var {color}
+ * The border-color for the `default` button UI when the button is focused and pressed
+ */
+/**
+ * @var {color}
+ * The border-color for the `default` button UI when the button is disabled
+ */
+/**
+ * @var {color}
+ * The background-color for the `default` button UI
+ */
+/**
+ * @var {color}
+ * The background-color for the `default` button UI when the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The background-color for the `default` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The background-color for the `default` button UI when the button is pressed
+ */
+/**
+ * @var {color}
+ * The background-color for the `default` button UI when the button is focused and the
+ * cursor is over the button
+ */
+/**
+ * @var {color}
+ * The background-color for the `default` button UI when the button is focused and pressed
+ */
+/**
+ * @var {color}
+ * The background-color for the `default` button UI when the button is disabled
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default` button UI. Can be either the name of a
+ * predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default` button UI when the cursor is over the button.
+ * Can be either the name of a predefined gradient or a list of color stops. Used as the
+ * `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default` button UI when the button is focused. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default` button UI when the button is pressed. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default` button UI when the button is focused and the
+ * cursor is over the button. Can be either the name of a predefined gradient or a list
+ * of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default` button UI when the button is focused and
+ * pressed. Can be either the name of a predefined gradient or a list of color stops.
+ * Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default` button UI when the button is disabled. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {color}
+ * The text color for the `default` button UI
+ */
+/**
+ * @var {color}
+ * The text color for the `default` button UI when the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The text color for the `default` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The text color for the `default` button UI when the button is pressed
+ */
+/**
+ * @var {color}
+ * The text color for the `default` button UI when the button is focused and the cursor
+ * is over the button
+ */
+/**
+ * @var {color}
+ * The text color for the `default` button UI when the button is focused and pressed
+ */
+/**
+ * @var {color}
+ * The text color for the `default` button UI when the button is disabled
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `default` button UI
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `default` button UI when the cursor is over the button
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `default` button UI when the button is focused
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `default` button UI when the button is pressed
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `default` button UI when the button is focused and the
+ * cursor is over the button
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `default` button UI when the button is focused and pressed
+ */
+/**
+ * @var {number/lipressed}
+ * The inner border-width for the `default` button UI when the button is disabled
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default` button UI
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default` button UI when the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default` button UI when the button is pressed
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default` button UI when the button is focused and the
+ * cursor is over the button
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default` button UI when the button is focused and pressed
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default` button UI when the button is disabled
+ */
+/**
+ * @var {number}
+ * The body outline width for the `default` button UI when the button is focused
+ */
+/**
+ * @var {string}
+ * The body outline-style for the `default` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The body outline color for the `default` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The color of the {@link #glyph} icon for the `default` button UI
+ */
+/**
+ * @var {color}
+ * The opacity of the {@link #glyph} icon for the `default` button UI
+ */
+/**
+ * @var {color}
+ * The border-color for the `default-toolbar` button UI
+ */
+/**
+ * @var {color}
+ * The border-color for the `default-toolbar` button UI when the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The border-color for the `default-toolbar` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The border-color for the `default-toolbar` button UI when the button is pressed
+ */
+/**
+ * @var {color}
+ * The border-color for the `default-toolbar` button UI when the button is focused and the
+ * cursor is over the button
+ */
+/**
+ * @var {color}
+ * The border-color for the `default-toolbar` button UI when the button is focused and
+ * pressed
+ */
+/**
+ * @var {color}
+ * The border-color for the `default-toolbar` button UI when the button is disabled
+ */
+/**
+ * @var {color}
+ * The background-color for the `default-toolbar` button UI
+ */
+/**
+ * @var {color}
+ * The background-color for the `default-toolbar` button UI when the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The background-color for the `default-toolbar` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The background-color for the `default-toolbar` button UI when the button is pressed
+ */
+/**
+ * @var {color}
+ * The background-color for the `default-toolbar` button UI when the button is focused
+ * and the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The background-color for the `default-toolbar` button UI when the button is focused
+ * and pressed
+ */
+/**
+ * @var {color}
+ * The background-color for the `default-toolbar` button UI when the button is disabled
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default-toolbar` button UI. Can be either the name of
+ * a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default-toolbar` button UI when the cursor is over the
+ * button. Can be either the name of a predefined gradient or a list of color stops. Used
+ * as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default-toolbar` button UI when the button is focused.
+ * Can be either the name of a predefined gradient or a list of color stops. Used as the
+ * `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default-toolbar` button UI when the button is pressed.
+ * Can be either the name of a predefined gradient or a list of color stops. Used as the
+ * `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default-toolbar` button UI when the button is focused
+ * and the cursor is over the button. Can be either the name of a predefined gradient or a
+ * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default-toolbar` button UI when the button is focused
+ * and pressed. Can be either the name of a predefined gradient or a list of color stops.
+ * Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `default-toolbar` button UI when the button is disabled.
+ * Can be either the name of a predefined gradient or a list of color stops. Used as the
+ * `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {color}
+ * The text color for the `default-toolbar` button UI
+ */
+/**
+ * @var {color}
+ * The text color for the `default-toolbar` button UI when the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The text color for the `default-toolbar` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The text color for the `default-toolbar` button UI when the button is pressed
+ */
+/**
+ * @var {color}
+ * The text color for the `default-toolbar` button UI when the button is focused and the
+ * cursor is over the button
+ */
+/**
+ * @var {color}
+ * The text color for the `default-toolbar` button UI when the button is focused and pressed
+ */
+/**
+ * @var {color}
+ * The text color for the `default-toolbar` button UI when the button is disabled
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `default-toolbar` button UI
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `default-toolbar` button UI when the cursor is over the button
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `default-toolbar` button UI when the button is focused
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `default-toolbar` button UI when the button is pressed
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `default-toolbar` button UI when the button is focused
+ * and the cursor is over the button
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `default-toolbar` button UI when the button is focused
+ * and pressed
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `default-toolbar` button UI when the button is disabled
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default-toolbar` button UI
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default-toolbar` button UI when the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default-toolbar` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default-toolbar` button UI when the button is pressed
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default-toolbar` button UI when the button is focused
+ * and the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default-toolbar` button UI when the button is focused
+ * and pressed
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `default-toolbar` button UI when the button is disabled
+ */
+/**
+ * @var {number}
+ * The body outline width for the `default-toolbar` button UI when the button is focused
+ */
+/**
+ * @var {string}
+ * The body outline-style for the `default-toolbar` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The body outline color for the `default-toolbar` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The color of the {@link #glyph} icon for the `default-toolbar` button UI
+ */
+/**
+ * @var {color}
+ * The opacity of the {@link #glyph} icon for the `default-toolbar` button UI
+ */
+/**
+ * @var {boolean} $button-include-ui-menu-arrows
+ * True to use a different image url for the menu button arrows for each button UI
+ */
+/**
+ * @var {boolean} $button-include-ui-split-arrows
+ * True to use a different image url for the split button arrows for each button UI
+ */
+/**
+ * @var {boolean} $button-include-split-over-arrows
+ * True to include different split arrows for buttons' hover state.
+ */
+/**
+ * @var {boolean} $button-include-split-noline-arrows
+ * True to include "noline" split arrows for buttons in their default state.
+ */
+/**
+ * @var {boolean} $button-toolbar-include-split-noline-arrows
+ * True to include "noline" split arrows for toolbar buttons in their default state.
+ */
+/**
+ * @var {number} $button-opacity-disabled
+ * opacity to apply to the button's main element when the buton is disabled
+ */
+/**
+ * @var {number} $button-inner-opacity-disabled
+ * opacity to apply to the button's inner elements (icon and text) when the buton is disabled
+ */
+/**
+ * @var {number} $button-toolbar-opacity-disabled
+ * opacity to apply to the toolbar button's main element when the button is disabled
+ */
+/**
+ * @var {number} $button-toolbar-inner-opacity-disabled
+ * opacity to apply to the toolbar button's inner elements (icon and text) when the buton is disabled
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" button UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" button UI for "small" scale buttons
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" button UI for "medium" scale buttons
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" button UI for "large" scale buttons
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" button UI for buttons rendered inside a grid cell (Slightly smaller height than default)
+ */
+/**
+ * @var {boolean}
+ * True to include the "default-toolbar" button UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "default-toolbar" button UI for "small" scale buttons
+ */
+/**
+ * @var {boolean}
+ * True to include the "default-toolbar" button UI for "medium" scale buttons
+ */
+/**
+ * @var {boolean}
+ * True to include the "default-toolbar" button UI for "large" scale buttons
+ */
+/**
+ * @var {number}
+ * The default width for a grid cell button's {@link #cfg-menu} arrow
+ */
+/**
+ * @var {number}
+ * The default height for a grid cell button's {@link #cfg-menu} arrow
+ */
+/**
+ * @var {number}
+ * The default width a grid cell {@link Ext.button.Split Split Button}'s arrow
+ */
+/**
+ * @var {number}
+ * The default height a grid cell {@link Ext.button.Split Split Button}'s arrow
+ */
+/**
+ * @var {number}
+ * The default space between a grid cell button's icon and text
+ */
+/**
+ * @var {number}
+ * The default border-radius for a grid cell button
+ */
+/**
+ * @var {number}
+ * The default border-width for a grid cell button
+ */
+/**
+ * @var {number}
+ * The default padding for a grid cell button
+ */
+/**
+ * @var {number}
+ * The default horizontal padding to add to the left and right of the text element for
+ * a grid cell button
+ */
+/**
+ * @var {number}
+ * The default font-size for a grid cell button
+ */
+/**
+ * @var {number}
+ * The default font-size for a grid cell button when the cursor is over the button
+ */
+/**
+ * @var {number}
+ * The default font-size for a grid cell button when the button is focused
+ */
+/**
+ * @var {number}
+ * The default font-size for a grid cell button when the button is pressed
+ */
+/**
+ * @var {number}
+ * The default font-size for a grid cell button when the button is focused and the cursor
+ * is over the button
+ */
+/**
+ * @var {number}
+ * The default font-size for a grid cell button when the button is focused and pressed
+ */
+/**
+ * @var {number}
+ * The default font-size for a grid cell button when the button is disabled
+ */
+/**
+ * @var {string}
+ * The default font-weight for a grid cell button
+ */
+/**
+ * @var {string}
+ * The default font-weight for a grid cell button when the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-weight for a grid cell button when the button is focused
+ */
+/**
+ * @var {string}
+ * The default font-weight for a grid cell button when the button is pressed
+ */
+/**
+ * @var {string}
+ * The default font-weight for a grid cell button when the button is focused and the
+ * cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-weight for a grid cell button when the button is focused and pressed
+ */
+/**
+ * @var {string}
+ * The default font-weight for a grid cell button when the button is disabled
+ */
+/**
+ * @var {string}
+ * The default font-family for a grid cell button
+ */
+/**
+ * @var {string}
+ * The default font-family for a grid cell button when the cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-family for a grid cell button when the button is focused
+ */
+/**
+ * @var {string}
+ * The default font-family for a grid cell button when the button is pressed
+ */
+/**
+ * @var {string}
+ * The default font-family for a grid cell button when the button is focused and the
+ * cursor is over the button
+ */
+/**
+ * @var {string}
+ * The default font-family for a grid cell button when the button is focused and pressed
+ */
+/**
+ * @var {string}
+ * The default font-family for a grid cell button when the button is disabled
+ */
+/**
+ * @var {number}
+ * The line-height for the text in a grid cell button
+ */
+/**
+ * @var {number}
+ * The default icon size for a grid cell button
+ */
+/**
+ * @var {color}
+ * The border-color for the `cell` button UI
+ */
+/**
+ * @var {color}
+ * The border-color for the `cell` button UI when the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The border-color for the `cell` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The border-color for the `cell` button UI when the button is pressed
+ */
+/**
+ * @var {color}
+ * The border-color for the `cell` button UI when the button is focused and the cursor
+ * is over the button
+ */
+/**
+ * @var {color}
+ * The border-color for the `cell` button UI when the button is focused and pressed
+ */
+/**
+ * @var {color}
+ * The border-color for the `cell` button UI when the button is disabled
+ */
+/**
+ * @var {color}
+ * The background-color for the `cell` button UI
+ */
+/**
+ * @var {color}
+ * The background-color for the `cell` button UI when the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The background-color for the `cell` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The background-color for the `cell` button UI when the button is pressed
+ */
+/**
+ * @var {color}
+ * The background-color for the `cell` button UI when the button is focused and the cursor
+ * is over the button
+ */
+/**
+ * @var {color}
+ * The background-color for the `cell` button UI when the button is focused and pressed
+ */
+/**
+ * @var {color}
+ * The background-color for the `cell` button UI when the button is disabled
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `cell` button UI. Can be either the name of a
+ * predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `cell` button UI when the cursor is over the button.
+ * Can be either the name of a predefined gradient or a list of color stops. Used as the
+ * `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `cell` button UI when the button is focused. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `cell` button UI when the button is pressed. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `cell` button UI when the button is focused and the
+ * cursor is over the button. Can be either the name of a predefined gradient or a list
+ * of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `cell` button UI when the button is focused and pressed.
+ * Can be either the name of a predefined gradient or a list of color stops. Used as the
+ * `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the `cell` button UI when the button is disabled. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {color}
+ * The text color for the `cell` button UI
+ */
+/**
+ * @var {color}
+ * The text color for the `cell` button UI when the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The text color for the `cell` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The text color for the `cell` button UI when the button is pressed
+ */
+/**
+ * @var {color}
+ * The text color for the `cell` button UI when the button is focused and the cursor is
+ * over the button
+ */
+/**
+ * @var {color}
+ * The text color for the `cell` button UI when the button is focused and pressed
+ */
+/**
+ * @var {color}
+ * The text color for the `cell` button UI when the button is disabled
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `cell` button UI
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `cell` button UI when the cursor is over the button
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `cell` button UI when the button is focused
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `cell` button UI when the button is pressed
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `cell` button UI when the button is focused and the
+ * cursor is over the button
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `cell` button UI when the button is focused and pressed
+ */
+/**
+ * @var {number/list}
+ * The inner border-width for the `cell` button UI when the button is disabled
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `cell` button UI
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `cell` button UI when the cursor is over the button
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `cell` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `cell` button UI when the button is pressed
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `cell` button UI when the button is focused and the
+ * cursor is over the button
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `cell` button UI when the button is focused and pressed
+ */
+/**
+ * @var {color}
+ * The inner border-color for the `cell` button UI when the button is disabled
+ */
+/**
+ * @var {number}
+ * The body outline width for the `cell` button UI when the button is focused
+ */
+/**
+ * @var {string}
+ * The body outline-style for the `cell` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The body outline color for the `cell` button UI when the button is focused
+ */
+/**
+ * @var {color}
+ * The color of the {@link #glyph} icon for the `cell` button UI
+ */
+/**
+ * @var {color}
+ * The opacity of the {@link #glyph} icon for the `cell` button UI
+ */
+/**
+ * @var {number} $button-grid-cell-opacity-disabled
+ * opacity to apply to the button's main element when the button is disabled
+ */
+/**
+ * @var {number} $button-grid-cell-inner-opacity-disabled
+ * opacity to apply to the button's inner elements (icon and text) when the buton is disabled
+ */
+/**
+ * @class Ext.form.field.HtmlEditor
+ */
+/**
+ * @var {number}
+ * The border-width of the HtmlEditor
+ */
+/**
+ * @var {color}
+ * The border-color of the HtmlEditor
+ */
+/**
+ * @var {color}
+ * The background-color of the HtmlEditor
+ */
+/**
+ * @var {number}
+ * The size of the HtmlEditor toolbar icons
+ */
+/**
+ * @var {number}
+ * The font-size of the HtmlEditor's font selection control
+ */
+/**
+ * @var {number}
+ * The font-family of the HtmlEditor's font selection control
+ */
+/**
+ * @class Ext.FocusManager
+ */
+/**
+ * @var {color}
+ * The border-color of the focusFrame. See {@link #method-enable}.
+ */
+/**
+ * @var {color}
+ * The border-style of the focusFrame. See {@link #method-enable}.
+ */
+/**
+ * @var {color}
+ * The border-width of the focusFrame. See {@link #method-enable}.
+ */
+/**
+ * @class Ext.ProgressBar
+ */
+/**
+ * @var {number}
+ * The height of the ProgressBar
+ */
+/**
+ * @var {color}
+ * The border-color of the ProgressBar
+ */
+/**
+ * @var {number}
+ * The border-width of the ProgressBar
+ */
+/**
+ * @var {number}
+ * The border-radius of the ProgressBar
+ */
+/**
+ * @var {color}
+ * The background-color of the ProgressBar
+ */
+/**
+ * @var {color}
+ * The background-color of the ProgressBar's moving element
+ */
+/**
+ * @var {string/list}
+ * The background-gradient of the ProgressBar's moving element. Can be either the name of
+ * a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {color}
+ * The color of the ProgressBar's text when in front of the ProgressBar's moving element
+ */
+/**
+ * @var {color}
+ * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it
+ */
+/**
+ * @var {string}
+ * The text-align of the ProgressBar's text
+ */
+/**
+ * @var {number}
+ * The font-size of the ProgressBar's text
+ */
+/**
+ * @var {string}
+ * The font-weight of the ProgressBar's text
+ */
+/**
+ * @var {string}
+ * The font-family of the ProgressBar's text
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" ProgressBar UI
+ */
+/**
+ * @class Ext.view.Table
+ */
+/**
+ * @var {color}
+ * The color of the text in the grid cells
+ */
+/**
+ * @var {number}
+ * The font size of the text in the grid cells
+ */
+/**
+ * @var {number}
+ * The line-height of the text inside the grid cells.
+ */
+/**
+ * @var {string}
+ * The font-weight of the text in the grid cells
+ */
+/**
+ * @var {string}
+ * The font-family of the text in the grid cells
+ */
+/**
+ * @var {color}
+ * The background-color of the grid cells
+ */
+/**
+ * @var {color}
+ * The border-color of row/column borders. Can be specified as a single color, or as a list
+ * of colors containing the row border color followed by the column border color.
+ */
+/**
+ * @var {string}
+ * The border-style of the row/column borders.
+ */
+/**
+ * @var {number}
+ * The border-width of the row and column borders.
+ */
+/**
+ * @var {color}
+ * The background-color of "special" cells. Special cells are created by {@link
+ * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
+ * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ */
+/**
+ * @var {string}
+ * The background-gradient to use for "special" cells. Special cells are created by {@link
+ * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
+ * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ */
+/**
+ * @var {number}
+ * The border-width of "special" cells. Special cells are created by {@link
+ * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
+ * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ * Only applies to the vertical border, since the row border width is determined by
+ * {#$grid-row-cell-border-width}.
+ */
+/**
+ * @var {color}
+ * The border-color of "special" cells. Special cells are created by {@link
+ * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
+ * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ * Only applies to the vertical border, since the row border color is determined by
+ * {#$grid-row-cell-border-color}.
+ */
+/**
+ * @var {string}
+ * The border-style of "special" cells. Special cells are created by {@link
+ * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
+ * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ * Only applies to the vertical border, since the row border style is determined by
+ * {#$grid-row-cell-border-style}.
+ */
+/**
+ * @var {color}
+ * The border-color of "special" cells when the row is selected using a {@link
+ * Ext.selection.RowModel Row Selection Model}. Special cells are created by {@link
+ * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
+ * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ * Only applies to the vertical border, since the selected row border color is determined by
+ * {#$grid-row-cell-selected-border-color}.
+ */
+/**
+ * @var {color}
+ * The background-color of "special" cells when the row is hovered. Special cells are
+ * created by {@link Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel
+ * Checkbox Selection Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ */
+/**
+ * @var {color}
+ * The background-color color of odd-numbered rows when the table view is configured with
+ * `{@link Ext.view.Table#stripeRows stripeRows}: true`.
+ */
+/**
+ * @var {string}
+ * The border-style of the hovered row
+ */
+/**
+ * @var {color}
+ * The text color of the hovered row
+ */
+/**
+ * @var {color}
+ * The background-color of the hovered row
+ */
+/**
+ * @var {color}
+ * The border-color of the hovered row
+ */
+/**
+ * @var {string}
+ * The border-style of the selected row
+ */
+/**
+ * @var {color}
+ * The text color of the selected row
+ */
+/**
+ * @var {color}
+ * The background-color of the selected row
+ */
+/**
+ * @var {color}
+ * The border-color of the selected row
+ */
+/**
+ * @var {number}
+ * The border-width of the focused cell
+ */
+/**
+ * @var {color}
+ * The border-color of the focused cell
+ */
+/**
+ * @var {string}
+ * The border-style of the focused cell
+ */
+/**
+ * @var {number}
+ * The spacing between grid cell border and inner focus border
+ */
+/**
+ * @var {color}
+ * The text color of the focused cell
+ */
+/**
+ * @var {color}
+ * The background-color of the focused cell
+ */
+/**
+ * @var {boolean}
+ * True to show the focus border when a row is focused even if the grid has no
+ * {@link Ext.panel.Table#rowLines rowLines}.
+ */
+/**
+ * @var {color}
+ * The text color of a selected cell when using a {@link Ext.selection.CellModel
+ * Cell Selection Model}.
+ */
+/**
+ * @var {color}
+ * The background-color of a selected cell when using a {@link Ext.selection.CellModel
+ * Cell Selection Model}.
+ */
+/**
+ * @var {number}
+ * The amount of padding to apply to the grid cell's inner div element
+ */
+/**
+ * @var {string}
+ * The type of text-overflow to use on the grid cell's inner div element
+ */
+/**
+ * @var {color}
+ * The border-color of the grid body
+ */
+/**
+ * @var {number}
+ * The border-width of the grid body border
+ */
+/**
+ * @var {string}
+ * The border-style of the grid body border
+ */
+/**
+ * @var {color}
+ * The background-color of the grid body
+ */
+/**
+ * @var {number}
+ * The amount of padding to apply to the grid body when the grid contains no data.
+ */
+/**
+ * @var {color}
+ * The text color of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
+ * the grid contains no data.
+ */
+/**
+ * @var {color}
+ * The background color of the grid body when the grid contains no data.
+ */
+/**
+ * @var {number}
+ * The font-size of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
+ * the grid contains no data.
+ */
+/**
+ * @var {number}
+ * The font-weight of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
+ * the grid contains no data.
+ */
+/**
+ * @var {number}
+ * The font-family of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
+ * the grid contains no data.
+ */
+/**
+ * @var {color}
+ * The color of the resize markers that display when dragging a column border to resize
+ * the column
+ */
+/**
+ * @class Ext.tree.View
+ */
+/**
+ * @var {number} $tree-elbow-width
+ * The width of the tree elbow/arrow icons
+ */
+/**
+ * @var {number} $tree-icon-width
+ * The width of the tree folder/leaf icons
+ */
+/**
+ * @var {number} $tree-elbow-spacing
+ * The amount of spacing between the tree elbows or arrows, and the checkbox or icon.
+ */
+/**
+ * @var {number} $tree-checkbox-spacing
+ * The amount of space (in pixels) between the tree checkbox and the folder/leaf icon
+ */
+/**
+ * @var {number} $tree-icon-spacing
+ * The amount of space (in pixels) between the folder/leaf icons and the text
+ */
+/**
+ * @var {string} $tree-expander-cursor
+ * The type of cursor to display when the mouse is over a tree expander (+, - or arrow icon)
+ */
+/**
+ * @var {number/list}
+ * The amount of padding to apply to the tree cell's inner div element
+ */
+/**
+ * @class Ext.grid.header.DropZone
+ */
+/**
+ * @var {number}
+ * The size of the column move icon
+ */
+/**
+ * @class Ext.grid.header.Container
+ */
+/**
+ * @var {color}
+ * The background-color of grid headers
+ */
+/**
+ * @var {string/list}
+ * The background-gradient of grid headers. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {color}
+ * The border-color of grid headers
+ */
+/**
+ * @var {number}
+ * The border-width of grid headers
+ */
+/**
+ * @var {string}
+ * The border-style of grid headers
+ */
+/**
+ * @var {color}
+ * The background-color of grid headers when the cursor is over the header
+ */
+/**
+ * @var {string/list}
+ * The background-gradient of grid headers when the cursor is over the header. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {color}
+ * The background-color of a grid header when its menu is open
+ */
+/**
+ * @var {number/list}
+ * The padding to apply to grid headers
+ */
+/**
+ * @var {number}
+ * The height of grid header triggers
+ */
+/**
+ * @var {number}
+ * The width of grid header triggers
+ */
+/**
+ * @var {number}
+ * The width of the grid header sort icon
+ */
+/**
+ * @var {string}
+ * The type of cursor to display when the cursor is over a grid header trigger
+ */
+/**
+ * @var {number}
+ * The amount of space between the header trigger and text
+ */
+/**
+ * @var {list}
+ * The background-position of the header trigger
+ */
+/**
+ * @var {color}
+ * The background-color of the header trigger
+ */
+/**
+ * @var {color}
+ * The background-color of the header trigger when the menu is open
+ */
+/**
+ * @var {number}
+ * The space between the grid header sort icon and the grid header text
+ */
+/**
+ * @class Ext.grid.column.Column
+ */
+/**
+ * @var {string}
+ * The font-family of grid column headers
+ */
+/**
+ * @var {number}
+ * The font-size of grid column headers
+ */
+/**
+ * @var {string}
+ * The font-weight of grid column headers
+ */
+/**
+ * @var {number}
+ * The line-height of grid column headers
+ */
+/**
+ * @var {string}
+ * The text-overflow of grid column headers
+ */
+/**
+ * @var {color}
+ * The text color of grid column headers
+ */
+/**
+ * @var {number}
+ * The border-width of grid column headers
+ */
+/**
+ * @var {string}
+ * The border-style of grid column headers
+ */
+/**
+ * @var {color}
+ * The text color of focused grid column headers
+ */
+/**
+ * @var {color}
+ * The background-color of focused grid column headers
+ */
+/**
+ * @var {number}
+ * The border-width of focused grid column headers
+ */
+/**
+ * @var {string}
+ * The border-style of focused grid column headers
+ */
+/**
+ * @var {number}
+ * The spacing between column header element border and inner focus border
+ */
+/**
+ * @var {color}
+ * The border color of focused grid column headers
+ */
+/**
+ * @class Ext.layout.container.Border
+ */
+/**
+ * @var {color}
+ * The background-color of the Border layout element
+ */
+/**
+ * @class Ext.tab.Tab
+ */
+/**
+ * @var {color}
+ * The base color of Tabs
+ */
+/**
+ * @var {color}
+ * The base color of focused Tabs
+ */
+/**
+ * @var {color}
+ * The base color of hovered Tabs
+ */
+/**
+ * @var {color}
+ * The base color of the active Tabs
+ */
+/**
+ * @var {color}
+ * The base color of focused hovered Tabs
+ */
+/**
+ * @var {color}
+ * The base color of the active Tab when focused
+ */
+/**
+ * @var {color}
+ * The base color of disabled Tabs
+ */
+/**
+ * @var {color}
+ * The text color of Tabs
+ */
+/**
+ * @var {color}
+ * The text color of focused Tabs
+ */
+/**
+ * @var {color}
+ * The text color of hovered Tabs
+ */
+/**
+ * @var {color}
+ * The text color of the active Tab
+ */
+/**
+ * @var {color}
+ * The text color of focused hovered Tabs
+ */
+/**
+ * @var {color}
+ * The text color of the active Tab when focused
+ */
+/**
+ * @var {color}
+ * The text color of disabled Tabs
+ */
+/**
+ * @var {number}
+ * The font-size of Tabs
+ */
+/**
+ * @var {number}
+ * The font-size of focused Tabs
+ */
+/**
+ * @var {number}
+ * The font-size of hovered Tabs
+ */
+/**
+ * @var {number}
+ * The font-size of the active Tab
+ */
+/**
+ * @var {number}
+ * The font-size of focused hovered Tabs
+ */
+/**
+ * @var {number}
+ * The font-size of the active Tab when focused
+ */
+/**
+ * @var {number}
+ * The font-size of disabled Tabs
+ */
+/**
+ * @var {string}
+ * The font-family of Tabs
+ */
+/**
+ * @var {string}
+ * The font-family of focused Tabs
+ */
+/**
+ * @var {string}
+ * The font-family of hovered Tabs
+ */
+/**
+ * @var {string}
+ * The font-family of the active Tab
+ */
+/**
+ * @var {string}
+ * The font-family of focused hovered Tabs
+ */
+/**
+ * @var {string}
+ * The font-family of the active Tab when focused
+ */
+/**
+ * @var {string}
+ * The font-family of disabled Tabs
+ */
+/**
+ * @var {string}
+ * The font-weight of Tabs
+ */
+/**
+ * @var {string}
+ * The font-weight of focused Tabs
+ */
+/**
+ * @var {string}
+ * The font-weight of hovered Tabs
+ */
+/**
+ * @var {string}
+ * The font-weight of the active Tab
+ */
+/**
+ * @var {string}
+ * The font-weight of focused hovered Tabs
+ */
+/**
+ * @var {string}
+ * The font-weight of the active Tab when focused
+ */
+/**
+ * @var {string}
+ * The font-weight of disabled Tabs
+ */
+/**
+ * @var {string}
+ * The Tab cursor
+ */
+/**
+ * @var {string}
+ * The cursor of disabled Tabs
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for Tabs. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for focused Tabs. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for hovered Tabs. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the active Tab. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for focused hovered Tabs. Can be either the name of a
+ * predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for the active Tab when focused. Can be either the name of a
+ * predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for disabled Tabs. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {list}
+ * The border-radius of Tabs
+ */
+/**
+ * @var {number/list}
+ * The border-width of Tabs
+ */
+/**
+ * @var {number/list}
+ * The border-width of focused Tabs
+ */
+/**
+ * @var {number/list}
+ * The border-width of hovered Tabs
+ */
+/**
+ * @var {number/list}
+ * The border-width of active Tabs
+ */
+/**
+ * @var {number/list}
+ * The border-width of focused hovered Tabs
+ */
+/**
+ * @var {number/list}
+ * The border-width of active Tabs when focused
+ */
+/**
+ * @var {number/list}
+ * The border-width of disabled Tabs
+ */
+/**
+ * @var {number/list}
+ * The inner border-width of Tabs
+ */
+/**
+ * @var {number/list}
+ * The inner border-width of focused Tabs
+ */
+/**
+ * @var {number/list}
+ * The inner border-width of hovered Tabs
+ */
+/**
+ * @var {number/list}
+ * The inner border-width of active Tabs
+ */
+/**
+ * @var {number/list}
+ * The inner border-width of focused hovered Tabs
+ */
+/**
+ * @var {number/list}
+ * The inner border-width of active Tabs when focused
+ */
+/**
+ * @var {number/list}
+ * The inner border-width of disabled Tabs
+ */
+/**
+ * @var {color}
+ * The inner border-color of Tabs
+ */
+/**
+ * @var {color}
+ * The inner border-color of focused Tabs
+ */
+/**
+ * @var {color}
+ * The inner border-color of hovered Tabs
+ */
+/**
+ * @var {color}
+ * The inner border-color of active Tabs
+ */
+/**
+ * @var {color}
+ * The inner border-color of focused hovered Tabs
+ */
+/**
+ * @var {color}
+ * The inner border-color of active Tabs when focused
+ */
+/**
+ * @var {color}
+ * The inner border-color of disabled Tabs
+ */
+/**
+ * @var {boolean}
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ */
+/**
+ * @var {boolean}
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is focused
+ */
+/**
+ * @var {boolean}
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is hovered
+ */
+/**
+ * @var {boolean}
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is active
+ */
+/**
+ * @var {boolean}
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is focused and hovered
+ */
+/**
+ * @var {boolean}
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is focused and active
+ */
+/**
+ * @var {boolean}
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is disabled
+ */
+/**
+ * @var {number}
+ * The body outline width of focused Tabs
+ */
+/**
+ * @var {string}
+ * The body outline-style of focused Tabs
+ */
+/**
+ * @var {color}
+ * The body outline color of focused Tabs
+ */
+/**
+ * @var {color}
+ * The border-color of Tabs
+ */
+/**
+ * @var {color}
+ * The border-color of focused Tabs
+ */
+/**
+ * @var {color}
+ * The border-color of hovered Tabs
+ */
+/**
+ * @var {color}
+ * The border-color of the active Tab
+ */
+/**
+ * @var {color}
+ * The border-color of focused hovered Tabs
+ */
+/**
+ * @var {color}
+ * The border-color of the active Tab when focused
+ */
+/**
+ * @var {color}
+ * The border-color of disabled Tabs
+ */
+/**
+ * @var {number/list}
+ * The padding of Tabs
+ */
+/**
+ * @var {number}
+ * The horizontal padding to add to the left and right of the Tab's text element
+ */
+/**
+ * @var {number/list}
+ * The margin of Tabs. Typically used to add horizontal space between the tabs.
+ */
+/**
+ * @var {number}
+ * The width of the Tab close icon
+ */
+/**
+ * @var {number}
+ * The height of the Tab close icon
+ */
+/**
+ * @var {number}
+ * The distance to offset the Tab close icon from the top of the tab
+ */
+/**
+ * @var {number}
+ * The distance to offset the Tab close icon from the right of the tab
+ */
+/**
+ * @var {number}
+ * the space in between the text and the close button
+ */
+/**
+ * @var {number}
+ * The opacity of the Tab close icon
+ */
+/**
+ * @var {number}
+ * The opacity of the Tab close icon when hovered
+ */
+/**
+ * @var {number}
+ * The opacity of the Tab close icon when the Tab is disabled
+ */
+/**
+ * @var {boolean}
+ * True to change the x background-postition of the close icon background image on hover
+ * to allow for a horizontally aligned background image sprite
+ */
+/**
+ * @var {boolean}
+ * True to change the x background-postition of the close icon background image on click
+ * to allow for a horizontally aligned background image sprite
+ */
+/**
+ * @var {number}
+ * The width of Tab icons
+ */
+/**
+ * @var {number}
+ * The height of Tab icons
+ */
+/**
+ * @var {number}
+ * The line-height of Tabs
+ */
+/**
+ * @var {number}
+ * The space between the Tab icon and the Tab text
+ */
+/**
+ * @var {number}
+ * The background-position of Tab icons
+ */
+/**
+ * @var {color}
+ * The color of Tab glyph icons
+ */
+/**
+ * @var {color}
+ * The color of a Tab glyph icon when the Tab is focused
+ */
+/**
+ * @var {color}
+ * The color of a Tab glyph icon when the Tab is hovered
+ */
+/**
+ * @var {color}
+ * The color of a Tab glyph icon when the Tab is active
+ */
+/**
+ * @var {color}
+ * The color of a Tab glyph icon when the Tab is focused and hovered
+ */
+/**
+ * @var {color}
+ * The color of a Tab glyph icon when the Tab is focused and active
+ */
+/**
+ * @var {color}
+ * The color of a Tab glyph icon when the Tab is disabled
+ */
+/**
+ * @var {number}
+ * The opacity of a Tab glyph icon
+ */
+/**
+ * @var {number}
+ * The opacity of a Tab glyph icon when the Tab is disabled
+ */
+/**
+ * @var {number}
+ * opacity to apply to the tab's main element when the tab is disabled
+ */
+/**
+ * @var {number}
+ * opacity to apply to the tab's text element when the tab is disabled
+ */
+/**
+ * @var {number}
+ * opacity to apply to the tab's icon element when the tab is disabled
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" tab UI
+ */
+/**
+ * @class Ext.tab.Bar
+ */
+/**
+ * @var {number/list}
+ * The padding of the Tab Bar
+ */
+/**
+ * @var {color}
+ * The base color of the Tab Bar
+ */
+/**
+ * @var {string/list}
+ * The background-gradient of the Tab Bar. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {color}
+ * The border-color of the Tab Bar
+ */
+/**
+ * @var {number/list}
+ * The border-width of the Tab Bar
+ */
+/**
+ * @var {number}
+ * The height of the Tab Bar strip
+ */
+/**
+ * @var {color}
+ * The border-color of the Tab Bar strip
+ */
+/**
+ * @var {color}
+ * The background-color of the Tab Bar strip
+ */
+/**
+ * @var {number/list}
+ * The border-width of the Tab Bar strip
+ */
+/**
+ * @var {number}
+ * The width of the Tab Bar scrollers
+ */
+/**
+ * @var {number}
+ * The height of the Tab Bar scrollers
+ */
+/**
+ * @var {number/list}
+ * The margin of "top" Tab Bar scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "right" Tab Bar scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "bottom" Tab Bar scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "left" Tab Bar scroller buttons
+ */
+/**
+ * @var {string}
+ * The cursor of the Tab Bar scrollers
+ */
+/**
+ * @var {string}
+ * The cursor of disabled Tab Bar scrollers
+ */
+/**
+ * @var {number}
+ * The opacity of Tab Bar scrollers
+ */
+/**
+ * @var {number}
+ * The opacity of hovered Tab Bar scrollers
+ */
+/**
+ * @var {number}
+ * The opacity of pressed Tab Bar scrollers
+ */
+/**
+ * @var {number}
+ * The opacity of disabled Tab Bar scrollers
+ */
+/**
+ * @var {boolean}
+ * `true` to use classic-style scroller buttons. When `true` scroller buttons are given their
+ * hover state by changing their background-position, When `false` scroller buttons are
+ * given their hover state by applying opacity.
+ */
+/**
+ * @var {boolean}
+ * true to include separate scroller icons for "plain" tabbars
+ */
+/**
+ * @var {boolean}
+ * if true, the tabbar will use symmetrical scroller icons. Top and bottom tabbars
+ * will share icons, and Left and right will share icons.
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" tabbar UI
+ */
+/**
+ * @class Ext.window.Window
+ */
+/**
+ * @var {color}
+ * The base color of Windows
+ */
+/**
+ * @var {number}
+ * The padding of Windows
+ */
+/**
+ * @var {number}
+ * The border-radius of Windows
+ */
+/**
+ * @var {number}
+ * The border-width of Windows
+ */
+/**
+ * @var {color}
+ * The border-color of Windows
+ */
+/**
+ * @var {color}
+ * The inner border-color of Windows
+ */
+/**
+ * @var {number}
+ * The inner border-width of Windows
+ */
+/**
+ * @var {color}
+ * The background-color of Windows
+ */
+/**
+ * @var {number}
+ * The body border-width of Windows
+ */
+/**
+ * @var {string}
+ * The body border-style of Windows
+ */
+/**
+ * @var {color}
+ * The body border-color of Windows
+ */
+/**
+ * @var {color}
+ * The body background-color of Windows
+ */
+/**
+ * @var {color}
+ * The body text color of Windows
+ */
+/**
+ * @var {number/list}
+ * The padding of Window Headers
+ */
+/**
+ * @var {number}
+ * The font-size of Window Headers
+ */
+/**
+ * @var {number}
+ * The line-height of Window Headers
+ */
+/**
+ * @var {color}
+ * The text color of Window Headers
+ */
+/**
+ * @var {color}
+ * The background-color of Window Headers
+ */
+/**
+ * @var {string}
+ * The font-weight of Window Headers
+ */
+/**
+ * @var {number}
+ * The space between the Window {@link Ext.panel.Tool Tools}
+ */
+/**
+ * @var {string}
+ * The background sprite to use for Window {@link Ext.panel.Tool Tools}
+ */
+/**
+ * @var {string}
+ * The font-family of Window Headers
+ */
+/**
+ * @var {number/list}
+ * The padding of the Window Header's text element
+ */
+/**
+ * @var {string}
+ * The text-transform of Window Headers
+ */
+/**
+ * @var {number}
+ * The width of the Window Header icon
+ */
+/**
+ * @var {number}
+ * The height of the Window Header icon
+ */
+/**
+ * @var {number}
+ * The space between the Window Header icon and text
+ */
+/**
+ * @var {list}
+ * The background-position of the Window Header icon
+ */
+/**
+ * @var {color}
+ * The color of the Window Header glyph icon
+ */
+/**
+ * @var {number}
+ * The opacity of the Window Header glyph icon
+ */
+/**
+ * @var {number}
+ * The border-width of Window Headers
+ */
+/**
+ * @var {color}
+ * The inner border-color of Window Headers
+ */
+/**
+ * @var {number}
+ * The inner border-width of Window Headers
+ */
+/**
+ * @var {boolean} $ui-force-header-border
+ * True to force the window header to have a border on the side facing the window body.
+ * Overrides dock layout's border management border removal rules.
+ */
+/**
+ * @var {number}
+ * The opacity of ghost Windows while dragging
+ */
+/**
+ * @var {boolean}
+ * True to include neptune style border management rules.
+ */
+/**
+ * @var {color}
+ * The color to apply to the border that wraps the body and docked items. The presence of
+ * the wrap border is controlled by the {@link #border} config. Only applicable when
+ * `$window-include-border-management-rules` is `true`.
+ */
+/**
+ * @var {number}
+ * The width to apply to the border that wraps the body and docked items. The presence of
+ * the wrap border is controlled by the {@link #border} config. Only applicable when
+ * `$window-include-border-management-rules` is `true`.
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" window UI
+ */
+/**
+ * @var {boolean}
+ * True to ignore the frame padding. By default, the frame mixin adds extra padding when
+ * border radius is larger than border width. This is intended to prevent the content
+ * from colliding with the rounded corners of the frame. Set this to true to prevent
+ * the window frame from adding this extra padding.
+ */
+/**
+ * @var {number}
+ * The default font-size of the Window body
+ */
+/**
+ * @var {string}
+ * The default font-weight of the Window body
+ */
+/**
+ * @var {string}
+ * The default font-family of the Window body
+ */
+/**
+ * @class Ext.container.ButtonGroup
+ */
+/**
+ * @var {color}
+ * The background-color of the ButtonGroup
+ */
+/**
+ * @var {color}
+ * The border-color of the ButtonGroup
+ */
+/**
+ * @var {number}
+ * The border-radius of the ButtonGroup
+ */
+/**
+ * @var {number}
+ * The border-radius of framed ButtonGroups
+ */
+/**
+ * @var {number}
+ * The border-width of the ButtonGroup
+ */
+/**
+ * @var {number/list}
+ * The body padding of the ButtonGroup
+ */
+/**
+ * @var {number/list}
+ * The inner border-width of the ButtonGroup
+ */
+/**
+ * @var {color}
+ * The inner border-color of the ButtonGroup
+ */
+/**
+ * @var {number/list}
+ * The margin of the header element. Used to add space around the header.
+ */
+/**
+ * @var {number}
+ * The font-size of the header
+ */
+/**
+ * @var {number}
+ * The font-weight of the header
+ */
+/**
+ * @var {number}
+ * The font-family of the header
+ */
+/**
+ * @var {number}
+ * The line-height of the header
+ */
+/**
+ * @var {number}
+ * The text color of the header
+ */
+/**
+ * @var {number}
+ * The padding of the header
+ */
+/**
+ * @var {number}
+ * The background-color of the header
+ */
+/**
+ * @var {number}
+ * The border-spacing to use on the table layout element
+ */
+/**
+ * @var {number}
+ * The background-color of framed ButtonGroups
+ */
+/**
+ * @var {number}
+ * The border-width of framed ButtonGroups
+ */
+/**
+ * @var {string}
+ * Sprite image to use for header {@link Ext.panel.Tool Tools}
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" button group UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "default-framed" button group UI
+ */
+/**
+ * @class Ext.window.MessageBox
+ */
+/**
+ * @var {color}
+ * The background-color of the MessageBox body
+ */
+/**
+ * @var {number}
+ * The border-width of the MessageBox body
+ */
+/**
+ * @var {color}
+ * The border-color of the MessageBox body
+ */
+/**
+ * @var {string}
+ * The border-style of the MessageBox body
+ */
+/**
+ * @var {list}
+ * The background-position of the MessageBox icon
+ */
+/**
+ * @var {number}
+ * The size of the MessageBox icon
+ */
+/**
+ * @var {number}
+ * The amount of space between the MessageBox icon and the message text
+ */
+/**
+ * @class Ext.form.CheckboxGroup
+ */
+/**
+ * @var {number/list}
+ * The padding of the CheckboxGroup body element
+ */
+/**
+ * @var {color}
+ * The border color of the CheckboxGroup body element when in an invalid state.
+ */
+/**
+ * @var {string}
+ * The border style of the CheckboxGroup body element when in an invalid state.
+ */
+/**
+ * @var {number}
+ * The border width of the CheckboxGroup body element when in an invalid state.
+ */
+/**
+ * @var {string}
+ * The background image of the CheckboxGroup body element when in an invalid state.
+ */
+/**
+ * @var {string}
+ * The background-repeat of the CheckboxGroup body element when in an invalid state.
+ */
+/**
+ * @var {string}
+ * The background-position of the CheckboxGroup body element when in an invalid state.
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" checkboxgroup UI
+ */
+/**
+ * @class Ext.form.FieldSet
+ */
+/**
+ * @var {number}
+ * The font-size of the FieldSet header
+ */
+/**
+ * @var {string}
+ * The font-weight of the FieldSet header
+ */
+/**
+ * @var {string}
+ * The font-family of the FieldSet header
+ */
+/**
+ * @var {number/string}
+ * The line-height of the FieldSet header
+ */
+/**
+ * @var {color}
+ * The text color of the FieldSet header
+ */
+/**
+ * @var {number}
+ * The border-width of the FieldSet
+ */
+/**
+ * @var {string}
+ * The border-style of the FieldSet
+ */
+/**
+ * @var {color}
+ * The border-color of the FieldSet
+ */
+/**
+ * @var {number}
+ * The border radius of FieldSet elements.
+ */
+/**
+ * @var {number/list}
+ * The FieldSet's padding
+ */
+/**
+ * @var {number/list}
+ * The FieldSet's margin
+ */
+/**
+ * @var {number/list}
+ * The padding to apply to the FieldSet's header
+ */
+/**
+ * @var {number}
+ * The size of the FieldSet's collapse tool
+ */
+/**
+ * @var {number/list}
+ * The margin to apply to the FieldSet's collapse tool
+ */
+/**
+ * @var {number/list}
+ * The padding to apply to the FieldSet's collapse tool
+ */
+/**
+ * @var {string} $fieldset-collapse-tool-background-image
+ * The background-image to use for the collapse tool. If 'none' the default tool
+ * sprite will be used. Defaults to 'none'.
+ */
+/**
+ * @var {number}
+ * The opacity of the FieldSet's collapse tool
+ */
+/**
+ * @var {number}
+ * The opacity of the FieldSet's collapse tool when hovered
+ */
+/**
+ * @var {number}
+ * The opacity of the FieldSet's collapse tool when pressed
+ */
+/**
+ * @var {number/list}
+ * The margin to apply to the FieldSet's checkbox (for FieldSets that use
+ * {@link #checkboxToggle})
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" fieldset UI
+ */
+/**
+ * @class Ext.picker.Date
+ */
+/**
+ * @var {number}
+ * The border-width of the DatePicker
+ */
+/**
+ * @var {string}
+ * The border-style of the DatePicker
+ */
+/**
+ * @var {color}
+ * The background-color of the DatePicker
+ */
+/**
+ * @var {string}
+ * The background-image of the DatePicker next arrow
+ */
+/**
+ * @var {list}
+ * The background-position of the DatePicker next arrow
+ */
+/**
+ * @var {string}
+ * The background-image of the DatePicker previous arrow
+ */
+/**
+ * @var {list}
+ * The background-position of the DatePicker previous arrow
+ */
+/**
+ * @var {number}
+ * The width of DatePicker arrows
+ */
+/**
+ * @var {number}
+ * The height of DatePicker arrows
+ */
+/**
+ * @var {string}
+ * The type of cursor to display when the cursor is over a DatePicker arrow
+ */
+/**
+ * @var {number}
+ * The opacity of the DatePicker arrows
+ */
+/**
+ * @var {number}
+ * The opacity of the DatePicker arrows when hovered
+ */
+/**
+ * @var {string/list}
+ * The Date Picker header background gradient. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {number/list}
+ * The padding of the Date Picker header
+ */
+/**
+ * @var {color}
+ * The color of the Date Picker month button
+ */
+/**
+ * @var {number}
+ * The width of the arrow on the Date Picker month button
+ */
+/**
+ * @var {string}
+ * The background-image of the arrow on the Date Picker month button
+ */
+/**
+ * @var {boolean}
+ * True to render the month button as transparent
+ */
+/**
+ * @var {string}
+ * The text-align of the Date Picker header
+ */
+/**
+ * @var {number}
+ * The height of Date Picker items
+ */
+/**
+ * @var {number}
+ * The width of Date Picker items
+ */
+/**
+ * @var {number/list}
+ * The padding of Date Picker items
+ */
+/**
+ * @var {string}
+ * The font-family of Date Picker items
+ */
+/**
+ * @var {number}
+ * The font-size of Date Picker items
+ */
+/**
+ * @var {string}
+ * The font-weight of Date Picker items
+ */
+/**
+ * @var {string}
+ * The text-align of Date Picker items
+ */
+/**
+ * @var {color}
+ * The text color of Date Picker items
+ */
+/**
+ * @var {string}
+ * The type of cursor to display when the cursor is over a Date Picker item
+ */
+/**
+ * @var {string}
+ * The font-family of Date Picker column headers
+ */
+/**
+ * @var {number}
+ * The font-size of Date Picker column headers
+ */
+/**
+ * @var {string}
+ * The font-weight of Date Picker column headers
+ */
+/**
+ * @var {string/list}
+ * The background-gradient of Date Picker column headers. Can be either the name of a
+ * predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {string}
+ * The border-style of Date Picker column headers
+ */
+/**
+ * @var {number}
+ * The border-width of Date Picker column headers
+ */
+/**
+ * @var {string}
+ * The text-align of Date Picker column headers
+ */
+/**
+ * @var {number}
+ * The height of Date Picker column headers
+ */
+/**
+ * @var {number/list}
+ * The padding of Date Picker column headers
+ */
+/**
+ * @var {number}
+ * The border-width of Date Picker items
+ */
+/**
+ * @var {string}
+ * The border-style of Date Picker items
+ */
+/**
+ * @var {color}
+ * The border-color of Date Picker items
+ */
+/**
+ * @var {string}
+ * The border-style of today's date on the Date Picker
+ */
+/**
+ * @var {string}
+ * The border-style of the selected item
+ */
+/**
+ * @var {string}
+ * The font-weight of the selected item
+ */
+/**
+ * @var {color}
+ * The text color of the items in the previous and next months
+ */
+/**
+ * @var {string}
+ * The type of cursor to display when the cursor is over a disabled item
+ */
+/**
+ * @var {color}
+ * The text color of disabled Date Picker items
+ */
+/**
+ * @var {color}
+ * The background-color of disabled Date Picker items
+ */
+/**
+ * @var {color}
+ * The background-color of the Date Picker footer
+ */
+/**
+ * @var {string/list}
+ * The background-gradient of the Date Picker footer. Can be either the name of a
+ * predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {number/list}
+ * The border-width of the Date Picker footer
+ */
+/**
+ * @var {string}
+ * The border-style of the Date Picker footer
+ */
+/**
+ * @var {string}
+ * The text-align of the Date Picker footer
+ */
+/**
+ * @var {number/list}
+ * The padding of the Date Picker footer
+ */
+/**
+ * @var {number}
+ * The space between the footer buttons
+ */
+/**
+ * @var {color}
+ * The border-color of the Month Picker
+ */
+/**
+ * @var {number}
+ * The border-width of the Month Picker
+ */
+/**
+ * @var {string}
+ * The border-style of the Month Picker
+ */
+/**
+ * @var {color}
+ * The text color of Month Picker items
+ */
+/**
+ * @var {color}
+ * The text color of Month Picker items
+ */
+/**
+ * @var {color}
+ * The border-color of Month Picker items
+ */
+/**
+ * @var {string}
+ * The border-style of Month Picker items
+ */
+/**
+ * @var {string}
+ * The font-family of Month Picker items
+ */
+/**
+ * @var {number}
+ * The font-size of Month Picker items
+ */
+/**
+ * @var {string}
+ * The font-weight of Month Picker items
+ */
+/**
+ * @var {number/list}
+ * The margin of Month Picker items
+ */
+/**
+ * @var {string}
+ * The text-align of Month Picker items
+ */
+/**
+ * @var {number}
+ * The height of Month Picker items
+ */
+/**
+ * @var {string}
+ * The type of cursor to display when the cursor is over a Month Picker item
+ */
+/**
+ * @var {color}
+ * The background-color of hovered Month Picker items
+ */
+/**
+ * @var {color}
+ * The background-color of selected Month Picker items
+ */
+/**
+ * @var {string}
+ * The border-style of selected Month Picker items
+ */
+/**
+ * @var {color}
+ * The border-color of selected Month Picker items
+ */
+/**
+ * @var {number}
+ * The height of the Month Picker year navigation buttons
+ */
+/**
+ * @var {number}
+ * The width of the Month Picker year navigation buttons
+ */
+/**
+ * @var {string}
+ * The type of cursor to display when the cursor is over a Month Picker year navigation button
+ */
+/**
+ * @var {number}
+ * The opacity of the Month Picker year navigation buttons
+ */
+/**
+ * @var {number}
+ * The opacity of hovered Month Picker year navigation buttons
+ */
+/**
+ * @var {string}
+ * The background-image of the Month Picker next year navigation button
+ */
+/**
+ * @var {string}
+ * The background-image of the Month Picker previous year navigation button
+ */
+/**
+ * @var {list}
+ * The background-poisition of the Month Picker next year navigation button
+ */
+/**
+ * @var {list}
+ * The background-poisition of the hovered Month Picker next year navigation button
+ */
+/**
+ * @var {list}
+ * The background-poisition of the Month Picker previous year navigation button
+ */
+/**
+ * @var {list}
+ * The background-poisition of the hovered Month Picker previous year navigation button
+ */
+/**
+ * @var {string}
+ * The border-style of the Month Picker separator
+ */
+/**
+ * @var {number}
+ * The border-width of the Month Picker separator
+ */
+/**
+ * @var {color}
+ * The border-color of the Month Picker separator
+ */
+/**
+ * @var {number/list}
+ * The margin of Month Picker items when the datepicker does not have footer buttons
+ */
+/**
+ * @var {number}
+ * The height of Month Picker items when the datepicker does not have footer buttons
+ */
+/**
+ * @class Ext.grid.column.Action
+ */
+/**
+ * @var {number}
+ * The height of action column icons
+ */
+/**
+ * @var {number}
+ * The width of action column icons
+ */
+/**
+ * @var {string}
+ * The type of cursor to display when the cursor is over an action column icon
+ */
+/**
+ * @var {number}
+ * The opacity of disabled action column icons
+ */
+/**
+ * @var {number}
+ * The amount of padding to add to the left and right of the action column cell
+ */
+/**
+ * @class Ext.grid.column.Check
+ */
+/**
+ * @var {number}
+ * Opacity of disabled CheckColumns
+ */
+/**
+ * @class Ext.grid.column.RowNumberer
+ */
+/**
+ * @var {number}
+ * The horizontal space before the number in the RowNumberer cell
+ */
+/**
+ * @var {number}
+ * The horizontal space after the number in the RowNumberer cell
+ */
+/**
+ * @class Ext.form.field.Base
+ */
+/**
+ * @var {number} $form-field-height
+ * Height for form fields.
+ */
+/**
+ * @var {number} $form-toolbar-field-height
+ * Height for form fields in toolbar.
+ */
+/**
+ * @var {number} $form-field-padding
+ * Padding around form fields.
+ */
+/**
+ * @var {number} $form-field-font-size
+ * Font size for form fields.
+ */
+/**
+ * @var {string} $form-field-font-family
+ * Font family for form fields.
+ */
+/**
+ * @var {string} $form-field-font-weight
+ * Font weight for form fields.
+ */
+/**
+ * @var {number} $form-toolbar-field-font-size
+ * Font size for toolbar form fields.
+ */
+/**
+ * @var {string} $form-toolbar-field-font-family
+ * Font family for toolbar form fields.
+ */
+/**
+ * @var {string} $form-toolbar-field-font-weight
+ * Font weight for toolbar form fields.
+ */
+/**
+ * @var {color} $form-field-color
+ * Text color for form fields.
+ */
+/**
+ * @var {color} $form-field-empty-color
+ * Text color for empty form fields.
+ */
+/**
+ * @var {color} $form-field-border-color
+ * Border color for form fields.
+ */
+/**
+ * @var {number} $form-field-border-width
+ * Border width for form fields.
+ */
+/**
+ * @var {string} $form-field-border-style
+ * Border style for form fields.
+ */
+/**
+ * @var {color} $form-field-focus-border-color
+ * Border color for focused form fields.
+ *
+ * In the default Neptune color scheme this is the same as $base-highlight-color
+ * but it does not change automatically when one changes the $base-color. This is because
+ * checkboxes and radio buttons have this focus color hard coded into their background
+ * images. If this color is changed, you should also modify checkbox and radio button
+ * background images to match
+ */
+/**
+ * @var {color} $form-field-invalid-border-color
+ * Border color for invalid form fields.
+ */
+/**
+ * @var {color} $form-field-background-color
+ * Background color for form fields.
+ */
+/**
+ * @var {string} $form-field-background-image
+ * Background image for form fields.
+ */
+/**
+ * @var {color} $form-field-invalid-background-color
+ * Background color for invalid form fields.
+ */
+/**
+ * @var {string} $form-field-invalid-background-image
+ * Background image for invalid form fields.
+ */
+/**
+ * @var {string} $form-field-invalid-background-repeat
+ * Background repeat for invalid form fields.
+ */
+/**
+ * @var {string/list} $form-field-invalid-background-position
+ * Background position for invalid form fields.
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" field UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "toolbar" field UI
+ */
+/**
+ * @class Ext.form.Labelable
+ */
+/**
+ * @var {color}
+ * The text color of form field labels
+ */
+/**
+ * @var {string}
+ * The font-weight of form field labels
+ */
+/**
+ * @var {number}
+ * The font-size of form field labels
+ */
+/**
+ * @var {string}
+ * The font-family of form field labels
+ */
+/**
+ * @var {number}
+ * The line-height of form field labels
+ */
+/**
+ * @var {number}
+ * Horizontal space between the label and the field body when the label is left-aligned.
+ */
+/**
+ * @var {number}
+ * Vertical space between the label and the field body when the label is top-aligned.
+ */
+/**
+ * @var {string}
+ * The background image for error icons
+ */
+/**
+ * @var {number}
+ * Width for form error icons.
+ */
+/**
+ * @var {number}
+ * Height for form error icons.
+ */
+/**
+ * @var {number/list}
+ * Margin for error icons that are aligned to the side of the field
+ */
+/**
+ * @var {number}
+ * The space between the icon and the message for errors that display under the field
+ */
+/**
+ * @var {number/list}
+ * The padding on errors that display under the form field
+ */
+/**
+ * @var {color}
+ * The text color of form error messages
+ */
+/**
+ * @var {string}
+ * The font-weight of form error messages
+ */
+/**
+ * @var {number}
+ * The font-size of form error messages
+ */
+/**
+ * @var {string}
+ * The font-family of form error messages
+ */
+/**
+ * @var {number}
+ * The line-height of form error messages
+ */
+/**
+ * @var {number}
+ * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout.
+ * This value is also used as the default border-spacing in a form-layout.
+ */
+/**
+ * @var {number}
+ * Opacity of disabled form fields
+ */
+/**
+ * @var {color}
+ * The text color of toolbar form field labels
+ */
+/**
+ * @var {string}
+ * The font-weight of toolbar form field labels
+ */
+/**
+ * @var {number}
+ * The font-size of toolbar form field labels
+ */
+/**
+ * @var {string}
+ * The font-family of toolbar form field labels
+ */
+/**
+ * @var {number}
+ * The line-height of toolbar form field labels
+ */
+/**
+ * @var {number}
+ * Horizontal space between the toolbar field's label and the field body when the label is left-aligned.
+ */
+/**
+ * @var {number}
+ * Vertical space between the toolbar field's label and the field body when the label is top-aligned.
+ */
+/**
+ * @var {string}
+ * The background image for toolbar field error icons
+ */
+/**
+ * @var {number}
+ * Width for toolbar field error icons.
+ */
+/**
+ * @var {number}
+ * Height for toolbar field error icons.
+ */
+/**
+ * @var {number/list}
+ * Margin for toolbar field error icons that are aligned to the side of the field
+ */
+/**
+ * @var {number}
+ * The space between the icon and the message for errors that display under a toolbar field
+ */
+/**
+ * @var {number/list}
+ * The padding on errors that display under the toolbar form field
+ */
+/**
+ * @var {color}
+ * The text color of toolbar form error messages
+ */
+/**
+ * @var {string}
+ * The font-weight of toolbar form field error messages
+ */
+/**
+ * @var {number}
+ * The font-size of toolbar form field error messages
+ */
+/**
+ * @var {string}
+ * The font-family of toolbar form field error messages
+ */
+/**
+ * @var {number}
+ * The line-height of toolbar form field error messages
+ */
+/**
+ * @var {number}
+ * Opacity of disabled toolbar form fields
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" label UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" label UI
+ */
+/**
+ * @class Ext.form.field.Text
+ */
+/**
+ * @var {number}
+ * The height of text fields
+ */
+/**
+ * @var {number}
+ * Font size for text fields.
+ */
+/**
+ * @var {string}
+ * Font family for text fields.
+ */
+/**
+ * @var {string}
+ * Font weight for text fields.
+ */
+/**
+ * @var {color}
+ * The color of the text field's input element
+ */
+/**
+ * @var {color}
+ * The background color of the text field's input element
+ */
+/**
+ * @var {number/list}
+ * The border width of text fields
+ */
+/**
+ * @var {string/list}
+ * The border style of text fields
+ */
+/**
+ * @var {color/list}
+ * The border color of text fields
+ */
+/**
+ * @var {color/list}
+ * The border color of the focused text field
+ */
+/**
+ * @var {color}
+ * Border color for invalid text fields.
+ */
+/**
+ * @var {number/list}
+ * Border radius for text fields
+ */
+/**
+ * @var {string}
+ * The background image of the text field's input element
+ */
+/**
+ * @var {number/list}
+ * The padding of the text field's input element
+ */
+/**
+ * @var {color}
+ * Text color for empty text fields.
+ */
+/**
+ * @var {number}
+ * The default width of the text field's body element (the element that contains the input
+ * element and triggers) when the field is not sized explicitly using the {@link #width}
+ * config, or sized by it's containing layout.
+ */
+/**
+ * @var {color}
+ * Background color of the text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string}
+ * Background image of the text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string}
+ * Background repeat of the text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string/list}
+ * Background position of the text field's input element when the field value is invalid.
+ */
+/**
+ * @var {boolean}
+ * `true` to use classic-theme styled border for text fields.
+ */
+/**
+ * @var {number} $form-textarea-line-height
+ * The line-height to use for the TextArea's text
+ */
+/**
+ * @var {number} $form-textarea-body-height
+ * The default width of the TextArea's body element (the element that contains the textarea
+ * html element when the field is not sized explicitly using the {@link #width}config, or
+ * sized by it's containing layout.
+ */
+/**
+ * @var {color}
+ * Text color for file fields
+ */
+/**
+ * @var {number}
+ * The width of the text field's trigger element
+ */
+/**
+ * @var {number/list}
+ * The width of the text field's trigger's border
+ */
+/**
+ * @var {color/list}
+ * The color of the text field's trigger's border
+ */
+/**
+ * @var {string/list}
+ * The style of the text field's trigger's border
+ */
+/**
+ * @var {color}
+ * The color of the text field's trigger's border when hovered
+ */
+/**
+ * @var {color}
+ * The color of the text field's trigger's border when the field is focused
+ */
+/**
+ * @var {color}
+ * The color of the text field's trigger's border when the field is focused and the trigger is hovered
+ */
+/**
+ * @var {string}
+ * The default background image for text field triggers
+ */
+/**
+ * @var {color}
+ * The background color of the text field's trigger element
+ */
+/**
+ * @var {number}
+ * The height of toolbar text fields
+ */
+/**
+ * @var {number}
+ * Font size for toolbar text fields.
+ */
+/**
+ * @var {string}
+ * Font family for toolbar text fields.
+ */
+/**
+ * @var {string}
+ * Font weight for toolbar text fields.
+ */
+/**
+ * @var {color}
+ * The color of the toolbar text field's input element
+ */
+/**
+ * @var {color}
+ * The background color of the toolbar text field's input element
+ */
+/**
+ * @var {number/list}
+ * The border width of toolbar text fields
+ */
+/**
+ * @var {string/list}
+ * The border style of toolbar text fields
+ */
+/**
+ * @var {color/list}
+ * The border color of toolbar text fields
+ */
+/**
+ * @var {color/list}
+ * The border color of the focused toolbar text field
+ */
+/**
+ * @var {color} $form-field-invalid-border-color
+ * Border color for invalid toolbar text fields.
+ */
+/**
+ * @var {number/list}
+ * Border radius for toolbar text fields
+ */
+/**
+ * @var {string}
+ * The background image of the toolbar text field's input element
+ */
+/**
+ * @var {number/list}
+ * The padding of the toolbar text field's input element
+ */
+/**
+ * @var {color}
+ * Text color for empty toolbar text fields.
+ */
+/**
+ * @var {number}
+ * The default width of the toolbar text field's body element (the element that contains the input
+ * element and triggers) when the field is not sized explicitly using the {@link #width}
+ * config, or sized by it's containing layout.
+ */
+/**
+ * @var {color}
+ * Background color of the toolbar text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string}
+ * Background image of the toolbar text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string}
+ * Background repeat of the toolbar text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string/list}
+ * Background position of the toolbar text field's input element when the field value is invalid.
+ */
+/**
+ * @var {boolean}
+ * `true` to use classic-theme styled border for toolbar text fields.
+ */
+/**
+ * @var {number/string}
+ * The line-height to use for the toolbar TextArea's text
+ */
+/**
+ * @var {number}
+ * The default width of the toolbar TextArea's body element (the element that contains the
+ * textarea html element when the field is not sized explicitly using the {@link #width}
+ * config, or sized by it's containing layout.
+ */
+/**
+ * @var {color}
+ * Text color for toolbar file fields
+ */
+/**
+ * @var {number}
+ * The width of the toolbar text field's trigger element
+ */
+/**
+ * @var {number/list}
+ * The width of the toolbar text field's trigger's border
+ */
+/**
+ * @var {color/list}
+ * The color of the toolbar text field's trigger's border
+ */
+/**
+ * @var {string/list}
+ * The style of the toolbar text field's trigger's border
+ */
+/**
+ * @var {color}
+ * The color of the toolbar text field's trigger's border when hovered
+ */
+/**
+ * @var {color}
+ * The color of the toolbar text field's trigger's border when the field is focused
+ */
+/**
+ * @var {color}
+ * The color of the toolbar text field's trigger's border when the field is focused and the trigger is hovered
+ */
+/**
+ * @var {string}
+ * The default background image for toolbar text field triggers
+ */
+/**
+ * @var {color}
+ * The background color of the toolbar text field's trigger element
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" text field UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "toolbar" text field UI
+ */
+/**
+ * @class Ext.form.field.Spinner
+ */
+/**
+ * @var {boolean}
+ * True to use vertically oriented triggers. False to use horizontally oriented triggers.
+ * Themes that set this property to true must also override the
+ * {@link Ext.form.trigger.Spinner#vertical} config to match. Defaults to true. When
+ * 'vertical' orientation is used, the background image for both triggers is
+ * 'form/spinner'. When 'horizontal' is used, the triggers use separate background
+ * images - 'form/spinner-up', and 'form/spinner-down'.
+ */
+/**
+ * @var {string}
+ * Background image for vertically oriented spinner triggers
+ */
+/**
+ * @var {string}
+ * Background image for the "up" trigger when trigger buttons are horizontally aligned
+ */
+/**
+ * @var {string}
+ * Background image for the "down" trigger when trigger buttons are horizontally aligned
+ */
+/**
+ * @var {boolean}
+ * `true` to use vertically oriented triggers for fields with the 'toolbar' UI.
+ */
+/**
+ * @var {string}
+ * Background image for vertically oriented toolbar spinner triggers
+ */
+/**
+ * @var {string}
+ * Background image for the "up" toolbar trigger when trigger buttons are horizontally aligned
+ */
+/**
+ * @var {string}
+ * Background image for the "down" toolbar trigger when trigger buttons are horizontally aligned
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" spinner UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "toolbar" spinner UI
+ */
+/**
+ * @class Ext.form.field.Checkbox
+ */
+/**
+ * @var {number}
+ * The size of the checkbox
+ */
+/**
+ * @var {string}
+ * The background-image of the checkbox
+ */
+/**
+ * @var {string}
+ * The background-image of the radio button
+ */
+/**
+ * @var {color}
+ * The color of the checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The font-weight of the checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The font-size of the checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The font-family of the checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The line-height of the checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {number}
+ * The space between the {@link #boxLabel} and the checkbox.
+ */
+/**
+ * @var {number}
+ * The size of the toolbar checkbox
+ */
+/**
+ * @var {string}
+ * The background-image of the toolbar checkbox
+ */
+/**
+ * @var {string}
+ * The background-image of the toolbar radio button
+ */
+/**
+ * @var {color}
+ * The color of the toolbar checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The font-weight of the toolbar checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The font-size of the toolbar checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The font-family of the toolbar checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {string}
+ * The line-height of the toolbar checkbox's {@link #boxLabel}
+ */
+/**
+ * @var {number}
+ * The space between the {@link #boxLabel} and the toolbar checkbox.
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" checkbox UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "toolbar" checkbox UI
+ */
+/**
+ * @class Ext.form.field.Display
+ */
+/**
+ * @var {color}
+ * The text color of display fields
+ */
+/**
+ * @var {number}
+ * The font-size of display fields
+ */
+/**
+ * @var {string}
+ * The font-family of display fields
+ */
+/**
+ * @var {string}
+ * The font-weight of display fields
+ */
+/**
+ * @var {number}
+ * The line-height of display fields
+ */
+/**
+ * @var {color}
+ * The text color of toolbar display fields
+ */
+/**
+ * @var {number}
+ * The font-size of toolbar display fields
+ */
+/**
+ * @var {string}
+ * The font-family of toolbar display fields
+ */
+/**
+ * @var {string}
+ * The font-weight of toolbar display fields
+ */
+/**
+ * @var {number}
+ * The line-height of toolbar display fields
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" display field UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "toolbar" display field UI
+ */
+/**
+ * @class Ext.view.Table
+ */
+/**
+ * @var {color}
+ * The color of the text in the grid cells
+ */
+/**
+ * @var {number}
+ * The font size of the text in the grid cells
+ */
+/**
+ * @var {number}
+ * The line-height of the text inside the grid cells.
+ */
+/**
+ * @var {string}
+ * The font-weight of the text in the grid cells
+ */
+/**
+ * @var {string}
+ * The font-family of the text in the grid cells
+ */
+/**
+ * @var {color}
+ * The background-color of the grid cells
+ */
+/**
+ * @var {color}
+ * The border-color of row/column borders. Can be specified as a single color, or as a list
+ * of colors containing the row border color followed by the column border color.
+ */
+/**
+ * @var {string}
+ * The border-style of the row/column borders.
+ */
+/**
+ * @var {number}
+ * The border-width of the row and column borders.
+ */
+/**
+ * @var {color}
+ * The background-color of "special" cells. Special cells are created by {@link
+ * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
+ * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ */
+/**
+ * @var {string}
+ * The background-gradient to use for "special" cells. Special cells are created by {@link
+ * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
+ * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ */
+/**
+ * @var {number}
+ * The border-width of "special" cells. Special cells are created by {@link
+ * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
+ * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ * Only applies to the vertical border, since the row border width is determined by
+ * {#$grid-row-cell-border-width}.
+ */
+/**
+ * @var {color}
+ * The border-color of "special" cells. Special cells are created by {@link
+ * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
+ * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ * Only applies to the vertical border, since the row border color is determined by
+ * {#$grid-row-cell-border-color}.
+ */
+/**
+ * @var {string}
+ * The border-style of "special" cells. Special cells are created by {@link
+ * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
+ * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ * Only applies to the vertical border, since the row border style is determined by
+ * {#$grid-row-cell-border-style}.
+ */
+/**
+ * @var {color}
+ * The border-color of "special" cells when the row is selected using a {@link
+ * Ext.selection.RowModel Row Selection Model}. Special cells are created by {@link
+ * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
+ * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ * Only applies to the vertical border, since the selected row border color is determined by
+ * {#$grid-row-cell-selected-border-color}.
+ */
+/**
+ * @var {color}
+ * The background-color of "special" cells when the row is hovered. Special cells are
+ * created by {@link Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel
+ * Checkbox Selection Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
+ */
+/**
+ * @var {color}
+ * The background-color color of odd-numbered rows when the table view is configured with
+ * `{@link Ext.view.Table#stripeRows stripeRows}: true`.
+ */
+/**
+ * @var {string}
+ * The border-style of the hovered row
+ */
+/**
+ * @var {color}
+ * The text color of the hovered row
+ */
+/**
+ * @var {color}
+ * The background-color of the hovered row
+ */
+/**
+ * @var {color}
+ * The border-color of the hovered row
+ */
+/**
+ * @var {string}
+ * The border-style of the selected row
+ */
+/**
+ * @var {color}
+ * The text color of the selected row
+ */
+/**
+ * @var {color}
+ * The background-color of the selected row
+ */
+/**
+ * @var {color}
+ * The border-color of the selected row
+ */
+/**
+ * @var {number}
+ * The border-width of the focused cell
+ */
+/**
+ * @var {color}
+ * The border-color of the focused cell
+ */
+/**
+ * @var {string}
+ * The border-style of the focused cell
+ */
+/**
+ * @var {number}
+ * The spacing between grid cell border and inner focus border
+ */
+/**
+ * @var {color}
+ * The text color of the focused cell
+ */
+/**
+ * @var {color}
+ * The background-color of the focused cell
+ */
+/**
+ * @var {boolean}
+ * True to show the focus border when a row is focused even if the grid has no
+ * {@link Ext.panel.Table#rowLines rowLines}.
+ */
+/**
+ * @var {color}
+ * The text color of a selected cell when using a {@link Ext.selection.CellModel
+ * Cell Selection Model}.
+ */
+/**
+ * @var {color}
+ * The background-color of a selected cell when using a {@link Ext.selection.CellModel
+ * Cell Selection Model}.
+ */
+/**
+ * @var {number}
+ * The amount of padding to apply to the grid cell's inner div element
+ */
+/**
+ * @var {string}
+ * The type of text-overflow to use on the grid cell's inner div element
+ */
+/**
+ * @var {color}
+ * The border-color of the grid body
+ */
+/**
+ * @var {number}
+ * The border-width of the grid body border
+ */
+/**
+ * @var {string}
+ * The border-style of the grid body border
+ */
+/**
+ * @var {color}
+ * The background-color of the grid body
+ */
+/**
+ * @var {number}
+ * The amount of padding to apply to the grid body when the grid contains no data.
+ */
+/**
+ * @var {color}
+ * The text color of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
+ * the grid contains no data.
+ */
+/**
+ * @var {color}
+ * The background color of the grid body when the grid contains no data.
+ */
+/**
+ * @var {number}
+ * The font-size of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
+ * the grid contains no data.
+ */
+/**
+ * @var {number}
+ * The font-weight of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
+ * the grid contains no data.
+ */
+/**
+ * @var {number}
+ * The font-family of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
+ * the grid contains no data.
+ */
+/**
+ * @var {color}
+ * The color of the resize markers that display when dragging a column border to resize
+ * the column
+ */
+/*
+ * Vars for fields which are rendered to fit inside grid cells.
+ * This includes cell and row editor fields and fields in widget columns.
+ */
+/**
+ * @class Ext.form.field.Base
+ */
+/**
+ * @var {number}
+ * The height of text fields rendered in the context of a grid cell. Defaults to $form-field-height. If grid row
+ * height is smaller than $form-field-height, defaults to the grid row height. Grid row
+ * height is calculated by adding $grid-row-cell-line-height to the top and bottom values of
+ * $grid-cell-inner-padding.
+ */
+/**
+ * @var {number/list}
+ * The padding of grid fields.
+ */
+/**
+ * @var {number}
+ * The color of the grid field text
+ */
+/**
+ * @var {number}
+ * The font size of the grid field text
+ */
+/**
+ * @var {string}
+ * The font-weight of the grid field text
+ */
+/**
+ * @var {string}
+ * The font-family of the grid field text
+ */
+/**
+ * @var {boolean}
+ * True to include the "grid-cell" form field UIs input fields rendered in the context of a grid cell.
+ *
+ * This defaults to `true`. It is required if either grid editors
+ * ({@link Ext.grid.plugin.CellEditing cell} or {@link Ext.grid.plugin.RowEditing row})
+ * are being used, or if a {@link Ext.grid.column.Widget WidgetColumn} is being used to
+ * house an input field.
+ */
+/**
+ * @class Ext.form.field.Text
+ */
+/**
+ * @var {number}
+ * The height of text fields rendered in the context of a grid cell
+ */
+/**
+ * @var {number}
+ * Font size for text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {string}
+ * Font family for text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {string}
+ * Font weight for text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {color}
+ * The color of a text field's input element when rendered in the context of a grid cell
+ */
+/**
+ * @var {color}
+ * The background color of a text field's input element when entered in the context of a grid cell
+ */
+/**
+ * @var {number/list}
+ * The border width of text fields entered in the context of a grid cell
+ */
+/**
+ * @var {string/list}
+ * The border style of text fields rendered in the context of a grid cell
+ */
+/**
+ * @var {color/list}
+ * The border color of text fields rendered in the context of a grid cell
+ */
+/**
+ * @var {color/list}
+ * The border color of the focused text fields rendered in the context of a grid cell
+ */
+/**
+ * @var {color}
+ * Border color for invalid text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {number/list}
+ * Border radius for text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {string}
+ * The background image of a text field's input element when rendered in the context of a grid cell
+ */
+/**
+ * @var {number/list}
+ * The padding of a text field's input element when rendered in the context of a grid cell
+ */
+/**
+ * @var {color}
+ * Text color for empty text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {number}
+ * @private
+ * The default width of a text field's body element (the element that contains the input
+ * element and triggers) when the field is rendered in the context of a grid cell and not sized explicitly using the {@link #width}
+ * config, or sized by it's containing layout.
+ */
+/**
+ * @var {color}
+ * Background color of a text field's input element when rendered in the context of a grid cell and the field value is invalid.
+ */
+/**
+ * @var {string}
+ * Background image of a grid field text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string}
+ * Background repeat of the grid field text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string/list}
+ * Background position of the grid field text field's input element when rendered in the context of a grid cell and the field value is invalid.
+ */
+/**
+ * @var {boolean}
+ * `true` to use classic-theme styled border for text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {number/string}
+ * The line-height to use for the TextArea's text when rendered in the context of a grid cell
+ */
+/**
+ * @var {number}
+ * The default width of the grid field TextArea's body element (the element that
+ * contains the textarea html element when the field is rendered in the context of a grid cell and not sized explicitly using the
+ * {@link #width} config, or sized by it's containing layout.
+ */
+/**
+ * @var {color}
+ * Text color for file fields rendered in the context of a grid cell
+ */
+/**
+ * @var {number}
+ * The width of a text field's trigger element when rendered in the context of a grid cell
+ */
+/**
+ * @var {number/list}
+ * The width of a text field's trigger's border when rendered in the context of a grid cell
+ */
+/**
+ * @var {color/list}
+ * The color of a text field's trigger's border when rendered in the context of a grid cell
+ */
+/**
+ * @var {string/list}
+ * The style of a text field's trigger's border when rendered in the context of a grid cell
+ */
+/**
+ * @var {color}
+ * The color of a text field's trigger's border when rendered in the context of a grid cell and hovered
+ */
+/**
+ * @var {color}
+ * The color of a text field's trigger's border when rendered in the context of a grid cell and the field is focused
+ */
+/**
+ * @var {color}
+ * The color of a text field's trigger's border when rendered in the context of a grid cell and the field is focused and the trigger is hovered
+ */
+/**
+ * @var {string}
+ * The default background image for text field triggers when rendered in the context of a grid cell
+ */
+/**
+ * @var {color}
+ * The background color of a text field's trigger element when rendered in the context of a grid cell
+ */
+/**
+ * @var {boolean}
+ * True to include the "grid-cell" text field UI
+ */
+/**
+ * @class Ext.form.field.Spinner
+ */
+/**
+ * @var {boolean}
+ * True to use vertically oriented spinner triggers when rendered in the context of a grid cell.
+ */
+/**
+ * @var {string}
+ * Background image for vertically oriented grid field spinner triggers when rendered in the context of a grid cell
+ */
+/**
+ * @var {string}
+ * Background image for the "up" trigger when grid field spinner trigger buttons are rendered in the context of a grid cell and horizontally aligned
+ */
+/**
+ * @var {string}
+ * Background image for the "down" trigger when grid field spinner trigger buttons are rendered in the context of a grid cell and horizontally aligned
+ */
+/**
+ * @var {boolean}
+ * True to include the "grid-cell" spinner UI
+ */
+/**
+ * @var {number}
+ * The size of a checkbox when rendered in the context of a grid cell
+ */
+/**
+ * @var {string}
+ * The background-image of a checkbox when rendered in the context of a grid cell
+ */
+/**
+ * @var {string}
+ * The background-image of a radio button when rendered in the context of a grid cell
+ */
+/**
+ * @var {boolean}
+ * True to include the "grid-cell" checkbox UI
+ */
+/**
+ * @class Ext.form.field.Display
+ */
+/**
+ * @var {color}
+ * The text color of display fields rendered in the context of a grid cell
+ */
+/**
+ * @var {number}
+ * The font-size of display fields rendered in the context of a grid cell
+ */
+/**
+ * @var {string}
+ * The font-family of display fields rendered in the context of a grid cell
+ */
+/**
+ * @var {string}
+ * The font-weight of display fields rendered in the context of a grid cell
+ */
+/**
+ * @var {number}
+ * The line-height of display fields rendered in the context of a grid cell
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" display field UI
+ */
+/**
+ * @class Ext.grid.feature.Grouping
+ */
+/**
+ * @var {color}
+ * The background color of group headers
+ */
+/**
+ * @var {number/list}
+ * The border-width of group headers
+ */
+/**
+ * @var {string}
+ * The border-style of group headers
+ */
+/**
+ * @var {color}
+ * The border-color of group headers
+ */
+/**
+ * @var {number/list}
+ * The padding of group headers
+ */
+/**
+ * @var {string}
+ * The cursor of group headers
+ */
+/**
+ * @var {color}
+ * The text color of group header titles
+ */
+/**
+ * @var {string}
+ * The font-family of group header titles
+ */
+/**
+ * @var {number}
+ * The font-size of group header titles
+ */
+/**
+ * @var {string}
+ * The font-weight of group header titles
+ */
+/**
+ * @var {number}
+ * The line-height of group header titles
+ */
+/**
+ * @var {number/list}
+ * The amount of padding to add to the group title element. This is typically used
+ * to reserve space for an icon by setting the amountof space to be reserved for the icon
+ * as the left value and setting the remaining sides to 0.
+ */
+/**
+ * @class Ext.grid.feature.RowBody
+ */
+/**
+ * @var {number}
+ * The font-size of the RowBody
+ */
+/**
+ * @var {number}
+ * The line-height of the RowBody
+ */
+/**
+ * @var {string}
+ * The font-family of the RowBody
+ */
+/**
+ * @var {number}
+ * The font-weight of the RowBody
+ */
+/**
+ * @var {number/list}
+ * The padding of the RowBody
+ */
+/**
+ * @class Ext.menu.Menu
+ */
+/**
+ * @var {color}
+ * The background-color of the Menu
+ */
+/**
+ * @var {color}
+ * The border-color of the Menu
+ */
+/**
+ * @var {string}
+ * The border-style of the Menu
+ */
+/**
+ * @var {number}
+ * The border-width of the Menu
+ */
+/**
+ * @var {number/list}
+ * The padding to apply to the Menu body element
+ */
+/**
+ * @var {color}
+ * The color of Menu Item text
+ */
+/**
+ * @var {string}
+ * The font-family of {@link Ext.menu.Item Menu Items}
+ */
+/**
+ * @var {number}
+ * The font-size of {@link Ext.menu.Item Menu Items}
+ */
+/**
+ * @var {string}
+ * The font-weight of {@link Ext.menu.Item Menu Items}
+ */
+/**
+ * @var {number}
+ * The height of {@link Ext.menu.Item Menu Items}
+ */
+/**
+ * @var {number}
+ * The border-width of {@link Ext.menu.Item Menu Items}
+ */
+/**
+ * @var {string}
+ * The style of cursor to display when the cursor is over a {@link Ext.menu.Item Menu Item}
+ */
+/**
+ * @var {string}
+ * The style of cursor to display when the cursor is over a disabled {@link Ext.menu.Item Menu Item}
+ */
+/**
+ * @var {color}
+ * The background-color of the active {@link Ext.menu.Item Menu Item}
+ */
+/**
+ * @var {color}
+ * The border-color of the active {@link Ext.menu.Item Menu Item}
+ */
+/**
+ * @var {string/list}
+ * The background-gradient for {@link Ext.menu.Item Menu Items}. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {number}
+ * The border-radius of {@link Ext.menu.Item Menu Items}
+ */
+/**
+ * @var {number}
+ * The size of {@link Ext.menu.Item Menu Item} icons
+ */
+/**
+ * @var {color} $menu-glyph-color
+ * The color to use for menu icons configured using {@link Ext.menu.Item#glyph glyph}
+ */
+/**
+ * @var {number} $menu-glyph-opacity
+ * The opacity to use for menu icons configured using {@link Ext.menu.Item#glyph glyph}
+ */
+/**
+ * @var {number}
+ * The size of {@link Ext.menu.Item Menu Item} checkboxes
+ */
+/**
+ * @var {list}
+ * The background-position of {@link Ext.menu.Item Menu Item} icons
+ */
+/**
+ * @var {number}
+ * vertical offset for menu item icons/checkboxes. By default the icons are roughly
+ * vertically centered, but it may be necessary in some cases to make minor adjustments
+ * to the vertical position.
+ */
+/**
+ * @var {number}
+ * vertical offset for menu item text. By default the text is given a line-height
+ * equal to the menu item's content-height, however, depending on the font this may not
+ * result in perfect vertical centering. Offset can be used to make small adjustments
+ * to the text's vertical position.
+ */
+/**
+ * @var {number/list}
+ * The space to the left and right of {@link Ext.menu.Item Menu Item} text. Can be specified
+ * as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g.
+ *
+ * $menu-item-text-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right
+ */
+/**
+ * @var {number}
+ * The space to the left and right of {@link Ext.menu.Item Menu Item} icons. Can be specified
+ * as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g.
+ *
+ * $menu-item-icon-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right
+ */
+/**
+ * @var {number}
+ * The space to the left and right of {@link Ext.menu.Item Menu Item} arrows. Can be specified
+ * as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g.
+ *
+ * $menu-item-arrow-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right
+ */
+/**
+ * @var {number/list}
+ * The margin of {@link Ext.menu.Separator Menu Separators}
+ */
+/**
+ * @var {number}
+ * The height of {@link Ext.menu.Item Menu Item} arrows
+ */
+/**
+ * @var {number}
+ * The width of {@link Ext.menu.Item Menu Item} arrows
+ */
+/**
+ * @var {number}
+ * The opacity of disabled {@link Ext.menu.Item Menu Items}
+ */
+/**
+ * @var {number/list}
+ * The margin non-MenuItems placed in a Menu
+ */
+/**
+ * @var {color}
+ * The border-color of {@link Ext.menu.Separator Menu Separators}
+ */
+/**
+ * @var {color}
+ * The background-color of {@link Ext.menu.Separator Menu Separators}
+ */
+/**
+ * @var {number}
+ * The size of {@link Ext.menu.Separator Menu Separators}
+ */
+/**
+ * @var {number}
+ * The width of Menu scrollers
+ */
+/**
+ * @var {number}
+ * The height of Menu scrollers
+ */
+/**
+ * @var {color}
+ * The border-color of Menu scroller buttons
+ */
+/**
+ * @var {number}
+ * The border-width of Menu scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "top" Menu scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "bottom" Menu scroller buttons
+ */
+/**
+ * @var {string}
+ * The cursor of Menu scroller buttons
+ */
+/**
+ * @var {string}
+ * The cursor of disabled Menu scroller buttons
+ */
+/**
+ * @var {number}
+ * The opacity of Menu scroller buttons. Only applicable when
+ * {@link #$menu-classic-scrollers} is `false`.
+ */
+/**
+ * @var {number}
+ * The opacity of hovered Menu scroller buttons. Only applicable when
+ * {@link #$menu-classic-scrollers} is `false`.
+ */
+/**
+ * @var {number}
+ * The opacity of pressed Menu scroller buttons. Only applicable when
+ * {@link #$menu-classic-scrollers} is `false`.
+ */
+/**
+ * @var {number}
+ * The opacity of disabled Menu scroller buttons.
+ */
+/**
+ * @var {boolean}
+ * `true` to use classic-style scroller buttons. When `true` scroller buttons are given their
+ * hover state by changing their background-position, When `false` scroller buttons are
+ * given their hover state by applying opacity.
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" menu UI
+ */
+/**
+ * @class Ext.grid.filters.Filters
+ */
+/**
+ * @var {string}
+ * The font-style of the filtered column.
+ */
+/**
+ * @var {string}
+ * The font-weight of the filtered column.
+ */
+/**
+ * @var {string}
+ * The text-decoration of the filtered column.
+ */
+/**
+ * @class Ext.grid.locking.Lockable
+ */
+/**
+ * @var {number}
+ * The width of the border between the locked views
+ */
+/**
+ * @var {string}
+ * The border-style of the border between the locked views
+ */
+/**
+ * @var {string}
+ * The border-color of the border between the locked views. Defaults to the
+ * panel border color. May be overridden in a theme.
+ */
+/*
+ * Vars for fields which are rendered to fit inside grid cells.
+ * This includes cell and row editor fields and fields in widget columns.
+ */
+/**
+ * @class Ext.form.field.Base
+ */
+/**
+ * @var {number}
+ * The height of text fields rendered in the context of a grid cell. Defaults to $form-field-height. If grid row
+ * height is smaller than $form-field-height, defaults to the grid row height. Grid row
+ * height is calculated by adding $grid-row-cell-line-height to the top and bottom values of
+ * $grid-cell-inner-padding.
+ */
+/**
+ * @var {number/list}
+ * The padding of grid fields.
+ */
+/**
+ * @var {number}
+ * The color of the grid field text
+ */
+/**
+ * @var {number}
+ * The font size of the grid field text
+ */
+/**
+ * @var {string}
+ * The font-weight of the grid field text
+ */
+/**
+ * @var {string}
+ * The font-family of the grid field text
+ */
+/**
+ * @var {boolean}
+ * True to include the "grid-cell" form field UIs input fields rendered in the context of a grid cell.
+ *
+ * This defaults to `true`. It is required if either grid editors
+ * ({@link Ext.grid.plugin.CellEditing cell} or {@link Ext.grid.plugin.RowEditing row})
+ * are being used, or if a {@link Ext.grid.column.Widget WidgetColumn} is being used to
+ * house an input field.
+ */
+/**
+ * @class Ext.form.field.Text
+ */
+/**
+ * @var {number}
+ * The height of text fields rendered in the context of a grid cell
+ */
+/**
+ * @var {number}
+ * Font size for text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {string}
+ * Font family for text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {string}
+ * Font weight for text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {color}
+ * The color of a text field's input element when rendered in the context of a grid cell
+ */
+/**
+ * @var {color}
+ * The background color of a text field's input element when entered in the context of a grid cell
+ */
+/**
+ * @var {number/list}
+ * The border width of text fields entered in the context of a grid cell
+ */
+/**
+ * @var {string/list}
+ * The border style of text fields rendered in the context of a grid cell
+ */
+/**
+ * @var {color/list}
+ * The border color of text fields rendered in the context of a grid cell
+ */
+/**
+ * @var {color/list}
+ * The border color of the focused text fields rendered in the context of a grid cell
+ */
+/**
+ * @var {color}
+ * Border color for invalid text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {number/list}
+ * Border radius for text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {string}
+ * The background image of a text field's input element when rendered in the context of a grid cell
+ */
+/**
+ * @var {number/list}
+ * The padding of a text field's input element when rendered in the context of a grid cell
+ */
+/**
+ * @var {color}
+ * Text color for empty text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {number}
+ * @private
+ * The default width of a text field's body element (the element that contains the input
+ * element and triggers) when the field is rendered in the context of a grid cell and not sized explicitly using the {@link #width}
+ * config, or sized by it's containing layout.
+ */
+/**
+ * @var {color}
+ * Background color of a text field's input element when rendered in the context of a grid cell and the field value is invalid.
+ */
+/**
+ * @var {string}
+ * Background image of a grid field text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string}
+ * Background repeat of the grid field text field's input element when the field value is invalid.
+ */
+/**
+ * @var {string/list}
+ * Background position of the grid field text field's input element when rendered in the context of a grid cell and the field value is invalid.
+ */
+/**
+ * @var {boolean}
+ * `true` to use classic-theme styled border for text fields rendered in the context of a grid cell.
+ */
+/**
+ * @var {number/string}
+ * The line-height to use for the TextArea's text when rendered in the context of a grid cell
+ */
+/**
+ * @var {number}
+ * The default width of the grid field TextArea's body element (the element that
+ * contains the textarea html element when the field is rendered in the context of a grid cell and not sized explicitly using the
+ * {@link #width} config, or sized by it's containing layout.
+ */
+/**
+ * @var {color}
+ * Text color for file fields rendered in the context of a grid cell
+ */
+/**
+ * @var {number}
+ * The width of a text field's trigger element when rendered in the context of a grid cell
+ */
+/**
+ * @var {number/list}
+ * The width of a text field's trigger's border when rendered in the context of a grid cell
+ */
+/**
+ * @var {color/list}
+ * The color of a text field's trigger's border when rendered in the context of a grid cell
+ */
+/**
+ * @var {string/list}
+ * The style of a text field's trigger's border when rendered in the context of a grid cell
+ */
+/**
+ * @var {color}
+ * The color of a text field's trigger's border when rendered in the context of a grid cell and hovered
+ */
+/**
+ * @var {color}
+ * The color of a text field's trigger's border when rendered in the context of a grid cell and the field is focused
+ */
+/**
+ * @var {color}
+ * The color of a text field's trigger's border when rendered in the context of a grid cell and the field is focused and the trigger is hovered
+ */
+/**
+ * @var {string}
+ * The default background image for text field triggers when rendered in the context of a grid cell
+ */
+/**
+ * @var {color}
+ * The background color of a text field's trigger element when rendered in the context of a grid cell
+ */
+/**
+ * @var {boolean}
+ * True to include the "grid-cell" text field UI
+ */
+/**
+ * @class Ext.form.field.Spinner
+ */
+/**
+ * @var {boolean}
+ * True to use vertically oriented spinner triggers when rendered in the context of a grid cell.
+ */
+/**
+ * @var {string}
+ * Background image for vertically oriented grid field spinner triggers when rendered in the context of a grid cell
+ */
+/**
+ * @var {string}
+ * Background image for the "up" trigger when grid field spinner trigger buttons are rendered in the context of a grid cell and horizontally aligned
+ */
+/**
+ * @var {string}
+ * Background image for the "down" trigger when grid field spinner trigger buttons are rendered in the context of a grid cell and horizontally aligned
+ */
+/**
+ * @var {boolean}
+ * True to include the "grid-cell" spinner UI
+ */
+/**
+ * @var {number}
+ * The size of a checkbox when rendered in the context of a grid cell
+ */
+/**
+ * @var {string}
+ * The background-image of a checkbox when rendered in the context of a grid cell
+ */
+/**
+ * @var {string}
+ * The background-image of a radio button when rendered in the context of a grid cell
+ */
+/**
+ * @var {boolean}
+ * True to include the "grid-cell" checkbox UI
+ */
+/**
+ * @class Ext.form.field.Display
+ */
+/**
+ * @var {color}
+ * The text color of display fields rendered in the context of a grid cell
+ */
+/**
+ * @var {number}
+ * The font-size of display fields rendered in the context of a grid cell
+ */
+/**
+ * @var {string}
+ * The font-family of display fields rendered in the context of a grid cell
+ */
+/**
+ * @var {string}
+ * The font-weight of display fields rendered in the context of a grid cell
+ */
+/**
+ * @var {number}
+ * The line-height of display fields rendered in the context of a grid cell
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" display field UI
+ */
+/**
+ * @class Ext.grid.plugin.RowEditing
+ */
+/**
+ * @var {color}
+ * The background-color of the RowEditor
+ */
+/**
+ * @var {color}
+ * The border-color of the RowEditor
+ */
+/**
+ * @var {number}
+ * The border-width of the RowEditor
+ */
+/**
+ * @var {number/list}
+ * The padding of the RowEditor
+ */
+/**
+ * @var {number}
+ * The amount of space in between the editor fields
+ */
+/**
+ * @var {number}
+ * The space between the RowEditor buttons
+ */
+/**
+ * @var {number}
+ * The border-radius of the RowEditor button container
+ */
+/**
+ * @var {number/list}
+ * The padding of the RowEditor button container
+ */
+/**
+ * @var {number/list}
+ * Padding to apply to the body element of the error tooltip
+ */
+/**
+ * @var {string}
+ * The list-style of the error tooltip's list items
+ */
+/**
+ * @var {number}
+ * Space to add before each list item on the error tooltip
+ */
+/**
+ * @class Ext.grid.plugin.RowExpander
+ */
+/**
+ * @var {number}
+ * The height of the RowExpander icon
+ */
+/**
+ * @var {number}
+ * The width of the RowExpander icon
+ */
+/**
+ * @var {number}
+ * The horizontal space before the RowExpander icon
+ */
+/**
+ * @var {number}
+ * The horizontal space after the RowExpander icon
+ */
+/**
+ * @var {string}
+ * The cursor for the RowExpander icon
+ */
+/**
+ * @class Ext.grid.property.Grid
+ */
+/**
+ * @var {string}
+ * The background-image of property grid cells
+ */
+/**
+ * @var {string}
+ * The background-position of property grid cells
+ */
+/**
+ * @var {number/string}
+ * The padding to add before the text of property grid cells to make room for the
+ * background-image. Only applies if $grid-property-cell-background-image is not null
+ */
+/**
+ * @class Ext.layout.container.Accordion
+ */
+/**
+ * @var {color}
+ * The text color of Accordion headers
+ */
+/**
+ * @var {color}
+ * The background-color of Accordion headers
+ */
+/**
+ * @var {color}
+ * The background-color of Accordion headers when hovered
+ */
+/**
+ * @var {number}
+ * The size of {@link Ext.panel.Tool Tools} in Accordion headers
+ */
+/**
+ * @var {number/list}
+ * The border-width of Accordion headers
+ */
+/**
+ * @var {number/list}
+ * The border-color of Accordion headers
+ */
+/**
+ * @var {number/list}
+ * The padding of Accordion headers
+ */
+/**
+ * @var {string}
+ * The font-weight of Accordion headers
+ */
+/**
+ * @var {string}
+ * The font-family of Accordion headers
+ */
+/**
+ * @var {string}
+ * The text-transform property of Accordion headers
+ */
+/**
+ * @var {number}
+ * The body border-width of Accordion layout element
+ */
+/**
+ * @var {color}
+ * The background-color of the Accordion layout element
+ */
+/**
+ * @var {color}
+ * The background-color of the Accordion layout element
+ */
+/**
+ * @var {number/list}
+ * The padding of the Accordion layout element
+ */
+/**
+ * @var {string}
+ * The sprite image to use for {@link Ext.panel.Tool Tools} in Accordion headers
+ */
+/**
+ * @class Ext.selection.CheckboxModel
+ */
+/**
+ * @var {number}
+ * The horizontal space before the checkbox
+ */
+/**
+ * @var {number}
+ * The horizontal space after the checkbox
+ */
+/**
+ * @class Ext.slider.Multi
+ */
+/**
+ * @var {number}
+ * The horizontal slider thumb width
+ */
+/**
+ * @var {number}
+ * The horizontal slider thumb height
+ */
+/**
+ * @var {number}
+ * The width of the horizontal slider start cap
+ */
+/**
+ * @var {number}
+ * The width of the horizontal slider end cap
+ */
+/**
+ * @var {number}
+ * The vertical slider thumb width
+ */
+/**
+ * @var {number}
+ * The vertical slider thumb height
+ */
+/**
+ * @var {number}
+ * The height of the vertical slider start cap
+ */
+/**
+ * @var {number}
+ * The height of the vertical slider end cap
+ */
+/** @class Ext.toolbar.Breadcrumb */
+/**
+ * @class Ext.toolbar.Toolbar
+ */
+/**
+ * @var {number}
+ * The default font-size of Toolbar text
+ */
+/**
+ * @var {color}
+ * The background-color of the Toolbar
+ */
+/**
+ * @var {string/list}
+ * The background-gradient of the Toolbar. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ */
+/**
+ * @var {number}
+ * The horizontal spacing of Toolbar items
+ */
+/**
+ * @var {number}
+ * The vertical spacing of Toolbar items
+ */
+/**
+ * @var {number}
+ * The horizontal spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items
+ */
+/**
+ * @var {number}
+ * The vertical spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items
+ */
+/**
+ * @var {color}
+ * The background-color of {@link Ext.panel.Panel#fbar footer} Toolbars
+ */
+/**
+ * @var {number}
+ * The border-width of {@link Ext.panel.Panel#fbar footer} Toolbars
+ */
+/**
+ * @var {color}
+ * The border-color of Toolbars
+ */
+/**
+ * @var {number}
+ * The border-width of Toolbars
+ */
+/**
+ * @var {string}
+ * The border-style of Toolbars
+ */
+/**
+ * @var {number}
+ * The width of Toolbar {@link Ext.toolbar.Spacer Spacers}
+ */
+/**
+ * @var {color}
+ * The main border-color of Toolbar {@link Ext.toolbar.Separator Separators}
+ */
+/**
+ * @var {color}
+ * The highlight border-color of Toolbar {@link Ext.toolbar.Separator Separators}
+ */
+/**
+ * @var {number/list}
+ * The margin of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
+ */
+/**
+ * @var {number}
+ * The height of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
+ */
+/**
+ * @var {string}
+ * The border-style of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
+ */
+/**
+ * @var {number}
+ * The border-width of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
+ */
+/**
+ * @var {number/list}
+ * The margin of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar
+ */
+/**
+ * @var {string}
+ * The border-style of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar
+ */
+/**
+ * @var {number}
+ * The border-width of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar
+ */
+/**
+ * @var {string}
+ * The default font-family of Toolbar text
+ */
+/**
+ * @var {number}
+ * The default font-size of Toolbar text
+ */
+/**
+ * @var {number}
+ * The default font-size of Toolbar text
+ */
+/**
+ * @var {color}
+ * The text-color of Toolbar text
+ */
+/**
+ * @var {number}
+ * The line-height of Toolbar text
+ */
+/**
+ * @var {number/list}
+ * The padding of Toolbar text
+ */
+/**
+ * @var {number}
+ * The width of Toolbar scrollers
+ */
+/**
+ * @var {number}
+ * The height of Toolbar scrollers
+ */
+/**
+ * @var {number}
+ * The width of scrollers on vertically aligned toolbars
+ */
+/**
+ * @var {number}
+ * The height of scrollers on vertically aligned toolbars
+ */
+/**
+ * @var {color}
+ * The border-color of Toolbar scroller buttons
+ */
+/**
+ * @var {number}
+ * The border-width of Toolbar scroller buttons
+ */
+/**
+ * @var {color}
+ * The border-color of scroller buttons on vertically aligned toolbars
+ */
+/**
+ * @var {number}
+ * The border-width of scroller buttons on vertically aligned toolbars
+ */
+/**
+ * @var {number/list}
+ * The margin of "top" Toolbar scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "right" Toolbar scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "bottom" Toolbar scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "left" Toolbar scroller buttons
+ */
+/**
+ * @var {string}
+ * The cursor of Toolbar scroller buttons
+ */
+/**
+ * @var {string}
+ * The cursor of disabled Toolbar scroller buttons
+ */
+/**
+ * @var {number}
+ * The opacity of Toolbar scroller buttons. Only applicable when
+ * {@link #$toolbar-classic-scrollers} is `false`.
+ */
+/**
+ * @var {number}
+ * The opacity of hovered Toolbar scroller buttons. Only applicable when
+ * {@link #$toolbar-classic-scrollers} is `false`.
+ */
+/**
+ * @var {number}
+ * The opacity of pressed Toolbar scroller buttons. Only applicable when
+ * {@link #$toolbar-classic-scrollers} is `false`.
+ */
+/**
+ * @var {number}
+ * The opacity of disabled Toolbar scroller buttons.
+ */
+/**
+ * @var {boolean}
+ * `true` to use classic-style scroller buttons. When `true` scroller buttons are given their
+ * hover state by changing their background-position, When `false` scroller buttons are
+ * given their hover state by applying opacity.
+ */
+/**
+ * @var {string}
+ * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar
+ */
+/**
+ * @var {boolean}
+ * True to include the "default" toolbar UI
+ */
+/**
+ * @var {boolean}
+ * True to include the "footer" toolbar UI
+ */
+/**
+ * @var {string}
+ * The UI of buttons that are used in the "default" breadcrumb UI
+ */
+/**
+ * @var {number}
+ * The space between the breadcrumb buttons
+ */
+/**
+ * @var {number}
+ * The width of breadcrumb arrows when {@link #useSplitButtons} is `false`
+ */
+/**
+ * @var {number}
+ * The width of breadcrumb arrows when {@link #useSplitButtons} is `true`
+ */
+/**
+ * @var {string}
+ * The background-image for the default "folder" icon
+ */
+/**
+ * @var {string}
+ * The background-image for the default "leaf" icon
+ */
+/**
+ * @var {boolean}
+ * `true` to include a separate background-image for menu arrows when a breadcrumb button's
+ * menu is open
+ */
+/**
+ * @var {boolean}
+ * `true` to include a separate background-image for split arrows when a breadcrumb button's
+ * arrow is hovered
+ */
+/**
+ * @var {number}
+ * The width of Breadcrumb scrollers
+ */
+/**
+ * @var {number}
+ * The height of Breadcrumb scrollers
+ */
+/**
+ * @var {color}
+ * The border-color of Breadcrumb scrollers
+ */
+/**
+ * @var {number}
+ * The border-width of Breadcrumb scrollers
+ */
+/**
+ * @var {number/list}
+ * The margin of "top" Breadcrumb scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "right" Breadcrumb scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "bottom" Breadcrumb scroller buttons
+ */
+/**
+ * @var {number/list}
+ * The margin of "left" Breadcrumb scroller buttons
+ */
+/**
+ * @var {string}
+ * The cursor of Breadcrumb scrollers
+ */
+/**
+ * @var {string}
+ * The cursor of disabled Breadcrumb scrollers
+ */
+/**
+ * @var {number}
+ * The opacity of Breadcrumb scroller buttons. Only applicable when
+ * {@link #$breadcrumb-classic-scrollers} is `false`.
+ */
+/**
+ * @var {number}
+ * The opacity of hovered Breadcrumb scroller buttons. Only applicable when
+ * {@link #$breadcrumb-classic-scrollers} is `false`.
+ */
+/**
+ * @var {number}
+ * The opacity of pressed Breadcrumb scroller buttons. Only applicable when
+ * {@link #$breadcrumb-classic-scrollers} is `false`.
+ */
+/**
+ * @var {number}
+ * The opacity of disabled Breadcrumb scroller buttons. Only applicable when
+ * {@link #$breadcrumb-classic-scrollers} is `false`.
+ */
+/**
+ * @var {boolean}
+ * `true` to use classic-style scroller buttons. When `true` scroller buttons are given their
+ * hover state by changing their background-position, When `false` scroller buttons are
+ * given their hover state by applying opacity.
+ */
+/**
+ * @var {boolean}
+ * `true` to include the "default" breadcrumb UI
+ */
+/**
+ * @class Ext.view.MultiSelector
+ */
+/**
+ * @var {number}
+ * The font-size for the multiselector's remove glyph.
+ */
+/**
+ * @var {number/list}
+ * The padding of "Remove" cell's inner element
+ */
+/**
+ * @var {color}
+ * The color for the multiselector's remove glyph.
+ */
+/**
+ * @var {color}
+ * The color for the multiselector's remove glyph during mouse over.
+ */
+/**
+ * @var {string}
+ * The cursor style for the remove glyph.
+ */
+/* including package ext-theme-base */
+/**
+ * @class Global_CSS
+ */
+/**
+ * @var {string} $prefix
+ * The prefix to be applied to all CSS selectors. If this is changed, it must also be changed in your
+ * JavaScript application.
+ */
+/**
+ * @var {boolean/string} $relative-image-path-for-uis
+ * True to use a relative image path for all new UIs. If true, the path will be "../images/".
+ * It can also be a string of the path value.
+ * It defaults to false, which means it will look for the images in the ExtJS SDK folder.
+ */
+/**
+ * @var {boolean} $include-not-found-images
+ * True to include files which are not found when compiling your SASS
+ */
+/**
+ * @var {boolean} $include-ie
+ * True to include Internet Explorer specific rules for IE9 and lower. IE10 and up are
+ * considered to be "modern" browsers, and as such do not need any of the CSS hacks required
+ * for IE9 and below. Setting this property to false will result in a significantly smaller
+ * CSS file size, and may also result in a slight performance improvement, because the
+ * browser will have fewer rules to process.
+ */
+/**
+ * @var {boolean} $include-ff
+ * True to include Firefox specific rules
+ */
+/**
+ * @var {boolean} $include-opera
+ * True to include Opera specific rules
+ */
+/**
+ * @var {boolean} $include-webkit
+ * True to include Webkit specific rules
+ */
+/**
+ * @var {boolean} $include-safari
+ * True to include Safari specific rules
+ */
+/**
+ * @var {boolean} $include-chrome
+ * True to include Chrome specific rules
+ */
+/**
+ * @var {boolean} $include-slicer-border-radius
+ * True to include rules for rounded corners produced by the slicer. Enables emulation
+ * of CSS3 border-radius in browsers that do not support it.
+ */
+/**
+ * @var {boolean} $include-slicer-gradient
+ * True to include rules for background gradients produced by the slicer. Enables emulation
+ * of CSS3 background-gradient in browsers that do not support it.
+ */
+/**
+ * @var {number} $css-shadow-border-radius
+ * The border radius for CSS shadows
+ */
+/**
+ * @var {string} $image-extension
+ * default file extension to use for images (defaults to 'png').
+ */
+/**
+ * @var {string} $slicer-image-extension
+ * default file extension to use for slicer images (defaults to 'gif').
+ */
+/**
+ * Default search path for images
+ */
+/**
+ * @var {boolean}
+ * True to include the default UI for each component.
+ */
+/**
+ * @var {boolean}
+ * True to add font-smoothing styles to all components
+ */
+/**
+ * @var {string}
+ * The base path relative to the CSS output directory to use for theme resources. For example
+ * if the theme's images live one directory up from the generated CSS output in a directory
+ * named 'foo/images/', you would need to set this variable to '../foo/' in order for the image
+ * paths in the CSS output to be generated correctly. By default this is the same as the
+ * CSS output directory.
+ */
+/**
+ * @private
+ * Flag to ensure GridField rules only get set once
+ */
+/* ======================== RULE ======================== */
+/* including package ext-theme-base */
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/scroll/TouchScroller.scss */
+.x-scroll-container {
+ overflow: hidden;
+ position: relative; }
+
+/* line 8, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/scroll/TouchScroller.scss */
+.x-scroll-scroller {
+ float: left;
+ position: relative;
+ min-width: 100%;
+ min-height: 100%; }
+
+/*
+ * Although this file only contains a variable, all vars are included by default
+ * in application sass builds, so this needs to be in the rule file section
+ * to allow javascript inclusion filtering to disable it.
+ */
+/**
+ * @var {boolean} $include-rtl
+ * True to include right-to-left style rules. This variable gets set to true automatically
+ * for rtl builds. You should not need to ever assign a value to this variable, however
+ * it can be used to suppress rtl-specific rules when they are not needed. For example:
+ * @if $include-rtl {
+ * .x-rtl.foo {
+ * margin-left: $margin-right;
+ * margin-right: $margin-left;
+ * }
+ * }
+ * @member Global_CSS
+ * @readonly
+ */
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-body {
+ margin: 0;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale; }
+
+/* line 9, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-no-touch-scroll {
+ touch-action: none;
+ -ms-touch-action: none; }
+
+@-ms-viewport {
+ width: device-width; }
+
+/* line 23, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+img {
+ border: 0; }
+
+/* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-border-box,
+.x-border-box * {
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -ms-box-sizing: border-box;
+ -webkit-box-sizing: border-box; }
+
+/* line 36, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-rtl {
+ direction: rtl; }
+
+/* line 41, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-ltr {
+ direction: ltr; }
+
+/* line 45, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-clear {
+ overflow: hidden;
+ clear: both;
+ font-size: 0;
+ line-height: 0;
+ display: table; }
+
+/* line 53, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-layer {
+ position: absolute !important;
+ overflow: hidden; }
+
+/* line 60, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-fixed-layer {
+ position: fixed !important;
+ overflow: hidden; }
+
+/* line 65, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-shim {
+ position: absolute;
+ left: 0;
+ top: 0;
+ overflow: hidden;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
+ opacity: 0; }
+
+/* line 73, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-hidden-display {
+ display: none !important; }
+
+/* line 77, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-hidden-visibility {
+ visibility: hidden !important; }
+
+/* line 82, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-hidden,
+.x-hidden-offsets {
+ display: block !important;
+ visibility: hidden !important;
+ position: absolute !important;
+ top: -10000px !important; }
+
+/* line 93, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-hidden-clip {
+ position: absolute!important;
+ clip: rect(0, 0, 0, 0); }
+
+/* line 98, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-masked-relative {
+ position: relative; }
+
+/* line 111, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-unselectable {
+ user-select: none;
+ -o-user-select: none;
+ -ms-user-select: none;
+ -moz-user-select: -moz-none;
+ -webkit-user-select: none;
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
+ -webkit-user-drag: none;
+ cursor: default; }
+
+/* line 115, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-selectable {
+ cursor: auto;
+ -moz-user-select: text;
+ -webkit-user-select: text;
+ -ms-user-select: text;
+ user-select: text;
+ -o-user-select: text; }
+
+/* line 130, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-list-plain {
+ list-style-type: none;
+ margin: 0;
+ padding: 0; }
+
+/* line 137, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-table-plain {
+ border-collapse: collapse;
+ border-spacing: 0;
+ font-size: 1em; }
+
+/* line 150, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-frame-tl,
+.x-frame-tr,
+.x-frame-tc,
+.x-frame-bl,
+.x-frame-br,
+.x-frame-bc {
+ overflow: hidden;
+ background-repeat: no-repeat; }
+
+/* line 156, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-frame-tc,
+.x-frame-bc {
+ background-repeat: repeat-x; }
+
+/* line 167, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+td.x-frame-tl,
+td.x-frame-tr,
+td.x-frame-bl,
+td.x-frame-br {
+ width: 1px; }
+
+/* line 171, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-frame-mc {
+ background-repeat: repeat-x;
+ overflow: hidden; }
+
+/* line 176, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-proxy-el {
+ position: absolute;
+ background: #b4b4b4;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8; }
+
+/* line 183, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-css-shadow {
+ position: absolute;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px; }
+
+/* line 189, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-item-disabled,
+.x-item-disabled * {
+ cursor: default; }
+
+/* line 194, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+.x-component,
+.x-container {
+ position: relative; }
+
+/* line 203, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/Component.scss */
+:focus {
+ outline: none; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+.x-form-item {
+ display: table;
+ table-layout: fixed;
+ border-spacing: 0;
+ border-collapse: separate; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+.x-form-item-label {
+ overflow: hidden; }
+
+/* line 14, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+.x-form-item.x-form-item-no-label > .x-form-item-label {
+ display: none; }
+
+/* line 19, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+.x-form-item-label,
+.x-form-item-body {
+ display: table-cell; }
+
+/* line 23, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+.x-form-item-body {
+ vertical-align: middle;
+ height: 100%; }
+
+/* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+.x-form-item-label-inner {
+ display: inline-block; }
+
+/* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+.x-form-item-label-top {
+ display: table-row;
+ height: 1px; }
+ /* line 35, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+ .x-form-item-label-top > .x-form-item-label-inner {
+ display: table-cell; }
+
+/* line 39, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+.x-form-item-label-top-side-error:after {
+ display: table-cell;
+ content: ''; }
+
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+.x-form-item-label-right {
+ text-align: right; }
+ /* line 47, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+ .x-form-item-label-right.x-rtl {
+ text-align: left; }
+
+/* line 53, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+.x-form-error-wrap-side {
+ display: table-cell;
+ vertical-align: middle; }
+
+/* line 58, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+.x-form-error-wrap-under {
+ display: table-row;
+ height: 1px; }
+ /* line 61, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+ .x-form-error-wrap-under > .x-form-error-msg {
+ display: table-cell; }
+
+/* line 66, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+.x-form-error-wrap-under-side-label:before {
+ display: table-cell;
+ content: '';
+ pointer-events: none; }
+
+/* line 72, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+.x-form-invalid-icon {
+ overflow: hidden; }
+ /* line 74, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/Labelable.scss */
+ .x-form-invalid-icon ul {
+ display: none; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Text.scss */
+.x-form-trigger-wrap {
+ display: table;
+ width: 100%;
+ height: 100%; }
+
+/* line 22, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Text.scss */
+.x-form-text-wrap {
+ display: table-cell;
+ overflow: hidden;
+ height: 100%; }
+
+/* line 39, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Text.scss */
+.x-form-item-body.x-form-text-grow {
+ min-width: inherit;
+ max-width: inherit; }
+
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Text.scss */
+.x-form-text {
+ border: 0;
+ margin: 0;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ display: block;
+ background: repeat-x 0 0;
+ width: 100%;
+ height: 100%; }
+ /* line 53, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Text.scss */
+ .x-webkit .x-form-text {
+ height: calc(100% + 3px); }
+
+/* line 61, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Text.scss */
+.x-form-trigger {
+ display: table-cell;
+ vertical-align: top;
+ cursor: pointer;
+ overflow: hidden;
+ background-repeat: no-repeat;
+ line-height: 0;
+ white-space: nowrap; }
+ /* line 72, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Text.scss */
+ .x-item-disabled .x-form-trigger {
+ cursor: default; }
+ /* line 75, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Text.scss */
+ .x-form-trigger.x-form-trigger-cmp {
+ background: none;
+ border: 0; }
+ /* line 84, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Text.scss */
+ .x-form-trigger.x-form-trigger-cmp.x-rtl {
+ background: none;
+ border: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/LoadMask.scss */
+.x-mask {
+ z-index: 100;
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ /*
+ * IE and FF will add an outline to focused elements,
+ * which we don't want when using our own focus treatment
+ */
+ outline: none !important; }
+
+/*
+ * IE8 will treat partially transparent divs as invalid click targets,
+ * allowing mouse events to reach elements beneath the mask. Placing
+ * a 1x1 transparent gif as the link el background will cure this.
+ */
+/* line 21, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/LoadMask.scss */
+.x-ie8 .x-mask {
+ background-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7); }
+
+/* line 27, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/LoadMask.scss */
+.x-mask-fixed {
+ position: fixed; }
+
+/* line 31, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/LoadMask.scss */
+.x-mask-msg {
+ position: absolute; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/view/View.scss */
+.x-view-item-focused {
+ outline: 1px dashed #162938 !important;
+ outline-offset: -1px; }
+
+/* line 3, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Container.scss */
+.x-box-item {
+ position: absolute !important;
+ left: 0;
+ top: 0; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Container.scss */
+.x-rtl > .x-box-item {
+ right: 0;
+ left: auto; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Auto.scss */
+.x-autocontainer-outerCt {
+ display: table; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Auto.scss */
+.x-autocontainer-innerCt {
+ display: table-cell;
+ height: 100%;
+ vertical-align: top; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/resizer/Splitter.scss */
+.x-splitter {
+ font-size: 1px; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/resizer/Splitter.scss */
+.x-splitter-horizontal {
+ cursor: e-resize;
+ cursor: row-resize; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/resizer/Splitter.scss */
+.x-splitter-vertical {
+ cursor: e-resize;
+ cursor: col-resize; }
+
+/* line 17, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/resizer/Splitter.scss */
+.x-splitter-collapsed,
+.x-splitter-horizontal-noresize,
+.x-splitter-vertical-noresize {
+ cursor: default; }
+
+/* line 21, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/resizer/Splitter.scss */
+.x-splitter-active {
+ z-index: 4; }
+
+/* line 25, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/resizer/Splitter.scss */
+.x-collapse-el {
+ position: absolute;
+ background-repeat: no-repeat; }
+
+/* line 30, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/resizer/Splitter.scss */
+.x-splitter-focus {
+ z-index: 4; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Box.scss */
+.x-box-layout-ct {
+ overflow: hidden;
+ position: relative; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Box.scss */
+.x-box-target {
+ position: absolute;
+ width: 20000px;
+ top: 0;
+ left: 0;
+ height: 1px; }
+
+/* line 25, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Box.scss */
+.x-rtl.x-box-target {
+ left: auto;
+ right: 0; }
+
+/* line 31, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Box.scss */
+.x-box-inner {
+ overflow: hidden;
+ position: relative;
+ left: 0;
+ top: 0; }
+
+/* line 38, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Box.scss */
+.x-box-scroller {
+ position: absolute;
+ background-repeat: no-repeat;
+ background-position: center;
+ line-height: 0;
+ font-size: 0; }
+
+/* line 46, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Box.scss */
+.x-box-scroller-top {
+ top: 0; }
+
+/* line 50, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Box.scss */
+.x-box-scroller-right {
+ right: 0; }
+
+/* line 54, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Box.scss */
+.x-box-scroller-bottom {
+ bottom: 0; }
+
+/* line 58, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Box.scss */
+.x-box-scroller-left {
+ left: 0; }
+
+/* line 62, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Box.scss */
+.x-box-menu-body-horizontal {
+ float: left; }
+
+/* line 66, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Box.scss */
+.x-box-menu-after {
+ position: relative;
+ float: left; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-text {
+ white-space: nowrap; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-separator {
+ display: block;
+ font-size: 1px;
+ overflow: hidden;
+ cursor: default;
+ border: 0;
+ width: 0;
+ height: 0;
+ line-height: 0px; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-scroller {
+ padding-left: 0; }
+
+/* line 23, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-plain {
+ border: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-title-icon {
+ background-repeat: no-repeat;
+ background-position: 0 0;
+ vertical-align: middle;
+ text-align: center; }
+
+/* line 8, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-title {
+ display: table;
+ table-layout: fixed; }
+
+/* line 14, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-rtl.x-title {
+ -o-text-overflow: clip;
+ text-overflow: clip; }
+
+/* line 20, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-title-text {
+ display: table-cell;
+ overflow: hidden;
+ white-space: nowrap;
+ -o-text-overflow: ellipsis;
+ text-overflow: ellipsis;
+ vertical-align: middle; }
+
+/* line 29, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-title-align-left {
+ text-align: left; }
+ /* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+ .x-title-align-left.x-rtl {
+ text-align: right; }
+
+/* line 38, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-title-align-center {
+ text-align: center; }
+
+/* line 42, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-title-align-right {
+ text-align: right; }
+ /* line 45, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+ .x-title-align-right.x-rtl {
+ text-align: left; }
+
+/* line 51, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-title-rotate-right {
+ -webkit-transform: rotate(90deg);
+ -webkit-transform-origin: 0 0;
+ -moz-transform: rotate(90deg);
+ -moz-transform-origin: 0 0;
+ -o-transform: rotate(90deg);
+ -o-transform-origin: 0 0;
+ -ms-transform: rotate(90deg);
+ -ms-transform-origin: 0 0;
+ transform: rotate(90deg);
+ transform-origin: 0 0; }
+ /* line 55, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+ .x-title-rotate-right.x-rtl {
+ -webkit-transform: rotate(270deg);
+ -webkit-transform-origin: 100% 0;
+ -moz-transform: rotate(270deg);
+ -moz-transform-origin: 100% 0;
+ -o-transform: rotate(270deg);
+ -o-transform-origin: 100% 0;
+ -ms-transform: rotate(270deg);
+ -ms-transform-origin: 100% 0;
+ transform: rotate(270deg);
+ transform-origin: 100% 0; }
+
+/* line 61, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-title-rotate-left {
+ -webkit-transform: rotate(270deg);
+ -webkit-transform-origin: 100% 0;
+ -moz-transform: rotate(270deg);
+ -moz-transform-origin: 100% 0;
+ -o-transform: rotate(270deg);
+ -o-transform-origin: 100% 0;
+ -ms-transform: rotate(270deg);
+ -ms-transform-origin: 100% 0;
+ transform: rotate(270deg);
+ transform-origin: 100% 0; }
+ /* line 65, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+ .x-title-rotate-left.x-rtl {
+ -webkit-transform: rotate(90deg);
+ -webkit-transform-origin: 0 0;
+ -moz-transform: rotate(90deg);
+ -moz-transform-origin: 0 0;
+ -o-transform: rotate(90deg);
+ -o-transform-origin: 0 0;
+ -ms-transform: rotate(90deg);
+ -ms-transform-origin: 0 0;
+ transform: rotate(90deg);
+ transform-origin: 0 0; }
+
+/* line 74, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-horizontal.x-header .x-title-rotate-right.x-title-align-left > .x-title-item {
+ vertical-align: bottom; }
+/* line 78, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-horizontal.x-header .x-title-rotate-right.x-title-align-center > .x-title-item {
+ vertical-align: middle; }
+/* line 82, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-horizontal.x-header .x-title-rotate-right.x-title-align-right > .x-title-item {
+ vertical-align: top; }
+/* line 88, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-horizontal.x-header .x-title-rotate-left.x-title-align-left > .x-title-item {
+ vertical-align: top; }
+/* line 92, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-horizontal.x-header .x-title-rotate-left.x-title-align-center > .x-title-item {
+ vertical-align: middle; }
+/* line 96, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-horizontal.x-header .x-title-rotate-left.x-title-align-right > .x-title-item {
+ vertical-align: bottom; }
+
+/* line 104, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-vertical.x-header .x-title-rotate-none.x-title-align-left > .x-title-item {
+ vertical-align: top; }
+/* line 108, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-vertical.x-header .x-title-rotate-none.x-title-align-center > .x-title-item {
+ vertical-align: middle; }
+/* line 112, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-vertical.x-header .x-title-rotate-none.x-title-align-right > .x-title-item {
+ vertical-align: bottom; }
+
+/* line 119, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-title-icon-wrap {
+ display: table-cell;
+ text-align: center;
+ vertical-align: middle;
+ line-height: 0; }
+ /* line 125, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+ .x-title-icon-wrap.x-title-icon-top, .x-title-icon-wrap.x-title-icon-bottom {
+ display: table-row; }
+
+/* line 130, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Title.scss */
+.x-title-icon {
+ display: inline-block;
+ vertical-align: middle;
+ background-position: center;
+ background-repeat: no-repeat; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Tool.scss */
+.x-tool {
+ font-size: 0;
+ line-height: 0; }
+
+/* line 3, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Header.scss */
+.x-header > .x-box-inner {
+ overflow: visible; }
+
+/* line 4, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/dd/DD.scss */
+.x-dd-drag-proxy,
+.x-dd-drag-current {
+ z-index: 1000000!important;
+ pointer-events: none; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/dd/StatusProxy.scss */
+.x-dd-drag-repair .x-dd-drag-ghost {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
+ opacity: 0.6; }
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/dd/StatusProxy.scss */
+.x-dd-drag-repair .x-dd-drop-icon {
+ display: none; }
+
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/dd/StatusProxy.scss */
+.x-dd-drag-ghost {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
+ opacity: 0.85;
+ padding: 5px;
+ padding-left: 20px;
+ white-space: nowrap;
+ color: #000;
+ font: normal 12px "Roboto", sans-serif;
+ border: 1px solid;
+ border-color: #ddd #bbb #bbb #ddd;
+ background-color: #fff; }
+
+/* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/dd/StatusProxy.scss */
+.x-dd-drop-icon {
+ position: absolute;
+ top: 3px;
+ left: 3px;
+ display: block;
+ width: 16px;
+ height: 16px;
+ background-color: transparent;
+ background-position: center;
+ background-repeat: no-repeat;
+ z-index: 1; }
+
+/* line 51, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/dd/StatusProxy.scss */
+.x-rtl .x-dd-drag-ghost {
+ padding-left: 5px;
+ padding-right: 20px; }
+/* line 55, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/dd/StatusProxy.scss */
+.x-rtl .x-dd-drop-icon {
+ left: auto;
+ right: 3px; }
+
+/* line 66, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/dd/StatusProxy.scss */
+.x-dd-drop-ok .x-dd-drop-icon {
+ background-image: url(images/dd/drop-yes.png); }
+
+/* line 70, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/dd/StatusProxy.scss */
+.x-dd-drop-ok-add .x-dd-drop-icon {
+ background-image: url(images/dd/drop-add.png); }
+
+/* line 75, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/dd/StatusProxy.scss */
+.x-dd-drop-nodrop div.x-dd-drop-icon {
+ background-image: url(images/dd/drop-no.png); }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-docked {
+ position: absolute !important;
+ z-index: 1; }
+
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-docked-vertical {
+ position: static; }
+
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-docked-top {
+ border-bottom-width: 0 !important; }
+
+/* line 15, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-docked-bottom {
+ border-top-width: 0 !important; }
+
+/* line 19, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-docked-left {
+ border-right-width: 0 !important; }
+
+/* line 23, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-docked-right {
+ border-left-width: 0 !important; }
+
+/* line 27, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-docked-noborder-top {
+ border-top-width: 0 !important; }
+
+/* line 31, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-docked-noborder-right {
+ border-right-width: 0 !important; }
+
+/* line 35, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-docked-noborder-bottom {
+ border-bottom-width: 0 !important; }
+
+/* line 39, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-docked-noborder-left {
+ border-left-width: 0 !important; }
+
+/* line 45, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-l {
+ border-left-width: 0 !important; }
+
+/* line 48, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-b {
+ border-bottom-width: 0 !important; }
+
+/* line 51, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-bl {
+ border-bottom-width: 0 !important;
+ border-left-width: 0 !important; }
+
+/* line 55, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-r {
+ border-right-width: 0 !important; }
+
+/* line 58, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-rl {
+ border-right-width: 0 !important;
+ border-left-width: 0 !important; }
+
+/* line 62, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-rb {
+ border-right-width: 0 !important;
+ border-bottom-width: 0 !important; }
+
+/* line 66, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-rbl {
+ border-right-width: 0 !important;
+ border-bottom-width: 0 !important;
+ border-left-width: 0 !important; }
+
+/* line 71, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-t {
+ border-top-width: 0 !important; }
+
+/* line 74, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-tl {
+ border-top-width: 0 !important;
+ border-left-width: 0 !important; }
+
+/* line 78, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-tb {
+ border-top-width: 0 !important;
+ border-bottom-width: 0 !important; }
+
+/* line 82, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-tbl {
+ border-top-width: 0 !important;
+ border-bottom-width: 0 !important;
+ border-left-width: 0 !important; }
+
+/* line 87, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-tr {
+ border-top-width: 0 !important;
+ border-right-width: 0 !important; }
+
+/* line 91, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-trl {
+ border-top-width: 0 !important;
+ border-right-width: 0 !important;
+ border-left-width: 0 !important; }
+
+/* line 96, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-trb {
+ border-top-width: 0 !important;
+ border-right-width: 0 !important;
+ border-bottom-width: 0 !important; }
+
+/* line 101, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/component/Dock.scss */
+.x-noborder-trbl {
+ border-width: 0 !important; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Panel.scss */
+.x-panel,
+.x-plain {
+ overflow: hidden;
+ position: relative; }
+
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Panel.scss */
+.x-panel {
+ outline: none; }
+
+/* line 18, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Panel.scss */
+.x-panel-body {
+ overflow: hidden;
+ position: relative; }
+
+/* line 24, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Panel.scss */
+.x-panel-header-plain,
+.x-panel-body-plain {
+ border: 0;
+ padding: 0; }
+
+/* line 33, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Panel.scss */
+.x-panel-collapsed-mini {
+ visibility: hidden; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tip/Tip.scss */
+.x-tip {
+ position: absolute;
+ overflow: visible;
+ /*pointer needs to be able to stick out*/ }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tip/Tip.scss */
+.x-tip-body {
+ overflow: hidden;
+ position: relative; }
+
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tip/Tip.scss */
+.x-tip-anchor {
+ position: absolute;
+ overflow: hidden;
+ border-style: solid; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Color.scss */
+.x-color-picker-item {
+ float: left;
+ text-decoration: none; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Color.scss */
+.x-color-picker-item-inner {
+ display: block;
+ font-size: 1px; }
+
+/**
+ * generates base style rules for both tabs and buttons
+ *
+ * @param {string} [$base-cls='button']
+ *
+ * @param {boolean} [$include-arrows=true]
+ *
+ * @member Ext.button.Button
+ * @private
+ */
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-btn {
+ display: inline-block;
+ outline: 0;
+ cursor: pointer;
+ white-space: nowrap;
+ text-decoration: none;
+ vertical-align: top;
+ overflow: hidden;
+ position: relative; }
+ /* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+ .x-btn > .x-frame {
+ height: 100%;
+ width: 100%; }
+
+/* line 34, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-btn-wrap {
+ display: table;
+ height: 100%;
+ width: 100%; }
+
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-btn-button {
+ vertical-align: middle;
+ display: table-cell;
+ white-space: nowrap;
+ line-height: 0; }
+
+/* line 47, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-btn-inner {
+ display: inline-block;
+ vertical-align: middle;
+ overflow: hidden;
+ text-overflow: ellipsis; }
+ /* line 53, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+ .x-btn-icon.x-btn-no-text > .x-btn-inner {
+ display: none; }
+
+/* line 58, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-btn-icon-el {
+ display: none;
+ vertical-align: middle;
+ background-position: center center;
+ background-repeat: no-repeat; }
+ /* line 64, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+ .x-btn-icon > .x-btn-icon-el {
+ display: inline-block; }
+ /* line 69, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+ .x-btn-icon-top > .x-btn-icon-el, .x-btn-icon-bottom > .x-btn-icon-el {
+ display: block; }
+
+/* line 74, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-btn-button-center {
+ text-align: center; }
+
+/* line 78, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-btn-button-left {
+ text-align: left; }
+
+/* line 83, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-rtl.x-btn-button-left {
+ text-align: right; }
+
+/* line 88, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-btn-button-right {
+ text-align: right; }
+
+/* line 93, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-rtl.x-btn-button-right {
+ text-align: left; }
+
+/* line 114, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-btn-arrow:after,
+.x-btn-split:after {
+ background-repeat: no-repeat;
+ content: '';
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -ms-box-sizing: border-box;
+ -webkit-box-sizing: border-box; }
+
+/* line 126, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-btn-arrow-right:after,
+.x-btn-split-right:after {
+ display: table-cell;
+ background-position: right center; }
+
+/* line 134, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-rtl.x-btn-arrow-right:after, .x-rtl.x-btn-split-right:after {
+ background-position: left center; }
+
+/* line 141, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-btn-arrow-bottom:after,
+.x-btn-split-bottom:after {
+ display: table-row;
+ background-position: center bottom;
+ content: '\00a0';
+ line-height: 0; }
+
+/* line 154, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-btn-mc {
+ overflow: visible; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-toolbar {
+ position: static !important; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/HtmlEditor.scss */
+.x-htmleditor-iframe,
+.x-htmleditor-textarea {
+ display: block;
+ overflow: auto;
+ width: 100%;
+ height: 100%;
+ border: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/ProgressBar.scss */
+.x-progress {
+ position: relative;
+ border-style: solid;
+ overflow: hidden; }
+
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/ProgressBar.scss */
+.x-progress-bar {
+ overflow: hidden;
+ position: absolute;
+ width: 0;
+ height: 100%; }
+
+/* line 14, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/ProgressBar.scss */
+.x-progress-text {
+ overflow: hidden;
+ position: absolute; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Display.scss */
+.x-form-display-field-body {
+ vertical-align: top; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Fit.scss */
+.x-fit-item {
+ position: relative; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Table.scss */
+.x-grid-view {
+ overflow: hidden;
+ position: relative; }
+
+/* A grid *item* is a dataview item. It is encapsulated by a
.
+ * One item always corresponds to one store record
+ * But an item may contain more than one
.
+ * ONE child row,
will be the grid-row and will contain record data
+ */
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Table.scss */
+.x-grid-row-table {
+ width: 0;
+ table-layout: fixed;
+ border: 0 none;
+ border-collapse: separate;
+ border-spacing: 0; }
+
+/* line 25, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Table.scss */
+.x-grid-item {
+ table-layout: fixed;
+ outline: none; }
+
+/* line 30, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Table.scss */
+.x-grid-row {
+ outline: none; }
+
+/* line 34, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Table.scss */
+.x-grid-td {
+ overflow: hidden;
+ border-width: 0;
+ vertical-align: top; }
+
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Table.scss */
+.x-grid-cell-inner {
+ overflow: hidden;
+ white-space: nowrap; }
+
+/* line 46, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Table.scss */
+.x-wrap-cell .x-grid-cell-inner {
+ white-space: normal; }
+
+/* line 51, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/panel/Table.scss */
+.x-grid-resize-marker {
+ position: absolute;
+ z-index: 5;
+ top: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Checkbox.scss */
+.x-form-cb-wrap {
+ vertical-align: top; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Checkbox.scss */
+.x-form-cb-wrap-inner {
+ position: relative; }
+
+/* line 9, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Checkbox.scss */
+.x-form-cb {
+ position: absolute;
+ left: 0;
+ right: auto;
+ vertical-align: top;
+ overflow: hidden;
+ padding: 0;
+ border: 0; }
+ /* line 17, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Checkbox.scss */
+ .x-form-cb::-moz-focus-inner {
+ padding: 0;
+ border: 0; }
+
+/* line 24, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Checkbox.scss */
+.x-rtl.x-form-cb {
+ right: 0;
+ left: auto; }
+
+/* allow for the component to be positioned after the label */
+/* line 31, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Checkbox.scss */
+.x-form-cb-after {
+ left: auto;
+ right: 0; }
+
+/* line 37, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Checkbox.scss */
+.x-rtl.x-form-cb-after {
+ left: 0;
+ right: auto; }
+
+/* some browsers like IE 10 need a block element to be able to measure
+the height of a multi-line element */
+/* line 45, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Checkbox.scss */
+.x-form-cb-label {
+ display: inline-block; }
+
+/* line 54, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Checkbox.scss */
+.x-form-cb-wrap-inner-no-box-label > .x-form-cb {
+ position: static; }
+/* line 58, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Checkbox.scss */
+.x-form-cb-wrap-inner-no-box-label > .x-form-cb-label {
+ display: none; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/header/DropZone.scss */
+.x-col-move-top,
+.x-col-move-bottom {
+ position: absolute;
+ top: 0;
+ line-height: 0;
+ font-size: 0;
+ overflow: hidden;
+ z-index: 20000;
+ background: no-repeat center top transparent; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/header/Container.scss */
+.x-grid-header-ct {
+ cursor: default; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-column-header {
+ position: absolute;
+ overflow: hidden;
+ background-repeat: repeat-x; }
+
+/*
+ * TODO:
+ * When IE8 retires, revisit https://jsbin.com/honawo/quiet for better way to center header text
+ */
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-column-header-inner {
+ white-space: nowrap;
+ position: relative;
+ overflow: hidden; }
+
+/* line 17, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-leaf-column-header {
+ height: 100%; }
+ /* line 19, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+ .x-leaf-column-header .x-column-header-text-container {
+ height: 100%; }
+
+/* line 26, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-column-header-text-container {
+ width: 100%;
+ display: table;
+ table-layout: fixed; }
+ /* line 31, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+ .x-column-header-text-container.x-column-header-text-container-auto {
+ table-layout: auto; }
+
+/* line 36, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-column-header-text-wrapper {
+ display: table-cell;
+ vertical-align: middle; }
+
+/* line 41, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-column-header-text {
+ background-repeat: no-repeat;
+ display: block;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap; }
+
+/* line 58, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-column-header-trigger {
+ display: none;
+ height: 100%;
+ background-repeat: no-repeat;
+ position: absolute;
+ right: 0;
+ top: 0;
+ z-index: 2; }
+
+/* line 69, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-rtl.x-column-header-trigger {
+ left: 0;
+ right: auto; }
+
+/* line 76, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-column-header-over .x-column-header-trigger, .x-column-header-open .x-column-header-trigger {
+ display: block; }
+
+/* line 81, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-column-header-align-right {
+ text-align: right; }
+
+/* line 86, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-rtl.x-column-header-align-right {
+ text-align: left; }
+
+/* line 91, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-column-header-align-left {
+ text-align: left; }
+
+/* line 96, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-rtl.x-column-header-align-left {
+ text-align: right; }
+
+/* line 101, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Column.scss */
+.x-column-header-align-center {
+ text-align: center; }
+
+/* line 3, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tree/Panel.scss */
+.x-autowidth-table .x-grid-item {
+ table-layout: auto;
+ width: auto !important; }
+
+/* line 8, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tree/Panel.scss */
+.x-tree-view {
+ overflow: hidden; }
+
+/* line 13, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tree/Panel.scss */
+.x-tree-elbow-img,
+.x-tree-icon {
+ background-repeat: no-repeat;
+ background-position: 0 center;
+ vertical-align: top; }
+
+/* line 19, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tree/Panel.scss */
+.x-tree-checkbox {
+ border: 0;
+ padding: 0;
+ vertical-align: top;
+ position: relative;
+ background-color: transparent; }
+
+/* line 27, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tree/Panel.scss */
+.x-tree-animator-wrap {
+ overflow: hidden; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Border.scss */
+.x-border-layout-ct {
+ overflow: hidden; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Border.scss */
+.x-border-layout-ct {
+ position: relative; }
+
+/* line 9, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Border.scss */
+.x-border-region-slide-in {
+ z-index: 5; }
+
+/* line 13, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Border.scss */
+.x-region-collapsed-placeholder {
+ z-index: 4; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-tab {
+ display: block;
+ outline: 0;
+ cursor: pointer;
+ white-space: nowrap;
+ text-decoration: none;
+ vertical-align: top;
+ overflow: hidden;
+ position: relative; }
+ /* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+ .x-tab > .x-frame {
+ height: 100%;
+ width: 100%; }
+
+/* line 34, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-tab-wrap {
+ display: table;
+ height: 100%;
+ width: 100%; }
+
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-tab-button {
+ vertical-align: middle;
+ display: table-cell;
+ white-space: nowrap;
+ line-height: 0; }
+
+/* line 47, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-tab-inner {
+ display: inline-block;
+ vertical-align: middle;
+ overflow: hidden;
+ text-overflow: ellipsis; }
+ /* line 53, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+ .x-tab-icon.x-tab-no-text > .x-tab-inner {
+ display: none; }
+
+/* line 58, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-tab-icon-el {
+ display: none;
+ vertical-align: middle;
+ background-position: center center;
+ background-repeat: no-repeat; }
+ /* line 64, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+ .x-tab-icon > .x-tab-icon-el {
+ display: inline-block; }
+ /* line 69, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+ .x-tab-icon-top > .x-tab-icon-el, .x-tab-icon-bottom > .x-tab-icon-el {
+ display: block; }
+
+/* line 74, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-tab-button-center {
+ text-align: center; }
+
+/* line 78, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-tab-button-left {
+ text-align: left; }
+
+/* line 83, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-rtl.x-tab-button-left {
+ text-align: right; }
+
+/* line 88, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-tab-button-right {
+ text-align: right; }
+
+/* line 93, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-rtl.x-tab-button-right {
+ text-align: left; }
+
+/* line 154, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Button.scss */
+.x-tab-mc {
+ overflow: visible; }
+
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Tab.scss */
+.x-tab {
+ z-index: 1; }
+
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Tab.scss */
+.x-tab-active {
+ z-index: 3; }
+
+/* line 15, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Tab.scss */
+.x-tab-button {
+ position: relative; }
+
+/* line 21, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Tab.scss */
+.x-tab-close-btn {
+ display: block;
+ position: absolute;
+ font-size: 0;
+ line-height: 0; }
+
+/* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Tab.scss */
+.x-tab-rotate-left {
+ -webkit-transform: rotate(270deg);
+ -webkit-transform-origin: 100% 0;
+ -moz-transform: rotate(270deg);
+ -moz-transform-origin: 100% 0;
+ -o-transform: rotate(270deg);
+ -o-transform-origin: 100% 0;
+ -ms-transform: rotate(270deg);
+ -ms-transform-origin: 100% 0;
+ transform: rotate(270deg);
+ transform-origin: 100% 0; }
+ /* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Tab.scss */
+ .x-tab-rotate-left.x-rtl {
+ -webkit-transform: rotate(90deg);
+ -webkit-transform-origin: 0 0;
+ -moz-transform: rotate(90deg);
+ -moz-transform-origin: 0 0;
+ -o-transform: rotate(90deg);
+ -o-transform-origin: 0 0;
+ -ms-transform: rotate(90deg);
+ -ms-transform-origin: 0 0;
+ transform: rotate(90deg);
+ transform-origin: 0 0; }
+
+/* line 38, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Tab.scss */
+.x-tab-rotate-right {
+ -webkit-transform: rotate(90deg);
+ -webkit-transform-origin: 0 0;
+ -moz-transform: rotate(90deg);
+ -moz-transform-origin: 0 0;
+ -o-transform: rotate(90deg);
+ -o-transform-origin: 0 0;
+ -ms-transform: rotate(90deg);
+ -ms-transform-origin: 0 0;
+ transform: rotate(90deg);
+ transform-origin: 0 0; }
+ /* line 42, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Tab.scss */
+ .x-tab-rotate-right.x-rtl {
+ -webkit-transform: rotate(270deg);
+ -webkit-transform-origin: 100% 0;
+ -moz-transform: rotate(270deg);
+ -moz-transform-origin: 100% 0;
+ -o-transform: rotate(270deg);
+ -o-transform-origin: 100% 0;
+ -ms-transform: rotate(270deg);
+ -ms-transform-origin: 100% 0;
+ transform: rotate(270deg);
+ transform-origin: 100% 0; }
+
+/* line 55, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Tab.scss */
+.x-tab-tr,
+.x-tab-br,
+.x-tab-mr,
+.x-tab-tl,
+.x-tab-bl,
+.x-tab-ml {
+ width: 1px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+.x-tab-bar {
+ z-index: 0;
+ position: relative; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+.x-tab-bar-body {
+ position: relative; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+.x-tab-bar-strip {
+ position: absolute;
+ line-height: 0;
+ font-size: 0;
+ z-index: 2; }
+ /* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+ .x-tab-bar-top > .x-tab-bar-strip {
+ bottom: 0; }
+ /* line 20, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+ .x-tab-bar-bottom > .x-tab-bar-strip {
+ top: 0; }
+ /* line 24, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+ .x-tab-bar-left > .x-tab-bar-strip {
+ right: 0; }
+ /* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+ .x-tab-bar-left > .x-tab-bar-strip.x-rtl {
+ right: auto;
+ left: 0; }
+ /* line 35, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+ .x-tab-bar-right > .x-tab-bar-strip {
+ left: 0; }
+ /* line 39, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+ .x-tab-bar-right > .x-tab-bar-strip.x-rtl {
+ left: auto;
+ right: 0; }
+
+/* line 47, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+.x-tab-bar-horizontal .x-tab-bar-strip {
+ width: 100%;
+ left: 0; }
+
+/* line 52, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+.x-tab-bar-vertical {
+ display: table-cell; }
+ /* line 58, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+ .x-tab-bar-vertical .x-tab-bar-strip {
+ height: 100%;
+ top: 0; }
+
+/* line 64, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+.x-tab-bar-plain {
+ background: transparent !important; }
+
+/* line 68, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/tab/Bar.scss */
+.x-box-scroller-plain {
+ background-color: transparent !important; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/window/Window.scss */
+.x-window {
+ outline: none;
+ overflow: hidden; }
+ /* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/window/Window.scss */
+ .x-window .x-window-wrap {
+ position: relative; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/window/Window.scss */
+.x-window-body {
+ position: relative;
+ overflow: hidden; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Segmented.scss */
+.x-segmented-button {
+ display: table;
+ table-layout: fixed; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Segmented.scss */
+.x-segmented-button-item {
+ display: table-cell;
+ vertical-align: top; }
+
+/* line 23, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Segmented.scss */
+.x-segmented-button-item-horizontal {
+ display: table-cell;
+ height: 100%; }
+ /* line 30, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Segmented.scss */
+ .x-segmented-button-item-horizontal.x-segmented-button-first {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0; }
+ /* line 43, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Segmented.scss */
+ .x-segmented-button-item-horizontal.x-segmented-button-middle {
+ border-radius: 0;
+ border-left: 0; }
+ /* line 59, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Segmented.scss */
+ .x-segmented-button-item-horizontal.x-segmented-button-last {
+ border-left: 0;
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0; }
+
+/* line 74, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Segmented.scss */
+.x-segmented-button-row {
+ display: table-row; }
+
+/* line 79, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Segmented.scss */
+.x-segmented-button-item-vertical.x-segmented-button-first {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0; }
+/* line 92, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Segmented.scss */
+.x-segmented-button-item-vertical.x-segmented-button-middle {
+ border-radius: 0;
+ border-top: 0; }
+/* line 108, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/button/Segmented.scss */
+.x-segmented-button-item-vertical.x-segmented-button-last {
+ border-top: 0;
+ border-top-right-radius: 0;
+ border-top-left-radius: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Table.scss */
+.x-table-layout {
+ font-size: 1em; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/container/ButtonGroup.scss */
+.x-btn-group {
+ position: relative;
+ overflow: hidden; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/container/ButtonGroup.scss */
+.x-btn-group-body {
+ position: relative; }
+ /* line 8, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/container/ButtonGroup.scss */
+ .x-btn-group-body .x-table-layout-cell {
+ vertical-align: top; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/plugin/Viewport.scss */
+.x-viewport,
+.x-viewport > .x-body {
+ margin: 0;
+ padding: 0;
+ border: 0 none;
+ overflow: hidden;
+ position: static;
+ touch-action: none;
+ -ms-touch-action: none; }
+
+/* line 21, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/plugin/Viewport.scss */
+.x-viewport {
+ height: 100%; }
+
+/* line 27, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/plugin/Viewport.scss */
+.x-viewport > .x-body {
+ min-height: 100%; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Column.scss */
+.x-column {
+ float: left; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Column.scss */
+.x-rtl > .x-column {
+ float: right; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/resizer/SplitterTracker.scss */
+.x-resizable-overlay {
+ position: absolute;
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ display: none;
+ z-index: 200000;
+ background-color: #fff;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
+ opacity: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/TextArea.scss */
+.x-form-textarea {
+ overflow: auto;
+ resize: none; }
+ /* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/TextArea.scss */
+ div.x-form-text-grow .x-form-textarea {
+ min-height: inherit; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/window/MessageBox.scss */
+.x-message-box .x-form-display-field {
+ height: auto; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/FieldSet.scss */
+.x-fieldset {
+ display: block;
+ /* preserve margins in IE */
+ position: relative;
+ overflow: hidden; }
+
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/FieldSet.scss */
+.x-fieldset-header {
+ overflow: hidden; }
+ /* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/FieldSet.scss */
+ .x-fieldset-header .x-form-item,
+ .x-fieldset-header .x-tool {
+ float: left; }
+ /* line 15, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/FieldSet.scss */
+ .x-fieldset-header .x-fieldset-header-text {
+ float: left; }
+ /* line 19, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/FieldSet.scss */
+ .x-fieldset-header .x-form-cb-wrap {
+ font-size: 0;
+ line-height: 0;
+ height: auto; }
+ /* line 25, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/FieldSet.scss */
+ .x-fieldset-header .x-form-cb {
+ margin: 0;
+ position: static; }
+
+/* line 31, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/FieldSet.scss */
+.x-fieldset-body {
+ overflow: hidden; }
+
+/* line 35, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/FieldSet.scss */
+.x-fieldset-collapsed {
+ padding-bottom: 0 !important; }
+ /* line 38, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/FieldSet.scss */
+ .x-fieldset-collapsed > .x-fieldset-body {
+ display: none; }
+
+/* line 43, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/FieldSet.scss */
+.x-fieldset-header-text-collapsible {
+ cursor: pointer; }
+
+/* line 50, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/FieldSet.scss */
+.x-rtl.x-fieldset-header .x-form-item,
+.x-rtl.x-fieldset-header .x-tool {
+ float: right; }
+/* line 54, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/FieldSet.scss */
+.x-rtl.x-fieldset-header .x-fieldset-header-text {
+ float: right; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-datepicker {
+ position: relative; }
+ /* line 4, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+ .x-datepicker .x-monthpicker {
+ left: 0;
+ top: 0;
+ display: block; }
+ /* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+ .x-datepicker .x-monthpicker-months,
+ .x-datepicker .x-monthpicker-years {
+ height: 100%; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-datepicker-inner {
+ table-layout: fixed;
+ width: 100%;
+ border-collapse: separate; }
+
+/* line 22, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-datepicker-cell {
+ padding: 0; }
+
+/* line 26, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-datepicker-header {
+ position: relative; }
+
+/* line 30, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-datepicker-arrow {
+ position: absolute;
+ outline: none;
+ font-size: 0; }
+
+/* line 36, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-datepicker-column-header {
+ padding: 0; }
+
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-datepicker-date {
+ display: block;
+ text-decoration: none; }
+
+/* line 45, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-monthpicker {
+ display: table; }
+
+/* line 48, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-monthpicker-body {
+ height: 100%;
+ position: relative; }
+
+/* line 54, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-monthpicker-months,
+.x-monthpicker-years {
+ float: left; }
+
+/* line 58, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-monthpicker-item {
+ float: left; }
+
+/* line 62, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-monthpicker-item-inner {
+ display: block;
+ text-decoration: none; }
+
+/* line 67, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-monthpicker-yearnav-button-ct {
+ float: left;
+ text-align: center; }
+
+/* line 72, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-monthpicker-yearnav-button {
+ display: inline-block;
+ outline: none;
+ font-size: 0; }
+
+/* line 78, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-monthpicker-buttons {
+ width: 100%; }
+
+/* line 82, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/picker/Date.scss */
+.x-datepicker .x-monthpicker-buttons {
+ position: absolute;
+ bottom: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/File.scss */
+.x-form-file-btn {
+ overflow: hidden;
+ position: relative; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/File.scss */
+.x-form-file-input {
+ border: 0;
+ position: absolute;
+ cursor: pointer;
+ top: -2px;
+ right: -2px;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
+ opacity: 0;
+ /* Yes, there's actually a good reason for this...
+ * If the configured buttonText is set to something longer than the default,
+ * then it will quickly exceed the width of the hidden file input's "Browse..."
+ * button, so part of the custom button's clickable area will be covered by
+ * the hidden file input's text box instead. This results in a text-selection
+ * mouse cursor over that part of the button, at least in Firefox, which is
+ * confusing to a user. Giving the hidden file input a huge font-size makes
+ * the native button part very large so it will cover the whole clickable area.
+ */
+ font-size: 1000px; }
+
+/* line 30, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/File.scss */
+.x-rtl.x-form-file-input {
+ right: auto;
+ left: -2px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Hidden.scss */
+.x-form-item-hidden {
+ margin: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-tagfield-body {
+ vertical-align: top; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-tagfield {
+ height: auto!important;
+ /* The wrap has to accommodate the list, so override the .x-form-text height rule */
+ padding: 0!important;
+ /* Override .x-form-text padding rule */
+ cursor: text;
+ min-height: 24px;
+ overflow-y: auto; }
+
+/* line 13, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-tagfield .x-tagfield-list {
+ padding: 1px 3px;
+ margin: 0; }
+
+/* line 18, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-tagfield-list.x-tagfield-singleselect {
+ white-space: nowrap;
+ overflow: hidden; }
+
+/* line 23, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-tagfield-input, .x-tagfield-item {
+ vertical-align: top;
+ display: inline-block;
+ position: relative; }
+
+/* line 29, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-tagfield-input input, .x-tagfield-input div {
+ border: 0 none;
+ margin: 0;
+ background: none;
+ width: 100%; }
+
+/* line 36, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-tagfield-input-field {
+ line-height: 20px; }
+
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-tagfield-emptyinput {
+ display: none; }
+
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-tagfield-stacked .x-tagfield-item {
+ display: block; }
+
+/* line 48, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-tagfield-item {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ background-color: #4b6375;
+ border: 1px solid #374956;
+ padding: 0px 1px 0px 5px !important;
+ margin: 1px 4px 1px 0;
+ cursor: default; }
+
+/* line 57, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-field:not(.x-item-disabled) .x-tagfield-item:hover {
+ background: #3e5160;
+ border: 1px solid #030404; }
+
+/* line 62, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-field:not(.x-item-disabled) .x-tagfield-item.x-tagfield-item-selected {
+ border: 1px solid #162938 !important;
+ background: #689ac1 !important;
+ color: black !important; }
+
+/* line 68, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-tagfield-item-text {
+ line-height: 18px;
+ padding-right: 20px; }
+
+/* line 73, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-tagfield-item-close {
+ cursor: pointer;
+ position: absolute;
+ background-image: url(images/form/tag-field-item-close.png);
+ width: 12px;
+ height: 12px;
+ top: 2px;
+ right: 2px; }
+
+/* line 83, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-field:not(.x-item-disabled) .x-tagfield-item.x-tagfield-item-selected .x-tagfield-item-close {
+ background-position: 0px 12px; }
+
+/* line 87, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-field:not(.x-item-disabled) .x-tagfield-item-close:hover {
+ background-position: 24px 0px; }
+
+/* line 91, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-field:not(.x-item-disabled) .x-tagfield-item.x-tagfield-item-selected .x-tagfield-item-close:hover {
+ background-position: 24px 12px; }
+
+/* line 95, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-field:not(.x-item-disabled) .x-tagfield-item-close:active {
+ background-position: 12px 0px; }
+
+/* line 99, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-field:not(.x-item-disabled) .x-tagfield-item.x-tagfield-item-selected .x-tagfield-item-close:active {
+ background-position: 12px 12px; }
+
+/* line 105, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-rtl.x-tagfield-item-text {
+ padding-right: auto;
+ padding-left: 20px; }
+
+/* line 109, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/form/field/Tag.scss */
+.x-rtl.x-tagfield-item-close {
+ right: auto;
+ left: 2px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Action.scss */
+.x-grid-cell-inner-action-col {
+ line-height: 0;
+ font-size: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/column/Check.scss */
+.x-grid-cell-inner-checkcolumn {
+ line-height: 0;
+ font-size: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/feature/Grouping.scss */
+.x-group-hd-container {
+ overflow: hidden; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/feature/Grouping.scss */
+.x-grid-group-hd {
+ white-space: nowrap;
+ outline: none; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/feature/Grouping.scss */
+.x-grid-row-body-hidden, .x-grid-group-collapsed {
+ display: none; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/feature/RowBody.scss */
+.x-grid-row-body-hidden {
+ display: none; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/menu/Menu.scss */
+.x-menu {
+ outline: none; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/menu/Menu.scss */
+.x-menu-item {
+ white-space: nowrap;
+ overflow: hidden;
+ border-color: transparent;
+ border-style: solid; }
+
+/* line 13, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/menu/Menu.scss */
+.x-menu-item-cmp {
+ margin: 2px; }
+ /* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/menu/Menu.scss */
+ .x-menu-item-cmp .x-field-label-cell {
+ vertical-align: middle; }
+
+/* line 24, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/menu/Menu.scss */
+.x-menu-icon-separator {
+ position: absolute;
+ top: 0px;
+ z-index: 0;
+ height: 100%;
+ overflow: hidden; }
+ /* line 30, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/menu/Menu.scss */
+ .x-menu-plain .x-menu-icon-separator {
+ display: none; }
+
+/* line 35, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/menu/Menu.scss */
+.x-menu-item-link {
+ -webkit-tap-highlight-color: transparent;
+ -webkit-touch-callout: none;
+ text-decoration: none;
+ outline: 0;
+ display: block; }
+
+/* line 50, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/menu/Menu.scss */
+.x-menu-item-link-href {
+ -webkit-touch-callout: default; }
+
+/* line 54, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/menu/Menu.scss */
+.x-menu-item-text {
+ display: inline-block; }
+
+/* line 60, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/menu/Menu.scss */
+.x-menu-item-icon,
+.x-menu-item-icon-right,
+.x-menu-item-arrow {
+ font-size: 0;
+ position: absolute;
+ text-align: center;
+ background-repeat: no-repeat; }
+
+/*
+ * Rules for fields which are rendered to fit inside grid cells.
+ * This includes cell and row editor fields and fields in widget columns.
+ */
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/plugin/Editing.scss */
+.x-grid-editor .x-form-cb-wrap {
+ text-align: center; }
+
+/* line 12, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/plugin/Editing.scss */
+.x-grid-editor .x-form-cb {
+ position: static; }
+
+/* line 19, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/plugin/Editing.scss */
+.x-grid-editor .x-form-display-field {
+ margin: 0;
+ white-space: nowrap;
+ overflow: hidden; }
+/* line 27, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/plugin/Editing.scss */
+.x-grid-editor div.x-form-action-col-field {
+ line-height: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/plugin/RowEditing.scss */
+.x-grid-row-editor-wrap {
+ position: absolute;
+ overflow: visible;
+ z-index: 2; }
+
+/* line 8, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/plugin/RowEditing.scss */
+.x-grid-row-editor {
+ position: absolute; }
+
+/* line 12, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/plugin/RowEditing.scss */
+.x-grid-row-editor-buttons {
+ position: absolute;
+ white-space: nowrap; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/plugin/RowExpander.scss */
+.x-grid-row-expander {
+ font-size: 0;
+ line-height: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/selection/SpreadsheetModel.scss */
+.x-ssm-row-numberer-hd {
+ cursor: se-resize!important; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/selection/SpreadsheetModel.scss */
+.x-ssm-row-numberer-cell {
+ cursor: e-resize; }
+
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/grid/selection/SpreadsheetModel.scss */
+.x-ssm-column-select .x-column-header {
+ cursor: s-resize; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Absolute.scss */
+.x-abs-layout-ct {
+ position: relative; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Absolute.scss */
+.x-abs-layout-item {
+ position: absolute !important; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Center.scss */
+.x-center-layout-item {
+ position: absolute; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Center.scss */
+.x-center-target {
+ position: relative; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Form.scss */
+.x-form-layout-wrap {
+ display: table;
+ width: 100%;
+ border-collapse: separate; }
+
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Form.scss */
+.x-form-layout-colgroup {
+ display: table-column-group; }
+
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Form.scss */
+.x-form-layout-column {
+ display: table-column; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Form.scss */
+.x-form-layout-auto-label > * > .x-form-item-label {
+ width: auto !important; }
+ /* line 20, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Form.scss */
+ .x-form-layout-auto-label > * > .x-form-item-label > .x-form-item-label-inner {
+ width: auto !important;
+ white-space: nowrap; }
+/* line 26, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Form.scss */
+.x-form-layout-auto-label > * > .x-form-layout-label-column {
+ width: 1px; }
+
+/* line 33, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Form.scss */
+.x-form-layout-sized-label > * > .x-form-item-label {
+ width: auto !important; }
+
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Form.scss */
+.x-form-form-item {
+ display: table-row; }
+ /* line 43, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Form.scss */
+ .x-form-form-item > .x-form-item-label {
+ padding-left: 0 !important;
+ padding-right: 0 !important;
+ padding-bottom: 0 !important; }
+ /* line 51, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Form.scss */
+ .x-form-form-item > .x-form-item-body {
+ max-width: none; }
+
+/* line 60, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/layout/container/Form.scss */
+.x-form-form-item.x-form-item-no-label:before {
+ content: ' ';
+ display: table-cell;
+ pointer-events: none; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/resizer/Resizer.scss */
+.x-resizable-wrapped {
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -ms-box-sizing: border-box;
+ -webkit-box-sizing: border-box; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/selection/CheckboxModel.scss */
+.x-column-header-checkbox .x-column-header-text {
+ display: block;
+ background-repeat: no-repeat;
+ font-size: 0; }
+
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/selection/CheckboxModel.scss */
+.x-grid-cell-row-checker {
+ vertical-align: middle;
+ background-repeat: no-repeat;
+ font-size: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/slider/Multi.scss */
+.x-slider {
+ outline: none;
+ position: relative; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/slider/Multi.scss */
+.x-slider-inner {
+ position: relative;
+ left: 0;
+ top: 0;
+ overflow: visible; }
+ /* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/slider/Multi.scss */
+ .x-slider-vert .x-slider-inner {
+ background: repeat-y 0 0; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/slider/Multi.scss */
+.x-slider-thumb {
+ position: absolute;
+ background: no-repeat 0 0; }
+ /* line 19, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/slider/Multi.scss */
+ .x-slider-horz .x-slider-thumb {
+ left: 0; }
+ /* line 22, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/slider/Multi.scss */
+ .x-slider-vert .x-slider-thumb {
+ bottom: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/src/toolbar/Breadcrumb.scss */
+.x-breadcrumb-btn .x-box-target:first-child {
+ margin: 0; }
+
+/* including package ext-theme-neutral */
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/scroll/Indicator.scss */
+.x-scroll-indicator {
+ position: absolute;
+ background-color: black;
+ opacity: 0.5;
+ border-radius: 3px;
+ margin: 2px; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/scroll/Indicator.scss */
+.x-scroll-indicator-x {
+ bottom: 0;
+ left: 0;
+ height: 6px; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/scroll/Indicator.scss */
+.x-scroll-indicator-y {
+ right: 0;
+ top: 0;
+ width: 6px; }
+
+/* line 23, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/scroll/Indicator.scss */
+.x-rtl.x-scroll-indicator-x {
+ left: auto;
+ right: 0; }
+
+/* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/scroll/Indicator.scss */
+.x-rtl.x-scroll-indicator-y {
+ right: auto;
+ left: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/Component.scss */
+.x-body {
+ color: black;
+ font-size: 13px;
+ line-height: 17px;
+ font-weight: 300;
+ font-family: "Roboto", sans-serif;
+ background: white; }
+
+/* line 19, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/Component.scss */
+.x-animating-size,
+.x-collapsed {
+ overflow: hidden!important; }
+
+/**
+ * Creates a visual theme for "labelable" form items. Provides visual styling for the
+ * Label and error message that can be shared between many types of form fields.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {color} [$ui-font-color=$form-label-font-color]
+ * The text color the label
+ *
+ * @param {string} [$ui-font-weight=$form-label-font-weight]
+ * The font-weight of the label
+ *
+ * @param {number} [$ui-font-size=$form-label-font-size]
+ * The font-size of the label
+ *
+ * @param {string} [$ui-font-family=$form-label-font-family]
+ * The font-family the label
+ *
+ * @param {number} [$ui-height=$form-field-height]
+ * The height of the label. This should be the same height as the height of fields that
+ * this label ui will be used with. This does not actually set the height of the label
+ * but is used to ensure that the label is centered within the given height.
+ *
+ * @param {number} [$ui-line-height=$form-label-line-height]
+ * The line-height of the label
+ *
+ * @param {number} [$ui-horizontal-spacing=$form-label-horizontal-spacing]
+ * Horizontal space between the label and the field body when the label is left-aligned.
+ *
+ * @param {number} [$ui-vertical-spacing=$form-label-vertical-spacing]
+ * Vertical space between the label and the field body when the label is top-aligned.
+ *
+ * @param {number} [$ui-error-icon-background-image=$form-error-icon-background-image]
+ * The background-image of the error icon
+ *
+ * @param {number} [$ui-error-icon-width=$form-error-icon-width]
+ * The width of the error icon
+ *
+ * @param {number} [$ui-error-icon-height=$form-error-icon-height]
+ * The height of the error icon
+ *
+ * @param {number/list} [$ui-error-icon-side-margin=$form-error-icon-side-margin]
+ * Margin for error icons when aligned to the side of the field
+ *
+ * @param {number} [$ui-error-under-icon-spacing=$form-error-under-icon-spacing]
+ * The space between the icon and the message for errors that display under the field
+ *
+ * @param {number/list} [$ui-error-under-padding=$form-error-under-padding]
+ * The padding on errors that display under the form field
+ *
+ * @param {color} [$ui-error-msg-color=$form-error-msg-color]
+ * The text color of form error messages
+ *
+ * @param {string} [$ui-error-msg-font-weight=$form-error-msg-font-weight]
+ * The font-weight of form error messages
+ *
+ * @param {number} [$ui-error-msg-font-size=$form-error-msg-font-size]
+ * The font-size of form error messages
+ *
+ * @param {string} [$ui-error-msg-font-family=$form-error-msg-font-family]
+ * The font-family of form error messages
+ *
+ * @param {number} [$ui-error-msg-line-height=$form-error-msg-line-height]
+ * The line-height of form error messages
+ *
+ * @param {number} [$ui-disabled-opacity=$form-field-disabled-opacity]
+ * Opacity of disabled form fields
+ *
+ * @member Ext.form.Labelable
+ */
+/* line 97, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/Labelable.scss */
+.x-form-item-label-default {
+ color: #666666;
+ font: 300 13px/17px "Roboto", sans-serif;
+ min-height: 24px;
+ padding-top: 4px;
+ padding-right: 5px; }
+ /* line 113, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/Labelable.scss */
+ .x-form-item-label-default.x-form-item-label-top {
+ height: 1px; }
+ /* line 115, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/Labelable.scss */
+ .x-form-item-label-default.x-form-item-label-top > .x-form-item-label-inner {
+ padding-top: 4px;
+ padding-bottom: 5px; }
+ /* line 121, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/Labelable.scss */
+ .x-form-item-label-default.x-form-item-label-top-side-error:after {
+ width: 26px; }
+
+/* line 126, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/Labelable.scss */
+.x-form-item-body-default {
+ min-height: 24px; }
+
+/* line 130, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/Labelable.scss */
+.x-form-invalid-icon-default {
+ width: 16px;
+ height: 16px;
+ margin: 0 5px 0 5px;
+ background: url(images/form/exclamation.png) no-repeat; }
+
+/* line 137, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/Labelable.scss */
+.x-form-invalid-under-default {
+ padding: 2px 2px 2px 20px;
+ color: #cf4c35;
+ font: 300 13px/16px "Roboto", sans-serif;
+ background: no-repeat 0 2px;
+ background-image: url(images/form/exclamation.png); }
+
+/* line 145, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/Labelable.scss */
+.x-form-error-wrap-default.x-form-error-wrap-side {
+ width: 26px; }
+
+/* line 150, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/Labelable.scss */
+.x-form-item-default.x-item-disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
+ opacity: 0.3; }
+
+/* line 191, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/Labelable.scss */
+.x-autocontainer-form-item,
+.x-anchor-form-item,
+.x-vbox-form-item,
+.x-table-form-item {
+ margin-bottom: 5px; }
+
+/**
+ * Creates a visual theme for text fields. Note this mixin only provides styling
+ * for the form field body, The label and error are styled by {@link #extjs-label-ui}.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number} [$ui-height=$form-text-field-height]
+ * The height of the text field
+ *
+ * @param {number} [$ui-font-size=$form-text-field-font-size]
+ * The font-size of the text field
+ *
+ * @param {string} [$ui-font-family=$form-text-field-font-family]
+ * The font-family of the text field
+ *
+ * @param {string} [$ui-font-weight=$form-text-field-font-weight]
+ * The font-weight of the text field
+ *
+ * @param {color} [$ui-color=$form-text-field-color]
+ * The color of the text field's input element
+ *
+ * @param {color} [$ui-background-color=$form-text-field-background-color]
+ * The background color of the text field's input element
+ *
+ * @param {number/list} [$ui-border-width=$form-text-field-border-width]
+ * The border width of the text field
+ *
+ * @param {string/list} [$ui-border-style=$form-text-field-border-style]
+ * The border style of the text field
+ *
+ * @param {color/list} [$ui-border-color=$form-text-field-border-color]
+ * The border color of text fields
+ *
+ * @param {color/list} [$ui-focus-border-color=$form-text-field-focus-border-color]
+ * The border color of the text field when focused
+ *
+ * @param {color} [$ui-invalid-border-color=$form-text-field-invalid-border-color]
+ * The border color of the text field when the field value is invalid.
+ *
+ * @param {number/list} [$ui-border-radius=$form-text-field-border-radius]
+ * The border radius of the text field
+ *
+ * @param {string} [$ui-background-image=$form-text-field-background-image]
+ * The background image of the text field's input element
+ *
+ * @param {number/list} [$ui-padding=$form-text-field-padding]
+ * The padding of the text field's input element
+ *
+ * @param {color} [$ui-empty-color=$form-text-field-empty-color]
+ * Text color for of the text field when empty
+ *
+ * @param {number} [$ui-body-width=$form-text-field-body-width]
+ * The default width of the text field's body element (the element that contains the input
+ * element and triggers) when the field is not sized explicitly using the {@link #width}
+ * config, or sized by it's containing layout.
+ *
+ * @param {color} [$ui-invalid-background-color=$form-field-invalid-background-color]
+ * Background color of the input element when the field value is invalid.
+ *
+ * @param {string} [$ui-invalid-background-image=$form-field-invalid-background-image]
+ * Background image of the input element when the field value is invalid.
+ *
+ * @param {string} [$ui-invalid-background-repeat=$form-field-invalid-background-repeat]
+ * Background repeat of the input element when the field value is invalid.
+ *
+ * @param {string/list} [$ui-invalid-background-position=$form-field-invalid-background-position]
+ * Background position of the input element when the field value is invalid.
+ *
+ * @param {number} [$ui-trigger-width=$form-trigger-width]
+ * The width of the trigger element
+ *
+ * @param {number/list} [$ui-trigger-border-width=$form-trigger-border-width]
+ * The width of the trigger's border
+ *
+ * @param {color/list} [$ui-trigger-border-color=$form-trigger-border-color]
+ * The color of the trigger's border
+ *
+ * @param {string/list} [$ui-trigger-border-style=$form-trigger-border-style]
+ * The style of the trigger's border
+ *
+ * @param {color} [$ui-trigger-border-color-over=$form-trigger-border-color-over]
+ * The color of the trigger's border when hovered
+ *
+ * @param {color} [$ui-trigger-border-color-focus=$form-trigger-border-color-focus]
+ * The color of the trigger's border when the field is focused
+ *
+ * @param {color} [$ui-trigger-border-color-pressed=$form-trigger-border-color-pressed]
+ * The color of the trigger's border when the field is focused and the trigger is hovered
+ *
+ * @param {string} [$ui-trigger-background-image=$form-trigger-background-image]
+ * The default background image for the trigger
+ *
+ * @param {color} [$ui-trigger-background-color=$form-trigger-background-color]
+ * The background color of the trigger element
+ *
+ * @param {number} [$ui-textarea-line-height=$form-textarea-line-height]
+ * The line-height of the textarea element when this mixin is used to style a
+ * {@link Ext.form.field.TextArea TextArea}
+ *
+ * @param {number} [$ui-textarea-body-height=$form-textarea-body-height]
+ * The default width of the TextArea's body element (the element that contains the textarea
+ * html element when the field is not sized explicitly using the {@link #width}config, or
+ * sized by it's containing layout.
+ *
+ * @param {color} [$ui-file-field-color=$form-file-field-color] The text color of the
+ * input element when this mixin is used to style a {@link Ext.form.field.File File Field}
+ *
+ * @param {boolean} [$ui-classic-border=$form-text-field-classic-border]
+ * `true` to use classic-theme styled border.
+ *
+ * @member Ext.form.field.Text
+ */
+/* line 193, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+.x-form-text-field-body-default {
+ min-width: 170px;
+ max-width: 170px; }
+
+/* line 213, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+.x-form-trigger-wrap-default {
+ border-width: 1px;
+ border-style: solid;
+ border-color: #cecece; }
+ /* line 221, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+ .x-form-trigger-wrap-default.x-form-trigger-wrap-focus {
+ border-color: #3892d3; }
+ /* line 225, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+ .x-form-trigger-wrap-default.x-form-trigger-wrap-invalid {
+ border-color: #cf4c35; }
+
+/* line 250, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+.x-form-text-default {
+ color: black;
+ padding: 4px 6px 3px 6px;
+ background-color: white;
+ font: 300 13px/15px "Roboto", sans-serif;
+ min-height: 22px; }
+ /* line 270, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+ .x-form-text-default.x-form-textarea {
+ line-height: 15px;
+ min-height: 60px; }
+ /* line 282, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+ .x-form-text-default.x-form-text-file {
+ color: gray; }
+
+/* line 287, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+.x-form-empty-field-default {
+ color: gray; }
+
+/* line 291, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+.x-form-invalid-field-default {
+ background-color: white; }
+
+/* line 302, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+.x-form-trigger-default {
+ background: white url(images/form/trigger.png) no-repeat;
+ background-position: 0 center;
+ width: 22px; }
+ /* line 314, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+ .x-form-trigger-default.x-rtl {
+ background-image: url(images/form/trigger-rtl.png); }
+ /* line 319, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+ .x-form-trigger-default.x-form-trigger-over {
+ background-position: -22px center; }
+ /* line 325, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+ .x-form-trigger-default.x-form-trigger-over.x-form-trigger-focus {
+ background-position: -88px center; }
+ /* line 330, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+ .x-form-trigger-default.x-form-trigger-focus {
+ background-position: -66px center; }
+
+/* line 339, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+.x-form-trigger.x-form-trigger-default.x-form-trigger-click {
+ background-position: -44px center; }
+
+/* line 348, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+.x-textfield-default-cell > .x-grid-cell-inner {
+ padding-top: 0px;
+ padding-bottom: 0px; }
+
+/* line 406, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+.x-form-clear-trigger {
+ background-image: url(images/form/clear-trigger.png); }
+ /* line 409, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+ .x-form-clear-trigger.x-rtl {
+ background-image: url(images/form/clear-trigger-rtl.png); }
+
+/* line 415, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+.x-form-search-trigger {
+ background-image: url(images/form/search-trigger.png); }
+ /* line 418, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Text.scss */
+ .x-form-search-trigger.x-rtl {
+ background-image: url(images/form/search-trigger-rtl.png); }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/LoadMask.scss */
+.x-mask {
+ background-image: none;
+ background-color: rgba(255, 255, 255, 0.7);
+ cursor: default;
+ border-style: solid;
+ border-width: 1px;
+ border-color: transparent; }
+
+/* line 15, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/LoadMask.scss */
+.x-mask.x-focus {
+ border-style: solid;
+ border-width: 1px;
+ border-color: #162938; }
+
+/* line 22, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/LoadMask.scss */
+.x-mask-msg {
+ padding: 8px;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ background: #e5e5e5; }
+
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/LoadMask.scss */
+.x-mask-msg-inner {
+ padding: 0;
+ background-color: transparent;
+ color: #666666;
+ font: 300 13px "Roboto", sans-serif; }
+
+/* line 52, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/LoadMask.scss */
+.x-mask-msg-text {
+ padding: 21px 0 0;
+ background-image: url(images/loadmask/loading.gif);
+ background-repeat: no-repeat;
+ background-position: center 0; }
+
+/* line 63, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/LoadMask.scss */
+.x-rtl.x-mask-msg-text {
+ padding: 21px 0 0 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-collapse-el {
+ cursor: pointer; }
+
+/* line 9, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-layout-split-left,
+.x-layout-split-right {
+ top: 50%;
+ margin-top: -24px;
+ width: 8px;
+ height: 48px; }
+
+/* line 17, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-layout-split-top,
+.x-layout-split-bottom {
+ left: 50%;
+ width: 48px;
+ height: 8px;
+ margin-left: -24px; }
+
+/* line 24, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-layout-split-left {
+ background-image: url(images/util/splitter/mini-left.png); }
+
+/* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-layout-split-right {
+ background-image: url(images/util/splitter/mini-right.png); }
+
+/* line 34, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-rtl.x-layout-split-left {
+ background-image: url(images/util/splitter/mini-right.png); }
+/* line 38, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-rtl.x-layout-split-right {
+ background-image: url(images/util/splitter/mini-left.png); }
+
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-layout-split-top {
+ background-image: url(images/util/splitter/mini-top.png); }
+
+/* line 48, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-layout-split-bottom {
+ background-image: url(images/util/splitter/mini-bottom.png); }
+
+/* line 53, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-splitter-collapsed .x-layout-split-left {
+ background-image: url(images/util/splitter/mini-right.png); }
+/* line 57, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-splitter-collapsed .x-layout-split-right {
+ background-image: url(images/util/splitter/mini-left.png); }
+/* line 63, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-splitter-collapsed .x-rtl.x-layout-split-left {
+ background-image: url(images/util/splitter/mini-left.png); }
+/* line 67, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-splitter-collapsed .x-rtl.x-layout-split-right {
+ background-image: url(images/util/splitter/mini-right.png); }
+/* line 73, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-splitter-collapsed .x-layout-split-top {
+ background-image: url(images/util/splitter/mini-bottom.png); }
+/* line 77, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-splitter-collapsed .x-layout-split-bottom {
+ background-image: url(images/util/splitter/mini-top.png); }
+
+/* line 82, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-splitter-active {
+ background-color: #b4b4b4;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8; }
+ /* line 86, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+ .x-splitter-active .x-collapse-el {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
+ opacity: 0.3; }
+
+/* line 91, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Splitter.scss */
+.x-splitter-focus {
+ outline: 1px solid #162938;
+ outline-offset: -1px; }
+
+/**
+ * Creates a visual theme for a {@link Ext.layout.container.boxOverflow.Scroller Box Scroller}
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {string} $type
+ * The type of component that this box scroller will be used with. For example 'toolbar'
+ * or 'tab-bar'
+ *
+ * @param {number} [$horizontal-width=16px]
+ * The width of horizontal scroller buttons
+ *
+ * @param {Number} [$horizontal-height=16px]
+ * The height of horizontal scroller buttons
+ *
+ * @param {number} [$vertical-width=16px]
+ * The width of vertical scroller buttons
+ *
+ * @param {Number} [$vertical-height=16px]
+ * The height of vertical scroller buttons
+ *
+ * @param {number/list} [$top-margin=0]
+ * The margin of the "top" scroller button
+ *
+ * @param {number/list} [$right-margin=0]
+ * The margin of the "right" scroller button
+ *
+ * @param {number/list} [$bottom-margin=0]
+ * The margin of the "bottom" scroller button
+ *
+ * @param {number/list} [$left-margin=0]
+ * The margin of the "left" scroller button
+ *
+ * @param {number/list} $top-background-image
+ * The background-image of the "top" scroller button
+ *
+ * @param {number/list} $right-background-image
+ * The background-image of the "right" scroller button
+ *
+ * @param {number/list} $bottom-background-image
+ * The background-image of the "bottom" scroller button
+ *
+ * @param {number/list} $left-background-image
+ * The background-image of the "left" scroller button
+ *
+ * @param {color} [$border-color=$base-color]
+ * The border-color of the scroller buttons
+ *
+ * @param {number} [$horizontal-border-width=0]
+ * The border-width of the scroller buttons
+ *
+ * @param {number} [$vertical-border-width=0]
+ * The border-width of the scroller buttons
+ *
+ * @param {number/list} [$container-padding=0]
+ * The padding of the container that these scroller buttons will be used in. Used for
+ * setting margin offsets of the inner layout element to reserve space for the scrollers.
+ *
+ * @param {string} [$cursor=pointer]
+ * The type of cursor to display when the mouse is over a scroller button
+ *
+ * @param {string} [$cursor-disabled=default]
+ * The type of cursor to display when the mouse is over a disabled scroller button
+ *
+ * @param {string} [$align=middle]
+ * Vertical alignment of the scroller buttons, or horizontal align of vertically oriented
+ * scroller buttons. Can be one of the following values:
+ *
+ * - `begin`
+ * - `middle`
+ * - `end`
+ * - `stretch`
+ *
+ * @param {number} [$opacity=0.6]
+ * The opacity of the scroller buttons. Only applicable when `$classic` is `false`.
+ *
+ * @param {number} [$opacity-over=0.8]
+ * The opacity of hovered scroller buttons. Only applicable when `$classic` is `false`.
+ *
+ * @param {number} [$opacity-pressed=1]
+ * The opacity of pressed scroller buttons. Only applicable when `$classic` is `false`.
+ *
+ * @param {number} [$opacity-disabled=0.25]
+ * The opacity of disabled scroller buttons. Only applicable when `$classic` is `false`.
+ *
+ * @param {boolean} [$classic=false]
+ * `true` to use classic-style scroller buttons. When `true` scroller buttons are given
+ * their hover state by changing their background-position, When `false` scroller buttons
+ * are given their hover state by applying opacity.
+ *
+ * @member Ext.layout.container.Box
+ * @private
+ */
+/**
+ * Creates a visual theme for a Toolbar.
+
+ * @param {String} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {color} [$background-color=$toolbar-background-color]
+ * The background color of the toolbar
+ *
+ * @param {string/list} [$background-gradient=$toolbar-background-gradient]
+ * The background gradient of the toolbar
+ *
+ * @param {string/list} [$vertical-spacing=$toolbar-vertical-spacing]
+ * The vertical spacing of the toolbar's items
+ *
+ * @param {string/list} [$horizontal-spacing=$toolbar-horizontal-spacing]
+ * The horizontal spacing of the toolbar's items
+ *
+ * @param {color} [$border-color=$toolbar-border-color]
+ * The border color of the toolbar
+ *
+ * @param {number} [$border-width=$toolbar-border-width]
+ * The border-width of the toolbar
+ *
+ * @param {number} [$border-style=$toolbar-border-style]
+ * The border-style of the toolbar
+ *
+ * @param {number} [$spacer-width=$toolbar-spacer-width]
+ * The width of the toolbar's {@link Ext.toolbar.Spacer Spacers}
+ *
+ * @param {color} [$separator-color=$toolbar-separator-color]
+ * The main border-color of the toolbar's {@link Ext.toolbar.Separator Separators}
+ *
+ * @param {color} [$separator-highlight-color=$toolbar-separator-highlight-color]
+ * The highlight border-color of the toolbar's {@link Ext.toolbar.Separator Separators}
+ *
+ * @param {number/list} [$separator-horizontal-margin=$toolbar-separator-horizontal-margin]
+ * The margin of {@link Ext.toolbar.Separator Separators} when the toolbar is horizontally aligned
+ *
+ * @param {number} [$separator-horizontal-height=$toolbar-separator-horizontal-height]
+ * The height of {@link Ext.toolbar.Separator Separators} when the toolbar is vertically aligned
+ *
+ * @param {string} [$separator-horizontal-border-style=$toolbar-separator-horizontal-border-style]
+ * The border-style of {@link Ext.toolbar.Separator Separators} when the toolbar is horizontally aligned
+ *
+ * @param {number} [$separator-horizontal-border-width=$toolbar-separator-horizontal-border-width]
+ * The border-width of {@link Ext.toolbar.Separator Separators} when the toolbar is horizontally aligned
+ *
+ * @param {number/list} [$separator-vertical-margin=$toolbar-separator-vertical-margin]
+ * The margin of {@link Ext.toolbar.Separator Separators} when the toolbar is vertically aligned
+ *
+ * @param {string} [$separator-vertical-border-style=$toolbar-separator-vertical-border-style]
+ * The border-style of {@link Ext.toolbar.Separator Separators} when the toolbar is vertically aligned
+ *
+ * @param {number} [$separator-vertical-border-width=$toolbar-separator-vertical-border-width]
+ * The border-width of {@link Ext.toolbar.Separator Separators} when the toolbar is vertically aligned
+ *
+ * @param {string} [$text-font-family=$toolbar-text-font-family]
+ * The default font-family of the toolbar's text items
+ *
+ * @param {number} [$text-font-size=$toolbar-text-font-size]
+ * The default font-size of the toolbar's text items
+ *
+ * @param {number} [$text-font-weight=$toolbar-text-font-weight]
+ * The default font-weight of the toolbar's text items
+ *
+ * @param {color} [$text-color=$toolbar-text-color]
+ * The color of the toolbar's text items
+ *
+ * @param {number} [$text-line-height=$toolbar-text-line-height]
+ * The line-height of the toolbar's text items
+ *
+ * @param {number/list} [$text-padding=$toolbar-text-padding]
+ * The padding of the toolbar's text items
+ *
+ * @param {number} [$scroller-width=$toolbar-scroller-width]
+ * The width of the scroller buttons
+ *
+ * @param {number} [$scroller-height=$toolbar-scroller-height]
+ * The height of the scroller buttons
+ *
+ * @param {number} [$scroller-vertical-width=$toolbar-scroller-vertical-width]
+ * The width of scrollers on vertically aligned toolbars
+ *
+ * @param {number} [$scroller-vertical-height=$toolbar-scroller-vertical-height]
+ * The height of scrollers on vertically aligned toolbars
+ *
+ * @param {color} [$scroller-border-color=$toolbar-scroller-border-color]
+ * The border-color of the scroller buttons
+ *
+ * @param {color} [$scroller-border-width=$toolbar-scroller-border-width]
+ * The border-width of the scroller buttons
+ *
+ * @param {color} [$scroller-vertical-border-color=$toolbar-scroller-vertical-border-color]
+ * The border-color of scroller buttons on vertically aligned toolbars
+ *
+ * @param {color} [$scroller-vertical-border-width=$toolbar-scroller-vertical-border-width]
+ * The border-width of scroller buttons on vertically aligned toolbars
+ *
+ * @param {number/list} [$scroller-top-margin=$toolbar-scroller-top-margin]
+ * The margin of "top" scroller buttons
+ *
+ * @param {number/list} [$scroller-right-margin=$toolbar-scroller-right-margin]
+ * The margin of "right" scroller buttons
+ *
+ * @param {number/list} [$scroller-bottom-margin=$toolbar-scroller-bottom-margin]
+ * The margin of "bottom" scroller buttons
+ *
+ * @param {number/list} [$scroller-left-margin=$toolbar-scroller-left-margin]
+ * The margin of "left" scroller buttons
+ *
+ * @param {string} [$scroller-cursor=$toolbar-scroller-cursor]
+ * The cursor of Toolbar scrollers
+ *
+ * @param {string} [$scroller-cursor-disabled=$toolbar-scroller-cursor-disabled]
+ * The cursor of disabled Toolbar scrollers
+ *
+ * @param {number} [$scroller-opacity=$toolbar-scroller-opacity]
+ * The opacity of Toolbar scroller buttons. Only applicable when
+ * `$classic-scrollers` is `false`.
+ *
+ * @param {number} [$scroller-opacity-over=$toolbar-scroller-opacity-over]
+ * The opacity of hovered Toolbar scroller buttons. Only applicable when
+ * `$classic-scrollers` is `false`.
+ *
+ * @param {number} [$scroller-opacity-pressed=$toolbar-scroller-opacity-pressed]
+ * The opacity of pressed Toolbar scroller buttons. Only applicable when
+ * `$classic-scrollers` is `false`.
+ *
+ * @param {number} [$scroller-opacity-disabled=$toolbar-scroller-opacity-disabled]
+ * The opacity of disabled Toolbar scroller buttons.
+ *
+ * @param {string} [$tool-background-image=$toolbar-tool-background-image]
+ * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar
+ *
+ * @param {boolean} [$classic-scrollers=$toolbar-classic-scrollers]
+ * `true` to use classic-style scroller buttons. When `true` scroller buttons are given
+ * their hover state by changing their background-position, When `false` scroller buttons
+ * are given their hover state by applying opacity.
+ *
+ * @member Ext.toolbar.Toolbar
+ */
+/* line 198, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-default {
+ padding: 6px 0 6px 8px;
+ border-style: solid;
+ border-color: #cecece;
+ border-width: 1px;
+ background-image: none;
+ background-color: white; }
+ /* line 202, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-default.x-rtl {
+ padding: 6px 8px 6px 0; }
+ /* line 214, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-default .x-tool-img {
+ background-image: url(images/tools/tool-sprites-dark.png);
+ background-color: white; }
+ /* line 227, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-default .x-toolbar-item {
+ margin: 0 8px 0 0; }
+ /* line 231, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-default .x-toolbar-item.x-rtl {
+ margin: 0 0 0 8px; }
+ /* line 237, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-default .x-toolbar-separator-horizontal {
+ margin: 0 8px 0 0;
+ height: 14px;
+ border-style: solid;
+ border-width: 0 0 0 1px;
+ border-left-color: #e1e1e1;
+ border-right-color: white; }
+ /* line 246, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-default .x-box-menu-after {
+ margin: 0 8px; }
+
+/* line 251, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-default-vertical {
+ padding: 6px 8px 0; }
+ /* line 255, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-default-vertical.x-rtl {
+ padding: 6px 8px 0; }
+ /* line 260, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-default-vertical .x-toolbar-item {
+ margin: 0 0 6px 0; }
+ /* line 263, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-default-vertical .x-toolbar-item.x-rtl {
+ margin: 0 0 6px 0; }
+ /* line 269, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-default-vertical .x-toolbar-separator-vertical {
+ margin: 0 5px 6px;
+ border-style: solid none;
+ border-width: 1px 0 0;
+ border-top-color: #e1e1e1;
+ border-bottom-color: white; }
+ /* line 277, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-default-vertical .x-box-menu-after {
+ margin: 6px 0; }
+
+/* line 292, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-text-default {
+ padding: 0 4px;
+ color: #192936;
+ font: 300 13px/16px "Roboto", sans-serif; }
+
+/* line 298, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-spacer-default {
+ width: 2px; }
+
+/* line 145, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-toolbar-default-scroller .x-box-scroller-body-horizontal {
+ margin-left: 16px; }
+
+/* line 151, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-toolbar-default-vertical-scroller .x-box-scroller-body-vertical {
+ margin-top: 18px; }
+
+/* line 156, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-box-scroller-toolbar-default {
+ cursor: pointer;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
+ opacity: 0.6; }
+ /* line 165, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-default.x-box-scroller-hover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8; }
+ /* line 171, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-default.x-box-scroller-pressed {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1; }
+ /* line 177, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-default.x-box-scroller-disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
+ opacity: 0.25;
+ cursor: default; }
+ /* line 188, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-default.x-box-scroller-left, .x-box-scroller-toolbar-default.x-box-scroller-right {
+ width: 16px;
+ height: 16px;
+ top: 50%;
+ margin-top: -8px; }
+ /* line 214, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-default.x-box-scroller-left {
+ margin-left: 4px;
+ margin-right: 4px;
+ margin-bottom: 0;
+ background-image: url(images/toolbar/default-scroll-left.png); }
+ /* line 237, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-default.x-box-scroller-right {
+ margin-left: 4px;
+ margin-right: 4px;
+ margin-bottom: 0;
+ background-image: url(images/toolbar/default-scroll-right.png); }
+ /* line 263, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-default.x-box-scroller-top, .x-box-scroller-toolbar-default.x-box-scroller-bottom {
+ height: 16px;
+ width: 16px;
+ left: 50%;
+ margin-left: -8px; }
+ /* line 289, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-default.x-box-scroller-top {
+ margin-top: 4px;
+ margin-right: 0;
+ margin-bottom: 4px;
+ background-image: url(images/toolbar/default-scroll-top.png); }
+ /* line 312, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-default.x-box-scroller-bottom {
+ margin-top: 4px;
+ margin-right: 0;
+ margin-bottom: 4px;
+ background-image: url(images/toolbar/default-scroll-bottom.png); }
+
+/* line 335, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-ie8 .x-box-scroller-toolbar-default {
+ background-color: white; }
+
+/* line 341, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-more-icon {
+ background-image: url(images/toolbar/default-more.png); }
+ /* line 345, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-more-icon.x-rtl {
+ background-image: url(images/toolbar/default-more-left.png); }
+
+/* line 198, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-footer {
+ padding: 6px 0 6px 6px;
+ border-style: solid;
+ border-color: #cecece;
+ border-width: 0;
+ background-image: none;
+ background-color: #e6e6e6; }
+ /* line 202, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-footer.x-rtl {
+ padding: 6px 6px 6px 0; }
+ /* line 214, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-footer .x-tool-img {
+ background-image: url(images/tools/tool-sprites-dark.png);
+ background-color: #e6e6e6; }
+ /* line 227, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-footer .x-toolbar-item {
+ margin: 0 6px 0 0; }
+ /* line 231, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-footer .x-toolbar-item.x-rtl {
+ margin: 0 0 0 6px; }
+ /* line 237, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-footer .x-toolbar-separator-horizontal {
+ margin: 0 8px 0 0;
+ height: 14px;
+ border-style: solid;
+ border-width: 0 0 0 1px;
+ border-left-color: #e1e1e1;
+ border-right-color: white; }
+ /* line 246, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-footer .x-box-menu-after {
+ margin: 0 6px; }
+
+/* line 251, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-footer-vertical {
+ padding: 6px 6px 0; }
+ /* line 255, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-footer-vertical.x-rtl {
+ padding: 6px 6px 0; }
+ /* line 260, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-footer-vertical .x-toolbar-item {
+ margin: 0 0 6px 0; }
+ /* line 263, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-footer-vertical .x-toolbar-item.x-rtl {
+ margin: 0 0 6px 0; }
+ /* line 269, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-footer-vertical .x-toolbar-separator-vertical {
+ margin: 0 5px 6px;
+ border-style: solid none;
+ border-width: 1px 0 0;
+ border-top-color: #e1e1e1;
+ border-bottom-color: white; }
+ /* line 277, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-footer-vertical .x-box-menu-after {
+ margin: 6px 0; }
+
+/* line 292, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-text-footer {
+ padding: 0 4px;
+ color: #192936;
+ font: 300 13px/16px "Roboto", sans-serif; }
+
+/* line 298, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-spacer-footer {
+ width: 2px; }
+
+/* line 145, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-toolbar-footer-scroller .x-box-scroller-body-horizontal {
+ margin-left: 18px; }
+
+/* line 151, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-toolbar-footer-vertical-scroller .x-box-scroller-body-vertical {
+ margin-top: 18px; }
+
+/* line 156, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-box-scroller-toolbar-footer {
+ cursor: pointer;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
+ opacity: 0.6; }
+ /* line 165, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-footer.x-box-scroller-hover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8; }
+ /* line 171, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-footer.x-box-scroller-pressed {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1; }
+ /* line 177, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-footer.x-box-scroller-disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
+ opacity: 0.25;
+ cursor: default; }
+ /* line 188, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-footer.x-box-scroller-left, .x-box-scroller-toolbar-footer.x-box-scroller-right {
+ width: 16px;
+ height: 16px;
+ top: 50%;
+ margin-top: -8px; }
+ /* line 214, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-footer.x-box-scroller-left {
+ margin-left: 4px;
+ margin-right: 4px;
+ margin-bottom: 0;
+ background-image: url(images/toolbar/footer-scroll-left.png); }
+ /* line 237, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-footer.x-box-scroller-right {
+ margin-left: 4px;
+ margin-right: 4px;
+ margin-bottom: 0;
+ background-image: url(images/toolbar/footer-scroll-right.png); }
+
+/* line 335, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-ie8 .x-box-scroller-toolbar-footer {
+ background-color: #e6e6e6; }
+
+/* line 341, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-more-icon {
+ background-image: url(images/toolbar/footer-more.png); }
+ /* line 345, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-more-icon.x-rtl {
+ background-image: url(images/toolbar/footer-more-left.png); }
+
+/**
+ * Creates a visual theme for spinner field triggers. Note this mixin only provides
+ * styling for the spinner trigger buttons. The text field portion of the styling must be
+ * created using {@link Ext.form.field.Text#css_mixin-extjs-text-field-ui}
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {boolean} [$ui-trigger-vertical=$spinner-trigger-vertical]
+ * `true` to align the up/down triggers vertically.
+ *
+ * @param {number} [$ui-trigger-width=$form-trigger-width]
+ * The width of the triggers.
+ *
+ * @param {number} [$ui-field-height=$form-text-field-height]
+ * The height of the text field that the trigger must fit within. This does not set the
+ * height of the field, only the height of the triggers. When {@link #css_mixin-extjs-spinner-trigger-ui $ui-trigger-vertical}
+ * is true, the available height within the field borders is divided evenly between the
+ * two triggers.
+ *
+ * @param {number/list} [$ui-field-border-width=$form-text-field-border-width]
+ * The border width of the text field that the trigger must fit within. This does not set
+ * the border of the field, it is only needed so that the border-width of the field can
+ * be subtracted from the trigger height.
+ *
+ * @param {string} [$ui-trigger-vertical-background-image=$spinner-trigger-vertical-background-image]
+ * The background image sprite for vertically aligned spinner triggers
+ *
+ * @param {string} [$ui-trigger-up-background-image='form/spinner-up']
+ * The background image for the "up" trigger when triggers are horizontally aligned
+ *
+ * @param {string} [$ui-trigger-down-background-image='form/spinner-down']
+ * The background image for the "down" trigger when triggers are horizontally aligned
+ *
+ * @param {color} [$ui-trigger-background-color=$form-text-field-background-color]
+ * The background color of the spinner triggers
+ *
+ * @param {boolean} [$ui-classic-border=$form-text-field-classic-border]
+ * `true` to use classic-theme styled border.
+ *
+ * @member Ext.form.trigger.Spinner
+ */
+/* line 59, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
+.x-form-trigger-spinner-default {
+ width: 22px; }
+
+/* line 66, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
+.x-form-spinner-default {
+ background-image: url(images/form/spinner.png);
+ background-color: white;
+ width: 22px;
+ height: 11px; }
+ /* line 70, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
+ .x-form-spinner-default.x-rtl {
+ background-image: url(images/form/spinner-rtl.png); }
+
+/* line 102, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
+.x-form-spinner-up-default {
+ background-position: 0 0; }
+ /* line 105, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
+ .x-form-spinner-up-default.x-form-spinner-over {
+ background-position: -22px 0; }
+ /* line 107, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
+ .x-form-spinner-up-default.x-form-spinner-over.x-form-spinner-focus {
+ background-position: -88px 0; }
+ /* line 112, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
+ .x-form-spinner-up-default.x-form-spinner-focus {
+ background-position: -66px 0; }
+ /* line 117, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
+ .x-form-spinner-up-default.x-form-spinner.x-form-spinner-click {
+ background-position: -44px 0; }
+
+/* line 122, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
+.x-form-spinner-down-default {
+ background-position: 0 -11px; }
+ /* line 125, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
+ .x-form-spinner-down-default.x-form-spinner-over {
+ background-position: -22px -11px; }
+ /* line 127, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
+ .x-form-spinner-down-default.x-form-spinner-over.x-form-spinner-focus {
+ background-position: -88px -11px; }
+ /* line 132, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
+ .x-form-spinner-down-default.x-form-spinner-focus {
+ background-position: -66px -11px; }
+ /* line 137, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
+ .x-form-spinner-down-default.x-form-spinner.x-form-spinner-click {
+ background-position: -44px -11px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Paging.scss */
+.x-tbar-page-number {
+ width: 30px; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Paging.scss */
+.x-tbar-page-first {
+ background-image: url(images/grid/page-first.png); }
+
+/* line 9, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Paging.scss */
+.x-tbar-page-prev {
+ background-image: url(images/grid/page-prev.png); }
+
+/* line 13, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Paging.scss */
+.x-tbar-page-next {
+ background-image: url(images/grid/page-next.png); }
+
+/* line 17, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Paging.scss */
+.x-tbar-page-last {
+ background-image: url(images/grid/page-last.png); }
+
+/* line 21, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Paging.scss */
+.x-tbar-loading {
+ background-image: url(images/grid/refresh.png); }
+
+/* line 51, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Paging.scss */
+.x-rtl.x-tbar-page-first {
+ background-image: url(images/grid/page-last.png); }
+/* line 55, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Paging.scss */
+.x-rtl.x-tbar-page-prev {
+ background-image: url(images/grid/page-next.png); }
+/* line 59, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Paging.scss */
+.x-rtl.x-tbar-page-next {
+ background-image: url(images/grid/page-prev.png); }
+/* line 63, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Paging.scss */
+.x-rtl.x-tbar-page-last {
+ background-image: url(images/grid/page-first.png); }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/BoundList.scss */
+.x-boundlist {
+ border-width: 1px;
+ border-style: solid;
+ border-color: #e1e1e1;
+ background: white; }
+
+/* line 8, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/BoundList.scss */
+.x-boundlist-item {
+ padding: 0 6px;
+ font: normal 13px "Roboto", sans-serif;
+ line-height: 22px;
+ cursor: pointer;
+ cursor: hand;
+ position: relative;
+ /*allow hover in IE on empty items*/
+ border-width: 1px;
+ border-style: dotted;
+ border-color: white; }
+
+/* line 24, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/BoundList.scss */
+.x-boundlist-selected {
+ background: #788a97;
+ border-color: #788a97; }
+
+/* line 29, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/BoundList.scss */
+.x-boundlist-item-over {
+ background: #a5b1ba;
+ border-color: #a5b1ba; }
+
+/* line 34, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/BoundList.scss */
+.x-boundlist-floating {
+ border-top-width: 0; }
+
+/* line 38, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/BoundList.scss */
+.x-boundlist-above {
+ border-top-width: 1px;
+ border-bottom-width: 1px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool {
+ cursor: pointer; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-img {
+ overflow: hidden;
+ width: 16px;
+ height: 16px;
+ background-image: url(images/tools/tool-sprites.png);
+ margin: 0;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8; }
+ /* line 15, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+ .x-tool-over .x-tool-img {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
+ opacity: 0.9; }
+ /* line 20, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+ .x-tool-pressed .x-tool-img {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1; }
+
+/* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-placeholder {
+ visibility: hidden; }
+
+/* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-close {
+ background-position: 0 0; }
+
+/* line 36, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-minimize {
+ background-position: 0 -16px; }
+
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-maximize {
+ background-position: 0 -32px; }
+
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-restore {
+ background-position: 0 -48px; }
+
+/* line 48, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-toggle {
+ background-position: 0 -64px; }
+ /* line 51, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+ .x-panel-collapsed .x-tool-toggle {
+ background-position: 0 -80px; }
+
+/* line 56, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-gear {
+ background-position: 0 -96px; }
+
+/* line 60, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-prev {
+ background-position: 0 -112px; }
+
+/* line 64, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-next {
+ background-position: 0 -128px; }
+
+/* line 68, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-pin {
+ background-position: 0 -144px; }
+
+/* line 72, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-unpin {
+ background-position: 0 -160px; }
+
+/* line 76, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-right {
+ background-position: 0 -176px; }
+
+/* line 80, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-left {
+ background-position: 0 -192px; }
+
+/* line 84, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-down {
+ background-position: 0 -208px; }
+
+/* line 88, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-up {
+ background-position: 0 -224px; }
+
+/* line 92, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-refresh {
+ background-position: 0 -240px; }
+
+/* line 96, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-plus {
+ background-position: 0 -256px; }
+
+/* line 100, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-minus {
+ background-position: 0 -272px; }
+
+/* line 104, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-search {
+ background-position: 0 -288px; }
+
+/* line 108, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-save {
+ background-position: 0 -304px; }
+
+/* line 112, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-help {
+ background-position: 0 -320px; }
+
+/* line 116, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-print {
+ background-position: 0 -336px; }
+
+/* line 120, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-expand {
+ background-position: 0 -352px; }
+
+/* line 124, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-collapse {
+ background-position: 0 -368px; }
+
+/* line 128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-resize {
+ background-position: 0 -384px; }
+
+/* line 132, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-move {
+ background-position: 0 -400px; }
+
+/* line 137, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-expand-bottom,
+.x-tool-collapse-bottom {
+ background-position: 0 -208px; }
+
+/* line 142, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-expand-top,
+.x-tool-collapse-top {
+ background-position: 0 -224px; }
+
+/* line 147, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-expand-left,
+.x-tool-collapse-left {
+ background-position: 0 -192px; }
+
+/* line 152, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-tool-expand-right,
+.x-tool-collapse-right {
+ background-position: 0 -176px; }
+
+/* line 159, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-rtl.x-tool-expand-left, .x-rtl.x-tool-collapse-left {
+ background-position: 0 -176px; }
+/* line 164, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Tool.scss */
+.x-rtl.x-tool-expand-right, .x-rtl.x-tool-collapse-right {
+ background-position: 0 -192px; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Header.scss */
+.x-header-draggable,
+.x-header-ghost {
+ cursor: move; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Header.scss */
+.x-header-text {
+ white-space: nowrap; }
+
+/**
+ * Creates a visual theme for a Panel.
+ *
+ * **Note:** When using `frame: true`, this mixin call creates a UI property with the name and a "-framed" suffix.
+ *
+ * For example, Panel's UI will be set to "highlight-framed" if `frame:true`.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {color} [$ui-border-color=$panel-border-color]
+ * The border-color of the Panel
+ *
+ * @param {number} [$ui-border-radius=$panel-border-radius]
+ * The border-radius of the Panel
+ *
+ * @param {number} [$ui-border-width=$panel-border-width]
+ * The border-width of the Panel
+ *
+ * @param {number} [$ui-padding=$panel-padding]
+ * The padding of the Panel
+ *
+ * @param {color} [$ui-header-color=$panel-header-color]
+ * The text color of the Header
+ *
+ * @param {string} [$ui-header-font-family=$panel-header-font-family]
+ * The font-family of the Header
+ *
+ * @param {number} [$ui-header-font-size=$panel-header-font-size]
+ * The font-size of the Header
+ *
+ * @param {string} [$ui-header-font-weight=$panel-header-font-weight]
+ * The font-weight of the Header
+ *
+ * @param {number} [$ui-header-line-height=$panel-header-line-height]
+ * The line-height of the Header
+ *
+ * @param {color} [$ui-header-border-color=$panel-header-border-color]
+ * The border-color of the Header
+ *
+ * @param {number} [$ui-header-border-width=$panel-header-border-width]
+ * The border-width of the Header
+ *
+ * @param {string} [$ui-header-border-style=$panel-header-border-style]
+ * The border-style of the Header
+ *
+ * @param {color} [$ui-header-background-color=$panel-header-background-color]
+ * The background-color of the Header
+ *
+ * @param {string/list} [$ui-header-background-gradient=$panel-header-background-gradient]
+ * The background-gradient of the Header. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {color} [$ui-header-inner-border-color=$panel-header-inner-border-color]
+ * The inner border-color of the Header
+ *
+ * @param {number} [$ui-header-inner-border-width=$panel-header-inner-border-width]
+ * The inner border-width of the Header
+ *
+ * @param {number/list} [$ui-header-text-padding=$panel-header-text-padding]
+ * The padding of the Header's text element
+ *
+ * @param {number/list} [$ui-header-text-margin=$panel-header-text-margin]
+ * The margin of the Header's text element
+ *
+ * @param {string} [$ui-header-text-transform=$panel-header-text-transform]
+ * The text-transform of the Header
+ *
+ * @param {number/list} [$ui-header-padding=$panel-header-padding]
+ * The padding of the Header
+ *
+ * @param {number} [$ui-header-icon-width=$panel-header-icon-width]
+ * The width of the Header icon
+ *
+ * @param {number} [$ui-header-icon-height=$panel-header-icon-height]
+ * The height of the Header icon
+ *
+ * @param {number} [$ui-header-icon-spacing=$panel-header-icon-spacing]
+ * The space between the Header icon and text
+ *
+ * @param {list} [$ui-header-icon-background-position=$panel-header-icon-background-position]
+ * The background-position of the Header icon
+ *
+ * @param {color} [$ui-header-glyph-color=$panel-header-glyph-color]
+ * The color of the Header glyph icon
+ *
+ * @param {number} [$ui-header-glyph-opacity=$panel-header-glyph-opacity]
+ * The opacity of the Header glyph icon
+ *
+ * @param {number} [$ui-header-noborder-adjust=$panel-header-noborder-adjust]
+ * True to adjust the padding of borderless panel headers so that their height is the same
+ * as the height of bordered panels. This is helpful when borderless and bordered panels
+ * are used side-by-side, as it maintains a consistent vertical alignment.
+ *
+ * @param {number} [$ui-tool-spacing=$panel-tool-spacing]
+ * The space between the Panel {@link Ext.panel.Tool Tools}
+ *
+ * @param {string} [$ui-tool-background-image=$panel-tool-background-image]
+ * The background sprite to use for Panel {@link Ext.panel.Tool Tools}
+ *
+ * @param {color} [$ui-body-color=$panel-body-color]
+ * The color of text inside the Panel body
+ *
+ * @param {color} [$ui-body-border-color=$panel-body-border-color]
+ * The border-color of the Panel body
+ *
+ * @param {number} [$ui-body-border-width=$panel-body-border-width]
+ * The border-width of the Panel body
+ *
+ * @param {string} [$ui-body-border-style=$panel-body-border-style]
+ * The border-style of the Panel body
+ *
+ * @param {color} [$ui-body-background-color=$panel-body-background-color]
+ * The background-color of the Panel body
+ *
+ * @param {number} [$ui-body-font-size=$panel-body-font-size]
+ * The font-size of the Panel body
+ *
+ * @param {string} [$ui-body-font-weight=$panel-body-font-weight]
+ * The font-weight of the Panel body
+ *
+ * @param {string} [$ui-background-stretch-top=$panel-background-stretch-top]
+ * The direction to strech the background-gradient of top docked Headers when slicing images
+ * for IE using Sencha Cmd
+ *
+ * @param {string} [$ui-background-stretch-bottom=$panel-background-stretch-bottom]
+ * The direction to strech the background-gradient of bottom docked Headers when slicing images
+ * for IE using Sencha Cmd
+ *
+ * @param {string} [$ui-background-stretch-right=$panel-background-stretch-right]
+ * The direction to strech the background-gradient of right docked Headers when slicing images
+ * for IE using Sencha Cmd
+ *
+ * @param {string} [$ui-background-stretch-left=$panel-background-stretch-left]
+ * The direction to strech the background-gradient of left docked Headers when slicing images
+ * for IE using Sencha Cmd
+ *
+ * @param {boolean} [$ui-include-border-management-rules=$panel-include-border-management-rules]
+ * True to include neptune style border management rules.
+ *
+ * @param {color} [$ui-wrap-border-color=$panel-wrap-border-color]
+ * The color to apply to the border that wraps the body and docked items in a framed
+ * panel. The presence of the wrap border in a framed panel is controlled by the
+ * {@link #border} config. Only applicable when `$ui-include-border-management-rules` is
+ * `true`.
+ *
+ * @param {color} [$ui-wrap-border-width=$panel-wrap-border-width]
+ * The width to apply to the border that wraps the body and docked items in a framed
+ * panel. The presence of the wrap border in a framed panel is controlled by the
+ * {@link #border} config. Only applicable when `$ui-include-border-management-rules` is
+ * `true`.
+ *
+ * @param {boolean} [$ui-ignore-frame-padding=$panel-ignore-frame-padding]
+ * True to ignore the frame padding. By default, the frame mixin adds extra padding when
+ * border radius is larger than border width. This is intended to prevent the content
+ * from colliding with the rounded corners of the frame. Set this to true to prevent
+ * the panel frame from adding this extra padding.
+ *
+ * @member Ext.panel.Panel
+ */
+/* line 864, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-ghost {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+
+/* line 256, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-default {
+ border-color: #4b6375;
+ padding: 0; }
+
+/* line 262, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default {
+ font-size: 15px;
+ border: 1px solid #4b6375; }
+ /* line 269, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-default .x-tool-img {
+ background-color: #4b6375; }
+
+/* line 282, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-horizontal {
+ padding: 9px 9px 10px 9px; }
+ /* line 286, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-default-horizontal .x-panel-header-default-tab-bar {
+ margin-top: -9px;
+ margin-bottom: -10px; }
+
+/* line 294, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-horizontal.x-header-noborder {
+ padding: 10px 10px 10px 10px; }
+ /* line 298, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-default-horizontal.x-header-noborder .x-panel-header-default-tab-bar {
+ margin-top: -10px;
+ margin-bottom: -10px; }
+
+/* line 306, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-vertical {
+ padding: 9px 9px 9px 10px; }
+ /* line 310, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-default-vertical .x-panel-header-default-tab-bar {
+ margin-right: -9px;
+ margin-left: -10px; }
+
+/* line 318, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-vertical.x-header-noborder {
+ padding: 10px 10px 10px 10px; }
+ /* line 322, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-default-vertical.x-header-noborder .x-panel-header-default-tab-bar {
+ margin-right: -10px;
+ margin-left: -10px; }
+
+/* line 331, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-default-vertical {
+ padding: 9px 10px 9px 9px; }
+ /* line 335, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-rtl.x-panel-header-default-vertical .x-panel-header-default-tab-bar {
+ margin-left: -9px;
+ margin-right: -10px; }
+
+/* line 343, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-default-vertical.x-header-noborder {
+ padding: 10px 10px 10px 10px; }
+ /* line 347, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-rtl.x-panel-header-default-vertical.x-header-noborder .x-panel-header-default-tab-bar {
+ margin-left: -10px;
+ margin-right: -10px; }
+
+/* line 356, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-title-default {
+ color: #fefefe;
+ font-size: 15px;
+ font-weight: 300;
+ font-family: "Roboto", sans-serif;
+ line-height: 16px; }
+ /* line 369, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default > .x-title-text-default {
+ text-transform: none;
+ padding: 0; }
+ /* line 412, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-top {
+ height: 22px;
+ padding-bottom: 6px; }
+ /* line 417, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-right {
+ width: 22px;
+ padding-left: 6px; }
+ /* line 422, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-right.x-rtl {
+ padding-left: 0;
+ padding-right: 6px; }
+ /* line 429, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-bottom {
+ height: 22px;
+ padding-top: 6px; }
+ /* line 434, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-left {
+ width: 22px;
+ padding-right: 6px; }
+ /* line 439, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-left.x-rtl {
+ padding-right: 0;
+ padding-left: 6px; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default > .x-title-icon-wrap-default > .x-title-icon-default {
+ width: 16px;
+ height: 16px;
+ background-position: center center; }
+ /* line 452, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default > .x-title-icon-wrap-default > .x-title-glyph {
+ color: #fefefe;
+ font-size: 16px;
+ line-height: 16px;
+ opacity: 0.5; }
+
+/* line 479, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-body-default {
+ background: #162938;
+ border-color: #cecece;
+ color: #fefefe;
+ font-size: 13px;
+ font-weight: 300;
+ font-family: "Roboto", sans-serif;
+ border-width: 1px;
+ border-style: solid; }
+
+/* line 643, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default {
+ background-image: none;
+ background-color: #4b6375; }
+
+/* line 647, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-vertical {
+ background-image: none;
+ background-color: #4b6375; }
+
+/* line 652, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-default-vertical {
+ background-image: none;
+ background-color: #4b6375; }
+
+/* line 705, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-default-collapsed-border-top {
+ border-bottom-width: 1px !important; }
+/* line 709, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-default-collapsed-border-right {
+ border-left-width: 1px !important; }
+/* line 713, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-default-collapsed-border-bottom {
+ border-top-width: 1px !important; }
+/* line 717, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-default-collapsed-border-left {
+ border-right-width: 1px !important; }
+
+/* */
+/* */
+/* */
+/* */
+/* line 753, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-horizontal .x-tool-after-title {
+ margin: 0 0 0 6px; }
+/* line 758, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-horizontal .x-rtl.x-tool-after-title {
+ margin: 0 6px 0 0; }
+/* line 763, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-horizontal .x-tool-before-title {
+ margin: 0 6px 0 0; }
+/* line 768, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-horizontal .x-rtl.x-tool-before-title {
+ margin: 0 0 0 6px; }
+
+/* line 775, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-vertical .x-tool-after-title {
+ margin: 6px 0 0 0; }
+/* line 780, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-vertical .x-rtl.x-tool-after-title {
+ margin: 6px 0 0 0; }
+/* line 785, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-vertical .x-tool-before-title {
+ margin: 0 0 6px 0; }
+/* line 790, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-vertical .x-rtl.x-tool-before-title {
+ margin: 0 0 6px 0; }
+
+/* line 798, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-default-collapsed-border-right {
+ border-right-width: 1px !important; }
+/* line 801, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-default-collapsed-border-left {
+ border-left-width: 1px !important; }
+
+/* line 815, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-default-resizable .x-panel-handle {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
+ opacity: 0; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-l {
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-b {
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-bl {
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-r {
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important; }
+
+/* line 20, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-rl {
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 26, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-rb {
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important; }
+
+/* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-rbl {
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-t {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important; }
+
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-tl {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 50, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-tb {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important; }
+
+/* line 56, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-tbl {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 64, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-tr {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important; }
+
+/* line 70, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-trl {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 78, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-trb {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important; }
+
+/* line 86, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-outer-border-trbl {
+ border-color: #4b6375 !important;
+ border-width: 1px !important; }
+
+/* line 256, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-default-framed {
+ border-color: #4b6375;
+ padding: 0; }
+
+/* line 262, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-framed {
+ font-size: 15px;
+ border: 1px solid #4b6375; }
+ /* line 269, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-default-framed .x-tool-img {
+ background-color: #4b6375; }
+
+/* line 282, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-framed-horizontal {
+ padding: 9px 9px 9px 9px; }
+ /* line 286, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-default-framed-horizontal .x-panel-header-default-framed-tab-bar {
+ margin-top: -9px;
+ margin-bottom: -9px; }
+
+/* line 294, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-framed-horizontal.x-header-noborder {
+ padding: 10px 10px 9px 10px; }
+ /* line 298, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-default-framed-horizontal.x-header-noborder .x-panel-header-default-framed-tab-bar {
+ margin-top: -10px;
+ margin-bottom: -9px; }
+
+/* line 306, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-framed-vertical {
+ padding: 9px 9px 9px 9px; }
+ /* line 310, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-default-framed-vertical .x-panel-header-default-framed-tab-bar {
+ margin-right: -9px;
+ margin-left: -9px; }
+
+/* line 318, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-framed-vertical.x-header-noborder {
+ padding: 10px 10px 10px 9px; }
+ /* line 322, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-default-framed-vertical.x-header-noborder .x-panel-header-default-framed-tab-bar {
+ margin-right: -10px;
+ margin-left: -9px; }
+
+/* line 331, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-default-framed-vertical {
+ padding: 9px 9px 9px 9px; }
+ /* line 335, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-rtl.x-panel-header-default-framed-vertical .x-panel-header-default-framed-tab-bar {
+ margin-left: -9px;
+ margin-right: -9px; }
+
+/* line 343, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-default-framed-vertical.x-header-noborder {
+ padding: 10px 9px 10px 10px; }
+ /* line 347, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-rtl.x-panel-header-default-framed-vertical.x-header-noborder .x-panel-header-default-framed-tab-bar {
+ margin-left: -10px;
+ margin-right: -9px; }
+
+/* line 356, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-title-default-framed {
+ color: #fefefe;
+ font-size: 15px;
+ font-weight: 300;
+ font-family: "Roboto", sans-serif;
+ line-height: 16px; }
+ /* line 369, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default-framed > .x-title-text-default-framed {
+ text-transform: none;
+ padding: 0; }
+ /* line 412, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-top {
+ height: 22px;
+ padding-bottom: 6px; }
+ /* line 417, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-right {
+ width: 22px;
+ padding-left: 6px; }
+ /* line 422, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-right.x-rtl {
+ padding-left: 0;
+ padding-right: 6px; }
+ /* line 429, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-bottom {
+ height: 22px;
+ padding-top: 6px; }
+ /* line 434, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-left {
+ width: 22px;
+ padding-right: 6px; }
+ /* line 439, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-left.x-rtl {
+ padding-right: 0;
+ padding-left: 6px; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed > .x-title-icon-default-framed {
+ width: 16px;
+ height: 16px;
+ background-position: center center; }
+ /* line 452, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed > .x-title-glyph {
+ color: #fefefe;
+ font-size: 16px;
+ line-height: 16px;
+ opacity: 0.5; }
+
+/* line 479, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-body-default-framed {
+ background: white;
+ border-color: #cecece;
+ color: #fefefe;
+ font-size: 13px;
+ font-weight: 300;
+ font-family: "Roboto", sans-serif;
+ border-width: 1px;
+ border-style: solid; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-default-framed {
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ -ms-border-radius: 4px;
+ -o-border-radius: 4px;
+ border-radius: 4px;
+ padding: 0 0 0 0;
+ border-width: 1px;
+ border-style: solid;
+ background-color: white; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-default-framed-top {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 0;
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+ -moz-border-radius-bottomleft: 0;
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px 1px 0 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-default-framed-right {
+ -moz-border-radius-topleft: 0;
+ -webkit-border-top-left-radius: 0;
+ border-top-left-radius: 0;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 0;
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px 1px 1px 0;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* line 226, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-rtl.x-panel-header-default-framed-right {
+ background-image: none;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-default-framed-bottom {
+ -moz-border-radius-topleft: 0;
+ -webkit-border-top-left-radius: 0;
+ border-top-left-radius: 0;
+ -moz-border-radius-topright: 0;
+ -webkit-border-top-right-radius: 0;
+ border-top-right-radius: 0;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 0 1px 1px 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-default-framed-left {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 0;
+ -webkit-border-top-right-radius: 0;
+ border-top-right-radius: 0;
+ -moz-border-radius-bottomright: 0;
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px 0 1px 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* line 226, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-rtl.x-panel-header-default-framed-left {
+ background-image: none;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-default-framed-collapsed-top {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-default-framed-collapsed-right {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* line 226, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-rtl.x-panel-header-default-framed-collapsed-right {
+ background-image: none;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-default-framed-collapsed-bottom {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-default-framed-collapsed-left {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* line 226, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-rtl.x-panel-header-default-framed-collapsed-left {
+ background-image: none;
+ background-color: #4b6375; }
+
+/* */
+/* line 605, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-default-framed-top {
+ border-bottom-width: 1px !important; }
+/* line 609, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-default-framed-right {
+ border-left-width: 1px !important; }
+/* line 613, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-default-framed-bottom {
+ border-top-width: 1px !important; }
+/* line 617, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-default-framed-left {
+ border-right-width: 1px !important; }
+
+/* line 753, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-framed-horizontal .x-tool-after-title {
+ margin: 0 0 0 6px; }
+/* line 758, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-framed-horizontal .x-rtl.x-tool-after-title {
+ margin: 0 6px 0 0; }
+/* line 763, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-framed-horizontal .x-tool-before-title {
+ margin: 0 6px 0 0; }
+/* line 768, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-framed-horizontal .x-rtl.x-tool-before-title {
+ margin: 0 0 0 6px; }
+
+/* line 775, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-framed-vertical .x-tool-after-title {
+ margin: 6px 0 0 0; }
+/* line 780, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-framed-vertical .x-rtl.x-tool-after-title {
+ margin: 6px 0 0 0; }
+/* line 785, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-framed-vertical .x-tool-before-title {
+ margin: 0 0 6px 0; }
+/* line 790, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-default-framed-vertical .x-rtl.x-tool-before-title {
+ margin: 0 0 6px 0; }
+
+/* line 798, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-default-framed-collapsed-border-right {
+ border-right-width: 1px !important; }
+/* line 801, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-default-framed-collapsed-border-left {
+ border-left-width: 1px !important; }
+
+/* line 815, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-default-framed-resizable .x-panel-handle {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
+ opacity: 0; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-l {
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-b {
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-bl {
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-r {
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important; }
+
+/* line 20, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-rl {
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 26, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-rb {
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important; }
+
+/* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-rbl {
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-t {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important; }
+
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-tl {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 50, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-tb {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important; }
+
+/* line 56, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-tbl {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 64, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-tr {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important; }
+
+/* line 70, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-trl {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 78, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-trb {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important; }
+
+/* line 86, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-default-framed-outer-border-trbl {
+ border-color: #4b6375 !important;
+ border-width: 1px !important; }
+
+/**
+ * Creates a visual theme for a Ext.tip.Tip
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {color} [$ui-border-color=$tip-border-color]
+ * The border-color of the Tip
+ *
+ * @param {number} [$ui-border-width=$tip-border-width]
+ * The border-width of the Tip
+ *
+ * @param {number} [$ui-border-radius=$tip-border-radius]
+ * The border-radius of the Tip
+ *
+ * @param {color} [$ui-background-color=$tip-background-color]
+ * The background-color of the Tip
+ *
+ * @param {string/list} [$ui-background-gradient=$tip-background-gradient]
+ * The background-gradient of the Tip. Can be either the name of a predefined gradient or a
+ * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {number} [$ui-tool-spacing=$tip-tool-spacing]
+ * The space between {@link Ext.panel.Tool Tools} in the header
+ *
+ * @param {string} [$ui-tool-background-image=$tip-tool-background-image]
+ * The sprite to use for the header {@link Ext.panel.Tool Tools}
+ *
+ * @param {number/list} [$ui-header-padding=$tip-header-padding]
+ * The padding of the Tip header's body element
+ *
+ * @param {color} [$ui-header-color=$tip-header-color]
+ * The text color of the Tip header
+ *
+ * @param {number} [$ui-header-font-size=$tip-header-font-size]
+ * The font-size of the Tip header
+ *
+ * @param {string} [$ui-header-font-weight=$tip-header-font-weight]
+ * The font-weight of the Tip header
+ *
+ * @param {number/list} [$ui-body-padding=$tip-body-padding]
+ * The padding of the Tip body
+ *
+ * @param {color} [$ui-body-color=$tip-body-color]
+ * The text color of the Tip body
+ *
+ * @param {number} [$ui-body-font-size=$tip-body-font-size]
+ * The font-size of the Tip body
+ *
+ * @param {string} [$ui-body-font-weight=$tip-body-font-weight]
+ * The font-weight of the Tip body
+ *
+ * @param {color} [$ui-body-link-color=$tip-body-link-color]
+ * The text color of any anchor tags inside the Tip body
+ *
+ * @param {number} [$ui-inner-border-width=0]
+ * The inner border-width of the Tip
+ *
+ * @param {color} [$ui-inner-border-color=#fff]
+ * The inner border-color of the Tip
+ *
+ * @member Ext.tip.Tip
+ */
+/* line 179, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-anchor {
+ position: absolute;
+ overflow: hidden;
+ height: 10px;
+ width: 10px;
+ border-style: solid;
+ border-width: 5px;
+ border-color: #e1e1e1; }
+
+/* line 192, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-anchor-top {
+ border-top-color: transparent;
+ border-left-color: transparent;
+ border-right-color: transparent; }
+
+/* line 205, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-anchor-bottom {
+ border-bottom-color: transparent;
+ border-left-color: transparent;
+ border-right-color: transparent; }
+
+/* line 218, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-anchor-left {
+ border-top-color: transparent;
+ border-bottom-color: transparent;
+ border-left-color: transparent; }
+
+/* line 231, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-anchor-right {
+ border-top-color: transparent;
+ border-bottom-color: transparent;
+ border-right-color: transparent; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-tip-default {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 2px 2px 2px 2px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #d2d8dc; }
+
+/* */
+/* line 112, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-default {
+ border-color: #e1e1e1; }
+ /* line 121, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+ .x-tip-default .x-tool-img {
+ background-image: url(images/tools/tool-sprites-dark.png);
+ background-color: #d2d8dc; }
+
+/* line 136, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-header-default .x-tool-after-title {
+ margin: 0 0 0 6px; }
+/* line 141, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-header-default .x-rtl.x-tool-after-title {
+ margin: 0 6px 0 0; }
+/* line 146, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-header-default .x-tool-before-title {
+ margin: 0 6px 0 0; }
+/* line 151, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-header-default .x-rtl.x-tool-before-title {
+ margin: 0 0 0 6px; }
+
+/* line 157, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-header-default {
+ padding: 3px 3px 0 3px; }
+
+/* line 161, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-header-title-default {
+ color: black;
+ font-size: 13px;
+ font-weight: bold; }
+
+/* line 167, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-body-default {
+ padding: 3px;
+ color: black;
+ font-size: 13px;
+ font-weight: 300; }
+ /* line 172, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+ .x-tip-body-default a {
+ color: black; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-tip-form-invalid {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 2px 2px 2px 2px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #d2d8dc; }
+
+/* */
+/* line 112, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-form-invalid {
+ border-color: #e1e1e1; }
+ /* line 121, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+ .x-tip-form-invalid .x-tool-img {
+ background-image: url(images/tools/tool-sprites-dark.png);
+ background-color: #d2d8dc; }
+
+/* line 136, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-header-form-invalid .x-tool-after-title {
+ margin: 0 0 0 6px; }
+/* line 141, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-header-form-invalid .x-rtl.x-tool-after-title {
+ margin: 0 6px 0 0; }
+/* line 146, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-header-form-invalid .x-tool-before-title {
+ margin: 0 6px 0 0; }
+/* line 151, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-header-form-invalid .x-rtl.x-tool-before-title {
+ margin: 0 0 0 6px; }
+
+/* line 157, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-header-form-invalid {
+ padding: 3px 3px 0 3px; }
+
+/* line 161, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-header-title-form-invalid {
+ color: black;
+ font-size: 13px;
+ font-weight: bold; }
+
+/* line 167, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-body-form-invalid {
+ padding: 5px 3px 5px 34px;
+ color: black;
+ font-size: 13px;
+ font-weight: 300; }
+ /* line 172, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+ .x-tip-body-form-invalid a {
+ color: black; }
+
+/* line 268, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+.x-tip-body-form-invalid {
+ background: 1px 1px no-repeat;
+ background-image: url(images/form/exclamation.png); }
+ /* line 271, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+ .x-tip-body-form-invalid li {
+ margin-bottom: 4px; }
+ /* line 273, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tip/Tip.scss */
+ .x-tip-body-form-invalid li.last {
+ margin-bottom: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Color.scss */
+.x-color-picker {
+ width: 192px;
+ height: 120px;
+ background-color: white;
+ border-color: white;
+ border-width: 0;
+ border-style: solid; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Color.scss */
+.x-color-picker-item {
+ width: 24px;
+ height: 24px;
+ border-width: 1px;
+ border-color: white;
+ border-style: solid;
+ background-color: white;
+ cursor: pointer;
+ padding: 2px; }
+
+/* line 22, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Color.scss */
+a.x-color-picker-item:hover {
+ border-color: #8bb8f3;
+ background-color: #e6e6e6; }
+
+/* line 27, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Color.scss */
+.x-color-picker-selected {
+ border-color: #8bb8f3;
+ background-color: #e6e6e6; }
+
+/* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Color.scss */
+.x-color-picker-item-inner {
+ line-height: 16px;
+ border-color: #e1e1e1;
+ border-width: 1px;
+ border-style: solid; }
+
+/**
+ * Creates a visual theme for a Button. This mixin is not {@link #scale} aware, and therefore
+ * does not provide defaults for most parameters, so it is advisable to use one of the
+ * following mixins instead when creating a custom buttonUI:
+ *
+ * #extjs-button-small-ui - creates a button UI for a small button
+ * #extjs-button-medium-ui - creates a button UI for a medium button
+ * #extjs-button-large-ui - creates a button UI for a large button
+ * #extjs-button-toolbar-small-ui - creates a button UI for a small toolbar button
+ * #extjs-button-toolbar-medium-ui - creates a button UI for a medium toolbar button
+ * #extjs-button-toolbar-large-ui - creates a button UI for a large toolbar button
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number} [$border-radius=0px]
+ * The border-radius of the button
+ *
+ * @param {number} [$border-width=0px]
+ * The border-width of the button
+ *
+ * @param {color} $border-color
+ * The border-color of the button
+ *
+ * @param {color} $border-color-over
+ * The border-color of the button when the cursor is over the button
+ *
+ * @param {color} $border-color-focus
+ * The border-color of the button when focused
+ *
+ * @param {color} $border-color-pressed
+ * The border-color of the button when pressed
+ *
+ * @param {color} $border-color-focus-over
+ * The border-color of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {color} $border-color-focus-pressed
+ * The border-color of the button when focused and pressed
+ *
+ * @param {color} $border-color-disabled
+ * The border-color of the button when disabled
+ *
+ * @param {number} $padding
+ * The amount of padding inside the border of the button on all sides
+ *
+ * @param {number} $text-padding
+ * The amount of horizontal space to add to the left and right of the button text
+ *
+ * @param {color} $background-color
+ * The background-color of the button
+ *
+ * @param {color} $background-color-over
+ * The background-color of the button when the cursor is over the button
+ *
+ * @param {color} $background-color-focus
+ * The background-color of the button when focused
+ *
+ * @param {color} $background-color-pressed
+ * The background-color of the button when pressed
+ *
+ * @param {color} $background-color-focus-over
+ * The background-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} $background-color-focus-pressed
+ * The background-color of the button when focused and pressed
+ *
+ * @param {color} $background-color-disabled
+ * The background-color of the button when disabled
+ *
+ * @param {string/list} $background-gradient
+ * The background-gradient for the button. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} $background-gradient-over
+ * The background-gradient to use when the cursor is over the button. Can be either the
+ * name of a predefined gradient or a list of color stops. Used as the `$type` parameter
+ * for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} $background-gradient-focus
+ * The background-gradient to use when the the button is focused. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} $background-gradient-pressed
+ * The background-gradient to use when the the button is pressed. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} $background-gradient-focus-over
+ * The background-gradient to use when the the button is focused and the cursor is over
+ * the button. Can be either the name of a predefined gradient or a list of color stops.
+ * Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} $background-gradient-focus-pressed
+ * The background-gradient to use when the the button is focused and pressed. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} $background-gradient-disabled
+ * The background-gradient to use when the the button is disabled. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {color} $color
+ * The text color of the button
+ *
+ * @param {color} $color-over
+ * The text color of the button when the cursor is over the button
+ *
+ * @param {color} $color-focus
+ * The text color of the button when the button is focused
+ *
+ * @param {color} $color-pressed
+ * The text color of the button when the button is pressed
+ *
+ * @param {color} $color-focus-over
+ * The text color of the button when the button is focused and the cursor is over the button
+ *
+ * @param {color} $color-focus-pressed
+ * The text color of the button when the button is focused and pressed
+ *
+ * @param {color} $color-disabled
+ * The text color of the button when the button is disabled
+ *
+ * @param {number/list} $inner-border-width
+ * The inner border-width of the button
+ *
+ * @param {number/list} $inner-border-width-over
+ * The inner border-width of the button when the cursor is over the button
+ *
+ * @param {number/list} $inner-border-width-focus
+ * The inner border-width of the button when focused
+ *
+ * @param {number/list} $inner-border-width-pressed
+ * The inner border-width of the button when pressed
+ *
+ * @param {number/list} $inner-border-width-focus-over
+ * The inner border-width of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {number/list} $inner-border-width-focus-pressed
+ * The inner border-width of the button when focused and pressed
+ *
+ * @param {number/list} $inner-border-width-disabled
+ * The inner border-width of the button when disabled
+ *
+ * @param {color} $inner-border-color
+ * The inner border-color of the button
+ *
+ * @param {color} $inner-border-color-over
+ * The inner border-color of the button when the cursor is over the button
+ *
+ * @param {color} $inner-border-color-focus
+ * The inner border-color of the button when focused
+ *
+ * @param {color} $inner-border-color-pressed
+ * The inner border-color of the button when pressed
+ *
+ * @param {color} $inner-border-color-focus-over
+ * The inner border-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} $inner-border-color-focus-pressed
+ * The inner border-color of the button when focused and pressed
+ *
+ * @param {color} $inner-border-color-disabled
+ * The inner border-color of the button when disabled
+ *
+ * @param {number} $body-outline-width-focus
+ * The body outline width of the button when focused
+ *
+ * @param {string} $body-outline-style-focus
+ * The body outline-style of the button when focused
+ *
+ * @param {color} $body-outline-color-focus
+ * The body outline color of the button when focused
+ *
+ * @param {number} $font-size
+ * The font-size of the button
+ *
+ * @param {number} $font-size-over
+ * The font-size of the button when the cursor is over the button
+ *
+ * @param {number} $font-size-focus
+ * The font-size of the button when the button is focused
+ *
+ * @param {number} $font-size-pressed
+ * The font-size of the button when the button is pressed
+ *
+ * @param {number} $font-size-focus-over
+ * The font-size of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {number} $font-size-focus-pressed
+ * The font-size of the button when the button is focused and pressed
+ *
+ * @param {number} $font-size-disabled
+ * The font-size of the button when the button is disabled
+ *
+ * @param {string} $font-weight
+ * The font-weight of the button
+ *
+ * @param {string} $font-weight-over
+ * The font-weight of the button when the cursor is over the button
+ *
+ * @param {string} $font-weight-focus
+ * The font-weight of the button when the button is focused
+ *
+ * @param {string} $font-weight-pressed
+ * The font-weight of the button when the button is pressed
+ *
+ * @param {string} $font-weight-focus-over
+ * The font-weight of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} $font-weight-focus-pressed
+ * The font-weight of the button when the button is focused and pressed
+ *
+ * @param {string} $font-weight-disabled
+ * The font-weight of the button when the button is disabled
+ *
+ * @param {string} $font-family
+ * The font-family of the button
+ *
+ * @param {string} $font-family-over
+ * The font-family of the button when the cursor is over the button
+ *
+ * @param {string} $font-family-focus
+ * The font-family of the button when the button is focused
+ *
+ * @param {string} $font-family-pressed
+ * The font-family of the button when the button is pressed
+ *
+ * @param {string} $font-family-focus-over
+ * The font-family of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} $font-family-focus-pressed
+ * The font-family of the button when the button is focused and pressed
+ *
+ * @param {string} $font-family-disabled
+ * The font-family of the button when the button is disabled
+ *
+ * @param {number} $line-height
+ * The line-height of the button text
+ *
+ * @param {number} $icon-size
+ * The size of the button icon
+ *
+ * @param {number} $icon-spacing
+ * The space between the button's icon and text
+ *
+ * @param {color} $glyph-color
+ * The color of the button's {@link #glyph} icon
+ *
+ * @param {number} [$glyph-opacity=1]
+ * The opacity of the button's {@link #glyph} icon
+ *
+ * @param {number} $arrow-width
+ * The width of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} $arrow-height
+ * The height of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} $split-width
+ * The width of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {number} $split-height
+ * The height of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
+ * True to include the UI name in the file name of the {@link #cfg-menu}
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
+ * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-split-noline-arrows=$button-include-split-noline-arrows]
+ * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Used for hiding the split line when toolbar buttons are in their default
+ * state.
+ *
+ * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
+ * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
+ * is over the button. The over icon file name will have a "-o" suffix
+ *
+ * @param {number} [$opacity-disabled=1]
+ * The opacity of the button when it is disabled
+ *
+ * @param {number} [$inner-opacity-disabled=1]
+ * The opacity of the button's text and icon elements when when the button is disabled
+ *
+ * @member Ext.button.Button
+ */
+/**
+ * Creates a visual theme for a {@link #scale small} Button.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number} [$border-radius=$button-small-border-radius]
+ * The border-radius of the button
+ *
+ * @param {number} [$border-width=$button-small-border-width]
+ * The border-width of the button
+ *
+ * @param {color} [$border-color=$button-default-border-color]
+ * The border-color of the button
+ *
+ * @param {color} [$border-color-over=$button-default-border-color-over]
+ * The border-color of the button when the cursor is over the button
+ *
+ * @param {color} [$border-color-focus=$button-default-border-color-focus]
+ * The border-color of the button when focused
+ *
+ * @param {color} [$border-color-pressed=$button-default-border-color-pressed]
+ * The border-color of the button when pressed
+ *
+ * @param {color} [$border-color-focus-over=$button-default-border-color-focus-over]
+ * The border-color of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {color} [$border-color-focus-pressed=$button-default-border-color-focus-pressed]
+ * The border-color of the button when focused and pressed
+ *
+ * @param {color} [$border-color-disabled=$button-default-border-color-disabled]
+ * The border-color of the button when disabled
+ *
+ * @param {number} [$padding=$button-small-padding]
+ * The amount of padding inside the border of the button on all sides
+ *
+ * @param {number} [$text-padding=$button-small-text-padding]
+ * The amount of horizontal space to add to the left and right of the button text
+ *
+ * @param {color} [$background-color=$button-default-background-color]
+ * The background-color of the button
+ *
+ * @param {color} [$background-color-over=$button-default-background-color-over]
+ * The background-color of the button when the cursor is over the button
+ *
+ * @param {color} [$background-color-focus=$button-default-background-color-focus]
+ * The background-color of the button when focused
+ *
+ * @param {color} [$background-color-pressed=$button-default-background-color-pressed]
+ * The background-color of the button when pressed
+ *
+ * @param {color} [$background-color-focus-over=$button-default-background-color-focus-over]
+ * The background-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} [$background-color-focus-pressed=$button-default-background-color-focus-pressed]
+ * The background-color of the button when focused and pressed
+ *
+ * @param {color} [$background-color-disabled=$button-default-background-color-disabled]
+ * The background-color of the button when disabled
+ *
+ * @param {string/list} [$background-gradient=$button-default-background-gradient]
+ * The background-gradient for the button. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-over=$button-default-background-gradient-over]
+ * The background-gradient to use when the cursor is over the button. Can be either the
+ * name of a predefined gradient or a list of color stops. Used as the `$type` parameter
+ * for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-focus=$button-default-background-gradient-focus]
+ * The background-gradient to use when the the button is focused. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-pressed=$button-default-background-gradient-pressed]
+ * The background-gradient to use when the the button is pressed. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} [$background-gradient-focus-over=$button-default-background-gradient-focus-over]
+ * The background-gradient to use when the the button is focused and the cursor is over
+ * the button. Can be either the name of a predefined gradient or a list of color stops.
+ * Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} [$background-gradient-focus-pressed=$button-default-background-gradient-focus-pressed]
+ * The background-gradient to use when the the button is focused and pressed. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-disabled=$button-default-background-gradient-disabled]
+ * The background-gradient to use when the the button is disabled. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {color} [$color=$button-default-color]
+ * The text color of the button
+ *
+ * @param {color} [$color-over=$button-default-color-over]
+ * The text color of the button when the cursor is over the button
+ *
+ * @param {color} [$color-focus=$button-default-color-focus]
+ * The text color of the button when the button is focused
+ *
+ * @param {color} [$color-pressed=$button-default-color-pressed]
+ * The text color of the button when the button is pressed
+ *
+ * @param {color} [$color-focus-over=$button-default-color-focus-over]
+ * The text color of the button when the button is focused and the cursor is over the button
+ *
+ * @param {color} [$color-focus-pressed=$button-default-color-focus-pressed]
+ * The text color of the button when the button is focused and pressed
+ *
+ * @param {color} [$color-disabled=$button-default-color-disabled]
+ * The text color of the button when the button is disabled
+ *
+ * @param {number/list} [$inner-border-width=$button-default-inner-border-width]
+ * The inner border-width of the button
+ *
+ * @param {number/list} [$inner-border-width-over=$button-default-inner-border-width-over]
+ * The inner border-width of the button when the cursor is over the button
+ *
+ * @param {number/list} [$inner-border-width-focus=$button-default-inner-border-width-focus]
+ * The inner border-width of the button when focused
+ *
+ * @param {number/list} [$inner-border-width-pressed=$button-default-inner-border-width-pressed]
+ * The inner border-width of the button when pressed
+ *
+ * @param {number/list} [$inner-border-width-focus-over=$button-default-inner-border-width-focus-over]
+ * The inner border-width of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {number/list} [$inner-border-width-focus-pressed=$button-default-inner-border-width-focus-pressed]
+ * The inner border-width of the button when focused and pressed
+ *
+ * @param {number/list} [$inner-border-width-disabled=$button-default-inner-border-width-disabled]
+ * The inner border-width of the button when disabled
+ *
+ * @param {color} [$inner-border-color=$button-default-inner-border-color]
+ * The inner border-color of the button
+ *
+ * @param {color} [$inner-border-color-over=$button-default-inner-border-color-over]
+ * The inner border-color of the button when the cursor is over the button
+ *
+ * @param {color} [$inner-border-color-focus=$button-default-inner-border-color-focus]
+ * The inner border-color of the button when focused
+ *
+ * @param {color} [$inner-border-color-pressed=$button-default-inner-border-color-pressed]
+ * The inner border-color of the button when pressed
+ *
+ * @param {color} [$inner-border-color-focus-over=$button-default-inner-border-color-focus-over]
+ * The inner border-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} [$inner-border-color-focus-pressed=$button-default-inner-border-color-focus-pressed]
+ * The inner border-color of the button when focused and pressed
+ *
+ * @param {color} [$inner-border-color-disabled=$button-default-inner-border-color-disabled]
+ * The inner border-color of the button when disabled
+ *
+ * @param {number} [$body-outline-width-focus=$button-default-body-outline-width-focus]
+ * The body outline width of the button when focused
+ *
+ * @param {number} [$body-outline-style-focus=$button-default-body-outline-style-focus]
+ * The body outline-style of the button when focused
+ *
+ * @param {number} [$body-outline-color-focus=$button-default-body-outline-color-focus]
+ * The body outline color of the button when focused
+ *
+ * @param {number} [$font-size=$button-small-font-size]
+ * The font-size of the button
+ *
+ * @param {number} [$font-size-over=$button-small-font-size-over]
+ * The font-size of the button when the cursor is over the button
+ *
+ * @param {number} [$font-size-focus=$button-small-font-size-focus]
+ * The font-size of the button when the button is focused
+ *
+ * @param {number} [$font-size-pressed=$button-small-font-size-pressed]
+ * The font-size of the button when the button is pressed
+ *
+ * @param {number} [$font-size-focus-over=$button-small-font-size-focus-over]
+ * The font-size of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {number} [$font-size-focus-pressed=$button-small-font-size-focus-pressed]
+ * The font-size of the button when the button is focused and pressed
+ *
+ * @param {number} [$font-size-disabled=$button-small-font-size-disabled]
+ * The font-size of the button when the button is disabled
+ *
+ * @param {string} [$font-weight=$button-small-font-weight]
+ * The font-weight of the button
+ *
+ * @param {string} [$font-weight-over=$button-small-font-weight-over]
+ * The font-weight of the button when the cursor is over the button
+ *
+ * @param {string} [$font-weight-focus=$button-small-font-weight-focus]
+ * The font-weight of the button when the button is focused
+ *
+ * @param {string} [$font-weight-pressed=$button-small-font-weight-pressed]
+ * The font-weight of the button when the button is pressed
+ *
+ * @param {string} [$font-weight-focus-over=$button-small-font-weight-focus-over]
+ * The font-weight of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} [$font-weight-focus-pressed=$button-small-font-weight-focus-pressed]
+ * The font-weight of the button when the button is focused and pressed
+ *
+ * @param {string} [$font-weight-disabled=$button-small-font-weight-disabled]
+ * The font-weight of the button when the button is disabled
+ *
+ * @param {string} [$font-family=$button-small-font-family]
+ * The font-family of the button
+ *
+ * @param {string} [$font-family-over=$button-small-font-family-over]
+ * The font-family of the button when the cursor is over the button
+ *
+ * @param {string} [$font-family-focus=$button-small-font-family-focus]
+ * The font-family of the button when the button is focused
+ *
+ * @param {string} [$font-family-pressed=$button-small-font-family-pressed]
+ * The font-family of the button when the button is pressed
+ *
+ * @param {string} [$font-family-focus-over=$button-small-font-family-focus-over]
+ * The font-family of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} [$font-family-focus-pressed=$button-small-font-family-focus-pressed]
+ * The font-family of the button when the button is focused and pressed
+ *
+ * @param {string} [$font-family-disabled=$button-small-font-family-disabled]
+ * The font-family of the button when the button is disabled
+ *
+ * @param {number} [$line-height=$button-small-line-height]
+ * The line-height of the button text
+ *
+ * @param {number} [$icon-size=$button-small-icon-size]
+ * The size of the button icon
+ *
+ * @param {number} [$icon-spacing=$button-small-icon-spacing]
+ * The space between the button's icon and text
+ *
+ * @param {color} [$glyph-color=$button-default-glyph-color]
+ * The color of the button's {@link #glyph} icon
+ *
+ * @param {number} [$glyph-opacity=$button-default-glyph-opacity]
+ * The opacity of the button's {@link #glyph} icon
+ *
+ * @param {number} [$arrow-width=$button-small-arrow-width]
+ * The width of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} [$arrow-height=$button-small-arrow-height]
+ * The height of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} [$split-width=$button-small-split-width]
+ * The width of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {number} [$split-height=$button-small-split-height]
+ * The height of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
+ * True to include the UI name in the file name of the {@link #cfg-menu}
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
+ * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-split-noline-arrows=$button-include-split-noline-arrows]
+ * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Used for hiding the split line when toolbar buttons are in their default
+ * state.
+ *
+ * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
+ * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
+ * is over the button. The over icon file name will have a "-o" suffix
+ *
+ * @param {number} [$opacity-disabled=$button-opacity-disabled]
+ * The opacity of the button when it is disabled
+ *
+ * @param {number} [$inner-opacity-disabled=$button-inner-opacity-disabled]
+ * The opacity of the button's text and icon elements when when the button is disabled
+ *
+ * @member Ext.button.Button
+ */
+/**
+ * Creates a visual theme for a {@link #scale small} toolbar Button.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number} [$border-radius=$button-small-border-radius]
+ * The border-radius of the button
+ *
+ * @param {number} [$border-width=$button-small-border-width]
+ * The border-width of the button
+ *
+ * @param {color} [$border-color=$button-toolbar-border-color]
+ * The border-color of the button
+ *
+ * @param {color} [$border-color-over=$button-toolbar-border-color-over]
+ * The border-color of the button when the cursor is over the button
+ *
+ * @param {color} [$border-color-focus=$button-toolbar-border-color-focus]
+ * The border-color of the button when focused
+ *
+ * @param {color} [$border-color-pressed=$button-toolbar-border-color-pressed]
+ * The border-color of the button when pressed
+ *
+ * @param {color} [$border-color-focus-over=$button-toolbar-border-color-focus-over]
+ * The border-color of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {color} [$border-color-focus-pressed=$button-toolbar-border-color-focus-pressed]
+ * The border-color of the button when focused and pressed
+ *
+ * @param {color} [$border-color-disabled=$button-toolbar-border-color-disabled]
+ * The border-color of the button when disabled
+ *
+ * @param {number} [$padding=$button-small-padding]
+ * The amount of padding inside the border of the button on all sides
+ *
+ * @param {number} [$text-padding=$button-small-text-padding]
+ * The amount of horizontal space to add to the left and right of the button text
+ *
+ * @param {color} [$background-color=$button-toolbar-background-color]
+ * The background-color of the button
+ *
+ * @param {color} [$background-color-over=$button-toolbar-background-color-over]
+ * The background-color of the button when the cursor is over the button
+ *
+ * @param {color} [$background-color-focus=$button-toolbar-background-color-focus]
+ * The background-color of the button when focused
+ *
+ * @param {color} [$background-color-pressed=$button-toolbar-background-color-pressed]
+ * The background-color of the button when pressed
+ *
+ * @param {color} [$background-color-focus-over=$button-toolbar-background-color-focus-over]
+ * The background-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} [$background-color-focus-pressed=$button-toolbar-background-color-focus-pressed]
+ * The background-color of the button when focused and pressed
+ *
+ * @param {color} [$background-color-disabled=$button-toolbar-background-color-disabled]
+ * The background-color of the button when disabled
+ *
+ * @param {string/list} [$background-gradient=$button-toolbar-background-gradient]
+ * The background-gradient for the button. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-over=$button-toolbar-background-gradient-over]
+ * The background-gradient to use when the cursor is over the button. Can be either the
+ * name of a predefined gradient or a list of color stops. Used as the `$type` parameter
+ * for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-focus=$button-toolbar-background-gradient-focus]
+ * The background-gradient to use when the the button is focused. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-pressed=$button-toolbar-background-gradient-pressed]
+ * The background-gradient to use when the the button is pressed. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} [$background-gradient-focus-over=$button-toolbar-background-gradient-focus-over]
+ * The background-gradient to use when the the button is focused and the cursor is over
+ * the button. Can be either the name of a predefined gradient or a list of color stops.
+ * Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} [$background-gradient-focus-pressed=$button-toolbar-background-gradient-focus-pressed]
+ * The background-gradient to use when the the button is focused and pressed. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-disabled=$button-toolbar-background-gradient-disabled]
+ * The background-gradient to use when the the button is disabled. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {color} [$color=$button-toolbar-color]
+ * The text color of the button
+ *
+ * @param {color} [$color-over=$button-toolbar-color-over]
+ * The text color of the button when the cursor is over the button
+ *
+ * @param {color} [$color-focus=$button-toolbar-color-focus]
+ * The text color of the button when the button is focused
+ *
+ * @param {color} [$color-pressed=$button-toolbar-color-pressed]
+ * The text color of the button when the button is pressed
+ *
+ * @param {color} [$color-focus-over=$button-toolbar-color-focus-over]
+ * The text color of the button when the button is focused and the cursor is over the button
+ *
+ * @param {color} [$color-focus-pressed=$button-toolbar-color-focus-pressed]
+ * The text color of the button when the button is focused and pressed
+ *
+ * @param {color} [$color-disabled=$button-toolbar-color-disabled]
+ * The text color of the button when the button is disabled
+ *
+ * @param {number/list} [$inner-border-width=$button-toolbar-inner-border-width]
+ * The inner border-width of the button
+ *
+ * @param {number/list} [$inner-border-width-over=$button-toolbar-inner-border-width-over]
+ * The inner border-width of the button when the cursor is over the button
+ *
+ * @param {number/list} [$inner-border-width-focus=$button-toolbar-inner-border-width-focus]
+ * The inner border-width of the button when focused
+ *
+ * @param {number/list} [$inner-border-width-pressed=$button-toolbar-inner-border-width-pressed]
+ * The inner border-width of the button when pressed
+ *
+ * @param {number/list} [$inner-border-width-focus-over=$button-toolbar-inner-border-width-focus-over]
+ * The inner border-width of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {number/list} [$inner-border-width-focus-pressed=$button-toolbar-inner-border-width-focus-pressed]
+ * The inner border-width of the button when focused and pressed
+ *
+ * @param {number/list} [$inner-border-width-disabled=$button-toolbar-inner-border-width-disabled]
+ * The inner border-width of the button when disabled
+ *
+ * @param {color} [$inner-border-color=$button-toolbar-inner-border-color]
+ * The inner border-color of the button
+ *
+ * @param {color} [$inner-border-color-over=$button-toolbar-inner-border-color-over]
+ * The inner border-color of the button when the cursor is over the button
+ *
+ * @param {color} [$inner-border-color-focus=$button-toolbar-inner-border-color-focus]
+ * The inner border-color of the button when focused
+ *
+ * @param {color} [$inner-border-color-pressed=$button-toolbar-inner-border-color-pressed]
+ * The inner border-color of the button when pressed
+ *
+ * @param {color} [$inner-border-color-focus-over=$button-toolbar-inner-border-color-focus-over]
+ * The inner border-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} [$inner-border-color-focus-pressed=$button-toolbar-inner-border-color-focus-pressed]
+ * The inner border-color of the button when focused and pressed
+ *
+ * @param {color} [$inner-border-color-disabled=$button-toolbar-inner-border-color-disabled]
+ * The inner border-color of the button when disabled
+ *
+ * @param {number} [$body-outline-width-focus=$button-toolbar-body-outline-width-focus]
+ * The body outline width of the button when focused
+ *
+ * @param {number} [$body-outline-style-focus=$button-toolbar-body-outline-style-focus]
+ * The body outline-style of the button when focused
+ *
+ * @param {number} [$body-outline-color-focus=$button-toolbar-body-outline-color-focus]
+ * The body outline color of the button when focused
+ *
+ * @param {number} [$font-size=$button-small-font-size]
+ * The font-size of the button
+ *
+ * @param {number} [$font-size-over=$button-small-font-size-over]
+ * The font-size of the button when the cursor is over the button
+ *
+ * @param {number} [$font-size-focus=$button-small-font-size-focus]
+ * The font-size of the button when the button is focused
+ *
+ * @param {number} [$font-size-pressed=$button-small-font-size-pressed]
+ * The font-size of the button when the button is pressed
+ *
+ * @param {number} [$font-size-focus-over=$button-small-font-size-focus-over]
+ * The font-size of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {number} [$font-size-focus-pressed=$button-small-font-size-focus-pressed]
+ * The font-size of the button when the button is focused and pressed
+ *
+ * @param {number} [$font-size-disabled=$button-small-font-size-disabled]
+ * The font-size of the button when the button is disabled
+ *
+ * @param {string} [$font-weight=$button-small-font-weight]
+ * The font-weight of the button
+ *
+ * @param {string} [$font-weight-over=$button-small-font-weight-over]
+ * The font-weight of the button when the cursor is over the button
+ *
+ * @param {string} [$font-weight-focus=$button-small-font-weight-focus]
+ * The font-weight of the button when the button is focused
+ *
+ * @param {string} [$font-weight-pressed=$button-small-font-weight-pressed]
+ * The font-weight of the button when the button is pressed
+ *
+ * @param {string} [$font-weight-focus-over=$button-small-font-weight-focus-over]
+ * The font-weight of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} [$font-weight-focus-pressed=$button-small-font-weight-focus-pressed]
+ * The font-weight of the button when the button is focused and pressed
+ *
+ * @param {string} [$font-weight-disabled=$button-small-font-weight-disabled]
+ * The font-weight of the button when the button is disabled
+ *
+ * @param {string} [$font-family=$button-small-font-family]
+ * The font-family of the button
+ *
+ * @param {string} [$font-family-over=$button-small-font-family-over]
+ * The font-family of the button when the cursor is over the button
+ *
+ * @param {string} [$font-family-focus=$button-small-font-family-focus]
+ * The font-family of the button when the button is focused
+ *
+ * @param {string} [$font-family-pressed=$button-small-font-family-pressed]
+ * The font-family of the button when the button is pressed
+ *
+ * @param {string} [$font-family-focus-over=$button-small-font-family-focus-over]
+ * The font-family of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} [$font-family-focus-pressed=$button-small-font-family-focus-pressed]
+ * The font-family of the button when the button is focused and pressed
+ *
+ * @param {string} [$font-family-disabled=$button-small-font-family-disabled]
+ * The font-family of the button when the button is disabled
+ *
+ * @param {number} [$line-height=$button-small-line-height]
+ * The line-height of the button text
+ *
+ * @param {number} [$icon-size=$button-small-icon-size]
+ * The size of the button icon
+ *
+ * @param {number} [$icon-spacing=$button-small-icon-spacing]
+ * The space between the button's icon and text
+ *
+ * @param {color} [$glyph-color=$button-toolbar-glyph-color]
+ * The color of the button's {@link #glyph} icon
+ *
+ * @param {number} [$glyph-opacity=$button-toolbar-glyph-opacity]
+ * The opacity of the button's {@link #glyph} icon
+ *
+ * @param {number} [$arrow-width=$button-small-arrow-width]
+ * The width of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} [$arrow-height=$button-small-arrow-height]
+ * The height of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} [$split-width=$button-small-split-width]
+ * The width of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {number} [$split-height=$button-small-split-height]
+ * The height of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
+ * True to include the UI name in the file name of the {@link #cfg-menu}
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
+ * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-split-noline-arrows=$button-toolbar-include-split-noline-arrows]
+ * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Used for hiding the split line when toolbar buttons are in their default
+ * state.
+ *
+ * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
+ * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
+ * is over the button. The over icon file name will have a "-o" suffix
+ *
+ * @param {number} [$opacity-disabled=$button-toolbar-opacity-disabled]
+ * The opacity of the button when it is disabled
+ *
+ * @param {number} [$inner-opacity-disabled=$button-toolbar-inner-opacity-disabled]
+ * The opacity of the button's text and icon elements when when the button is disabled
+ *
+ * @member Ext.button.Button
+ */
+/**
+ * Creates a visual theme for a {@link #scale medium} Button.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number} [$border-radius=$button-medium-border-radius]
+ * The border-radius of the button
+ *
+ * @param {number} [$border-width=$button-medium-border-width]
+ * The border-width of the button
+ *
+ * @param {color} [$border-color=$button-default-border-color]
+ * The border-color of the button
+ *
+ * @param {color} [$border-color-over=$button-default-border-color-over]
+ * The border-color of the button when the cursor is over the button
+ *
+ * @param {color} [$border-color-focus=$button-default-border-color-focus]
+ * The border-color of the button when focused
+ *
+ * @param {color} [$border-color-pressed=$button-default-border-color-pressed]
+ * The border-color of the button when pressed
+ *
+ * @param {color} [$border-color-focus-over=$button-default-border-color-focus-over]
+ * The border-color of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {color} [$border-color-focus-pressed=$button-default-border-color-focus-pressed]
+ * The border-color of the button when focused and pressed
+ *
+ * @param {color} [$border-color-disabled=$button-default-border-color-disabled]
+ * The border-color of the button when disabled
+ *
+ * @param {number} [$padding=$button-medium-padding]
+ * The amount of padding inside the border of the button on all sides
+ *
+ * @param {number} [$text-padding=$button-medium-text-padding]
+ * The amount of horizontal space to add to the left and right of the button text
+ *
+ * @param {color} [$background-color=$button-default-background-color]
+ * The background-color of the button
+ *
+ * @param {color} [$background-color-over=$button-default-background-color-over]
+ * The background-color of the button when the cursor is over the button
+ *
+ * @param {color} [$background-color-focus=$button-default-background-color-focus]
+ * The background-color of the button when focused
+ *
+ * @param {color} [$background-color-pressed=$button-default-background-color-pressed]
+ * The background-color of the button when pressed
+ *
+ * @param {color} [$background-color-focus-over=$button-default-background-color-focus-over]
+ * The background-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} [$background-color-focus-pressed=$button-default-background-color-focus-pressed]
+ * The background-color of the button when focused and pressed
+ *
+ * @param {color} [$background-color-disabled=$button-default-background-color-disabled]
+ * The background-color of the button when disabled
+ *
+ * @param {string/list} [$background-gradient=$button-default-background-gradient]
+ * The background-gradient for the button. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-over=$button-default-background-gradient-over]
+ * The background-gradient to use when the cursor is over the button. Can be either the
+ * name of a predefined gradient or a list of color stops. Used as the `$type` parameter
+ * for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-focus=$button-default-background-gradient-focus]
+ * The background-gradient to use when the the button is focused. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-pressed=$button-default-background-gradient-pressed]
+ * The background-gradient to use when the the button is pressed. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} [$background-gradient-focus-over=$button-default-background-gradient-focus-over]
+ * The background-gradient to use when the the button is focused and the cursor is over
+ * the button. Can be either the name of a predefined gradient or a list of color stops.
+ * Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} [$background-gradient-focus-pressed=$button-default-background-gradient-focus-pressed]
+ * The background-gradient to use when the the button is focused and pressed. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-disabled=$button-default-background-gradient-disabled]
+ * The background-gradient to use when the the button is disabled. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {color} [$color=$button-default-color]
+ * The text color of the button
+ *
+ * @param {color} [$color-over=$button-default-color-over]
+ * The text color of the button when the cursor is over the button
+ *
+ * @param {color} [$color-focus=$button-default-color-focus]
+ * The text color of the button when the button is focused
+ *
+ * @param {color} [$color-pressed=$button-default-color-pressed]
+ * The text color of the button when the button is pressed
+ *
+ * @param {color} [$color-focus-over=$button-default-color-focus-over]
+ * The text color of the button when the button is focused and the cursor is over the button
+ *
+ * @param {color} [$color-focus-pressed=$button-default-color-focus-pressed]
+ * The text color of the button when the button is focused and pressed
+ *
+ * @param {color} [$color-disabled=$button-default-color-disabled]
+ * The text color of the button when the button is disabled
+ *
+ * @param {number/list} [$inner-border-width=$button-default-inner-border-width]
+ * The inner border-width of the button
+ *
+ * @param {number/list} [$inner-border-width-over=$button-default-inner-border-width-over]
+ * The inner border-width of the button when the cursor is over the button
+ *
+ * @param {number/list} [$inner-border-width-focus=$button-default-inner-border-width-focus]
+ * The inner border-width of the button when focused
+ *
+ * @param {number/list} [$inner-border-width-pressed=$button-default-inner-border-width-pressed]
+ * The inner border-width of the button when pressed
+ *
+ * @param {number/list} [$inner-border-width-focus-over=$button-default-inner-border-width-focus-over]
+ * The inner border-width of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {number/list} [$inner-border-width-focus-pressed=$button-default-inner-border-width-focus-pressed]
+ * The inner border-width of the button when focused and pressed
+ *
+ * @param {number/list} [$inner-border-width-disabled=$button-default-inner-border-width-disabled]
+ * The inner border-width of the button when disabled
+ *
+ * @param {color} [$inner-border-color=$button-default-inner-border-color]
+ * The inner border-color of the button
+ *
+ * @param {color} [$inner-border-color-over=$button-default-inner-border-color-over]
+ * The inner border-color of the button when the cursor is over the button
+ *
+ * @param {color} [$inner-border-color-focus=$button-default-inner-border-color-focus]
+ * The inner border-color of the button when focused
+ *
+ * @param {color} [$inner-border-color-pressed=$button-default-inner-border-color-pressed]
+ * The inner border-color of the button when pressed
+ *
+ * @param {color} [$inner-border-color-focus-over=$button-default-inner-border-color-focus-over]
+ * The inner border-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} [$inner-border-color-focus-pressed=$button-default-inner-border-color-focus-pressed]
+ * The inner border-color of the button when focused and pressed
+ *
+ * @param {color} [$inner-border-color-disabled=$button-default-inner-border-color-disabled]
+ * The inner border-color of the button when disabled
+ *
+ * @param {number} [$body-outline-width-focus=$button-default-body-outline-width-focus]
+ * The body outline width of the button when focused
+ *
+ * @param {number} [$body-outline-style-focus=$button-default-body-outline-style-focus]
+ * The body outline-style of the button when focused
+ *
+ * @param {number} [$body-outline-color-focus=$button-default-body-outline-color-focus]
+ * The body outline color of the button when focused
+ *
+ * @param {number} [$font-size=$button-medium-font-size]
+ * The font-size of the button
+ *
+ * @param {number} [$font-size-over=$button-medium-font-size-over]
+ * The font-size of the button when the cursor is over the button
+ *
+ * @param {number} [$font-size-focus=$button-medium-font-size-focus]
+ * The font-size of the button when the button is focused
+ *
+ * @param {number} [$font-size-pressed=$button-medium-font-size-pressed]
+ * The font-size of the button when the button is pressed
+ *
+ * @param {number} [$font-size-focus-over=$button-medium-font-size-focus-over]
+ * The font-size of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {number} [$font-size-focus-pressed=$button-medium-font-size-focus-pressed]
+ * The font-size of the button when the button is focused and pressed
+ *
+ * @param {number} [$font-size-disabled=$button-medium-font-size-disabled]
+ * The font-size of the button when the button is disabled
+ *
+ * @param {string} [$font-weight=$button-medium-font-weight]
+ * The font-weight of the button
+ *
+ * @param {string} [$font-weight-over=$button-medium-font-weight-over]
+ * The font-weight of the button when the cursor is over the button
+ *
+ * @param {string} [$font-weight-focus=$button-medium-font-weight-focus]
+ * The font-weight of the button when the button is focused
+ *
+ * @param {string} [$font-weight-pressed=$button-medium-font-weight-pressed]
+ * The font-weight of the button when the button is pressed
+ *
+ * @param {string} [$font-weight-focus-over=$button-medium-font-weight-focus-over]
+ * The font-weight of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} [$font-weight-focus-pressed=$button-medium-font-weight-focus-pressed]
+ * The font-weight of the button when the button is focused and pressed
+ *
+ * @param {string} [$font-weight-disabled=$button-medium-font-weight-disabled]
+ * The font-weight of the button when the button is disabled
+ *
+ * @param {string} [$font-family=$button-medium-font-family]
+ * The font-family of the button
+ *
+ * @param {string} [$font-family-over=$button-medium-font-family-over]
+ * The font-family of the button when the cursor is over the button
+ *
+ * @param {string} [$font-family-focus=$button-medium-font-family-focus]
+ * The font-family of the button when the button is focused
+ *
+ * @param {string} [$font-family-pressed=$button-medium-font-family-pressed]
+ * The font-family of the button when the button is pressed
+ *
+ * @param {string} [$font-family-focus-over=$button-medium-font-family-focus-over]
+ * The font-family of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} [$font-family-focus-pressed=$button-medium-font-family-focus-pressed]
+ * The font-family of the button when the button is focused and pressed
+ *
+ * @param {string} [$font-family-disabled=$button-medium-font-family-disabled]
+ * The font-family of the button when the button is disabled
+ *
+ * @param {number} [$line-height=$button-medium-line-height]
+ * The line-height of the button text
+ *
+ * @param {number} [$icon-size=$button-medium-icon-size]
+ * The size of the button icon
+ *
+ * @param {number} [$icon-spacing=$button-medium-icon-spacing]
+ * The space between the button's icon and text
+ *
+ * @param {color} [$glyph-color=$button-default-glyph-color]
+ * The color of the button's {@link #glyph} icon
+ *
+ * @param {number} [$glyph-opacity=$button-default-glyph-opacity]
+ * The opacity of the button's {@link #glyph} icon
+ *
+ * @param {number} [$arrow-width=$button-medium-arrow-width]
+ * The width of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} [$arrow-height=$button-medium-arrow-height]
+ * The height of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} [$split-width=$button-medium-split-width]
+ * The width of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {number} [$split-height=$button-medium-split-height]
+ * The height of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
+ * True to include the UI name in the file name of the {@link #cfg-menu}
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
+ * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-split-noline-arrows=$button-include-split-noline-arrows]
+ * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Used for hiding the split line when toolbar buttons are in their default
+ * state.
+ *
+ * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
+ * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
+ * is over the button. The over icon file name will have a "-o" suffix
+ *
+ * @param {number} [$opacity-disabled=$button-opacity-disabled]
+ * The opacity of the button when it is disabled
+ *
+ * @param {number} [$inner-opacity-disabled=$button-inner-opacity-disabled]
+ * The opacity of the button's text and icon elements when when the button is disabled
+ *
+ * @member Ext.button.Button
+ */
+/**
+ * Creates a visual theme for a {@link #scale medium} toolbar Button.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number} [$border-radius=$button-medium-border-radius]
+ * The border-radius of the button
+ *
+ * @param {number} [$border-width=$button-medium-border-width]
+ * The border-width of the button
+ *
+ * @param {color} [$border-color=$button-toolbar-border-color]
+ * The border-color of the button
+ *
+ * @param {color} [$border-color-over=$button-toolbar-border-color-over]
+ * The border-color of the button when the cursor is over the button
+ *
+ * @param {color} [$border-color-focus=$button-toolbar-border-color-focus]
+ * The border-color of the button when focused
+ *
+ * @param {color} [$border-color-pressed=$button-toolbar-border-color-pressed]
+ * The border-color of the button when pressed
+ *
+ * @param {color} [$border-color-focus-over=$button-toolbar-border-color-focus-over]
+ * The border-color of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {color} [$border-color-focus-pressed=$button-toolbar-border-color-focus-pressed]
+ * The border-color of the button when focused and pressed
+ *
+ * @param {color} [$border-color-disabled=$button-toolbar-border-color-disabled]
+ * The border-color of the button when disabled
+ *
+ * @param {number} [$padding=$button-medium-padding]
+ * The amount of padding inside the border of the button on all sides
+ *
+ * @param {number} [$text-padding=$button-medium-text-padding]
+ * The amount of horizontal space to add to the left and right of the button text
+ *
+ * @param {color} [$background-color=$button-toolbar-background-color]
+ * The background-color of the button
+ *
+ * @param {color} [$background-color-over=$button-toolbar-background-color-over]
+ * The background-color of the button when the cursor is over the button
+ *
+ * @param {color} [$background-color-focus=$button-toolbar-background-color-focus]
+ * The background-color of the button when focused
+ *
+ * @param {color} [$background-color-pressed=$button-toolbar-background-color-pressed]
+ * The background-color of the button when pressed
+ *
+ * @param {color} [$background-color-focus-over=$button-toolbar-background-color-focus-over]
+ * The background-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} [$background-color-focus-pressed=$button-toolbar-background-color-focus-pressed]
+ * The background-color of the button when focused and pressed
+ *
+ * @param {color} [$background-color-disabled=$button-toolbar-background-color-disabled]
+ * The background-color of the button when disabled
+ *
+ * @param {string/list} [$background-gradient=$button-toolbar-background-gradient]
+ * The background-gradient for the button. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-over=$button-toolbar-background-gradient-over]
+ * The background-gradient to use when the cursor is over the button. Can be either the
+ * name of a predefined gradient or a list of color stops. Used as the `$type` parameter
+ * for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-focus=$button-toolbar-background-gradient-focus]
+ * The background-gradient to use when the the button is focused. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-pressed=$button-toolbar-background-gradient-pressed]
+ * The background-gradient to use when the the button is pressed. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} [$background-gradient-focus-over=$button-toolbar-background-gradient-focus-over]
+ * The background-gradient to use when the the button is focused and the cursor is over
+ * the button. Can be either the name of a predefined gradient or a list of color stops.
+ * Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} [$background-gradient-focus-pressed=$button-toolbar-background-gradient-focus-pressed]
+ * The background-gradient to use when the the button is focused and pressed. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-disabled=$button-toolbar-background-gradient-disabled]
+ * The background-gradient to use when the the button is disabled. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {color} [$color=$button-toolbar-color]
+ * The text color of the button
+ *
+ * @param {color} [$color-over=$button-toolbar-color-over]
+ * The text color of the button when the cursor is over the button
+ *
+ * @param {color} [$color-focus=$button-toolbar-color-focus]
+ * The text color of the button when the button is focused
+ *
+ * @param {color} [$color-pressed=$button-toolbar-color-pressed]
+ * The text color of the button when the button is pressed
+ *
+ * @param {color} [$color-focus-over=$button-toolbar-color-focus-over]
+ * The text color of the button when the button is focused and the cursor is over the button
+ *
+ * @param {color} [$color-focus-pressed=$button-toolbar-color-focus-pressed]
+ * The text color of the button when the button is focused and pressed
+ *
+ * @param {color} [$color-disabled=$button-toolbar-color-disabled]
+ * The text color of the button when the button is disabled
+ *
+ * @param {number/list} [$inner-border-width=$button-toolbar-inner-border-width]
+ * The inner border-width of the button
+ *
+ * @param {number/list} [$inner-border-width-over=$button-toolbar-inner-border-width-over]
+ * The inner border-width of the button when the cursor is over the button
+ *
+ * @param {number/list} [$inner-border-width-focus=$button-toolbar-inner-border-width-focus]
+ * The inner border-width of the button when focused
+ *
+ * @param {number/list} [$inner-border-width-pressed=$button-toolbar-inner-border-width-pressed]
+ * The inner border-width of the button when pressed
+ *
+ * @param {number/list} [$inner-border-width-focus-over=$button-toolbar-inner-border-width-focus-over]
+ * The inner border-width of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {number/list} [$inner-border-width-focus-pressed=$button-toolbar-inner-border-width-focus-pressed]
+ * The inner border-width of the button when focused and pressed
+ *
+ * @param {number/list} [$inner-border-width-disabled=$button-toolbar-inner-border-width-disabled]
+ * The inner border-width of the button when disabled
+ *
+ * @param {color} [$inner-border-color=$button-toolbar-inner-border-color]
+ * The inner border-color of the button
+ *
+ * @param {color} [$inner-border-color-over=$button-toolbar-inner-border-color-over]
+ * The inner border-color of the button when the cursor is over the button
+ *
+ * @param {color} [$inner-border-color-focus=$button-toolbar-inner-border-color-focus]
+ * The inner border-color of the button when focused
+ *
+ * @param {color} [$inner-border-color-pressed=$button-toolbar-inner-border-color-pressed]
+ * The inner border-color of the button when pressed
+ *
+ * @param {color} [$inner-border-color-focus-over=$button-toolbar-inner-border-color-focus-over]
+ * The inner border-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} [$inner-border-color-focus-pressed=$button-toolbar-inner-border-color-focus-pressed]
+ * The inner border-color of the button when focused and pressed
+ *
+ * @param {color} [$inner-border-color-disabled=$button-toolbar-inner-border-color-disabled]
+ * The inner border-color of the button when disabled
+ *
+ * @param {number} [$body-outline-width-focus=$button-toolbar-body-outline-width-focus]
+ * The body outline width of the button when focused
+ *
+ * @param {number} [$body-outline-style-focus=$button-toolbar-body-outline-style-focus]
+ * The body outline-style of the button when focused
+ *
+ * @param {number} [$body-outline-color-focus=$button-toolbar-body-outline-color-focus]
+ * The body outline color of the button when focused
+ *
+ * @param {number} [$font-size=$button-medium-font-size]
+ * The font-size of the button
+ *
+ * @param {number} [$font-size-over=$button-medium-font-size-over]
+ * The font-size of the button when the cursor is over the button
+ *
+ * @param {number} [$font-size-focus=$button-medium-font-size-focus]
+ * The font-size of the button when the button is focused
+ *
+ * @param {number} [$font-size-pressed=$button-medium-font-size-pressed]
+ * The font-size of the button when the button is pressed
+ *
+ * @param {number} [$font-size-focus-over=$button-medium-font-size-focus-over]
+ * The font-size of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {number} [$font-size-focus-pressed=$button-medium-font-size-focus-pressed]
+ * The font-size of the button when the button is focused and pressed
+ *
+ * @param {number} [$font-size-disabled=$button-medium-font-size-disabled]
+ * The font-size of the button when the button is disabled
+ *
+ * @param {string} [$font-weight=$button-medium-font-weight]
+ * The font-weight of the button
+ *
+ * @param {string} [$font-weight-over=$button-medium-font-weight-over]
+ * The font-weight of the button when the cursor is over the button
+ *
+ * @param {string} [$font-weight-focus=$button-medium-font-weight-focus]
+ * The font-weight of the button when the button is focused
+ *
+ * @param {string} [$font-weight-pressed=$button-medium-font-weight-pressed]
+ * The font-weight of the button when the button is pressed
+ *
+ * @param {string} [$font-weight-focus-over=$button-medium-font-weight-focus-over]
+ * The font-weight of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} [$font-weight-focus-pressed=$button-medium-font-weight-focus-pressed]
+ * The font-weight of the button when the button is focused and pressed
+ *
+ * @param {string} [$font-weight-disabled=$button-medium-font-weight-disabled]
+ * The font-weight of the button when the button is disabled
+ *
+ * @param {string} [$font-family=$button-medium-font-family]
+ * The font-family of the button
+ *
+ * @param {string} [$font-family-over=$button-medium-font-family-over]
+ * The font-family of the button when the cursor is over the button
+ *
+ * @param {string} [$font-family-focus=$button-medium-font-family-focus]
+ * The font-family of the button when the button is focused
+ *
+ * @param {string} [$font-family-pressed=$button-medium-font-family-pressed]
+ * The font-family of the button when the button is pressed
+ *
+ * @param {string} [$font-family-focus-over=$button-medium-font-family-focus-over]
+ * The font-family of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} [$font-family-focus-pressed=$button-medium-font-family-focus-pressed]
+ * The font-family of the button when the button is focused and pressed
+ *
+ * @param {string} [$font-family-disabled=$button-medium-font-family-disabled]
+ * The font-family of the button when the button is disabled
+ *
+ * @param {number} [$line-height=$button-medium-line-height]
+ * The line-height of the button text
+ *
+ * @param {number} [$icon-size=$button-medium-icon-size]
+ * The size of the button icon
+ *
+ * @param {number} [$icon-spacing=$button-medium-icon-spacing]
+ * The space between the button's icon and text
+ *
+ * @param {color} [$glyph-color=$button-toolbar-glyph-color]
+ * The color of the button's {@link #glyph} icon
+ *
+ * @param {number} [$glyph-opacity=$button-toolbar-glyph-opacity]
+ * The opacity of the button's {@link #glyph} icon
+ *
+ * @param {number} [$arrow-width=$button-medium-arrow-width]
+ * The width of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} [$arrow-height=$button-medium-arrow-height]
+ * The height of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} [$split-width=$button-medium-split-width]
+ * The width of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {number} [$split-height=$button-medium-split-height]
+ * The height of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
+ * True to include the UI name in the file name of the {@link #cfg-menu}
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
+ * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-split-noline-arrows=$button-toolbar-include-split-noline-arrows]
+ * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Used for hiding the split line when toolbar buttons are in their default
+ * state.
+ *
+ * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
+ * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
+ * is over the button. The over icon file name will have a "-o" suffix
+ *
+ * @param {number} [$opacity-disabled=$button-toolbar-opacity-disabled]
+ * The opacity of the button when it is disabled
+ *
+ * @param {number} [$inner-opacity-disabled=$button-toolbar-inner-opacity-disabled]
+ * The opacity of the button's text and icon elements when when the button is disabled
+ *
+ * @member Ext.button.Button
+ */
+/**
+ * Creates a visual theme for a {@link #scale large} Button.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number} [$border-radius=$button-large-border-radius]
+ * The border-radius of the button
+ *
+ * @param {number} [$border-width=$button-large-border-width]
+ * The border-width of the button
+ *
+ * @param {color} [$border-color=$button-default-border-color]
+ * The border-color of the button
+ *
+ * @param {color} [$border-color-over=$button-default-border-color-over]
+ * The border-color of the button when the cursor is over the button
+ *
+ * @param {color} [$border-color-focus=$button-default-border-color-focus]
+ * The border-color of the button when focused
+ *
+ * @param {color} [$border-color-pressed=$button-default-border-color-pressed]
+ * The border-color of the button when pressed
+ *
+ * @param {color} [$border-color-focus-over=$button-default-border-color-focus-over]
+ * The border-color of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {color} [$border-color-focus-pressed=$button-default-border-color-focus-pressed]
+ * The border-color of the button when focused and pressed
+ *
+ * @param {color} [$border-color-disabled=$button-default-border-color-disabled]
+ * The border-color of the button when disabled
+ *
+ * @param {number} [$padding=$button-large-padding]
+ * The amount of padding inside the border of the button on all sides
+ *
+ * @param {number} [$text-padding=$button-large-text-padding]
+ * The amount of horizontal space to add to the left and right of the button text
+ *
+ * @param {color} [$background-color=$button-default-background-color]
+ * The background-color of the button
+ *
+ * @param {color} [$background-color-over=$button-default-background-color-over]
+ * The background-color of the button when the cursor is over the button
+ *
+ * @param {color} [$background-color-focus=$button-default-background-color-focus]
+ * The background-color of the button when focused
+ *
+ * @param {color} [$background-color-pressed=$button-default-background-color-pressed]
+ * The background-color of the button when pressed
+ *
+ * @param {color} [$background-color-focus-over=$button-default-background-color-focus-over]
+ * The background-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} [$background-color-focus-pressed=$button-default-background-color-focus-pressed]
+ * The background-color of the button when focused and pressed
+ *
+ * @param {color} [$background-color-disabled=$button-default-background-color-disabled]
+ * The background-color of the button when disabled
+ *
+ * @param {string/list} [$background-gradient=$button-default-background-gradient]
+ * The background-gradient for the button. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-over=$button-default-background-gradient-over]
+ * The background-gradient to use when the cursor is over the button. Can be either the
+ * name of a predefined gradient or a list of color stops. Used as the `$type` parameter
+ * for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-focus=$button-default-background-gradient-focus]
+ * The background-gradient to use when the the button is focused. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-pressed=$button-default-background-gradient-pressed]
+ * The background-gradient to use when the the button is pressed. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} [$background-gradient-focus-over=$button-default-background-gradient-focus-over]
+ * The background-gradient to use when the the button is focused and the cursor is over
+ * the button. Can be either the name of a predefined gradient or a list of color stops.
+ * Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} [$background-gradient-focus-pressed=$button-default-background-gradient-focus-pressed]
+ * The background-gradient to use when the the button is focused and pressed. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-disabled=$button-default-background-gradient-disabled]
+ * The background-gradient to use when the the button is disabled. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {color} [$color=$button-default-color]
+ * The text color of the button
+ *
+ * @param {color} [$color-over=$button-default-color-over]
+ * The text color of the button when the cursor is over the button
+ *
+ * @param {color} [$color-focus=$button-default-color-focus]
+ * The text color of the button when the button is focused
+ *
+ * @param {color} [$color-pressed=$button-default-color-pressed]
+ * The text color of the button when the button is pressed
+ *
+ * @param {color} [$color-focus-over=$button-default-color-focus-over]
+ * The text color of the button when the button is focused and the cursor is over the button
+ *
+ * @param {color} [$color-focus-pressed=$button-default-color-focus-pressed]
+ * The text color of the button when the button is focused and pressed
+ *
+ * @param {color} [$color-disabled=$button-default-color-disabled]
+ * The text color of the button when the button is disabled
+ *
+ * @param {number/list} [$inner-border-width=$button-default-inner-border-width]
+ * The inner border-width of the button
+ *
+ * @param {number/list} [$inner-border-width-over=$button-default-inner-border-width-over]
+ * The inner border-width of the button when the cursor is over the button
+ *
+ * @param {number/list} [$inner-border-width-focus=$button-default-inner-border-width-focus]
+ * The inner border-width of the button when focused
+ *
+ * @param {number/list} [$inner-border-width-pressed=$button-default-inner-border-width-pressed]
+ * The inner border-width of the button when pressed
+ *
+ * @param {number/list} [$inner-border-width-focus-over=$button-default-inner-border-width-focus-over]
+ * The inner border-width of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {number/list} [$inner-border-width-focus-pressed=$button-default-inner-border-width-focus-pressed]
+ * The inner border-width of the button when focused and pressed
+ *
+ * @param {number/list} [$inner-border-width-disabled=$button-default-inner-border-width-disabled]
+ * The inner border-width of the button when disabled
+ *
+ * @param {color} [$inner-border-color=$button-default-inner-border-color]
+ * The inner border-color of the button
+ *
+ * @param {color} [$inner-border-color-over=$button-default-inner-border-color-over]
+ * The inner border-color of the button when the cursor is over the button
+ *
+ * @param {color} [$inner-border-color-focus=$button-default-inner-border-color-focus]
+ * The inner border-color of the button when focused
+ *
+ * @param {color} [$inner-border-color-pressed=$button-default-inner-border-color-pressed]
+ * The inner border-color of the button when pressed
+ *
+ * @param {color} [$inner-border-color-focus-over=$button-default-inner-border-color-focus-over]
+ * The inner border-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} [$inner-border-color-focus-pressed=$button-default-inner-border-color-focus-pressed]
+ * The inner border-color of the button when focused and pressed
+ *
+ * @param {color} [$inner-border-color-disabled=$button-default-inner-border-color-disabled]
+ * The inner border-color of the button when disabled
+ *
+ * @param {number} [$body-outline-width-focus=$button-default-body-outline-width-focus]
+ * The body outline width of the button when focused
+ *
+ * @param {number} [$body-outline-style-focus=$button-default-body-outline-style-focus]
+ * The body outline-style of the button when focused
+ *
+ * @param {number} [$body-outline-color-focus=$button-default-body-outline-color-focus]
+ * The body outline color of the button when focused
+ *
+ * @param {number} [$font-size=$button-large-font-size]
+ * The font-size of the button
+ *
+ * @param {number} [$font-size-over=$button-large-font-size-over]
+ * The font-size of the button when the cursor is over the button
+ *
+ * @param {number} [$font-size-focus=$button-large-font-size-focus]
+ * The font-size of the button when the button is focused
+ *
+ * @param {number} [$font-size-pressed=$button-large-font-size-pressed]
+ * The font-size of the button when the button is pressed
+ *
+ * @param {number} [$font-size-focus-over=$button-large-font-size-focus-over]
+ * The font-size of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {number} [$font-size-focus-pressed=$button-large-font-size-focus-pressed]
+ * The font-size of the button when the button is focused and pressed
+ *
+ * @param {number} [$font-size-disabled=$button-large-font-size-disabled]
+ * The font-size of the button when the button is disabled
+ *
+ * @param {string} [$font-weight=$button-large-font-weight]
+ * The font-weight of the button
+ *
+ * @param {string} [$font-weight-over=$button-large-font-weight-over]
+ * The font-weight of the button when the cursor is over the button
+ *
+ * @param {string} [$font-weight-focus=$button-large-font-weight-focus]
+ * The font-weight of the button when the button is focused
+ *
+ * @param {string} [$font-weight-pressed=$button-large-font-weight-pressed]
+ * The font-weight of the button when the button is pressed
+ *
+ * @param {string} [$font-weight-focus-over=$button-large-font-weight-focus-over]
+ * The font-weight of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} [$font-weight-focus-pressed=$button-large-font-weight-focus-pressed]
+ * The font-weight of the button when the button is focused and pressed
+ *
+ * @param {string} [$font-weight-disabled=$button-large-font-weight-disabled]
+ * The font-weight of the button when the button is disabled
+ *
+ * @param {string} [$font-family=$button-large-font-family]
+ * The font-family of the button
+ *
+ * @param {string} [$font-family-over=$button-large-font-family-over]
+ * The font-family of the button when the cursor is over the button
+ *
+ * @param {string} [$font-family-focus=$button-large-font-family-focus]
+ * The font-family of the button when the button is focused
+ *
+ * @param {string} [$font-family-pressed=$button-large-font-family-pressed]
+ * The font-family of the button when the button is pressed
+ *
+ * @param {string} [$font-family-focus-over=$button-large-font-family-focus-over]
+ * The font-family of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} [$font-family-focus-pressed=$button-large-font-family-focus-pressed]
+ * The font-family of the button when the button is focused and pressed
+ *
+ * @param {string} [$font-family-disabled=$button-large-font-family-disabled]
+ * The font-family of the button when the button is disabled
+ *
+ * @param {number} [$line-height=$button-large-line-height]
+ * The line-height of the button text
+ *
+ * @param {number} [$icon-size=$button-large-icon-size]
+ * The size of the button icon
+ *
+ * @param {number} [$icon-spacing=$button-large-icon-spacing]
+ * The space between the button's icon and text
+ *
+ * @param {color} [$glyph-color=$button-default-glyph-color]
+ * The color of the button's {@link #glyph} icon
+ *
+ * @param {number} [$glyph-opacity=$button-default-glyph-opacity]
+ * The opacity of the button's {@link #glyph} icon
+ *
+ * @param {number} [$arrow-width=$button-large-arrow-width]
+ * The width of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} [$arrow-height=$button-large-arrow-height]
+ * The height of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} [$split-width=$button-large-split-width]
+ * The width of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {number} [$split-height=$button-large-split-height]
+ * The height of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
+ * True to include the UI name in the file name of the {@link #cfg-menu}
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
+ * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-split-noline-arrows=$button-include-split-noline-arrows]
+ * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Used for hiding the split line when toolbar buttons are in their default
+ * state.
+ *
+ * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
+ * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
+ * is over the button. The over icon file name will have a "-o" suffix
+ *
+ * @param {number} [$opacity-disabled=$button-opacity-disabled]
+ * The opacity of the button when it is disabled
+ *
+ * @param {number} [$inner-opacity-disabled=$button-inner-opacity-disabled]
+ * The opacity of the button's text and icon elements when when the button is disabled
+ *
+ * @member Ext.button.Button
+ */
+/**
+ * Creates a visual theme for a {@link #scale large} toolbar Button.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number} [$border-radius=$button-large-border-radius]
+ * The border-radius of the button
+ *
+ * @param {number} [$border-width=$button-large-border-width]
+ * The border-width of the button
+ *
+ * @param {color} [$border-color=$button-toolbar-border-color]
+ * The border-color of the button
+ *
+ * @param {color} [$border-color-over=$button-toolbar-border-color-over]
+ * The border-color of the button when the cursor is over the button
+ *
+ * @param {color} [$border-color-focus=$button-toolbar-border-color-focus]
+ * The border-color of the button when focused
+ *
+ * @param {color} [$border-color-pressed=$button-toolbar-border-color-pressed]
+ * The border-color of the button when pressed
+ *
+ * @param {color} [$border-color-focus-over=$button-toolbar-border-color-focus-over]
+ * The border-color of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {color} [$border-color-focus-pressed=$button-toolbar-border-color-focus-pressed]
+ * The border-color of the button when focused and pressed
+ *
+ * @param {color} [$border-color-disabled=$button-toolbar-border-color-disabled]
+ * The border-color of the button when disabled
+ *
+ * @param {number} [$padding=$button-large-padding]
+ * The amount of padding inside the border of the button on all sides
+ *
+ * @param {number} [$text-padding=$button-large-text-padding]
+ * The amount of horizontal space to add to the left and right of the button text
+ *
+ * @param {color} [$background-color=$button-toolbar-background-color]
+ * The background-color of the button
+ *
+ * @param {color} [$background-color-over=$button-toolbar-background-color-over]
+ * The background-color of the button when the cursor is over the button
+ *
+ * @param {color} [$background-color-focus=$button-toolbar-background-color-focus]
+ * The background-color of the button when focused
+ *
+ * @param {color} [$background-color-pressed=$button-toolbar-background-color-pressed]
+ * The background-color of the button when pressed
+ *
+ * @param {color} [$background-color-focus-over=$button-toolbar-background-color-focus-over]
+ * The background-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} [$background-color-focus-pressed=$button-toolbar-background-color-focus-pressed]
+ * The background-color of the button when focused and pressed
+ *
+ * @param {color} [$background-color-disabled=$button-toolbar-background-color-disabled]
+ * The background-color of the button when disabled
+ *
+ * @param {string/list} [$background-gradient=$button-toolbar-background-gradient]
+ * The background-gradient for the button. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-over=$button-toolbar-background-gradient-over]
+ * The background-gradient to use when the cursor is over the button. Can be either the
+ * name of a predefined gradient or a list of color stops. Used as the `$type` parameter
+ * for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-focus=$button-toolbar-background-gradient-focus]
+ * The background-gradient to use when the the button is focused. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-pressed=$button-toolbar-background-gradient-pressed]
+ * The background-gradient to use when the the button is pressed. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} [$background-gradient-focus-over=$button-toolbar-background-gradient-focus-over]
+ * The background-gradient to use when the the button is focused and the cursor is over
+ * the button. Can be either the name of a predefined gradient or a list of color stops.
+ * Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string} [$background-gradient-focus-pressed=$button-toolbar-background-gradient-focus-pressed]
+ * The background-gradient to use when the the button is focused and pressed. Can be
+ * either the name of a predefined gradient or a list of color stops. Used as the `$type`
+ * parameter for {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$background-gradient-disabled=$button-toolbar-background-gradient-disabled]
+ * The background-gradient to use when the the button is disabled. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {color} [$color=$button-toolbar-color]
+ * The text color of the button
+ *
+ * @param {color} [$color-over=$button-toolbar-color-over]
+ * The text color of the button when the cursor is over the button
+ *
+ * @param {color} [$color-focus=$button-toolbar-color-focus]
+ * The text color of the button when the button is focused
+ *
+ * @param {color} [$color-pressed=$button-toolbar-color-pressed]
+ * The text color of the button when the button is pressed
+ *
+ * @param {color} [$color-focus-over=$button-toolbar-color-focus-over]
+ * The text color of the button when the button is focused and the cursor is over the button
+ *
+ * @param {color} [$color-focus-pressed=$button-toolbar-color-focus-pressed]
+ * The text color of the button when the button is focused and pressed
+ *
+ * @param {color} [$color-disabled=$button-toolbar-color-disabled]
+ * The text color of the button when the button is disabled
+ *
+ * @param {number/list} [$inner-border-width=$button-toolbar-inner-border-width]
+ * The inner border-width of the button
+ *
+ * @param {number/list} [$inner-border-width-over=$button-toolbar-inner-border-width-over]
+ * The inner border-width of the button when the cursor is over the button
+ *
+ * @param {number/list} [$inner-border-width-focus=$button-toolbar-inner-border-width-focus]
+ * The inner border-width of the button when focused
+ *
+ * @param {number/list} [$inner-border-width-pressed=$button-toolbar-inner-border-width-pressed]
+ * The inner border-width of the button when pressed
+ *
+ * @param {number/list} [$inner-border-width-focus-over=$button-toolbar-inner-border-width-focus-over]
+ * The inner border-width of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {number/list} [$inner-border-width-focus-pressed=$button-toolbar-inner-border-width-focus-pressed]
+ * The inner border-width of the button when focused and pressed
+ *
+ * @param {number/list} [$inner-border-width-disabled=$button-toolbar-inner-border-width-disabled]
+ * The inner border-width of the button when disabled
+ *
+ * @param {color} [$inner-border-color=$button-toolbar-inner-border-color]
+ * The inner border-color of the button
+ *
+ * @param {color} [$inner-border-color-over=$button-toolbar-inner-border-color-over]
+ * The inner border-color of the button when the cursor is over the button
+ *
+ * @param {color} [$inner-border-color-focus=$button-toolbar-inner-border-color-focus]
+ * The inner border-color of the button when focused
+ *
+ * @param {color} [$inner-border-color-pressed=$button-toolbar-inner-border-color-pressed]
+ * The inner border-color of the button when pressed
+ *
+ * @param {color} [$inner-border-color-focus-over=$button-toolbar-inner-border-color-focus-over]
+ * The inner border-color of the button when the button is focused and the cursor is over
+ * the button
+ *
+ * @param {color} [$inner-border-color-focus-pressed=$button-toolbar-inner-border-color-focus-pressed]
+ * The inner border-color of the button when focused and pressed
+ *
+ * @param {color} [$inner-border-color-disabled=$button-toolbar-inner-border-color-disabled]
+ * The inner border-color of the button when disabled
+ *
+ * @param {number} [$body-outline-width-focus=$button-toolbar-body-outline-width-focus]
+ * The body outline width of the button when focused
+ *
+ * @param {number} [$body-outline-style-focus=$button-toolbar-body-outline-style-focus]
+ * The body outline-style of the button when focused
+ *
+ * @param {number} [$body-outline-color-focus=$button-toolbar-body-outline-color-focus]
+ * The body outline color of the button when focused
+ *
+ * @param {number} [$font-size=$button-large-font-size]
+ * The font-size of the button
+ *
+ * @param {number} [$font-size-over=$button-large-font-size-over]
+ * The font-size of the button when the cursor is over the button
+ *
+ * @param {number} [$font-size-focus=$button-large-font-size-focus]
+ * The font-size of the button when the button is focused
+ *
+ * @param {number} [$font-size-pressed=$button-large-font-size-pressed]
+ * The font-size of the button when the button is pressed
+ *
+ * @param {number} [$font-size-focus-over=$button-large-font-size-focus-over]
+ * The font-size of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {number} [$font-size-focus-pressed=$button-large-font-size-focus-pressed]
+ * The font-size of the button when the button is focused and pressed
+ *
+ * @param {number} [$font-size-disabled=$button-large-font-size-disabled]
+ * The font-size of the button when the button is disabled
+ *
+ * @param {string} [$font-weight=$button-large-font-weight]
+ * The font-weight of the button
+ *
+ * @param {string} [$font-weight-over=$button-large-font-weight-over]
+ * The font-weight of the button when the cursor is over the button
+ *
+ * @param {string} [$font-weight-focus=$button-large-font-weight-focus]
+ * The font-weight of the button when the button is focused
+ *
+ * @param {string} [$font-weight-pressed=$button-large-font-weight-pressed]
+ * The font-weight of the button when the button is pressed
+ *
+ * @param {string} [$font-weight-focus-over=$button-large-font-weight-focus-over]
+ * The font-weight of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} [$font-weight-focus-pressed=$button-large-font-weight-focus-pressed]
+ * The font-weight of the button when the button is focused and pressed
+ *
+ * @param {string} [$font-weight-disabled=$button-large-font-weight-disabled]
+ * The font-weight of the button when the button is disabled
+ *
+ * @param {string} [$font-family=$button-large-font-family]
+ * The font-family of the button
+ *
+ * @param {string} [$font-family-over=$button-large-font-family-over]
+ * The font-family of the button when the cursor is over the button
+ *
+ * @param {string} [$font-family-focus=$button-large-font-family-focus]
+ * The font-family of the button when the button is focused
+ *
+ * @param {string} [$font-family-pressed=$button-large-font-family-pressed]
+ * The font-family of the button when the button is pressed
+ *
+ * @param {string} [$font-family-focus-over=$button-large-font-family-focus-over]
+ * The font-family of the button when the button is focused and the cursor is over the
+ * button
+ *
+ * @param {string} [$font-family-focus-pressed=$button-large-font-family-focus-pressed]
+ * The font-family of the button when the button is focused and pressed
+ *
+ * @param {string} [$font-family-disabled=$button-large-font-family-disabled]
+ * The font-family of the button when the button is disabled
+ *
+ * @param {number} [$line-height=$button-large-line-height]
+ * The line-height of the button text
+ *
+ * @param {number} [$icon-size=$button-large-icon-size]
+ * The size of the button icon
+ *
+ * @param {number} [$icon-spacing=$button-large-icon-spacing]
+ * The space between the button's icon and text
+ *
+ * @param {color} [$glyph-color=$button-toolbar-glyph-color]
+ * The color of the button's {@link #glyph} icon
+ *
+ * @param {number} [$glyph-opacity=$button-toolbar-glyph-opacity]
+ * The opacity of the button's {@link #glyph} icon
+ *
+ * @param {number} [$arrow-width=$button-large-arrow-width]
+ * The width of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} [$arrow-height=$button-large-arrow-height]
+ * The height of the button's {@link #cfg-menu} arrow
+ *
+ * @param {number} [$split-width=$button-large-split-width]
+ * The width of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {number} [$split-height=$button-large-split-height]
+ * The height of a {@link Ext.button.Split Split Button}'s arrow
+ *
+ * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
+ * True to include the UI name in the file name of the {@link #cfg-menu}
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
+ * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
+ *
+ * @param {boolean} [$include-split-noline-arrows=$button-toolbar-include-split-noline-arrows]
+ * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
+ * arrow icon. Used for hiding the split line when toolbar buttons are in their default
+ * state.
+ *
+ * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
+ * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
+ * is over the button. The over icon file name will have a "-o" suffix
+ *
+ * @param {number} [$opacity-disabled=$button-toolbar-opacity-disabled]
+ * The opacity of the button when it is disabled
+ *
+ * @param {number} [$inner-opacity-disabled=$button-toolbar-inner-opacity-disabled]
+ * The opacity of the button's text and icon elements when when the button is disabled
+ *
+ * @member Ext.button.Button
+ */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-btn-default-small {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 3px 3px 3px 3px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #384955; }
+
+/* */
+/* line 423, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-default-small {
+ border-color: #162938; }
+
+/* line 430, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-button-default-small {
+ height: 16px; }
+
+/* line 435, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-inner-default-small {
+ font: 300 12px/16px "Roboto", sans-serif;
+ color: white;
+ padding: 0 5px;
+ max-width: 100%; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-right > .x-btn-inner-default-small, .x-btn-icon-left > .x-btn-inner-default-small {
+ max-width: calc(100% - 16px); }
+
+/* line 453, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-icon-el-default-small {
+ height: 16px; }
+ /* line 457, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-left > .x-btn-icon-el-default-small, .x-btn-icon-right > .x-btn-icon-el-default-small {
+ width: 16px; }
+ /* line 462, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-top > .x-btn-icon-el-default-small, .x-btn-icon-bottom > .x-btn-icon-el-default-small {
+ min-width: 16px; }
+ /* line 466, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-el-default-small.x-btn-glyph {
+ font-size: 16px;
+ line-height: 16px;
+ color: white;
+ opacity: 0.5; }
+ /* line 493, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-small {
+ margin-right: 0px; }
+ /* line 497, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-small.x-rtl {
+ margin-right: 0;
+ margin-left: 0px; }
+ /* line 504, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-small {
+ margin-left: 0px; }
+ /* line 508, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-small.x-rtl {
+ margin-left: 0;
+ margin-right: 0px; }
+ /* line 515, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-small {
+ margin-bottom: 5px; }
+ /* line 519, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-small {
+ margin-top: 5px; }
+
+/* line 525, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-small {
+ padding-right: 5px; }
+/* line 528, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-small {
+ margin-right: 5px; }
+
+/* line 535, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-bottom > .x-btn-button-default-small,
+.x-btn-split-bottom > .x-btn-button-default-small {
+ padding-bottom: 3px; }
+
+/* line 541, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-small.x-btn-arrow-right:after {
+ width: 16px;
+ padding-right: 16px;
+ background-image: url(images/button/default-small-arrow.png); }
+/* line 554, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-small.x-rtl.x-btn-arrow-right:after {
+ background-image: url(images/button/default-small-arrow-rtl.png); }
+/* line 563, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-small.x-btn-arrow-bottom:after {
+ height: 13px;
+ background-image: url(images/button/default-small-arrow.png); }
+
+/* line 583, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-small.x-btn-split-right:after {
+ width: 20px;
+ padding-right: 20px;
+ background-image: url(images/button/default-small-s-arrow.png); }
+/* line 592, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-small.x-rtl.x-btn-split-right:after {
+ background-image: url(images/button/default-small-s-arrow-rtl.png); }
+/* line 597, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-small.x-btn-split-bottom:after {
+ height: 15px;
+ background-image: url(images/button/default-small-s-arrow-b.png); }
+
+/* line 624, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-small {
+ padding-right: 5px; }
+/* line 627, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-small {
+ margin-right: 5px; }
+
+/* line 632, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-default-small {
+ background-image: none;
+ background-color: #384955;
+ -webkit-box-shadow: #d7dadd 0 1px 0px 0 inset, #d7dadd 0 -1px 0px 0 inset, #d7dadd -1px 0 0px 0 inset, #d7dadd 1px 0 0px 0 inset;
+ -moz-box-shadow: #d7dadd 0 1px 0px 0 inset, #d7dadd 0 -1px 0px 0 inset, #d7dadd -1px 0 0px 0 inset, #d7dadd 1px 0 0px 0 inset;
+ box-shadow: #d7dadd 0 1px 0px 0 inset, #d7dadd 0 -1px 0px 0 inset, #d7dadd -1px 0 0px 0 inset, #d7dadd 1px 0 0px 0 inset; }
+
+/* line 667, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-over.x-btn-default-small {
+ border-color: #142533;
+ background-image: none;
+ background-color: #33434e; }
+
+/* line 694, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-over.x-btn-default-small {
+ -webkit-box-shadow: #d6d9db 0 1px 0px 0 inset, #d6d9db 0 -1px 0px 0 inset, #d6d9db -1px 0 0px 0 inset, #d6d9db 1px 0 0px 0 inset;
+ -moz-box-shadow: #d6d9db 0 1px 0px 0 inset, #d6d9db 0 -1px 0px 0 inset, #d6d9db -1px 0 0px 0 inset, #d6d9db 1px 0 0px 0 inset;
+ box-shadow: #d6d9db 0 1px 0px 0 inset, #d6d9db 0 -1px 0px 0 inset, #d6d9db -1px 0 0px 0 inset, #d6d9db 1px 0 0px 0 inset; }
+
+/* line 723, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-menu-active.x-btn-default-small,
+.x-btn.x-btn-pressed.x-btn-default-small {
+ border-color: #101e2a;
+ background-image: none;
+ background-color: #2a363f; }
+
+/* line 751, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-menu-active.x-btn-default-small,
+.x-btn-focus.x-btn-pressed.x-btn-default-small {
+ -webkit-box-shadow: #d4d6d8 0 1px 0px 0 inset, #d4d6d8 0 -1px 0px 0 inset, #d4d6d8 -1px 0 0px 0 inset, #d4d6d8 1px 0 0px 0 inset;
+ -moz-box-shadow: #d4d6d8 0 1px 0px 0 inset, #d4d6d8 0 -1px 0px 0 inset, #d4d6d8 -1px 0 0px 0 inset, #d4d6d8 1px 0 0px 0 inset;
+ box-shadow: #d4d6d8 0 1px 0px 0 inset, #d4d6d8 0 -1px 0px 0 inset, #d4d6d8 -1px 0 0px 0 inset, #d4d6d8 1px 0 0px 0 inset; }
+
+/* line 779, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-disabled.x-btn-default-small {
+ background-image: none;
+ background-color: #384955; }
+
+/* line 963, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-disabled.x-btn-default-small {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+
+/* line 1128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-button-default-small-cell > .x-grid-cell-inner {
+ padding-top: 0px;
+ padding-bottom: 0px; }
+ /* line 1133, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-button-default-small-cell > .x-grid-cell-inner > .x-btn-default-small {
+ vertical-align: top; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-btn-default-medium {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 3px 3px 3px 3px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #384955; }
+
+/* */
+/* line 423, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-default-medium {
+ border-color: #162938; }
+
+/* line 430, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-button-default-medium {
+ height: 24px; }
+
+/* line 435, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-inner-default-medium {
+ font: 300 14px/18px "Roboto", sans-serif;
+ color: white;
+ padding: 0 8px;
+ max-width: 100%; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-right > .x-btn-inner-default-medium, .x-btn-icon-left > .x-btn-inner-default-medium {
+ max-width: calc(100% - 24px); }
+
+/* line 453, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-icon-el-default-medium {
+ height: 24px; }
+ /* line 457, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-left > .x-btn-icon-el-default-medium, .x-btn-icon-right > .x-btn-icon-el-default-medium {
+ width: 24px; }
+ /* line 462, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-top > .x-btn-icon-el-default-medium, .x-btn-icon-bottom > .x-btn-icon-el-default-medium {
+ min-width: 24px; }
+ /* line 466, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-el-default-medium.x-btn-glyph {
+ font-size: 24px;
+ line-height: 24px;
+ color: white;
+ opacity: 0.5; }
+ /* line 493, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-medium {
+ margin-right: 0; }
+ /* line 497, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-medium.x-rtl {
+ margin-right: 0;
+ margin-left: 0; }
+ /* line 504, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-medium {
+ margin-left: 0; }
+ /* line 508, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-medium.x-rtl {
+ margin-left: 0;
+ margin-right: 0; }
+ /* line 515, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-medium {
+ margin-bottom: 5px; }
+ /* line 519, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-medium {
+ margin-top: 5px; }
+
+/* line 525, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-medium {
+ padding-right: 8px; }
+/* line 528, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-medium {
+ margin-right: 8px; }
+
+/* line 535, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-bottom > .x-btn-button-default-medium,
+.x-btn-split-bottom > .x-btn-button-default-medium {
+ padding-bottom: 3px; }
+
+/* line 541, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-medium.x-btn-arrow-right:after {
+ width: 24px;
+ padding-right: 24px;
+ background-image: url(images/button/default-medium-arrow.png); }
+/* line 554, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-medium.x-rtl.x-btn-arrow-right:after {
+ background-image: url(images/button/default-medium-arrow-rtl.png); }
+/* line 563, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-medium.x-btn-arrow-bottom:after {
+ height: 18px;
+ background-image: url(images/button/default-medium-arrow.png); }
+
+/* line 583, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-medium.x-btn-split-right:after {
+ width: 28px;
+ padding-right: 28px;
+ background-image: url(images/button/default-medium-s-arrow.png); }
+/* line 592, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-medium.x-rtl.x-btn-split-right:after {
+ background-image: url(images/button/default-medium-s-arrow-rtl.png); }
+/* line 597, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-medium.x-btn-split-bottom:after {
+ height: 24px;
+ background-image: url(images/button/default-medium-s-arrow-b.png); }
+
+/* line 624, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-medium {
+ padding-right: 8px; }
+/* line 627, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-medium {
+ margin-right: 8px; }
+
+/* line 632, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-default-medium {
+ background-image: none;
+ background-color: #384955;
+ -webkit-box-shadow: #d7dadd 0 1px 0px 0 inset, #d7dadd 0 -1px 0px 0 inset, #d7dadd -1px 0 0px 0 inset, #d7dadd 1px 0 0px 0 inset;
+ -moz-box-shadow: #d7dadd 0 1px 0px 0 inset, #d7dadd 0 -1px 0px 0 inset, #d7dadd -1px 0 0px 0 inset, #d7dadd 1px 0 0px 0 inset;
+ box-shadow: #d7dadd 0 1px 0px 0 inset, #d7dadd 0 -1px 0px 0 inset, #d7dadd -1px 0 0px 0 inset, #d7dadd 1px 0 0px 0 inset; }
+
+/* line 667, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-over.x-btn-default-medium {
+ border-color: #142533;
+ background-image: none;
+ background-color: #33434e; }
+
+/* line 694, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-over.x-btn-default-medium {
+ -webkit-box-shadow: #d6d9db 0 1px 0px 0 inset, #d6d9db 0 -1px 0px 0 inset, #d6d9db -1px 0 0px 0 inset, #d6d9db 1px 0 0px 0 inset;
+ -moz-box-shadow: #d6d9db 0 1px 0px 0 inset, #d6d9db 0 -1px 0px 0 inset, #d6d9db -1px 0 0px 0 inset, #d6d9db 1px 0 0px 0 inset;
+ box-shadow: #d6d9db 0 1px 0px 0 inset, #d6d9db 0 -1px 0px 0 inset, #d6d9db -1px 0 0px 0 inset, #d6d9db 1px 0 0px 0 inset; }
+
+/* line 723, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-menu-active.x-btn-default-medium,
+.x-btn.x-btn-pressed.x-btn-default-medium {
+ border-color: #101e2a;
+ background-image: none;
+ background-color: #2a363f; }
+
+/* line 751, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-menu-active.x-btn-default-medium,
+.x-btn-focus.x-btn-pressed.x-btn-default-medium {
+ -webkit-box-shadow: #d4d6d8 0 1px 0px 0 inset, #d4d6d8 0 -1px 0px 0 inset, #d4d6d8 -1px 0 0px 0 inset, #d4d6d8 1px 0 0px 0 inset;
+ -moz-box-shadow: #d4d6d8 0 1px 0px 0 inset, #d4d6d8 0 -1px 0px 0 inset, #d4d6d8 -1px 0 0px 0 inset, #d4d6d8 1px 0 0px 0 inset;
+ box-shadow: #d4d6d8 0 1px 0px 0 inset, #d4d6d8 0 -1px 0px 0 inset, #d4d6d8 -1px 0 0px 0 inset, #d4d6d8 1px 0 0px 0 inset; }
+
+/* line 779, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-disabled.x-btn-default-medium {
+ background-image: none;
+ background-color: #384955; }
+
+/* line 963, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-disabled.x-btn-default-medium {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+
+/* line 1128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-button-default-medium-cell > .x-grid-cell-inner {
+ padding-top: 0;
+ padding-bottom: 0; }
+ /* line 1133, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-button-default-medium-cell > .x-grid-cell-inner > .x-btn-default-medium {
+ vertical-align: top; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-btn-default-large {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 3px 3px 3px 3px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #384955; }
+
+/* */
+/* line 423, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-default-large {
+ border-color: #162938; }
+
+/* line 430, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-button-default-large {
+ height: 32px; }
+
+/* line 435, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-inner-default-large {
+ font: 300 16px/20px "Roboto", sans-serif;
+ color: white;
+ padding: 0 10px;
+ max-width: 100%; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-right > .x-btn-inner-default-large, .x-btn-icon-left > .x-btn-inner-default-large {
+ max-width: calc(100% - 32px); }
+
+/* line 453, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-icon-el-default-large {
+ height: 32px; }
+ /* line 457, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-left > .x-btn-icon-el-default-large, .x-btn-icon-right > .x-btn-icon-el-default-large {
+ width: 32px; }
+ /* line 462, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-top > .x-btn-icon-el-default-large, .x-btn-icon-bottom > .x-btn-icon-el-default-large {
+ min-width: 32px; }
+ /* line 466, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-el-default-large.x-btn-glyph {
+ font-size: 32px;
+ line-height: 32px;
+ color: white;
+ opacity: 0.5; }
+ /* line 493, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-large {
+ margin-right: 0; }
+ /* line 497, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-large.x-rtl {
+ margin-right: 0;
+ margin-left: 0; }
+ /* line 504, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-large {
+ margin-left: 0; }
+ /* line 508, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-large.x-rtl {
+ margin-left: 0;
+ margin-right: 0; }
+ /* line 515, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-large {
+ margin-bottom: 5px; }
+ /* line 519, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-large {
+ margin-top: 5px; }
+
+/* line 525, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-large {
+ padding-right: 10px; }
+/* line 528, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-large {
+ margin-right: 10px; }
+
+/* line 535, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-bottom > .x-btn-button-default-large,
+.x-btn-split-bottom > .x-btn-button-default-large {
+ padding-bottom: 3px; }
+
+/* line 541, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-large.x-btn-arrow-right:after {
+ width: 28px;
+ padding-right: 28px;
+ background-image: url(images/button/default-large-arrow.png); }
+/* line 554, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-large.x-rtl.x-btn-arrow-right:after {
+ background-image: url(images/button/default-large-arrow-rtl.png); }
+/* line 563, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-large.x-btn-arrow-bottom:after {
+ height: 20px;
+ background-image: url(images/button/default-large-arrow.png); }
+
+/* line 583, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-large.x-btn-split-right:after {
+ width: 35px;
+ padding-right: 35px;
+ background-image: url(images/button/default-large-s-arrow.png); }
+/* line 592, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-large.x-rtl.x-btn-split-right:after {
+ background-image: url(images/button/default-large-s-arrow-rtl.png); }
+/* line 597, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-large.x-btn-split-bottom:after {
+ height: 29px;
+ background-image: url(images/button/default-large-s-arrow-b.png); }
+
+/* line 624, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-large {
+ padding-right: 10px; }
+/* line 627, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-large {
+ margin-right: 10px; }
+
+/* line 632, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-default-large {
+ background-image: none;
+ background-color: #384955;
+ -webkit-box-shadow: #d7dadd 0 1px 0px 0 inset, #d7dadd 0 -1px 0px 0 inset, #d7dadd -1px 0 0px 0 inset, #d7dadd 1px 0 0px 0 inset;
+ -moz-box-shadow: #d7dadd 0 1px 0px 0 inset, #d7dadd 0 -1px 0px 0 inset, #d7dadd -1px 0 0px 0 inset, #d7dadd 1px 0 0px 0 inset;
+ box-shadow: #d7dadd 0 1px 0px 0 inset, #d7dadd 0 -1px 0px 0 inset, #d7dadd -1px 0 0px 0 inset, #d7dadd 1px 0 0px 0 inset; }
+
+/* line 667, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-over.x-btn-default-large {
+ border-color: #142533;
+ background-image: none;
+ background-color: #33434e; }
+
+/* line 694, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-over.x-btn-default-large {
+ -webkit-box-shadow: #d6d9db 0 1px 0px 0 inset, #d6d9db 0 -1px 0px 0 inset, #d6d9db -1px 0 0px 0 inset, #d6d9db 1px 0 0px 0 inset;
+ -moz-box-shadow: #d6d9db 0 1px 0px 0 inset, #d6d9db 0 -1px 0px 0 inset, #d6d9db -1px 0 0px 0 inset, #d6d9db 1px 0 0px 0 inset;
+ box-shadow: #d6d9db 0 1px 0px 0 inset, #d6d9db 0 -1px 0px 0 inset, #d6d9db -1px 0 0px 0 inset, #d6d9db 1px 0 0px 0 inset; }
+
+/* line 723, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-menu-active.x-btn-default-large,
+.x-btn.x-btn-pressed.x-btn-default-large {
+ border-color: #101e2a;
+ background-image: none;
+ background-color: #2a363f; }
+
+/* line 751, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-menu-active.x-btn-default-large,
+.x-btn-focus.x-btn-pressed.x-btn-default-large {
+ -webkit-box-shadow: #d4d6d8 0 1px 0px 0 inset, #d4d6d8 0 -1px 0px 0 inset, #d4d6d8 -1px 0 0px 0 inset, #d4d6d8 1px 0 0px 0 inset;
+ -moz-box-shadow: #d4d6d8 0 1px 0px 0 inset, #d4d6d8 0 -1px 0px 0 inset, #d4d6d8 -1px 0 0px 0 inset, #d4d6d8 1px 0 0px 0 inset;
+ box-shadow: #d4d6d8 0 1px 0px 0 inset, #d4d6d8 0 -1px 0px 0 inset, #d4d6d8 -1px 0 0px 0 inset, #d4d6d8 1px 0 0px 0 inset; }
+
+/* line 779, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-disabled.x-btn-default-large {
+ background-image: none;
+ background-color: #384955; }
+
+/* line 963, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-disabled.x-btn-default-large {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+
+/* line 1128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-button-default-large-cell > .x-grid-cell-inner {
+ padding-top: 0;
+ padding-bottom: 0; }
+ /* line 1133, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-button-default-large-cell > .x-grid-cell-inner > .x-btn-default-large {
+ vertical-align: top; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-btn-default-toolbar-small {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 3px 3px 3px 3px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #f5f5f5; }
+
+/* */
+/* line 423, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-default-toolbar-small {
+ border-color: #d8d8d8; }
+
+/* line 430, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-button-default-toolbar-small {
+ height: 16px; }
+
+/* line 435, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-inner-default-toolbar-small {
+ font: 300 12px/16px "Roboto", sans-serif;
+ color: #666666;
+ padding: 0 5px;
+ max-width: 100%; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-right > .x-btn-inner-default-toolbar-small, .x-btn-icon-left > .x-btn-inner-default-toolbar-small {
+ max-width: calc(100% - 16px); }
+
+/* line 453, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-icon-el-default-toolbar-small {
+ height: 16px; }
+ /* line 457, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-left > .x-btn-icon-el-default-toolbar-small, .x-btn-icon-right > .x-btn-icon-el-default-toolbar-small {
+ width: 16px; }
+ /* line 462, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-top > .x-btn-icon-el-default-toolbar-small, .x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-small {
+ min-width: 16px; }
+ /* line 466, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-el-default-toolbar-small.x-btn-glyph {
+ font-size: 16px;
+ line-height: 16px;
+ color: #666666;
+ opacity: 0.5; }
+ /* line 493, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-small {
+ margin-right: 0px; }
+ /* line 497, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-small.x-rtl {
+ margin-right: 0;
+ margin-left: 0px; }
+ /* line 504, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-small {
+ margin-left: 0px; }
+ /* line 508, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-small.x-rtl {
+ margin-left: 0;
+ margin-right: 0px; }
+ /* line 515, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-toolbar-small {
+ margin-bottom: 5px; }
+ /* line 519, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-small {
+ margin-top: 5px; }
+
+/* line 525, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-small {
+ padding-right: 5px; }
+/* line 528, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-small {
+ margin-right: 5px; }
+
+/* line 535, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-bottom > .x-btn-button-default-toolbar-small,
+.x-btn-split-bottom > .x-btn-button-default-toolbar-small {
+ padding-bottom: 3px; }
+
+/* line 541, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-small.x-btn-arrow-right:after {
+ width: 16px;
+ padding-right: 16px;
+ background-image: url(images/button/default-toolbar-small-arrow.png); }
+/* line 554, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-small.x-rtl.x-btn-arrow-right:after {
+ background-image: url(images/button/default-toolbar-small-arrow-rtl.png); }
+/* line 563, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-small.x-btn-arrow-bottom:after {
+ height: 13px;
+ background-image: url(images/button/default-toolbar-small-arrow.png); }
+
+/* line 583, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-small.x-btn-split-right:after {
+ width: 20px;
+ padding-right: 20px;
+ background-image: url(images/button/default-toolbar-small-s-arrow.png); }
+/* line 592, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-small.x-rtl.x-btn-split-right:after {
+ background-image: url(images/button/default-toolbar-small-s-arrow-rtl.png); }
+/* line 597, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-small.x-btn-split-bottom:after {
+ height: 15px;
+ background-image: url(images/button/default-toolbar-small-s-arrow-b.png); }
+
+/* line 624, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-small {
+ padding-right: 5px; }
+/* line 627, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-small {
+ margin-right: 5px; }
+
+/* line 632, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-default-toolbar-small {
+ background-image: none;
+ background-color: #f5f5f5; }
+
+/* line 667, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-over.x-btn-default-toolbar-small {
+ border-color: #cfcfcf;
+ background-image: none;
+ background-color: #ebebeb; }
+
+/* line 723, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-menu-active.x-btn-default-toolbar-small,
+.x-btn.x-btn-pressed.x-btn-default-toolbar-small {
+ border-color: #c6c6c6;
+ background-image: none;
+ background-color: #e1e1e1; }
+
+/* line 779, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-disabled.x-btn-default-toolbar-small {
+ background-image: none;
+ background-color: #f5f5f5; }
+
+/* line 963, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-disabled.x-btn-default-toolbar-small {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+
+/* line 1128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-button-default-toolbar-small-cell > .x-grid-cell-inner {
+ padding-top: 0px;
+ padding-bottom: 0px; }
+ /* line 1133, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-button-default-toolbar-small-cell > .x-grid-cell-inner > .x-btn-default-toolbar-small {
+ vertical-align: top; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-btn-default-toolbar-medium {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 3px 3px 3px 3px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #f5f5f5; }
+
+/* */
+/* line 423, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-default-toolbar-medium {
+ border-color: #d8d8d8; }
+
+/* line 430, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-button-default-toolbar-medium {
+ height: 24px; }
+
+/* line 435, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-inner-default-toolbar-medium {
+ font: 300 14px/18px "Roboto", sans-serif;
+ color: #666666;
+ padding: 0 8px;
+ max-width: 100%; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-right > .x-btn-inner-default-toolbar-medium, .x-btn-icon-left > .x-btn-inner-default-toolbar-medium {
+ max-width: calc(100% - 24px); }
+
+/* line 453, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-icon-el-default-toolbar-medium {
+ height: 24px; }
+ /* line 457, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-left > .x-btn-icon-el-default-toolbar-medium, .x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium {
+ width: 24px; }
+ /* line 462, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-top > .x-btn-icon-el-default-toolbar-medium, .x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-medium {
+ min-width: 24px; }
+ /* line 466, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-el-default-toolbar-medium.x-btn-glyph {
+ font-size: 24px;
+ line-height: 24px;
+ color: #666666;
+ opacity: 0.5; }
+ /* line 493, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-medium {
+ margin-right: 0; }
+ /* line 497, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-medium.x-rtl {
+ margin-right: 0;
+ margin-left: 0; }
+ /* line 504, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium {
+ margin-left: 0; }
+ /* line 508, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium.x-rtl {
+ margin-left: 0;
+ margin-right: 0; }
+ /* line 515, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-toolbar-medium {
+ margin-bottom: 5px; }
+ /* line 519, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-medium {
+ margin-top: 5px; }
+
+/* line 525, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-medium {
+ padding-right: 8px; }
+/* line 528, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium {
+ margin-right: 8px; }
+
+/* line 535, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-bottom > .x-btn-button-default-toolbar-medium,
+.x-btn-split-bottom > .x-btn-button-default-toolbar-medium {
+ padding-bottom: 3px; }
+
+/* line 541, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-medium.x-btn-arrow-right:after {
+ width: 24px;
+ padding-right: 24px;
+ background-image: url(images/button/default-toolbar-medium-arrow.png); }
+/* line 554, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-medium.x-rtl.x-btn-arrow-right:after {
+ background-image: url(images/button/default-toolbar-medium-arrow-rtl.png); }
+/* line 563, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-medium.x-btn-arrow-bottom:after {
+ height: 18px;
+ background-image: url(images/button/default-toolbar-medium-arrow.png); }
+
+/* line 583, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-medium.x-btn-split-right:after {
+ width: 28px;
+ padding-right: 28px;
+ background-image: url(images/button/default-toolbar-medium-s-arrow.png); }
+/* line 592, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-medium.x-rtl.x-btn-split-right:after {
+ background-image: url(images/button/default-toolbar-medium-s-arrow-rtl.png); }
+/* line 597, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-medium.x-btn-split-bottom:after {
+ height: 24px;
+ background-image: url(images/button/default-toolbar-medium-s-arrow-b.png); }
+
+/* line 624, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-medium {
+ padding-right: 8px; }
+/* line 627, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium {
+ margin-right: 8px; }
+
+/* line 632, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-default-toolbar-medium {
+ background-image: none;
+ background-color: #f5f5f5; }
+
+/* line 667, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-over.x-btn-default-toolbar-medium {
+ border-color: #cfcfcf;
+ background-image: none;
+ background-color: #ebebeb; }
+
+/* line 723, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-menu-active.x-btn-default-toolbar-medium,
+.x-btn.x-btn-pressed.x-btn-default-toolbar-medium {
+ border-color: #c6c6c6;
+ background-image: none;
+ background-color: #e1e1e1; }
+
+/* line 779, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-disabled.x-btn-default-toolbar-medium {
+ background-image: none;
+ background-color: #f5f5f5; }
+
+/* line 963, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-disabled.x-btn-default-toolbar-medium {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+
+/* line 1128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-button-default-toolbar-medium-cell > .x-grid-cell-inner {
+ padding-top: 0;
+ padding-bottom: 0; }
+ /* line 1133, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-button-default-toolbar-medium-cell > .x-grid-cell-inner > .x-btn-default-toolbar-medium {
+ vertical-align: top; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-btn-default-toolbar-large {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 3px 3px 3px 3px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #f5f5f5; }
+
+/* */
+/* line 423, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-default-toolbar-large {
+ border-color: #d8d8d8; }
+
+/* line 430, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-button-default-toolbar-large {
+ height: 32px; }
+
+/* line 435, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-inner-default-toolbar-large {
+ font: 300 16px/20px "Roboto", sans-serif;
+ color: #666666;
+ padding: 0 10px;
+ max-width: 100%; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-right > .x-btn-inner-default-toolbar-large, .x-btn-icon-left > .x-btn-inner-default-toolbar-large {
+ max-width: calc(100% - 32px); }
+
+/* line 453, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-icon-el-default-toolbar-large {
+ height: 32px; }
+ /* line 457, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-left > .x-btn-icon-el-default-toolbar-large, .x-btn-icon-right > .x-btn-icon-el-default-toolbar-large {
+ width: 32px; }
+ /* line 462, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-top > .x-btn-icon-el-default-toolbar-large, .x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-large {
+ min-width: 32px; }
+ /* line 466, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-el-default-toolbar-large.x-btn-glyph {
+ font-size: 32px;
+ line-height: 32px;
+ color: #666666;
+ opacity: 0.5; }
+ /* line 493, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-large {
+ margin-right: 0; }
+ /* line 497, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-large.x-rtl {
+ margin-right: 0;
+ margin-left: 0; }
+ /* line 504, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-large {
+ margin-left: 0; }
+ /* line 508, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-large.x-rtl {
+ margin-left: 0;
+ margin-right: 0; }
+ /* line 515, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-toolbar-large {
+ margin-bottom: 5px; }
+ /* line 519, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-large {
+ margin-top: 5px; }
+
+/* line 525, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-large {
+ padding-right: 10px; }
+/* line 528, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-large {
+ margin-right: 10px; }
+
+/* line 535, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-bottom > .x-btn-button-default-toolbar-large,
+.x-btn-split-bottom > .x-btn-button-default-toolbar-large {
+ padding-bottom: 3px; }
+
+/* line 541, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-large.x-btn-arrow-right:after {
+ width: 28px;
+ padding-right: 28px;
+ background-image: url(images/button/default-toolbar-large-arrow.png); }
+/* line 554, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-large.x-rtl.x-btn-arrow-right:after {
+ background-image: url(images/button/default-toolbar-large-arrow-rtl.png); }
+/* line 563, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-large.x-btn-arrow-bottom:after {
+ height: 20px;
+ background-image: url(images/button/default-toolbar-large-arrow.png); }
+
+/* line 583, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-large.x-btn-split-right:after {
+ width: 35px;
+ padding-right: 35px;
+ background-image: url(images/button/default-toolbar-large-s-arrow.png); }
+/* line 592, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-large.x-rtl.x-btn-split-right:after {
+ background-image: url(images/button/default-toolbar-large-s-arrow-rtl.png); }
+/* line 597, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-default-toolbar-large.x-btn-split-bottom:after {
+ height: 29px;
+ background-image: url(images/button/default-toolbar-large-s-arrow-b.png); }
+
+/* line 624, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-large {
+ padding-right: 10px; }
+/* line 627, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-large {
+ margin-right: 10px; }
+
+/* line 632, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-default-toolbar-large {
+ background-image: none;
+ background-color: #f5f5f5; }
+
+/* line 667, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-over.x-btn-default-toolbar-large {
+ border-color: #cfcfcf;
+ background-image: none;
+ background-color: #ebebeb; }
+
+/* line 723, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-menu-active.x-btn-default-toolbar-large,
+.x-btn.x-btn-pressed.x-btn-default-toolbar-large {
+ border-color: #c6c6c6;
+ background-image: none;
+ background-color: #e1e1e1; }
+
+/* line 779, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-disabled.x-btn-default-toolbar-large {
+ background-image: none;
+ background-color: #f5f5f5; }
+
+/* line 963, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-disabled.x-btn-default-toolbar-large {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+
+/* line 1128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-button-default-toolbar-large-cell > .x-grid-cell-inner {
+ padding-top: 0;
+ padding-bottom: 0; }
+ /* line 1133, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-button-default-toolbar-large-cell > .x-grid-cell-inner > .x-btn-default-toolbar-large {
+ vertical-align: top; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-btn-text {
+ background: transparent no-repeat;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-bold,
+.x-menu-item div.x-edit-bold {
+ background-position: 0 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 13, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-italic,
+.x-menu-item div.x-edit-italic {
+ background-position: -16px 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 19, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-underline,
+.x-menu-item div.x-edit-underline {
+ background-position: -32px 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 25, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-forecolor,
+.x-menu-item div.x-edit-forecolor {
+ background-position: -160px 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 31, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-backcolor,
+.x-menu-item div.x-edit-backcolor {
+ background-position: -176px 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 37, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-justifyleft,
+.x-menu-item div.x-edit-justifyleft {
+ background-position: -112px 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 43, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-justifycenter,
+.x-menu-item div.x-edit-justifycenter {
+ background-position: -128px 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 49, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-justifyright,
+.x-menu-item div.x-edit-justifyright {
+ background-position: -144px 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 55, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-insertorderedlist,
+.x-menu-item div.x-edit-insertorderedlist {
+ background-position: -80px 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 61, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-insertunorderedlist,
+.x-menu-item div.x-edit-insertunorderedlist {
+ background-position: -96px 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 67, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-increasefontsize,
+.x-menu-item div.x-edit-increasefontsize {
+ background-position: -48px 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 73, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-decreasefontsize,
+.x-menu-item div.x-edit-decreasefontsize {
+ background-position: -64px 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 79, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-sourceedit,
+.x-menu-item div.x-edit-sourceedit {
+ background-position: -192px 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 85, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-edit-createlink,
+.x-menu-item div.x-edit-createlink {
+ background-position: -208px 0;
+ background-image: url(images/editor/tb-sprite.png); }
+
+/* line 90, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
+ padding: 5px;
+ padding-bottom: 1px; }
+
+/* line 95, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-tb .x-font-select {
+ font-size: 13px;
+ font-family: inherit; }
+
+/* line 100, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-wrap textarea {
+ font: 300 13px "Roboto", sans-serif;
+ background-color: white;
+ resize: none; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/Editor.scss */
+.x-editor .x-form-item-body {
+ padding-bottom: 0; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/FocusManager.scss */
+.x-focus-element {
+ position: absolute;
+ top: -10px;
+ left: -10px;
+ width: 0px;
+ height: 0px; }
+
+/* line 9, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/FocusManager.scss */
+.x-focus-frame {
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ z-index: 100000000;
+ width: 0px;
+ height: 0px; }
+
+/* line 21, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/FocusManager.scss */
+.x-focus-frame-top,
+.x-focus-frame-bottom,
+.x-focus-frame-left,
+.x-focus-frame-right {
+ position: absolute;
+ top: 0px;
+ left: 0px; }
+
+/* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/FocusManager.scss */
+.x-focus-frame-top,
+.x-focus-frame-bottom {
+ border-top: solid 2px #15428b;
+ height: 2px; }
+
+/* line 34, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/FocusManager.scss */
+.x-focus-frame-left,
+.x-focus-frame-right {
+ border-left: solid 2px #15428b;
+ width: 2px; }
+
+/**
+ * Creates a visual theme for an Ext.ProgressBar
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {color} [$ui-border-color=$progress-border-color]
+ * The border-color of the ProgressBar
+ *
+ * @param {color} [$ui-background-color=$progress-background-color]
+ * The background-color of the ProgressBar
+ *
+ * @param {color} [$ui-bar-background-color=$progress-bar-background-color]
+ * The background-color of the ProgressBar's moving element
+ *
+ * @param {string/list} [$ui-bar-background-gradient=$progress-bar-background-gradient]
+ * The background-gradient of the ProgressBar's moving element. Can be either the name of
+ * a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {color} [$ui-color-front=$progress-text-color-front]
+ * The color of the ProgressBar's text when in front of the ProgressBar's moving element
+ *
+ * @param {color} [$ui-color-back=$progress-text-color-back]
+ * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it
+ *
+ * @param {number} [$ui-height=$progress-height]
+ * The height of the ProgressBar
+ *
+ * @param {number} [$ui-border-width=$progress-border-width]
+ * The border-width of the ProgressBar
+ *
+ * @param {number} [$ui-border-radius=$progress-border-radius]
+ * The border-radius of the ProgressBar
+ *
+ * @param {string} [$ui-text-text-align=$progress-text-text-align]
+ * The text-align of the ProgressBar's text
+ *
+ * @param {number} [$ui-text-font-size=$progress-text-font-size]
+ * The font-size of the ProgressBar's text
+ *
+ * @param {string} [$ui-text-font-weight=$progress-text-font-weight]
+ * The font-weight of the ProgressBar's text
+ *
+ * @member Ext.ProgressBar
+ */
+/* line 80, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ProgressBar.scss */
+.x-progress-default {
+ background-color: #f5f5f5;
+ border-width: 0;
+ height: 20px;
+ border-color: #162938; }
+ /* line 92, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ProgressBar.scss */
+ .x-progress-default .x-progress-bar-default {
+ background-image: none;
+ background-color: #788a97; }
+ /* line 107, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ProgressBar.scss */
+ .x-progress-default .x-progress-text {
+ color: #666666;
+ font-weight: 300;
+ font-size: 13px;
+ font-family: "Roboto", sans-serif;
+ text-align: center;
+ line-height: 20px; }
+ /* line 116, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ProgressBar.scss */
+ .x-progress-default .x-progress-text-back {
+ color: #666666;
+ line-height: 20px; }
+
+/* */
+/* line 127, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ProgressBar.scss */
+.x-progressbar-default-cell > .x-grid-cell-inner,
+.x-progressbarwidget-default-cell > .x-grid-cell-inner {
+ padding-top: 2px;
+ padding-bottom: 2px; }
+ /* line 130, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ProgressBar.scss */
+ .x-progressbar-default-cell > .x-grid-cell-inner .x-progress-default,
+ .x-progressbarwidget-default-cell > .x-grid-cell-inner .x-progress-default {
+ height: 20px; }
+
+/**
+ * Creates a visual theme for display fields. Note this mixin only provides styling
+ * for the form field body, The label and error are styled by {@link #extjs-label-ui}.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number} [$ui-field-height=$form-field-height]
+ * The height of the field body that the display text must fit within. This does not set
+ * the height of the field, only allows the text to be centered inside the field body.
+ * (The height of the field body is determined by {@link #extjs-label-ui}).
+ *
+ * @param {color} [$ui-color=$form-display-field-color]
+ * The text color of display fields
+ *
+ * @param {number} [$ui-font-size=$form-display-field-font-size]
+ * The font-size of the display field
+ *
+ * @param {string} [$ui-font-family=$form-display-field-font-family]
+ * The font-family of the display field
+ *
+ * @param {string} [$ui-font-weight=$form-display-field-font-weight]
+ * The font-weight of the display field
+ *
+ * @param {number} [$ui-line-height=$form-display-field-line-height]
+ * The line-height of the display field
+ *
+ * @member Ext.form.field.Display
+ */
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Display.scss */
+.x-form-display-field-default {
+ min-height: 24px;
+ font: 300 13px/17px "Roboto", sans-serif;
+ color: black;
+ margin-top: 4px; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-view {
+ z-index: 1; }
+
+/* line 9, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-body {
+ background: #162938;
+ border-width: 1px;
+ border-style: solid;
+ border-color: #cecece; }
+
+/* line 18, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-item-container {
+ min-height: 1px;
+ position: relative; }
+
+/* line 23, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-empty {
+ padding: 10px;
+ color: gray;
+ background-color: #162938;
+ font: 300 13px "Roboto", sans-serif; }
+
+/* line 31, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-item {
+ color: #fefefe;
+ font: 300 13px/15px "Roboto", sans-serif;
+ background-color: #162938; }
+
+/* line 37, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-item-alt {
+ background-color: #132431; }
+
+/* line 41, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-item-over {
+ color: #fbfcfc;
+ background-color: #30414f; }
+
+/* line 48, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-item-focused {
+ outline: 0;
+ color: #fefefe; }
+ /* line 52, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+ .x-grid-item-focused .x-grid-cell-inner {
+ z-index: 1; }
+ /* line 60, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+ .x-grid-item-focused .x-grid-cell-inner:before {
+ content: "";
+ position: absolute;
+ z-index: -1;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ left: 0px;
+ pointer-events: none;
+ border: 1px solid #3d4d59; }
+
+/* line 82, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-item-selected {
+ color: #fefefe;
+ background-color: #4b6375; }
+
+/* line 88, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-with-row-lines .x-grid-item {
+ border-style: solid;
+ border-width: 1px 0 0;
+ border-color: #4b6375; }
+/* line 94, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-with-row-lines .x-grid-item:first-child {
+ border-top-color: #162938; }
+/* line 100, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-with-row-lines .x-grid-item.x-grid-item-over {
+ border-style: solid;
+ border-color: #30414f; }
+/* line 105, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-with-row-lines .x-grid-item-over + .x-grid-item {
+ border-top-style: solid;
+ border-top-color: #30414f; }
+/* line 110, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-with-row-lines .x-grid-item.x-grid-item-selected {
+ border-style: solid;
+ border-color: #4b6375; }
+/* line 115, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-with-row-lines .x-grid-item-selected + .x-grid-item {
+ border-top-style: solid;
+ border-top-color: #4b6375; }
+/* line 120, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-with-row-lines .x-grid-item:last-child {
+ border-bottom-width: 1px; }
+/* line 130, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-ie8 .x-grid-with-row-lines .x-grid-item {
+ border-width: 1px 0;
+ margin-top: -1px; }
+/* line 135, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-ie8 .x-grid-with-row-lines .x-grid-item:first-child {
+ margin-top: 0; }
+
+/* line 141, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-cell-inner {
+ position: relative;
+ text-overflow: ellipsis;
+ padding: 5px 10px 4px 10px; }
+
+/* line 157, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-cell-special {
+ border-color: #4b6375;
+ border-style: solid;
+ border-right-width: 1px;
+ background-color: #162938; }
+ /* line 170, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+ .x-grid-item-selected .x-grid-cell-special {
+ border-right-color: #4b6375;
+ background-color: #4b6375; }
+
+/* line 200, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-rtl.x-grid-cell-special {
+ border-right-width: 0;
+ border-left-width: 1px; }
+
+/* line 207, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-dirty-cell {
+ background: url(images/grid/dirty.png) no-repeat 0 0; }
+
+/* line 212, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-rtl.x-grid-dirty-cell {
+ background-image: url(images/grid/dirty-rtl.png);
+ background-position: right 0; }
+
+/* line 220, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-row .x-grid-cell-selected {
+ color: #fefefe;
+ background-color: #4b6375; }
+
+/* line 226, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-with-col-lines .x-grid-cell {
+ border-right: 1px solid #4b6375; }
+
+/* line 232, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-rtl.x-grid-with-col-lines .x-grid-cell {
+ border-right: 0;
+ border-left: 1px solid #4b6375; }
+
+/* line 238, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/Table.scss */
+.x-grid-resize-marker {
+ width: 1px;
+ background-color: #0f0f0f; }
+
+/**
+ * Creates a visual theme for checkboxes and radio buttons. Note this mixin only provides
+ * styling for the checkbox/radio button and its {@link #boxLabel}, The {@link #fieldLabel}
+ * and error icon/message are styled by {@link #extjs-label-ui}.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number} [$ui-field-height=$form-field-height]
+ * The height of the field body that the checkbox must fit within. This does not set the
+ * height of the field, only allows the checkbox to be centered inside the field body.
+ * (The height of the field body is determined by {@link #extjs-label-ui}).
+ *
+ * @param {number} [$ui-checkbox-size=$form-checkbox-size]
+ * The size of the checkbox
+ *
+ * @param {string} [$ui-checkbox-background-image=$form-checkbox-background-image]
+ * The background-image of the checkbox
+ *
+ * @param {string} [$ui-radio-background-image=$form-radio-background-image]
+ * The background-image of the radio button
+ *
+ * @param {color} [$ui-label-color=$form-checkbox-label-color]
+ * The color of the checkbox's {@link #boxLabel}
+ *
+ * @param {string} [$ui-label-font-weight=$form-checkbox-label-font-weight]
+ * The font-weight of the checkbox's {@link #boxLabel}
+ *
+ * @param {string} [$ui-label-font-size=$form-checkbox-label-font-size]
+ * The font-size of the checkbox's {@link #boxLabel}
+ *
+ * @param {string} [$ui-label-font-family=$form-checkbox-label-font-family]
+ * The font-family of the checkbox's {@link #boxLabel}
+ *
+ * @param {string} [$ui-label-line-height=$form-checkbox-label-line-height]
+ * The line-height of the checkbox's {@link #boxLabel}
+ *
+ * @param {number} [$ui-label-spacing=$form-checkbox-label-spacing]
+ * The space between the boxLabel and the checkbox.
+ *
+ * @member Ext.form.field.Checkbox
+ */
+/* line 57, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+.x-form-cb-wrap-default {
+ height: 24px; }
+
+/* line 61, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+.x-form-cb-default {
+ margin-top: 5px; }
+
+/* line 67, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+.x-form-checkbox-default,
+.x-form-radio-default {
+ width: 15px;
+ height: 15px; }
+
+/* line 72, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+.x-form-radio-default {
+ background: url(images/form/radio.png) no-repeat; }
+ /* line 75, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+ .x-form-cb-checked .x-form-radio-default {
+ background-position: 0 -15px; }
+
+/* line 80, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+.x-form-checkbox-default {
+ background: url(images/form/checkbox.png) no-repeat; }
+ /* line 83, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+ .x-form-cb-checked .x-form-checkbox-default {
+ background-position: 0 -15px; }
+
+/* line 88, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+.x-field-default-form-checkbox-focus {
+ background-position: -15px 0; }
+ /* line 92, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+ .x-form-cb-checked .x-field-default-form-checkbox-focus {
+ background-position: -15px -15px; }
+
+/* line 97, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+.x-form-cb-label-default {
+ margin-top: 4px;
+ font: 300 "Roboto", sans-serif/17px "Roboto", sans-serif; }
+ /* line 101, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+ .x-form-cb-label-default.x-form-cb-label-before {
+ padding-right: 19px; }
+ /* line 105, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+ .x-form-cb-label-default.x-form-cb-label-before.x-rtl {
+ padding-right: 0;
+ padding-left: 19px; }
+ /* line 112, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+ .x-form-cb-label-default.x-form-cb-label-after {
+ padding-left: 19px; }
+ /* line 117, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+ .x-form-cb-label-default.x-rtl {
+ padding-left: 0;
+ padding-right: 19px; }
+
+/* line 126, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Checkbox.scss */
+.x-checkbox-default-cell > .x-grid-cell-inner {
+ padding-top: 0px;
+ padding-bottom: 0px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-expander {
+ cursor: pointer; }
+
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-arrows .x-tree-expander {
+ background-image: url(images/tree/arrows.png); }
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-arrows .x-tree-expander-over .x-tree-expander {
+ background-position: -36px center; }
+/* line 15, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander {
+ background-position: -18px center; }
+/* line 19, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander {
+ background-position: -54px center; }
+/* line 24, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-arrows .x-rtl.x-tree-expander {
+ background: url(images/tree/arrows-rtl.png) no-repeat -54px center; }
+/* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-arrows .x-tree-expander-over .x-rtl.x-tree-expander {
+ background-position: -18px center; }
+/* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-arrows .x-grid-tree-node-expanded .x-rtl.x-tree-expander {
+ background-position: -36px center; }
+/* line 36, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-rtl.x-tree-expander {
+ background-position: 0 center; }
+
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-tree-elbow {
+ background-image: url(images/tree/elbow.png); }
+/* line 48, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-tree-elbow-end {
+ background-image: url(images/tree/elbow-end.png); }
+/* line 52, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-tree-elbow-plus {
+ background-image: url(images/tree/elbow-plus.png); }
+/* line 56, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-tree-elbow-end-plus {
+ background-image: url(images/tree/elbow-end-plus.png); }
+/* line 60, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus {
+ background-image: url(images/tree/elbow-minus.png); }
+/* line 64, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
+ background-image: url(images/tree/elbow-end-minus.png); }
+/* line 68, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-tree-elbow-line {
+ background-image: url(images/tree/elbow-line.png); }
+/* line 73, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-rtl.x-tree-elbow {
+ background-image: url(images/tree/elbow-rtl.png); }
+/* line 77, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-rtl.x-tree-elbow-end {
+ background-image: url(images/tree/elbow-end-rtl.png); }
+/* line 81, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-rtl.x-tree-elbow-plus {
+ background-image: url(images/tree/elbow-plus-rtl.png); }
+/* line 85, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-rtl.x-tree-elbow-end-plus {
+ background-image: url(images/tree/elbow-end-plus-rtl.png); }
+/* line 89, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-plus {
+ background-image: url(images/tree/elbow-minus-rtl.png); }
+/* line 93, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-end-plus {
+ background-image: url(images/tree/elbow-end-minus-rtl.png); }
+/* line 97, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-lines .x-rtl.x-tree-elbow-line {
+ background-image: url(images/tree/elbow-line-rtl.png); }
+
+/* line 104, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-no-lines .x-tree-expander {
+ background-image: url(images/tree/elbow-plus-nl.png); }
+/* line 108, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-no-lines .x-grid-tree-node-expanded .x-tree-expander {
+ background-image: url(images/tree/elbow-minus-nl.png); }
+/* line 113, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-no-lines .x-rtl.x-tree-expander {
+ background-image: url(images/tree/elbow-plus-nl-rtl.png); }
+/* line 117, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-no-lines .x-grid-tree-node-expanded .x-rtl.x-tree-expander {
+ background-image: url(images/tree/elbow-minus-nl-rtl.png); }
+
+/* line 123, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-icon {
+ width: 16px;
+ height: 24px; }
+
+/* line 128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-elbow-img {
+ width: 18px;
+ height: 24px;
+ margin-right: 2px; }
+
+/* line 135, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-rtl.x-tree-elbow-img {
+ margin-right: 0;
+ margin-left: 2px; }
+
+/* line 143, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-icon,
+.x-tree-elbow-img,
+.x-tree-checkbox {
+ margin-top: -5px;
+ margin-bottom: -4px; }
+
+/* line 151, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-icon-leaf {
+ background-image: url(images/tree/leaf.png); }
+
+/* line 156, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-rtl.x-tree-icon-leaf {
+ background-image: url(images/tree/leaf-rtl.png); }
+
+/* line 161, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-icon-parent {
+ background-image: url(images/tree/folder.png); }
+
+/* line 166, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-rtl.x-tree-icon-parent {
+ background-image: url(images/tree/folder-rtl.png); }
+
+/* line 171, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-grid-tree-node-expanded .x-tree-icon-parent {
+ background-image: url(images/tree/folder-open.png); }
+
+/* line 176, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-grid-tree-node-expanded .x-rtl.x-tree-icon-parent {
+ background-image: url(images/tree/folder-open-rtl.png); }
+
+/* line 181, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-checkbox {
+ margin-right: 4px;
+ top: 5px;
+ width: 15px;
+ height: 15px;
+ background-image: url(images/form/checkbox.png); }
+
+/* line 190, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-rtl.x-tree-checkbox {
+ margin-right: 0;
+ margin-left: 4px; }
+
+/* line 196, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-checkbox-checked {
+ background-position: 0 -15px; }
+
+/* line 200, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-grid-tree-loading .x-tree-icon {
+ background-image: url(images/tree/loading.gif); }
+
+/* line 205, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-grid-tree-loading .x-rtl.x-tree-icon {
+ background-image: url(images/tree/loading.gif); }
+
+/* line 210, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-tree-node-text {
+ padding-left: 4px; }
+
+/* line 215, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-rtl.x-tree-node-text {
+ padding-left: 0;
+ padding-right: 4px; }
+
+/* line 222, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/View.scss */
+.x-grid-cell-inner-treecolumn {
+ padding: 5px 10px 4px 6px; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/header/DropZone.scss */
+.x-col-move-top,
+.x-col-move-bottom {
+ width: 9px;
+ height: 9px; }
+
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/header/DropZone.scss */
+.x-col-move-top {
+ background-image: url(images/grid/col-move-top.png); }
+
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/header/DropZone.scss */
+.x-col-move-bottom {
+ background-image: url(images/grid/col-move-bottom.png); }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/header/Container.scss */
+.x-grid-header-ct {
+ border: 1px solid #cecece;
+ border-bottom-color: #30414f;
+ background-color: #30414f; }
+
+/* line 14, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/header/Container.scss */
+.x-accordion-item .x-grid-header-ct {
+ border-width: 0 0 1px !important; }
+
+/* line 21, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/header/Container.scss */
+.x-grid-header-ct-hidden {
+ border-top: 0 !important;
+ border-bottom: 0 !important; }
+
+/* line 31, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/header/Container.scss */
+.x-grid-body {
+ border-top-color: #4b6375; }
+
+/* line 35, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/header/Container.scss */
+.x-hmenu-sort-asc {
+ background-image: url(images/grid/hmenu-asc.png); }
+
+/* line 39, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/header/Container.scss */
+.x-hmenu-sort-desc {
+ background-image: url(images/grid/hmenu-desc.png); }
+
+/* line 43, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/header/Container.scss */
+.x-cols-icon {
+ background-image: url(images/grid/columns.png); }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-column-header {
+ border-right: 1px solid #4b6375;
+ color: #fefefe;
+ font: 300 13px/15px "Roboto", sans-serif;
+ outline: 0;
+ background-color: #30414f; }
+
+/* line 21, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-rtl.x-column-header {
+ border-right: 0 none;
+ border-left: 1px solid #4b6375; }
+
+/* line 27, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-group-sub-header {
+ background: transparent;
+ border-top: 1px solid #4b6375; }
+ /* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+ .x-group-sub-header .x-column-header-inner {
+ padding: 6px 10px 7px 10px; }
+
+/* line 37, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-column-header-inner {
+ padding: 7px 10px 7px 10px; }
+
+/* line 41, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-column-header-inner-empty {
+ text-overflow: clip; }
+
+/* line 49, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-column-header.x-column-header-focus {
+ color: black; }
+ /* line 50, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+ .x-column-header.x-column-header-focus .x-column-header-inner:before {
+ content: "";
+ position: absolute;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ left: 0px;
+ border: 1px solid #1b2d3c;
+ pointer-events: none; }
+ /* line 63, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+ .x-column-header.x-column-header-focus.x-group-sub-header .x-column-header-inner:before {
+ bottom: 0px; }
+
+/* line 78, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-column-header-over,
+.x-column-header-sort-ASC,
+.x-column-header-sort-DESC {
+ background-image: none;
+ background-color: #dbdfe3; }
+
+/* line 105, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-column-header-open {
+ background-color: #dbdfe3; }
+ /* line 108, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+ .x-column-header-open .x-column-header-trigger {
+ background-color: #c2c9ce; }
+
+/* line 113, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-column-header-trigger {
+ width: 18px;
+ cursor: pointer;
+ background-color: transparent;
+ background-position: center center; }
+
+/* line 121, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-rtl.x-column-header-trigger {
+ background-position: center center; }
+
+/* line 131, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-column-header-align-right .x-column-header-text {
+ margin-right: 12px; }
+
+/* line 136, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-column-header-align-right .x-rtl.x-column-header-text {
+ margin-right: 0;
+ margin-left: 12px; }
+
+/* line 145, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-column-header-sort-ASC .x-column-header-text,
+.x-column-header-sort-DESC .x-column-header-text {
+ padding-right: 17px;
+ background-position: right center; }
+
+/* line 154, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-column-header-sort-ASC .x-rtl.x-column-header-text,
+.x-column-header-sort-DESC .x-rtl.x-column-header-text {
+ padding-right: 0;
+ padding-left: 17px;
+ background-position: 0 center; }
+
+/* line 162, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-column-header-sort-ASC .x-column-header-text {
+ background-image: url(images/grid/sort_asc.png); }
+
+/* line 165, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Column.scss */
+.x-column-header-sort-DESC .x-column-header-text {
+ background-image: url(images/grid/sort_desc.png); }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Border.scss */
+body.x-border-layout-ct,
+div.x-border-layout-ct {
+ background-color: #cecece; }
+
+/**
+ * Creates a visual theme for a Tab
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {color} [$ui-background-color=$tab-base-color]
+ * The background-color of Tabs
+ *
+ * @param {color} [$ui-background-color-focus=$tab-base-color-focus]
+ * The background-color of focused Tabs
+ *
+ * @param {color} [$ui-background-color-over=$tab-base-color-over]
+ * The background-color of hovered Tabs
+ *
+ * @param {color} [$ui-background-color-active=$tab-base-color-active]
+ * The background-color of the active Tab
+ *
+ * @param {color} [$ui-background-color-focus-over=$tab-base-color-focus-over]
+ * The background-color of focused hovered Tabs
+ *
+ * @param {color} [$ui-background-color-focus-active=$tab-base-color-focus-active]
+ * The background-color of the active Tab when focused
+ *
+ * @param {color} [$ui-background-color-disabled=$tab-base-color-disabled]
+ * The background-color of disabled Tabs
+ *
+ * @param {list} [$ui-border-radius=$tab-border-radius]
+ * The border-radius of Tabs
+ *
+ * @param {number/list} [$ui-border-width=$tab-border-width]
+ * The border-width of Tabs
+ *
+ * @param {number/list} [$ui-border-width-focus=$tab-border-width-focus]
+ * The border-width of focused Tabs
+ *
+ * @param {number/list} [$ui-border-width-over=$tab-border-width-over]
+ * The border-width of hovered Tabs
+ *
+ * @param {number/list} [$ui-border-width-active=$tab-border-width-active]
+ * The border-width of active Tabs
+ *
+ * @param {number/list} [$ui-border-width-focus-over=$tab-border-width-focus-over]
+ * The border-width of focused hovered Tabs
+ *
+ * @param {number/list} [$ui-border-width-focus-active=$tab-border-width-focus-active]
+ * The border-width of active Tabs when focused
+ *
+ * @param {number/list} [$ui-border-width-disabled=$tab-border-width-disabled]
+ * The border-width of disabled Tabs
+ *
+ * @param {number/list} [$ui-margin=$tab-margin]
+ * The border-width of Tabs
+ *
+ * @param {number/list} [$ui-padding=$tab-padding]
+ * The padding of Tabs
+ *
+ * @param {number/list} [$ui-text-padding=$tab-text-padding]
+ * The padding of the Tab's text element
+ *
+ * @param {color} [$ui-border-color=$tab-border-color]
+ * The border-color of Tabs
+ *
+ * @param {color} [$ui-border-color-focus=$tab-border-color-focus]
+ * The border-color of focused Tabs
+ *
+ * @param {color} [$ui-border-color-over=$tab-border-color-over]
+ * The border-color of hovered Tabs
+ *
+ * @param {color} [$ui-border-color-active=$tab-border-color-active]
+ * The border-color of the active Tab
+ *
+ * @param {color} [$ui-border-color-focus-over=$tab-border-color-focus-over]
+ * The border-color of focused hovered Tabs
+ *
+ * @param {color} [$ui-border-color-focus-active=$tab-border-color-focus-active]
+ * The border-color of the active Tab when focused
+
+ * @param {color} [$ui-border-color-disabled=$tab-border-color-disabled]
+ * The border-color of disabled Tabs
+ *
+ * @param {string} [$ui-cursor=$tab-cursor]
+ * The Tab cursor
+ *
+ * @param {string} [$ui-cursor-disabled=$tab-cursor-disabled]
+ * The cursor of disabled Tabs
+ *
+ * @param {number} [$ui-font-size=$tab-font-size]
+ * The font-size of Tabs
+ *
+ * @param {number} [$ui-font-size-focus=$tab-font-size-focus]
+ * The font-size of focused Tabs
+ *
+ * @param {number} [$ui-font-size-over=$tab-font-size-over]
+ * The font-size of hovered Tabs
+ *
+ * @param {number} [$ui-font-size-active=$tab-font-size-active]
+ * The font-size of the active Tab
+ *
+ * @param {number} [$ui-font-size-focus-over=$tab-font-size-focus-over]
+ * The font-size of focused hovered Tabs
+ *
+ * @param {number} [$ui-font-size-focus-active=$tab-font-size-focus-active]
+ * The font-size of the active Tab when focused
+ *
+ * @param {number} [$ui-font-size-disabled=$tab-font-size-disabled]
+ * The font-size of disabled Tabs
+ *
+ * @param {string} [$ui-font-weight=$tab-font-weight]
+ * The font-weight of Tabs
+ *
+ * @param {string} [$ui-font-weight-focus=$tab-font-weight-focus]
+ * The font-weight of focused Tabs
+ *
+ * @param {string} [$ui-font-weight-over=$tab-font-weight-over]
+ * The font-weight of hovered Tabs
+ *
+ * @param {string} [$ui-font-weight-active=$tab-font-weight-active]
+ * The font-weight of the active Tab
+ *
+ * @param {string} [$ui-font-weight-focus-over=$tab-font-weight-focus-over]
+ * The font-weight of focused hovered Tabs
+ *
+ * @param {string} [$ui-font-weight-focus-active=$tab-font-weight-focus-active]
+ * The font-weight of the active Tab when focused
+ *
+ * @param {string} [$ui-font-weight-disabled=$tab-font-weight-disabled]
+ * The font-weight of disabled Tabs
+ *
+ * @param {string} [$ui-font-family=$tab-font-family]
+ * The font-family of Tabs
+ *
+ * @param {string} [$ui-font-family-focus=$tab-font-family-focus]
+ * The font-family of focused Tabs
+ *
+ * @param {string} [$ui-font-family-over=$tab-font-family-over]
+ * The font-family of hovered Tabs
+ *
+ * @param {string} [$ui-font-family-active=$tab-font-family-active]
+ * The font-family of the active Tab
+ *
+ * @param {string} [$ui-font-family-focus-over=$tab-font-family-focus-over]
+ * The font-family of focused hovered Tabs
+ *
+ * @param {string} [$ui-font-family-focus-active=$tab-font-family-focus-active]
+ * The font-family of the active Tab when focused
+ *
+ * @param {string} [$ui-font-family-disabled=$tab-font-family-disabled]
+ * The font-family of disabled Tabs
+ *
+ * @param {number} [$ui-line-height=$tab-line-height]
+ * The line-height of Tabs
+ *
+ * @param {color} [$ui-color=$tab-color]
+ * The text color of Tabs
+ *
+ * @param {color} [$ui-color-focus=$tab-color-focus]
+ * The text color of focused Tabs
+ *
+ * @param {color} [$ui-color-over=$tab-color-over]
+ * The text color of hovered Tabs
+ *
+ * @param {color} [$ui-color-active=$tab-color-active]
+ * The text color of the active Tab
+ *
+ * @param {color} [$ui-color-focus-over=$tab-color-focus-over]
+ * The text color of focused hovered Tabs
+ *
+ * @param {color} [$ui-color-focus-active=$tab-color-focus-active]
+ * The text color of the active Tab when focused
+ *
+ * @param {color} [$ui-color-disabled=$tab-color-disabled]
+ * The text color of disabled Tabs
+ *
+ * @param {string/list} [$ui-background-gradient=$tab-background-gradient]
+ * The background-gradient for Tabs. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$ui-background-gradient-focus=$tab-background-gradient-focus]
+ * The background-gradient for focused Tabs. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$ui-background-gradient-over=$tab-background-gradient-over]
+ * The background-gradient for hovered Tabs. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$ui-background-gradient-active=$tab-background-gradient-active]
+ * The background-gradient for the active Tab. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$ui-background-gradient-focus-over=$tab-background-gradient-focus-over]
+ * The background-gradient for focused hovered Tabs. Can be either the name of a
+ * predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$ui-background-gradient-focus-active=$tab-background-gradient-focus-active]
+ * The background-gradient for the active Tab when focused. Can be either the name of a
+ * predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$ui-background-gradient-disabled=$tab-background-gradient-disabled]
+ * The background-gradient for disabled Tabs. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {number} [$ui-inner-border-width=$tab-inner-border-width]
+ * The inner border-width of Tabs
+ *
+ * @param {number} [$ui-inner-border-width-focus=$tab-inner-border-width-focus]
+ * The inner border-width of focused Tabs
+ *
+ * @param {number} [$ui-inner-border-width-over=$tab-inner-border-width-over]
+ * The inner border-width of hovered Tabs
+ *
+ * @param {number} [$ui-inner-border-width-active=$tab-inner-border-width-active]
+ * The inner border-width of active Tabs
+ *
+ * @param {number} [$ui-inner-border-width-focus-over=$tab-inner-border-width-focus-over]
+ * The inner border-width of focused hovered Tabs
+ *
+ * @param {number} [$ui-inner-border-width-focus-active=$tab-inner-border-width-focus-active]
+ * The inner border-width of active Tabs when focused
+ *
+ * @param {number} [$ui-inner-border-width-disabled=$tab-inner-border-width-disabled]
+ * The inner border-width of disabled Tabs
+ *
+ * @param {color} [$ui-inner-border-color=$tab-inner-border-color]
+ * The inner border-color of Tabs
+ *
+ * @param {color} [$ui-inner-border-color-focus=$tab-inner-border-color-focus]
+ * The inner border-color of focused Tabs
+ *
+ * @param {color} [$ui-inner-border-color-over=$tab-inner-border-color-over]
+ * The inner border-color of hovered Tabs
+ *
+ * @param {color} [$ui-inner-border-color-active=$tab-inner-border-color-active]
+ * The inner border-color of active Tabs
+ *
+ * @param {color} [$ui-inner-border-color-focus-over=$tab-inner-border-color-focus-over]
+ * The inner border-color of focused hovered Tabs
+ *
+ * @param {color} [$ui-inner-border-color-focus-active=$tab-inner-border-color-focus-active]
+ * The inner border-color of active Tabs when focused
+ *
+ * @param {color} [$ui-inner-border-color-disabled=$tab-inner-border-color-disabled]
+ * The inner border-color of disabled Tabs
+ *
+ * @param {boolean} [$ui-inner-border-collapse=$tab-inner-border-collapse]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ *
+ * @param {boolean} [$ui-inner-border-collapse-focus=$tab-inner-border-collapse-focus]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is focused
+ *
+ * @param {boolean} [$ui-inner-border-collapse-over=$tab-inner-border-collapse-over]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is hovered
+ *
+ * @param {boolean} [$ui-inner-border-collapse-active=$tab-inner-border-collapse-active]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is active
+ *
+ * @param {boolean} [$ui-inner-border-collapse-focus-over=$tab-inner-border-collapse-focus-over]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is focused and hovered
+ *
+ * @param {boolean} [$ui-inner-border-collapse-focus-active=$tab-inner-border-collapse-focus-active]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is focused and active
+ *
+ * @param {boolean} [$ui-inner-border-collapse-disabled=$tab-inner-border-collapse-disabled]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is disabled
+ *
+ * @param {number} [$ui-body-outline-width-focus=$tab-body-outline-width-focus]
+ * The body outline width of focused Tabs
+ *
+ * @param {string} [$ui-body-outline-style-focus=$tab-body-outline-style-focus]
+ * The body outline-style of focused Tabs
+ *
+ * @param {color} [$ui-body-outline-color-focus=$tab-body-outline-color-focus]
+ * The body outline color of focused Tabs
+ *
+ * @param {number} [$ui-icon-width=$tab-icon-width]
+ * The width of the Tab close icon
+ *
+ * @param {number} [$ui-icon-height=$tab-icon-height]
+ * The height of the Tab close icon
+ *
+ * @param {number} [$ui-icon-spacing=$tab-icon-spacing]
+ * the space in between the text and the close button
+ *
+ * @param {list} [$ui-icon-background-position=$tab-icon-background-position]
+ * The background-position of Tab icons
+ *
+ * @param {color} [$ui-glyph-color=$tab-glyph-color]
+ * The color of Tab glyph icons
+ *
+ * @param {color} [$ui-glyph-color-focus=$tab-glyph-color-focus]
+ * The color of a Tab glyph icon when the Tab is focused
+ *
+ * @param {color} [$ui-glyph-color-over=$tab-glyph-color-over]
+ * The color of a Tab glyph icon when the Tab is hovered
+ *
+ * @param {color} [$ui-glyph-color-active=$tab-glyph-color-active]
+ * The color of a Tab glyph icon when the Tab is active
+ *
+ * @param {color} [$ui-glyph-color-focus-over=$tab-glyph-color-focus-over]
+ * The color of a Tab glyph icon when the Tab is focused and hovered
+ *
+ * @param {color} [$ui-glyph-color-focus-active=$tab-glyph-color-focus-active]
+ * The color of a Tab glyph icon when the Tab is focused and active
+ *
+ * @param {color} [$ui-glyph-color-disabled=$tab-glyph-color-disabled]
+ * The color of a Tab glyph icon when the Tab is disabled
+ *
+ * @param {number} [$ui-glyph-opacity=$tab-glyph-opacity]
+ * The opacity of a Tab glyph icon
+ *
+ * @param {number} [$ui-glyph-opacity-disabled=$tab-glyph-opacity-disabled]
+ * The opacity of a Tab glyph icon when the Tab is disabled
+ *
+ * @param {number} [$ui-opacity-disabled=$tab-opacity-disabled]
+ * opacity to apply to the tab's main element when the tab is disabled
+ *
+ * @param {number} [$ui-text-opacity-disabled=$tab-text-opacity-disabled]
+ * opacity to apply to the tab's text element when the tab is disabled
+ *
+ * @param {number} [$ui-icon-opacity-disabled=$tab-icon-opacity-disabled]
+ * opacity to apply to the tab's icon element when the tab is disabled
+ *
+ * @param {number} [$ui-closable-icon-width=$tab-closable-icon-width]
+ * The width of the Tab close icon
+ *
+ * @param {number} [$ui-closable-icon-height=$tab-closable-icon-height]
+ * The height of the Tab close icon
+ *
+ * @param {number} [$ui-closable-icon-top=$tab-closable-icon-top]
+ * The distance to offset the Tab close icon from the top of the tab
+ *
+ * @param {number} [$ui-closable-icon-right=$tab-closable-icon-right]
+ * The distance to offset the Tab close icon from the right of the tab
+ *
+ * @param {number} [$ui-closable-icon-spacing=$tab-closable-icon-spacing]
+ * The space in between the text and the close button
+ *
+ * @member Ext.tab.Tab
+ */
+/**
+ * Creates a visual theme for a Tab Bar
+ *
+ * Note: When creating a tab bar UI with the extjs-tab-bar-ui mixin,
+ * you will need to create a corresponding tab-ui of the same name.
+ * This will ensure that the tabs render properly in your theme.
+ * Not creating a matching tab theme may result in unpredictable
+ * tab rendering.
+ *
+ * See `Ext.tab.Tab-css_mixin-extjs-tab-ui`
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number} [$ui-strip-height=$tabbar-strip-height]
+ * The height of the Tab Bar strip
+ *
+ * @param {number/list} [$ui-strip-border-width=$tabbar-strip-border-width]
+ * The border-width of the Tab Bar strip
+ *
+ * @param {color} [$ui-strip-border-color=$tabbar-strip-border-color]
+ * The border-color of the Tab Bar strip
+ *
+ * @param {color} [$ui-strip-background-color=$tabbar-strip-background-color]
+ * The background-color of the Tab Bar strip
+ *
+ * @param {number/list} [$ui-border-width=$tabbar-border-width]
+ * The border-width of the Tab Bar
+ *
+ * @param {color} [$ui-border-color=$tabbar-border-color]
+ * The border-color of the Tab Bar
+ *
+ * @param {number/list} [$ui-padding=$tabbar-padding]
+ * The padding of the Tab Bar
+ *
+ * @param {color} [$ui-background-color=$tabbar-background-color]
+ * The background color of the Tab Bar
+ *
+ * @param {string/list} [$ui-background-gradient=$tabbar-background-gradient]
+ * The background-gradient of the Tab Bar. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {number} [$ui-scroller-width=$tabbar-scroller-width]
+ * The width of the Tab Bar scrollers
+ *
+ * @param {number} [$ui-scroller-height=$tabbar-scroller-height]
+ * The height of the Tab Bar scrollers
+ *
+ * @param {number/list} [$ui-scroller-top-margin=$tabbar-scroller-top-margin]
+ * The margin of "top" scroller buttons
+ *
+ * @param {number/list} [$ui-scroller-right-margin=$tabbar-scroller-right-margin]
+ * The margin of "right" scroller buttons
+ *
+ * @param {number/list} [$ui-scroller-bottom-margin=$tabbar-scroller-bottom-margin]
+ * The margin of "bottom" scroller buttons
+ *
+ * @param {number/list} [$ui-scroller-left-margin=$tabbar-scroller-left-margin]
+ * The margin of "left" scroller buttons
+ *
+ * @param {string} [$ui-scroller-cursor=$tabbar-scroller-cursor]
+ * The cursor of the Tab Bar scrollers
+ *
+ * @param {string} [$ui-scroller-cursor-disabled=$tabbar-scroller-cursor-disabled]
+ * The cursor of disabled Tab Bar scrollers
+ *
+ * @param {number} [$ui-scroller-opacity=$tabbar-scroller-opacity]
+ * The opacity of Tab Bar scrollers
+ *
+ * @param {number} [$ui-scroller-opacity-over=$tabbar-scroller-opacity-over]
+ * The opacity of hovered Tab Bar scrollers
+ *
+ * @param {number} [$ui-scroller-opacity-pressed=$tabbar-scroller-opacity-pressed]
+ * The opacity of pressed Tab Bar scrollers
+ *
+ * @param {number} [$ui-scroller-opacity-disabled=$tabbar-scroller-opacity-disabled]
+ * The opacity of disabled Tab Bar scrollers
+ *
+ * @param {boolean} [$ui-classic-scrollers=$tabbar-classic-scrollers]
+ * `true` to use classic-style scroller buttons. When `true` scroller buttons are given
+ * their hover state by changing their background-position, When `false` scroller buttons
+ * are given their hover state by applying opacity.
+ *
+ * @param {number} [$ui-tab-height]
+ * The minimum height of tabs that will be used in this tabbar UI. The tabbar body is given
+ * a min-height so that it does not collapse when it does not contain any tabs, but it
+ * is allowed to expand to be larger than the default tab height if it contains a tab
+ * that's larger than the default height.
+ *
+ * @member Ext.tab.Bar
+ */
+/**
+ * Creates a visual theme for a Tab Panel
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {color} [$ui-tab-background-color=$tab-base-color]
+ * The background-color of Tabs
+ *
+ * @param {color} [$ui-tab-background-color-focus=$tab-base-color-focus]
+ * The background-color of focused Tabs
+ *
+ * @param {color} [$ui-tab-background-color-over=$tab-base-color-over]
+ * The background-color of hovered Tabs
+ *
+ * @param {color} [$ui-tab-background-color-active=$tab-base-color-active]
+ * The background-color of the active Tab
+ *
+ * @param {color} [$ui-tab-background-color-focus-over=$tab-base-color-focus-over]
+ * The background-color of focused hovered Tabs
+ *
+ * @param {color} [$ui-tab-background-color-focus-active=$tab-base-color-focus-active]
+ * The background-color of the active Tab when focused
+ *
+ * @param {color} [$ui-tab-background-color-disabled=$tab-base-color-disabled]
+ * The background-color of disabled Tabs
+ *
+ * @param {list} [$ui-tab-border-radius=$tab-border-radius]
+ * The border-radius of Tabs
+ *
+ * @param {number} [$ui-tab-border-width=$tab-border-width]
+ * The border-width of Tabs
+ *
+ * @param {number/list} [$ui-tab-border-width-focus=$tab-border-width-focus]
+ * The border-width of focused Tabs
+ *
+ * @param {number/list} [$ui-tab-border-width-over=$tab-border-width-over]
+ * The border-width of hovered Tabs
+ *
+ * @param {number/list} [$ui-tab-border-width-active=$tab-border-width-active]
+ * The border-width of active Tabs
+ *
+ * @param {number/list} [$ui-tab-border-width-focus-over=$tab-border-width-focus-over]
+ * The border-width of focused hovered Tabs
+ *
+ * @param {number/list} [$ui-tab-border-width-focus-active=$tab-border-width-focus-active]
+ * The border-width of active Tabs when focused
+ *
+ * @param {number/list} [$ui-tab-border-width-disabled=$tab-border-width-disabled]
+ * The border-width of disabled Tabs
+ *
+ * @param {number/list} [$ui-tab-margin=$tab-margin]
+ * The border-width of Tabs
+ *
+ * @param {number/list} [$ui-tab-padding=$tab-padding]
+ * The padding of Tabs
+ *
+ * @param {number/list} [$ui-tab-text-padding=$tab-text-padding]
+ * The padding of the Tab's text element
+ *
+ * @param {color} [$ui-tab-border-color=$tab-border-color]
+ * The border-color of Tabs
+ *
+ * @param {color} [$ui-tab-border-color-focus=$tab-border-color-focus]
+ * The border-color of focused Tabs
+ *
+ * @param {color} [$ui-tab-border-color-over=$tab-border-color-over]
+ * The border-color of hovered Tabs
+ *
+ * @param {color} [$ui-tab-border-color-active=$tab-border-color-active]
+ * The border-color of the active Tab
+ *
+ * @param {color} [$ui-tab-border-color-focus-over=$tab-border-color-focus-over]
+ * The border-color of focused hovered Tabs
+ *
+ * @param {color} [$ui-tab-border-color-focus-active=$tab-border-color-focus-active]
+ * The border-color of the active Tab when focused
+
+ * @param {color} [$ui-tab-border-color-disabled=$tab-border-color-disabled]
+ * The border-color of disabled Tabs
+ *
+ * @param {string} [$ui-tab-cursor=$tab-cursor]
+ * The Tab cursor
+ *
+ * @param {string} [$ui-tab-cursor-disabled=$tab-cursor-disabled]
+ * The cursor of disabled Tabs
+ *
+ * @param {number} [$ui-tab-font-size=$tab-font-size]
+ * The font-size of Tabs
+ *
+ * @param {number} [$ui-tab-font-size-focus=$tab-font-size-focus]
+ * The font-size of focused Tabs
+ *
+ * @param {number} [$ui-tab-font-size-over=$tab-font-size-over]
+ * The font-size of hovered Tabs
+ *
+ * @param {number} [$ui-tab-font-size-active=$tab-font-size-active]
+ * The font-size of the active Tab
+ *
+ * @param {number} [$ui-tab-font-size-focus-over=$tab-font-size-focus-over]
+ * The font-size of focused hovered Tabs
+ *
+ * @param {number} [$ui-tab-font-size-focus-active=$tab-font-size-focus-active]
+ * The font-size of the active Tab when focused
+ *
+ * @param {number} [$ui-tab-font-size-disabled=$tab-font-size-disabled]
+ * The font-size of disabled Tabs
+ *
+ * @param {string} [$ui-tab-font-weight=$tab-font-weight]
+ * The font-weight of Tabs
+ *
+ * @param {string} [$ui-tab-font-weight-focus=$tab-font-weight-focus]
+ * The font-weight of focused Tabs
+ *
+ * @param {string} [$ui-tab-font-weight-over=$tab-font-weight-over]
+ * The font-weight of hovered Tabs
+ *
+ * @param {string} [$ui-tab-font-weight-active=$tab-font-weight-active]
+ * The font-weight of the active Tab
+ *
+ * @param {string} [$ui-tab-font-weight-focus-over=$tab-font-weight-focus-over]
+ * The font-weight of focused hovered Tabs
+ *
+ * @param {string} [$ui-tab-font-weight-focus-active=$tab-font-weight-focus-active]
+ * The font-weight of the active Tab when focused
+ *
+ * @param {string} [$ui-tab-font-weight-disabled=$tab-font-weight-disabled]
+ * The font-weight of disabled Tabs
+ *
+ * @param {string} [$ui-tab-font-family=$tab-font-family]
+ * The font-family of Tabs
+ *
+ * @param {string} [$ui-tab-font-family-focus=$tab-font-family-focus]
+ * The font-family of focused Tabs
+ *
+ * @param {string} [$ui-tab-font-family-over=$tab-font-family-over]
+ * The font-family of hovered Tabs
+ *
+ * @param {string} [$ui-tab-font-family-active=$tab-font-family-active]
+ * The font-family of the active Tab
+ *
+ * @param {string} [$ui-tab-font-family-focus-over=$tab-font-family-focus-over]
+ * The font-family of focused hovered Tabs
+ *
+ * @param {string} [$ui-tab-font-family-focus-active=$tab-font-family-focus-active]
+ * The font-family of the active Tab when focused
+ *
+ * @param {string} [$ui-tab-font-family-disabled=$tab-font-family-disabled]
+ * The font-family of disabled Tabs
+ *
+ * @param {number} [$ui-tab-line-height=$tab-line-height]
+ * The line-height of Tabs
+ *
+ * @param {color} [$ui-tab-color=$tab-color]
+ * The text color of Tabs
+ *
+ * @param {color} [$ui-tab-color-focus=$tab-color-focus]
+ * The text color of focused Tabs
+ *
+ * @param {color} [$ui-tab-color-over=$tab-color-over]
+ * The text color of hovered Tabs
+ *
+ * @param {color} [$ui-tab-color-active=$tab-color-active]
+ * The text color of the active Tab
+ *
+ * @param {color} [$ui-tab-color-focus-over=$tab-color-focus-over]
+ * The text color of focused hovered Tabs
+ *
+ * @param {color} [$ui-tab-color-focus-active=$tab-color-focus-active]
+ * The text color of the active Tab when focused
+ *
+ * @param {color} [$ui-tab-color-disabled=$tab-color-disabled]
+ * The text color of disabled Tabs
+ *
+ * @param {string/list} [$ui-tab-background-gradient=$tab-background-gradient]
+ * The background-gradient for Tabs. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$ui-tab-background-gradient-focus=$tab-background-gradient-focus]
+ * The background-gradient for focused Tabs. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$ui-tab-background-gradient-over=$tab-background-gradient-over]
+ * The background-gradient for hovered Tabs. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$ui-tab-background-gradient-active=$tab-background-gradient-active]
+ * The background-gradient for the active Tab. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$ui-tab-background-gradient-focus-over=$tab-background-gradient-focus-over]
+ * The background-gradient for focused hovered Tabs. Can be either the name of a
+ * predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$ui-tab-background-gradient-focus-active=$tab-background-gradient-focus-active]
+ * The background-gradient for the active Tab when focused. Can be either the name of a
+ * predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {string/list} [$ui-tab-background-gradient-disabled=$tab-background-gradient-disabled]
+ * The background-gradient for disabled Tabs. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {number} [$ui-tab-inner-border-width=$tab-inner-border-width]
+ * The inner border-width of Tabs
+ *
+ * @param {number} [$ui-tab-inner-border-width-focus=$tab-inner-border-width-focus]
+ * The inner border-width of focused Tabs
+ *
+ * @param {number} [$ui-tab-inner-border-width-over=$tab-inner-border-width-over]
+ * The inner border-width of hovered Tabs
+ *
+ * @param {number} [$ui-tab-inner-border-width-active=$tab-inner-border-width-active]
+ * The inner border-width of active Tabs
+ *
+ * @param {number} [$ui-tab-inner-border-width-focus-over=$tab-inner-border-width-focus-over]
+ * The inner border-width of focused hovered Tabs
+ *
+ * @param {number} [$ui-tab-inner-border-width-focus-active=$tab-inner-border-width-focus-active]
+ * The inner border-width of active Tabs when focused
+ *
+ * @param {number} [$ui-tab-inner-border-width-disabled=$tab-inner-border-width-disabled]
+ * The inner border-width of disabled Tabs
+ *
+ * @param {color} [$ui-tab-inner-border-color=$tab-inner-border-color]
+ * The inner border-color of Tabs
+ *
+ * @param {color} [$ui-tab-inner-border-color-focus=$tab-inner-border-color-focus]
+ * The inner border-color of focused Tabs
+ *
+ * @param {color} [$ui-tab-inner-border-color-over=$tab-inner-border-color-over]
+ * The inner border-color of hovered Tabs
+ *
+ * @param {color} [$ui-tab-inner-border-color-active=$tab-inner-border-color-active]
+ * The inner border-color of active Tabs
+ *
+ * @param {color} [$ui-tab-inner-border-color-focus-over=$tab-inner-border-color-focus-over]
+ * The inner border-color of focused hovered Tabs
+ *
+ * @param {color} [$ui-tab-inner-border-color-focus-active=$tab-inner-border-color-focus-active]
+ * The inner border-color of active Tabs when focused
+ *
+ * @param {color} [$ui-tab-inner-border-color-disabled=$tab-inner-border-color-disabled]
+ * The inner border-color of disabled Tabs
+ *
+ * @param {boolean} [$ui-tab-inner-border-collapse=$tab-inner-border-collapse]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ *
+ * @param {boolean} [$ui-tab-inner-border-collapse-focus=$tab-inner-border-collapse-focus]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is focused
+ *
+ * @param {boolean} [$ui-tab-inner-border-collapse-over=$tab-inner-border-collapse-over]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is hovered
+ *
+ * @param {boolean} [$ui-tab-inner-border-collapse-active=$tab-inner-border-collapse-active]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is active
+ *
+ * @param {boolean} [$ui-tab-inner-border-collapse-focus-over=$tab-inner-border-collapse-focus-over]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is focused and hovered
+ *
+ * @param {boolean} [$ui-tab-inner-border-collapse-focus-active=$tab-inner-border-collapse-focus-active]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is focused and active
+ *
+ * @param {boolean} [$ui-tab-inner-border-collapse-disabled=$tab-inner-border-collapse-disabled]
+ * `true` to suppress the inner border of the tab on the side adjacent to the tab strip
+ * when the tab is disabled
+ *
+ * @param {number} [$ui-tab-body-outline-width-focus=$tab-body-outline-width-focus]
+ * The body outline width of focused Tabs
+ *
+ * @param {string} [$ui-tab-body-outline-style-focus=$tab-body-outline-style-focus]
+ * The body outline-style of focused Tabs
+ *
+ * @param {color} [$ui-tab-body-outline-color-focus=$tab-body-outline-color-focus]
+ * The body outline color of focused Tabs
+ *
+ * @param {number} [$ui-tab-icon-width=$tab-icon-width]
+ * The width of the Tab close icon
+ *
+ * @param {number} [$ui-tab-icon-height=$tab-icon-height]
+ * The height of the Tab close icon
+ *
+ * @param {number} [$ui-tab-icon-spacing=$tab-icon-spacing]
+ * the space in between the text and the close button
+ *
+ * @param {list} [$ui-tab-icon-background-position=$tab-icon-background-position]
+ * The background-position of Tab icons
+ *
+ * @param {color} [$ui-tab-glyph-color=$tab-glyph-color]
+ * The color of Tab glyph icons
+ *
+ * @param {color} [$ui-tab-glyph-color-focus=$tab-glyph-color-focus]
+ * The color of a Tab glyph icon when the Tab is focused
+ *
+ * @param {color} [$ui-tab-glyph-color-over=$tab-glyph-color-over]
+ * The color of a Tab glyph icon when the Tab is hovered
+ *
+ * @param {color} [$ui-tab-glyph-color-active=$tab-glyph-color-active]
+ * The color of a Tab glyph icon when the Tab is active
+ *
+ * @param {color} [$ui-tab-glyph-color-focus-over=$tab-glyph-color-focus-over]
+ * The color of a Tab glyph icon when the Tab is focused and hovered
+ *
+ * @param {color} [$ui-tab-glyph-color-focus-active=$tab-glyph-color-focus-active]
+ * The color of a Tab glyph icon when the Tab is focused and active
+ *
+ * @param {color} [$ui-tab-glyph-color-disabled=$tab-glyph-color-disabled]
+ * The color of a Tab glyph icon when the Tab is disabled
+ *
+ * @param {number} [$ui-tab-glyph-opacity=$tab-glyph-opacity]
+ * The opacity of a Tab glyph icon
+ *
+ * @param {number} [$ui-tab-glyph-opacity-disabled=$tab-glyph-opacity-disabled]
+ * The opacity of a Tab glyph icon when the Tab is disabled
+ *
+ * @param {number} [$ui-tab-opacity-disabled=$tab-opacity-disabled]
+ * opacity to apply to the tab's main element when the tab is disabled
+ *
+ * @param {number} [$ui-tab-text-opacity-disabled=$tab-text-opacity-disabled]
+ * opacity to apply to the tab's text element when the tab is disabled
+ *
+ * @param {number} [$ui-tab-icon-opacity-disabled=$tab-icon-opacity-disabled]
+ * opacity to apply to the tab's icon element when the tab is disabled
+ *
+ * @param {number} [$ui-strip-height=$tabbar-strip-height]
+ * The height of the Tab Bar strip
+ *
+ * @param {number/list} [$ui-strip-border-width=$tabbar-strip-border-width]
+ * The border-width of the Tab Bar strip
+ *
+ * @param {color} [$ui-strip-border-color=$tabbar-strip-border-color]
+ * The border-color of the Tab Bar strip
+ *
+ * @param {color} [$ui-strip-background-color=$tabbar-strip-background-color]
+ * The background-color of the Tab Bar strip
+ *
+ * @param {number/list} [$ui-bar-border-width=$tabbar-border-width]
+ * The border-width of the Tab Bar
+ *
+ * @param {color} [$ui-bar-border-color=$tabbar-border-color]
+ * The border-color of the Tab Bar
+ *
+ * @param {number/list} [$ui-bar-padding=$tabbar-padding]
+ * The padding of the Tab Bar
+ *
+ * @param {color} [$ui-bar-background-color=$tabbar-background-color]
+ * The background color of the Tab Bar
+ *
+ * @param {string/list} [$ui-bar-background-gradient=$tabbar-background-gradient]
+ * The background-gradient of the Tab Bar. Can be either the name of a predefined gradient
+ * or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {number} [$ui-bar-scroller-width=$tabbar-scroller-width]
+ * The width of the Tab Bar scrollers
+ *
+ * @param {string} [$ui-bar-scroller-cursor=$tabbar-scroller-cursor]
+ * The cursor of the Tab Bar scrollers
+ *
+ * @param {string} [$ui-bar-scroller-cursor-disabled=$tabbar-scroller-cursor-disabled]
+ * The cursor of disabled Tab Bar scrollers
+ *
+ * @param {number} [$ui-bar-scroller-opacity=$tabbar-scroller-opacity]
+ * The opacity of Tab Bar scrollers
+ *
+ * @param {number} [$ui-bar-scroller-opacity-over=$tabbar-scroller-opacity-over]
+ * The opacity of hovered Tab Bar scrollers
+ *
+ * @param {number} [$ui-bar-scroller-opacity-pressed=$tabbar-scroller-opacity-pressed]
+ * The opacity of pressed Tab Bar scrollers
+ *
+ * @param {number} [$ui-bar-scroller-opacity-disabled=$tabbar-scroller-opacity-disabled]
+ * The opacity of disabled Tab Bar scrollers
+ *
+ * @param {number} [$ui-tab-closable-icon-width=$tab-closable-icon-width]
+ * The width of the Tab close icon
+ *
+ * @param {number} [$ui-tab-closable-icon-height=$tab-closable-icon-height]
+ * The height of the Tab close icon
+ *
+ * @param {number} [$ui-tab-closable-icon-top=$tab-closable-icon-top]
+ * The distance to offset the Tab close icon from the top of the tab
+ *
+ * @param {number} [$ui-tab-closable-icon-right=$tab-closable-icon-right]
+ * The distance to offset the Tab close icon from the right of the tab
+ *
+ * @param {number} [$ui-tab-closable-icon-spacing=$tab-closable-icon-spacing]
+ * the space in between the text and the close button
+ *
+ * @member Ext.tab.Panel
+ */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-tab-default-top {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 0;
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+ -moz-border-radius-bottomleft: 0;
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+ padding: 13px 13px 13px 13px;
+ border-width: 0px;
+ border-style: solid;
+ background-color: #30414f; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-tab-default-bottom {
+ -moz-border-radius-topleft: 0;
+ -webkit-border-top-left-radius: 0;
+ border-top-left-radius: 0;
+ -moz-border-radius-topright: 0;
+ -webkit-border-top-right-radius: 0;
+ border-top-right-radius: 0;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 13px 13px 13px 13px;
+ border-width: 0px 0px 0px 0px;
+ border-style: solid;
+ background-color: #30414f; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-tab-default-left {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 0;
+ -webkit-border-top-right-radius: 0;
+ border-top-right-radius: 0;
+ -moz-border-radius-bottomright: 0;
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 13px 13px 13px 13px;
+ border-width: 0px 0px 0px 0px;
+ border-style: solid;
+ background-color: #30414f; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-tab-default-right {
+ -moz-border-radius-topleft: 0;
+ -webkit-border-top-left-radius: 0;
+ border-top-left-radius: 0;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 0;
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+ padding: 13px 13px 13px 13px;
+ border-width: 0px 0px 0px 0px;
+ border-style: solid;
+ background-color: #30414f; }
+
+/* */
+/* line 1073, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-default {
+ border-color: #f5f5f5;
+ cursor: pointer; }
+
+/* line 1083, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-default-top {
+ margin: 0 5px; }
+ /* line 1087, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-top.x-rtl {
+ margin: 0 5px 0 5px; }
+ /* line 1092, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-top.x-tab-rotate-left {
+ margin: 0 5px 0 5px; }
+ /* line 1096, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-top.x-tab-rotate-left.x-rtl {
+ margin: 0 5px 0 5px; }
+ /* line 1114, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-top.x-tab-focus {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none; }
+ /* line 1143, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-top.x-tab-focus.x-tab-over {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none; }
+ /* line 1172, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-top.x-tab-focus.x-tab-active {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none; }
+
+/* line 1198, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-default-right {
+ margin: 5px 0 5px 0; }
+ /* line 1202, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-right.x-rtl {
+ margin: 5px 0 5px 0; }
+ /* line 1207, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-right.x-tab-rotate-right {
+ margin: 5px 0 5px 0; }
+ /* line 1211, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-right.x-tab-rotate-right.x-rtl {
+ margin: 5px 0 5px 0; }
+ /* line 1229, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-right.x-tab-focus {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none; }
+ /* line 1258, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-right.x-tab-focus.x-tab-over {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none; }
+ /* line 1287, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-right.x-tab-focus.x-tab-active {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none; }
+
+/* line 1313, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-default-bottom {
+ margin: 0 5px 0 5px; }
+ /* line 1317, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-bottom.x-rtl {
+ margin: 0 5px 0 5px; }
+ /* line 1322, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-bottom.x-tab-rotate-left {
+ margin: 0 5px 0 5px; }
+ /* line 1326, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-bottom.x-tab-rotate-left.x-rtl {
+ margin: 0 5px 0 5px; }
+ /* line 1344, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-bottom.x-tab-focus {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none; }
+ /* line 1373, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-bottom.x-tab-focus.x-tab-over {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none; }
+ /* line 1402, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-bottom.x-tab-focus.x-tab-active {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none; }
+
+/* line 1428, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-default-left {
+ margin: 5px 0 5px 0; }
+ /* line 1432, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-left.x-rtl {
+ margin: 5px 0 5px 0; }
+ /* line 1437, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-left.x-tab-rotate-right {
+ margin: 5px 0 5px 0; }
+ /* line 1441, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-left.x-tab-rotate-right.x-rtl {
+ margin: 5px 0 5px 0; }
+ /* line 1459, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-left.x-tab-focus {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none; }
+ /* line 1488, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-left.x-tab-focus.x-tab-over {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none; }
+ /* line 1517, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-default-left.x-tab-focus.x-tab-active {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none; }
+
+/* line 1543, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-button-default {
+ height: 24px; }
+
+/* line 1548, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-inner-default {
+ font: 300 18px/24px "Roboto", sans-serif;
+ color: #fbfcfc;
+ max-width: 100%; }
+ /* line 1559, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-icon-right > .x-tab-inner-default, .x-tab-icon-left > .x-tab-inner-default {
+ max-width: calc(100% - 24px); }
+
+/* line 1566, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-icon-el-default {
+ height: 24px;
+ line-height: 24px;
+ background-position: center center; }
+ /* line 1570, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-icon-left > .x-tab-icon-el-default, .x-tab-icon-right > .x-tab-icon-el-default {
+ width: 24px; }
+ /* line 1575, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-icon-top > .x-tab-icon-el-default, .x-tab-icon-bottom > .x-tab-icon-el-default {
+ min-width: 24px; }
+ /* line 1582, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-icon-el-default.x-tab-glyph {
+ font-size: 24px;
+ line-height: 24px;
+ color: #fbfcfc;
+ opacity: 0.5; }
+ /* line 1605, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-text.x-tab-icon-left > .x-tab-icon-el-default {
+ margin-right: 6px; }
+ /* line 1609, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-text.x-tab-icon-left > .x-tab-icon-el-default.x-rtl {
+ margin-right: 0;
+ margin-left: 6px; }
+ /* line 1616, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-text.x-tab-icon-right > .x-tab-icon-el-default {
+ margin-left: 6px; }
+ /* line 1620, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-text.x-tab-icon-right > .x-tab-icon-el-default.x-rtl {
+ margin-left: 0;
+ margin-right: 6px; }
+ /* line 1627, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-text.x-tab-icon-top > .x-tab-icon-el-default {
+ margin-bottom: 6px; }
+ /* line 1631, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab-text.x-tab-icon-bottom > .x-tab-icon-el-default {
+ margin-top: 6px; }
+
+/* line 1636, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-focus.x-tab-default {
+ border-color: #30414f; }
+
+/* line 1703, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-over.x-tab-default {
+ border-color: #2a3c4a;
+ background-color: #2a3c4a; }
+
+/* line 1814, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab.x-tab-active.x-tab-default {
+ border-color: #4b6375;
+ background-color: #4b6375; }
+ /* line 1820, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab.x-tab-active.x-tab-default .x-tab-inner-default {
+ color: #fefefe; }
+ /* line 1835, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab.x-tab-active.x-tab-default .x-tab-glyph {
+ color: #fefefe; }
+ /* line 1843, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-ie8 .x-tab.x-tab-active.x-tab-default .x-tab-glyph {
+ color: #a4b0b9; }
+
+/* line 1922, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab.x-tab-disabled.x-tab-default {
+ cursor: default; }
+ /* line 1939, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab.x-tab-disabled.x-tab-default .x-tab-inner-default {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
+ opacity: 0.3; }
+ /* line 1958, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab.x-tab-disabled.x-tab-default .x-tab-icon-el-default {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+ /* line 1963, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-tab.x-tab-disabled.x-tab-default .x-tab-glyph {
+ color: #fbfcfc;
+ opacity: 0.3;
+ filter: none; }
+ /* line 1978, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+ .x-ie8 .x-tab.x-tab-disabled.x-tab-default .x-tab-glyph {
+ color: #6c7982; }
+
+/* line 2053, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-default .x-tab-close-btn {
+ top: 2px;
+ right: 2px;
+ width: 12px;
+ height: 12px;
+ background: url(images/tab/tab-default-close.png) 0 0; }
+/* line 2064, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-default .x-tab-close-btn-over {
+ background-position: -12px 0; }
+/* line 2074, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-default .x-tab-close-btn-pressed {
+ background-position: -24px 0; }
+/* line 2080, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-default.x-tab-active .x-tab-close-btn {
+ background-position: 0 -12px; }
+/* line 2085, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-default.x-tab-active .x-tab-close-btn-over {
+ background-position: -12px -12px; }
+/* line 2091, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-default.x-tab-active .x-tab-close-btn-pressed {
+ background-position: -24px -12px; }
+/* line 2098, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-default.x-tab-disabled .x-tab-close-btn {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
+ opacity: 0.3;
+ background-position: 0 0; }
+
+/* line 2110, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-rtl.x-tab-default .x-tab-close-btn {
+ right: auto;
+ left: 2px; }
+
+/* line 2116, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-tab-closable.x-tab-default .x-tab-button {
+ padding-right: 15px; }
+
+/* line 2121, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Tab.scss */
+.x-rtl.x-tab-closable.x-tab-default .x-tab-button {
+ padding-right: 0px;
+ padding-left: 15px; }
+
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* */
+/* line 130, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-default {
+ background-color: #f5f5f5; }
+
+/* line 169, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-default-top > .x-tab-bar-body-default {
+ padding: 6px; }
+/* line 173, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-default-bottom > .x-tab-bar-body-default {
+ padding: 6px 6px 6px 6px; }
+/* line 177, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-default-left > .x-tab-bar-body-default {
+ padding: 6px 6px 6px 6px; }
+/* line 182, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-rtl.x-tab-bar-default-left > .x-tab-bar-body-default {
+ padding: 6px 6px 6px 6px; }
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-default-right > .x-tab-bar-body-default {
+ padding: 6px 6px 6px 6px; }
+/* line 192, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-rtl.x-tab-bar-default-right > .x-tab-bar-body-default {
+ padding: 6px 6px 6px 6px; }
+
+/* line 199, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-plain.x-tab-bar-default-horizontal {
+ border-top-color: transparent;
+ border-bottom-color: transparent;
+ border-left-width: 0;
+ border-right-width: 0; }
+/* line 206, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-plain.x-tab-bar-default-vertical {
+ border-right-color: transparent;
+ border-left-color: transparent;
+ border-top-width: 0;
+ border-bottom-width: 0; }
+
+/* line 218, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-top > .x-tab-bar-body-default {
+ padding-bottom: 3px; }
+/* line 222, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-bottom > .x-tab-bar-body-default {
+ padding-top: 3px; }
+/* line 226, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-left > .x-tab-bar-body-default {
+ padding-right: 3px; }
+ /* line 230, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+ .x-tab-bar-left > .x-tab-bar-body-default.x-rtl {
+ padding-right: 0;
+ padding-left: 3px; }
+/* line 237, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-right > .x-tab-bar-body-default {
+ padding-left: 3px; }
+ /* line 241, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+ .x-tab-bar-right > .x-tab-bar-body-default.x-rtl {
+ padding-left: 0;
+ padding-right: 3px; }
+
+/* line 249, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-strip-default {
+ border-style: solid;
+ border-color: #4b6375;
+ background-color: #4b6375; }
+
+/* line 256, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-top > .x-tab-bar-strip-default {
+ border-width: 0 0 0 0;
+ height: 3px; }
+/* line 260, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-top.x-tab-bar-plain > .x-tab-bar-strip-default {
+ border-width: 0 0 0 0; }
+
+/* line 266, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-bottom > .x-tab-bar-strip-default {
+ border-width: 0 0 0 0;
+ height: 3px; }
+/* line 270, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-bottom.x-tab-bar-plain > .x-tab-bar-strip-default {
+ border-width: 0 0 0 0; }
+
+/* line 276, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-left > .x-tab-bar-strip-default {
+ border-width: 0 0 0 0;
+ width: 3px; }
+ /* line 280, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+ .x-tab-bar-left > .x-tab-bar-strip-default.x-rtl {
+ border-width: 0 0 0 0; }
+/* line 285, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-left.x-tab-bar-plain > .x-tab-bar-strip-default {
+ border-width: 0 0 0 0; }
+ /* line 288, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+ .x-tab-bar-left.x-tab-bar-plain > .x-tab-bar-strip-default.x-rtl {
+ border-width: 0 0 0 0; }
+
+/* line 296, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-right > .x-tab-bar-strip-default {
+ border-width: 0 0 0 0;
+ width: 3px; }
+ /* line 300, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+ .x-tab-bar-right > .x-tab-bar-strip-default.x-rtl {
+ border-width: 0 0 0 0; }
+/* line 305, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-right.x-tab-bar-plain > .x-tab-bar-strip-default {
+ border-width: 0 0 0 0; }
+ /* line 308, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+ .x-tab-bar-right.x-tab-bar-plain > .x-tab-bar-strip-default.x-rtl {
+ border-width: 0 0 0 0; }
+
+/* line 320, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-horizontal > .x-tab-bar-body-default {
+ min-height: 65px; }
+ /* line 323, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+ .x-ie9m .x-tab-bar-horizontal > .x-tab-bar-body-default {
+ min-height: 50px; }
+
+/* line 330, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-vertical > .x-tab-bar-body-default {
+ min-width: 65px; }
+ /* line 333, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+ .x-ie9m .x-tab-bar-vertical > .x-tab-bar-body-default {
+ min-width: 50px; }
+
+/* line 145, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-tab-bar-default-scroller .x-box-scroller-body-horizontal {
+ margin-left: 18px; }
+
+/* line 151, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-tab-bar-default-vertical-scroller .x-box-scroller-body-vertical {
+ margin-top: 18px; }
+
+/* line 156, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-box-scroller-tab-bar-default {
+ cursor: pointer;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+ /* line 165, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-tab-bar-default.x-box-scroller-hover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
+ opacity: 0.6; }
+ /* line 171, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-tab-bar-default.x-box-scroller-pressed {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
+ opacity: 0.7; }
+ /* line 177, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-tab-bar-default.x-box-scroller-disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
+ opacity: 0.25;
+ cursor: default; }
+ /* line 188, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-tab-bar-default.x-box-scroller-left, .x-box-scroller-tab-bar-default.x-box-scroller-right {
+ width: 24px;
+ height: 24px;
+ top: 50%;
+ margin-top: -12px; }
+ /* line 214, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-tab-bar-default.x-box-scroller-left {
+ margin-left: 0;
+ margin-right: 0;
+ margin-bottom: 0;
+ background-image: url(images/tab-bar/default-scroll-left.png); }
+ /* line 237, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-tab-bar-default.x-box-scroller-right {
+ margin-left: 0;
+ margin-right: 0;
+ margin-bottom: 0;
+ background-image: url(images/tab-bar/default-scroll-right.png); }
+ /* line 263, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-tab-bar-default.x-box-scroller-top, .x-box-scroller-tab-bar-default.x-box-scroller-bottom {
+ height: 24px;
+ width: 24px;
+ left: 50%;
+ margin-left: -12px; }
+ /* line 289, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-tab-bar-default.x-box-scroller-top {
+ margin-top: 0;
+ margin-right: 0;
+ margin-bottom: 0;
+ background-image: url(images/tab-bar/default-scroll-top.png); }
+ /* line 312, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-tab-bar-default.x-box-scroller-bottom {
+ margin-top: 0;
+ margin-right: 0;
+ margin-bottom: 0;
+ background-image: url(images/tab-bar/default-scroll-bottom.png); }
+
+/* line 448, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-default-top .x-box-scroller-tab-bar-default {
+ margin-top: -13px; }
+/* line 452, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-default-right .x-box-scroller-tab-bar-default {
+ margin-left: -11px; }
+/* line 456, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-default-bottom .x-box-scroller-tab-bar-default {
+ margin-top: -11px; }
+/* line 460, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-tab-bar-default-left .x-box-scroller-tab-bar-default {
+ margin-left: -13px; }
+
+/* line 469, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-box-scroller-tab-bar-default {
+ background-color: #f5f5f5; }
+ /* line 475, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+ .x-box-scroller-tab-bar-default .x-ie8 .x-box-scroller-plain {
+ background-color: #fff; }
+
+/* line 486, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-box-scroller-plain.x-box-scroller-tab-bar-default.x-box-scroller-left {
+ background-image: url(images/tab-bar/default-plain-scroll-left.png); }
+/* line 490, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-box-scroller-plain.x-box-scroller-tab-bar-default.x-box-scroller-right {
+ background-image: url(images/tab-bar/default-plain-scroll-right.png); }
+/* line 494, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-box-scroller-plain.x-box-scroller-tab-bar-default.x-box-scroller-top {
+ background-image: url(images/tab-bar/default-plain-scroll-top.png); }
+/* line 498, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tab/Bar.scss */
+.x-box-scroller-plain.x-box-scroller-tab-bar-default.x-box-scroller-bottom {
+ background-image: url(images/tab-bar/default-plain-scroll-bottom.png); }
+
+/* */
+/* */
+/* */
+/* */
+/**
+ * Creates a visual theme for a Window
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number} [$ui-padding=$window-padding]
+ * The padding of the Window
+ *
+ * @param {number} [$ui-border-radius=$window-border-radius]
+ * The border-radius of the Window
+ *
+ * @param {color} [$ui-border-color=$window-border-color]
+ * The border-color of the Window
+ *
+ * @param {number} [$ui-border-width=$window-border-width]
+ * The border-width of the Window
+ *
+ * @param {color} [$ui-inner-border-color=$window-inner-border-color]
+ * The inner border-color of the Window
+ *
+ * @param {number} [$ui-inner-border-width=$window-inner-border-width]
+ * The inner border-width of the Window
+ *
+ * @param {color} [$ui-header-color=$window-header-color]
+ * The text color of the Header
+ *
+ * @param {color} [$ui-header-background-color=$window-header-background-color]
+ * The background-color of the Header
+ *
+ * @param {number/list} [$ui-header-padding=$window-header-padding]
+ * The padding of the Header
+ *
+ * @param {string} [$ui-header-font-family=$window-header-font-family]
+ * The font-family of the Header
+ *
+ * @param {number} [$ui-header-font-size=$window-header-font-size]
+ * The font-size of the Header
+ *
+ * @param {string} [$ui-header-font-weight=$window-header-font-weight]
+ * The font-weight of the Header
+ *
+ * @param {number} [$ui-header-line-height=$window-header-line-height]
+ * The line-height of the Header
+ *
+ * @param {number/list} [$ui-header-text-padding=$window-header-text-padding]
+ * The padding of the Header's text element
+ *
+ * @param {string} [$ui-header-text-transform=$window-header-text-transform]
+ * The text-transform of the Header
+ *
+ * @param {color} [$ui-header-border-color=$ui-border-color]
+ * The border-color of the Header
+ *
+ * @param {number} [$ui-header-border-width=$window-header-border-width]
+ * The border-width of the Header
+ *
+ * @param {color} [$ui-header-inner-border-color=$window-header-inner-border-color]
+ * The inner border-color of the Header
+ *
+ * @param {number} [$ui-header-inner-border-width=$window-header-inner-border-width]
+ * The inner border-width of the Header
+ *
+ * @param {number} [$ui-header-icon-width=$window-header-icon-width]
+ * The width of the Header icon
+ *
+ * @param {number} [$ui-header-icon-height=$window-header-icon-height]
+ * The height of the Header icon
+ *
+ * @param {number} [$ui-header-icon-spacing=$window-header-icon-spacing]
+ * The space between the Header icon and text
+ *
+ * @param {list} [$ui-header-icon-background-position=$window-header-icon-background-position]
+ * The background-position of the Header icon
+ *
+ * @param {color} [$ui-header-glyph-color=$window-header-glyph-color]
+ * The color of the Header glyph icon
+ *
+ * @param {number} [$ui-header-glyph-opacity=$window-header-glyph-opacity]
+ * The opacity of the Header glyph icon
+ *
+ * @param {number} [$ui-tool-spacing=$window-tool-spacing]
+ * The space between the {@link Ext.panel.Tool Tools}
+ *
+ * @param {string} [$ui-tool-background-image=$window-tool-background-image]
+ * The background sprite to use for {@link Ext.panel.Tool Tools}
+ *
+ * @param {color} [$ui-body-border-color=$window-body-border-color]
+ * The border-color of the Window body
+ *
+ * @param {color} [$ui-body-background-color=$window-body-background-color]
+ * The background-color of the Window body
+ *
+ * @param {number} [$ui-body-border-width=$window-body-border-width]
+ * The border-width of the Window body
+ *
+ * @param {string} [$ui-body-border-style=$window-body-border-style]
+ * The border-style of the Window body
+ *
+ * @param {color} [$ui-body-color=$window-body-color]
+ * The color of text inside the Window body
+ *
+ * @param {color} [$ui-background-color=$window-background-color]
+ * The background-color of the Window
+ *
+ * @param {boolean} [$ui-force-header-border=$window-force-header-border]
+ * True to force the window header to have a border on the side facing
+ * the window body. Overrides dock layout's border management border
+ * removal rules.
+ *
+ * @param {boolean} [$ui-include-border-management-rules=$window-include-border-management-rules]
+ * True to include neptune style border management rules.
+ *
+ * @param {color} [$ui-wrap-border-color=$window-wrap-border-color]
+ * The color to apply to the border that wraps the body and docked items. The presence of
+ * the wrap border is controlled by the {@link #border} config. Only applicable when
+ * `$ui-include-border-management-rules` is `true`.
+ *
+ * @param {color} [$ui-wrap-border-width=$window-wrap-border-width]
+ * The width to apply to the border that wraps the body and docked items. The presence of
+ * the wrap border is controlled by the {@link #border} config. Only applicable when
+ * `$ui-include-border-management-rules` is `true`.
+ *
+ * @param {boolean} [$ui-ignore-frame-padding=$window-ignore-frame-padding]
+ * True to ignore the frame padding. By default, the frame mixin adds extra padding when
+ * border radius is larger than border width. This is intended to prevent the content
+ * from colliding with the rounded corners of the frame. Set this to true to prevent
+ * the window frame from adding this extra padding.
+ *
+ * @member Ext.window.Window
+ */
+/* line 665, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-ghost {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+
+/* line 212, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-default {
+ border-color: #4b6375;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ -ms-border-radius: 4px;
+ -o-border-radius: 4px;
+ border-radius: 4px; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-window-default {
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ -ms-border-radius: 4px;
+ -o-border-radius: 4px;
+ border-radius: 4px;
+ padding: 0 0 0 0;
+ border-width: 1px;
+ border-style: solid;
+ background-color: white; }
+
+/* */
+/* line 234, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-body-default {
+ border-color: #4b6375;
+ border-width: 1px;
+ border-style: solid;
+ background: white;
+ color: black;
+ font-size: 13px;
+ font-weight: 300;
+ font-family: "Roboto", sans-serif; }
+
+/* line 248, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default {
+ font-size: 15px;
+ border-color: #4b6375;
+ background-color: #4b6375; }
+ /* line 253, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+ .x-window-header-default .x-tool-img {
+ background-color: #4b6375; }
+
+/* line 266, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default-horizontal .x-window-header-default-tab-bar {
+ margin-top: -9px;
+ margin-bottom: -9px; }
+
+/* line 273, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default-vertical .x-window-header-default-tab-bar {
+ margin-right: -9px;
+ margin-left: -9px; }
+
+/* line 281, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-rtl.x-window-header-default-vertical .x-window-header-default-tab-bar {
+ margin-left: -9px;
+ margin-right: -9px; }
+
+/* line 289, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-title-default {
+ color: #fefefe;
+ font-size: 15px;
+ font-weight: 300;
+ font-family: "Roboto", sans-serif;
+ line-height: 16px; }
+ /* line 298, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+ .x-window-header-title-default > .x-title-text-default {
+ padding: 0;
+ text-transform: none; }
+ /* line 341, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+ .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-top {
+ height: 22px;
+ padding-bottom: 6px; }
+ /* line 346, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+ .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-right {
+ width: 22px;
+ padding-left: 6px; }
+ /* line 351, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+ .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-right.x-rtl {
+ padding-left: 0;
+ padding-right: 6px; }
+ /* line 358, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+ .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-bottom {
+ height: 22px;
+ padding-top: 6px; }
+ /* line 363, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+ .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-left {
+ width: 22px;
+ padding-right: 6px; }
+ /* line 368, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+ .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-left.x-rtl {
+ padding-right: 0;
+ padding-left: 6px; }
+ /* line 375, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+ .x-window-header-title-default > .x-title-icon-wrap-default > .x-title-icon-default {
+ width: 16px;
+ height: 16px;
+ background-position: center center; }
+ /* line 381, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+ .x-window-header-title-default > .x-title-icon-wrap-default > .x-title-glyph {
+ color: #fefefe;
+ font-size: 16px;
+ line-height: 16px;
+ opacity: 0.5; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-window-header-default-top {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 0;
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+ -moz-border-radius-bottomleft: 0;
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+ padding: 9px 9px 6px 9px;
+ border-width: 1px 1px 1px 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-window-header-default-right {
+ -moz-border-radius-topleft: 0;
+ -webkit-border-top-left-radius: 0;
+ border-top-left-radius: 0;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 0;
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+ padding: 9px 9px 9px 6px;
+ border-width: 1px 1px 1px 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-window-header-default-bottom {
+ -moz-border-radius-topleft: 0;
+ -webkit-border-top-left-radius: 0;
+ border-top-left-radius: 0;
+ -moz-border-radius-topright: 0;
+ -webkit-border-top-right-radius: 0;
+ border-top-right-radius: 0;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 6px 9px 9px 9px;
+ border-width: 1px 1px 1px 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-window-header-default-left {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 0;
+ -webkit-border-top-right-radius: 0;
+ border-top-right-radius: 0;
+ -moz-border-radius-bottomright: 0;
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 9px 6px 9px 9px;
+ border-width: 1px 1px 1px 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-window-header-default-collapsed-top {
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ -ms-border-radius: 4px;
+ -o-border-radius: 4px;
+ border-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-window-header-default-collapsed-right {
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ -ms-border-radius: 4px;
+ -o-border-radius: 4px;
+ border-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-window-header-default-collapsed-bottom {
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ -ms-border-radius: 4px;
+ -o-border-radius: 4px;
+ border-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-window-header-default-collapsed-left {
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ -ms-border-radius: 4px;
+ -o-border-radius: 4px;
+ border-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #4b6375; }
+
+/* */
+/* line 518, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default .x-window-header-icon {
+ width: 16px;
+ height: 16px;
+ color: #fefefe;
+ font-size: 16px;
+ line-height: 16px;
+ background-position: center center; }
+/* line 527, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default .x-window-header-glyph {
+ color: #fefefe;
+ font-size: 16px;
+ line-height: 16px;
+ opacity: 0.5; }
+
+/* line 553, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default-horizontal .x-tool-after-title {
+ margin: 0 0 0 6px; }
+/* line 558, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default-horizontal .x-rtl.x-tool-after-title {
+ margin: 0 6px 0 0; }
+/* line 563, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default-horizontal .x-tool-before-title {
+ margin: 0 6px 0 0; }
+/* line 568, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default-horizontal .x-rtl.x-tool-before-title {
+ margin: 0 0 0 6px; }
+
+/* line 575, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default-vertical .x-tool-after-title {
+ margin: 6px 0 0 0; }
+/* line 580, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default-vertical .x-rtl.x-tool-after-title {
+ margin: 6px 0 0 0; }
+/* line 585, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default-vertical .x-tool-before-title {
+ margin: 0 0 6px 0; }
+/* line 590, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default-vertical .x-rtl.x-tool-before-title {
+ margin: 0 0 6px 0; }
+
+/* line 599, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-header-default {
+ border-width: 1px !important; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-l {
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-b {
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-bl {
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-r {
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important; }
+
+/* line 20, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-rl {
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 26, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-rb {
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important; }
+
+/* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-rbl {
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-t {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important; }
+
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-tl {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 50, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-tb {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important; }
+
+/* line 56, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-tbl {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 64, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-tr {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important; }
+
+/* line 70, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-trl {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-left-color: #4b6375 !important;
+ border-left-width: 1px !important; }
+
+/* line 78, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-trb {
+ border-top-color: #4b6375 !important;
+ border-top-width: 1px !important;
+ border-right-color: #4b6375 !important;
+ border-right-width: 1px !important;
+ border-bottom-color: #4b6375 !important;
+ border-bottom-width: 1px !important; }
+
+/* line 86, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-window-default-outer-border-trbl {
+ border-color: #4b6375 !important;
+ border-width: 1px !important; }
+
+/* line 675, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Window.scss */
+.x-window-body-plain {
+ background-color: transparent; }
+
+/* COMMON */
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-container .x-toolbar-default {
+ border-color: #CACACA;
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NENEQzI0Mjg1REM1MTFFMjk2NDlGODJCMDlGMjg2NTgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NENEQzI0Mjk1REM1MTFFMjk2NDlGODJCMDlGMjg2NTgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0Q0RDMjQyNjVEQzUxMUUyOTY0OUY4MkIwOUYyODY1OCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0Q0RDMjQyNzVEQzUxMUUyOTY0OUY4MkIwOUYyODY1OCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PjU1iboAAAAfSURBVHjaYvj//z8DDN+8eROVA6JROGABZA4IAwQYALYwMgX3eE7SAAAAAElFTkSuQmCC);
+ color: #555;
+ background-color: #F7F7F7;
+ font-weight: bold;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased; }
+
+/* line 12, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-container .x-docked-top {
+ border-bottom-width: 1px !important; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-container .x-docked-bottom {
+ border-top-width: 1px !important; }
+
+/* line 21, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-container .x-tree-view,
+.x-bindinspector-container .x-grid-view {
+ background-color: #F3F3F3;
+ box-shadow: inset 8px 0 8px 0 rgba(0, 0, 0, 0.1);
+ -moz-box-shadow: inset 8px 0 8px 0 rgba(0, 0, 0, 0.1);
+ -webkit-box-shadow: inset 8px 0 8px 0 rgba(0, 0, 0, 0.1); }
+
+/* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-last-item td {
+ box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
+ -moz-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
+ -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1); }
+
+/* line 34, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-unhighlighted.x-bindinspector-last-item td {
+ box-shadow: 0 8px 8px black;
+ -moz-box-shadow: 0 8px 8px black;
+ -webkit-box-shadow: 0 8px 8px black; }
+
+/* COMPONENT LIST */
+/* line 41, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-vm-results-tb.x-toolbar-default {
+ background-color: #FFE8BE; }
+
+/* line 45, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-target-menu {
+ padding: 10px;
+ height: 0px;
+ overflow: hidden;
+ background: #3C3C3C;
+ color: #FFFFFF;
+ font-size: 15px;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale; }
+
+/* line 56, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-target-menu hr {
+ border-color: #5A5A5A; }
+
+/* line 60, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-picker-lbl {
+ width: 76px;
+ display: inline-block;
+ text-align: right;
+ padding-right: 19px; }
+
+/* line 68, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-preview-bind,
+.x-bindinspector-open-bind {
+ padding: 4px;
+ background: #4D4D4D;
+ display: inline-block;
+ margin: 2px 12px 2px 4px;
+ color: #FFC154;
+ font-weight: bold;
+ border: 1px solid #695633;
+ border-radius: 3px;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px; }
+
+/* line 84, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-preview-bind:hover,
+.x-bindinspector-open-bind:hover {
+ background-color: #646464;
+ color: white;
+ border-color: #A2A2A2; }
+
+/* line 91, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-preview-vm,
+.x-bindinspector-open-vm {
+ padding: 4px;
+ background: #4D4D4D;
+ display: inline-block;
+ margin: 2px;
+ color: #54CFFF;
+ font-weight: bold;
+ border: 1px solid #4F5E64;
+ border-radius: 3px;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px; }
+
+/* line 107, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-preview-vm:hover,
+.x-bindinspector-open-vm:hover {
+ background-color: #646464;
+ color: white;
+ border-color: #A2A2A2; }
+
+/* line 113, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-filter-visible .x-tree-node-text {
+ font-weight: bold;
+ background: #666666;
+ padding: 2px 12px 3px 12px;
+ margin-left: 5px;
+ color: #FFFFFF;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ border: 1px solid #444444; }
+
+/* line 125, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindings-icon,
+.x-vm-icon {
+ padding-left: 7px;
+ vertical-align: bottom;
+ font-size: 18px; }
+
+/* line 131, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindings-icon {
+ color: #F39061; }
+
+/* line 135, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-vm-icon {
+ color: #67AAE9; }
+
+/* line 139, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-filter-visible .x-bindings-icon {
+ color: #F8A67F; }
+
+/* line 143, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-filter-visible .x-vm-icon {
+ color: #7BC8F3; }
+
+/* data missing from binding */
+/* line 148, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-missing-data .x-tree-icon {
+ /*red*/
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABgUlEQVR42mNgwAGueUd43w6IunsrIOrBdd+wYAZSwBnPAGWgxm93A2P+g/At/6gfl70DNYk24LZ/5BKQRhB9wy9yFoh90zdyNVGar3iGat0OiP4LsvWMS6jcOVc/KZBr7vhH/bvsE6hPhO1Rq8C2+0VNgYnd8o/ohXplA17NIBtANoFsBNnMy8v7H4RPOPuJ3/KL+gqSu+YTboTTgJt+kRshNkX0gvgwA8Cu8IvsBMv5RW7B7nffcFOw7f7RXy66uYmhG3DO01P0VkDkZ5AhV7xDzTAMAJq8HRza/pHtMDFkA0Dghl9EK0RNxA5Uv3tHWIEl/KI+HrN0F8JlAEgOpAakFqQH4Xf/qH1Q2xsJxdItv4gmaFjsBQtc94lwgEbRuzMuLvzIitFdAALnHQIEbvtHv4cYEmYHtD1yE8T28Gp027AZAHZFQFQtxMuRG4GJJOophp8IAFiYAdPGM5ABGyCZJppEDA6zTQxnHHxEgAGzHJiE3xJnECiTRb0F6QGlDQCUUiJb7CpB8QAAAABJRU5ErkJggg==); }
+
+/* rowbody */
+/* line 154, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-cmp-list-row-body {
+ display: none;
+ background: #4E4E4E;
+ padding: 7px 12px;
+ color: #FFC256;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ font-size: 13px;
+ line-height: 21px;
+ border: 1px solid #222222; }
+
+/* line 166, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-grid-item-selected .x-cmp-list-row-body {
+ display: block; }
+
+/* tips */
+/* line 171, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-componentlist-tip {
+ background: #3C3C3C;
+ color: #C92424;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased; }
+
+/* line 178, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-componentlist-tip hr {
+ border-color: #5A5A5A; }
+
+/* line 182, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-componentlist-tip .x-binding-tip-descriptor {
+ color: white;
+ font-weight: bold;
+ margin-left: 8px; }
+
+/* line 188, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-componentlist-tip .x-tip-body-default {
+ color: #FFFFFF;
+ font-size: 14px; }
+
+/* line 193, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-binding-tip-value {
+ color: #FFC154;
+ font-size: 15px;
+ line-height: 28px; }
+
+/* line 199, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-binding-missing-data {
+ color: #FF5E5E;
+ font-weight: bold; }
+
+/* line 204, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-componentlist-tip .x-tip-anchor {
+ position: absolute;
+ overflow: hidden;
+ border-style: solid;
+ border-width: 16px 16px 16px 0;
+ left: -15px !important;
+ top: 50% !important;
+ margin-top: -16px;
+ border-color: transparent #3C3C3C; }
+
+/* BINDINGS PREVIEW */
+/* line 218, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-prev-default {
+ background: white;
+ color: #6A8297;
+ font-size: 22px;
+ line-height: 31px;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ text-align: center; }
+
+/* VIEW MODEL DETAIL */
+/* line 231, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindindicator-vm-src {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAiElEQVR42mNgGAXUAf//vzL4///1ByBdgC7379+rDUDxA///P1fAY8BzB6AB/0EYqOECiI9qAETu//+XDf//3xfAYcjLAKBNDxCKX00AKYZgEBsu/gCkFqdrIC6AKz6AagFMHCyXgMUbCBdAnP5cAdMFWMIKOQwghuAKA4i3yIyFVwaj6RU7AABzWObuSkN0egAAAABJRU5ErkJggg==);
+ background-position: center center;
+ background-repeat: no-repeat;
+ background-color: #FF5200; }
+
+/* line 238, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-viewmodeldetail .x-grid-item-over .x-bindinspector-data-search-cell {
+ visibility: visible; }
+
+/* line 242, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-viewmodeldetail .x-grid-item-over .x-bindinspector-data-search-cell:hover {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABNElEQVR42o2SLY6DUBSF2UHDBhCzDhSpI1gEO0BSgQI/G0CMqykSLGSWAggsogFFAuJOvyY0Q/kpJ3kJ4d1z7j3nPkXZga7rZ9/35Xq9ShRFEgTBr+u6qvIJp9Ppi+KmaWQcR+n7/nn4zrLsjjA1e+QXic62bcvlcpE0TQXkeS6IrApMnSFbliXv9wgCJjFNc27HcRw1juOfYRgE71sWmaBtW7ndbt+L0FBmAsMwNgUQJ48wDGUhgM9PAp7nPQXIZXaBp8kCRXsWqCGvzRCLolidgrFBkiRCZgsLj4uKgABCENgGq+RBAcRppGmauiBPDwYyp+u61zf/98h3OlNUVdVzRRwyoSue+eYpr5KnzmVZzvZLsA++Wtf1nPj/ZTHm1HnqohwFjwKB986HgQVCWd3pAfwBUhNlbKBwMSIAAAAASUVORK5CYII=);
+ background-color: #FF5200; }
+
+/* line 247, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-data-search-cell {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABN0lEQVR42o2SoY6DUBBFESVBtUFgEdBP2WABBQ7PZ4DZiiKb7AcgsATXEL5kBQ7FL8z2NLxmaaFlkpe8vDf33rkzo2lvouu6r9PpJEmSSJqmkmXZ9XK5mNqnGIbBIdmyLNntdmIYxv1w9zxvhJicVXCe5w8QylVVyfl8liAI5JYCiUCySKCUAdd1Lc//EE4kY9M0cztlWZpRFP3oui54X7NIBYfDQeI4/n5pGsxU0LbtKgHk9ONWrbwQ4PMTQVEUdwL6MvvAk7JA0jsL5NCv1SYej8fFKqayJQxDoWdLFn5pEEkQAWAajJKF4h1yhPq+N1/AamEAc/b7/ePO+yrY9/0RZZIcx7mPiENPUMUzd1Z5EayUXdedzXdaFtO27Tnw/2ZRplJWKtrWYCkgeFbeHFigKYsz3RB/jMnzbI73hMsAAAAASUVORK5CYII=);
+ background-position: center center;
+ background-repeat: no-repeat;
+ visibility: hidden; }
+
+/* line 254, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-isloading .x-tree-icon {
+ background-image: url(images/grid/loading.gif) !important;
+ vertical-align: middle;
+ width: 16px;
+ height: 16px; }
+
+/* line 261, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-highlighted {
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased; }
+
+/* line 266, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-unhighlighted {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
+ opacity: 0.2;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased; }
+
+/* line 272, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bi-zero-bind-count {
+ color: #CACACA; }
+
+/* line 276, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-not-inherited .x-bindinspector-indicator-col {
+ /*gray diag lines*/
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NENEQzI0Mjg1REM1MTFFMjk2NDlGODJCMDlGMjg2NTgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NENEQzI0Mjk1REM1MTFFMjk2NDlGODJCMDlGMjg2NTgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0Q0RDMjQyNjVEQzUxMUUyOTY0OUY4MkIwOUYyODY1OCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0Q0RDMjQyNzVEQzUxMUUyOTY0OUY4MkIwOUYyODY1OCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PjU1iboAAAAfSURBVHjaYvj//z8DDN+8eROVA6JROGABZA4IAwQYALYwMgX3eE7SAAAAAElFTkSuQmCC);
+ border-right: 2px solid #CFCDCD;
+ font-size: 13px;
+ color: #8B8B8B;
+ background-color: #F7F7F7; }
+
+/* line 285, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-indicator-col {
+ border-right: 2px solid #F3F3F3;
+ color: #414141; }
+
+/* line 290, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-missing-data .x-tree-node-text {
+ position: relative; }
+
+/* line 294, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-data-only .x-tree-icon {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
+ opacity: 0.7;
+ /*blue*/
+ /*background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABOklEQVR42mNgQANt8/ZodSw91Ne59PB1IP4Bwh3LD18DiYHkGHCB0PpVbB1LD0/pXHrkb9fyo/+xYZBcx5JDMwr7VnFiaO5aeng3TCHQoJntiw+Y1s/fzwHCIDZIDC6/7PBekB64AZ1LDk+F2HD4VtPcffowcZgGGL9pwT5toCtuQC2ZghBcdvgPSLB14R49ZJehGwBWD7QAbBlQD0gvQ/uyQ/0wZzMQCWDeAellAIU22MRFR0zQFWJzAdjLQLVQL19nAEbRTxAnN3cSO7EGgNSCXQ3US5YBZXM38kJd8JksLwADzxgSboeu4A1EXAbAAhFIT2BoXbRfh5RoBKmBRSNIL96EhMXp8IQE0oM7KQPTO8ifIPH6qft5QGyQGM6kTHFmQncmKHDATl165BfQW19AoQ0Sg/sZCQAAbAWIYstl68AAAAAASUVORK5CYII=);*/
+ /*gray info*/
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABGElEQVR42qVTSwrCMBDNyg/oRVR0oZ6vN1ApCrrqvruurW2hvwuIFa+hCxVF34Ok1NIWrQNDkpf3pjOTqRA5s2275/v+LAiCBH6lR1F0IMY7UWaapjVAXoL8jOP4hfXDJfYEZ22aZrtIvCWJjv3G87ypYRgtOvfE1H0Yhjtq0gAAVlJ4chxnpHAlUGfc9cE5Su4yBRHgQRA1DrOZ5QNI/khm8aBWINJcpS2+NFUOtTwkPLiuO8kTizKgkSsDJAKdvfGg63rz2wDkyle51QpgWVZX9uFcqwQ0b0wcw7WvbGJZgEwTF2zI4JdnJEc9I7WVg1SQejpI1FSN8pp1Esfcd7gnVjrKf/9MBWkumCq+dMd6YbeJpTVn7A1h4Ltw2AUeVgAAAABJRU5ErkJggg==); }
+
+/* line 305, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-data-only .x-tree-node-text,
+.x-bindinspector-data-only .x-grid-cell-inner {
+ color: #CACACA; }
+
+/* line 309, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-stub-only .x-tree-icon {
+ /*blue*/
+ /*background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABOklEQVR42mNgQANt8/ZodSw91Ne59PB1IP4Bwh3LD18DiYHkGHCB0PpVbB1LD0/pXHrkb9fyo/+xYZBcx5JDMwr7VnFiaO5aeng3TCHQoJntiw+Y1s/fzwHCIDZIDC6/7PBekB64AZ1LDk+F2HD4VtPcffowcZgGGL9pwT5toCtuQC2ZghBcdvgPSLB14R49ZJehGwBWD7QAbBlQD0gvQ/uyQ/0wZzMQCWDeAellAIU22MRFR0zQFWJzAdjLQLVQL19nAEbRTxAnN3cSO7EGgNSCXQ3US5YBZXM38kJd8JksLwADzxgSboeu4A1EXAbAAhFIT2BoXbRfh5RoBKmBRSNIL96EhMXp8IQE0oM7KQPTO8ifIPH6qft5QGyQGM6kTHFmQncmKHDATl165BfQW19AoQ0Sg/sZCQAAbAWIYstl68AAAAAASUVORK5CYII=);*/
+ /*yellow alert*/
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABA0lEQVR42p2QP0tCURiH7zdQRA3u4OJUiyDY4CDtTuEXuXs0JEQ4uDk5C0EuKoEu+SWcg5baLCS7tNTx98IzyMWjXoeHe95/z3vODdzi2kdTvIo30fL1+YbLIhYOfsV5GsFAOL59zsNjBRfij60lEXKbf1E5RvDExl4URYGwXJfc6JCgwqZYhBp2hs5n4odadZ9gzKYu2x1YrUPt2SeosWEtijsEBfGN5HKXYErxweKkAMk9PbOkoE5hJXI+AbUVvfVtwZzkHTECAGptel8cgisSnyJDk+8GRlZ8MdOwxITghoa9ArhlZmzB+/abDjwh+c8+LBgRnMLEBHnxKJYpBpfMFDbGjWcGPFD11gAAAABJRU5ErkJggg==); }
+
+/* COMPONENT DETAIL */
+/* line 319, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-stub-active {
+ border-bottom: 1px solid #DFDFDF; }
+
+/* line 323, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-stub-active:hover {
+ color: #3DB5CC;
+ border-color: #3DB5CC; }
+
+/* line 328, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-cmp-datasrc {
+ color: #2E2E2E;
+ background-color: #FAFAFA;
+ padding: 0px 10px;
+ /*gray diag lines*/
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NENEQzI0Mjg1REM1MTFFMjk2NDlGODJCMDlGMjg2NTgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NENEQzI0Mjk1REM1MTFFMjk2NDlGODJCMDlGMjg2NTgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0Q0RDMjQyNjVEQzUxMUUyOTY0OUY4MkIwOUYyODY1OCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0Q0RDMjQyNzVEQzUxMUUyOTY0OUY4MkIwOUYyODY1OCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PjU1iboAAAAfSURBVHjaYvj//z8DDN+8eROVA6JROGABZA4IAwQYALYwMgX3eE7SAAAAAElFTkSuQmCC);
+ border-top: 1px solid #E0E0E0; }
+
+/* line 338, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-compdetail-grid .x-grid-cell-inner {
+ line-height: 31px;
+ font-size: 14px;
+ padding: 10px 16px;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased; }
+
+/* line 347, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-compdetail-grid .x-grid-item-selected,
+.x-bindinspector-compdetail-grid .x-grid-item-focused {
+ background-color: white; }
+
+/* line 352, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-compdetail-grid .x-grid-item-selected .x-grid-cell,
+.x-bindinspector-compdetail-grid .x-grid-item-focused .x-grid-cell {
+ border-left: 20px solid #FFC154; }
+
+/* line 356, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-comp-key {
+ font-weight: bold;
+ color: #575656; }
+
+/* line 362, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-comp-desc {
+ margin-left: 12px;
+ color: #919191; }
+
+/* line 367, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-comp-val {
+ color: #318094;
+ font-weight: bold; }
+
+/* line 372, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-bind-type {
+ color: #C4935F;
+ font-size: 12px;
+ line-height: 10px;
+ font-style: italic;
+ text-align: right; }
+
+/* line 382, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-direct-val,
+.x-bindinspector-inherited-val,
+.x-bindinspector-mult-val {
+ position: relative; }
+
+/* line 388, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-direct-val:after,
+.x-bindinspector-inherited-val:after,
+.x-bindinspector-mult-val-val:after {
+ position: absolute;
+ bottom: -13px;
+ width: 16px;
+ left: 50%;
+ margin-left: -8px;
+ text-align: center;
+ color: gray;
+ line-height: 14px; }
+
+/* line 399, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-direct-val:after {
+ content: '\25CF'; }
+
+/* line 403, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-inherited-val {
+ content: '\25CB'; }
+
+/* line 407, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
+.x-bindinspector-mult-val {
+ content: '\25D3'; }
+
+/**
+ * Creates a visual theme for a ButtonGroup.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {color} [$ui-background-color=$btn-group-background-color]
+ * The background-color of the button group
+ *
+ * @param {color} [$ui-border-color=$btn-group-border-color]
+ * The border-color of the button group
+ *
+ * @param {number} [$ui-border-width=$btn-group-border-width]
+ * The border-width of the button group
+ *
+ * @param {number} [$ui-border-radius=$btn-group-border-radius]
+ * The border-radius of the button group
+ *
+ * @param {color} [$ui-inner-border-color=$btn-group-inner-border-color]
+ * The inner border-color of the button group
+ *
+ * @param {color} [$ui-header-background-color=$btn-group-header-background-color]
+ * The background-color of the header
+ *
+ * @param {string} [$ui-header-font=$btn-group-header-font]
+ * The font of the header
+ *
+ * @param {color} [$ui-header-color=$btn-group-header-color]
+ * The text color of the header
+ *
+ * @param {number} [$ui-header-line-height=$btn-group-header-line-height]
+ * The line-height of the header
+ *
+ * @param {number} [$ui-header-padding=$btn-group-header-padding]
+ * The padding of the header
+ *
+ * @param {number} [$ui-body-padding=$btn-group-padding]
+ * The padding of the body element
+ *
+ * @param {string} [$ui-tool-background-image=$btn-group-tool-background-image]
+ * Sprite image to use for header {@link Ext.panel.Tool Tools}
+ *
+ * @member Ext.container.ButtonGroup
+ */
+/* line 101, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/container/ButtonGroup.scss */
+.x-btn-group-default {
+ border-color: white;
+ -webkit-box-shadow: white 0 1px 0px 0 inset, white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
+ -moz-box-shadow: white 0 1px 0px 0 inset, white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
+ box-shadow: white 0 1px 0px 0 inset, white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; }
+
+/* line 110, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/container/ButtonGroup.scss */
+.x-btn-group-header-default {
+ padding: 4px 5px;
+ line-height: 16px;
+ background: white;
+ -moz-border-radius-topleft: 0px;
+ -webkit-border-top-left-radius: 0px;
+ border-top-left-radius: 0px;
+ -moz-border-radius-topright: 0px;
+ -webkit-border-top-right-radius: 0px;
+ border-top-right-radius: 0px; }
+ /* line 121, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/container/ButtonGroup.scss */
+ .x-btn-group-header-default .x-tool-img {
+ background-image: url(images/tools/tool-sprites-dark.png);
+ background-color: white; }
+
+/* line 132, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/container/ButtonGroup.scss */
+.x-btn-group-header-text-container-default {
+ font: 300 13px "Roboto", sans-serif;
+ line-height: 16px;
+ color: black; }
+
+/* line 138, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/container/ButtonGroup.scss */
+.x-btn-group-body-default {
+ padding: 0 1px; }
+ /* line 140, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/container/ButtonGroup.scss */
+ .x-btn-group-body-default .x-table-layout {
+ border-spacing: 5px; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-btn-group-default-framed {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 0px 1px 0px 1px;
+ border-width: 3px;
+ border-style: solid;
+ background-color: white; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-btn-group-default-framed-notitle {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 0px 1px 0px 1px;
+ border-width: 3px;
+ border-style: solid;
+ background-color: white; }
+
+/* */
+/* line 101, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/container/ButtonGroup.scss */
+.x-btn-group-default-framed {
+ border-color: white;
+ -webkit-box-shadow: white 0 1px 0px 0 inset, white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
+ -moz-box-shadow: white 0 1px 0px 0 inset, white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
+ box-shadow: white 0 1px 0px 0 inset, white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; }
+
+/* line 110, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/container/ButtonGroup.scss */
+.x-btn-group-header-default-framed {
+ padding: 4px 5px;
+ line-height: 16px;
+ background: white;
+ -moz-border-radius-topleft: 3px;
+ -webkit-border-top-left-radius: 3px;
+ border-top-left-radius: 3px;
+ -moz-border-radius-topright: 3px;
+ -webkit-border-top-right-radius: 3px;
+ border-top-right-radius: 3px; }
+ /* line 121, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/container/ButtonGroup.scss */
+ .x-btn-group-header-default-framed .x-tool-img {
+ background-image: url(images/tools/tool-sprites-dark.png);
+ background-color: white; }
+
+/* line 132, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/container/ButtonGroup.scss */
+.x-btn-group-header-text-container-default-framed {
+ font: 300 13px "Roboto", sans-serif;
+ line-height: 16px;
+ color: black; }
+
+/* line 138, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/container/ButtonGroup.scss */
+.x-btn-group-body-default-framed {
+ padding: 0 1px 0 1px; }
+ /* line 140, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/container/ButtonGroup.scss */
+ .x-btn-group-body-default-framed .x-table-layout {
+ border-spacing: 5px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/dashboard/Dashboard.scss */
+.x-dashboard-column {
+ padding: 0 0 7px 0; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/dashboard/Dashboard.scss */
+.x-dashboard-panel {
+ margin-top: 7px; }
+
+/* line 9, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/dashboard/Dashboard.scss */
+.x-dashboard-column-first {
+ padding-left: 7px;
+ clear: left; }
+
+/* line 14, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/dashboard/Dashboard.scss */
+.x-dashboard-column-last {
+ padding-right: 7px; }
+
+/* line 18, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/dashboard/Dashboard.scss */
+.x-dashboard .x-panel-dd-spacer {
+ border: 2px dashed #99bbe8;
+ background: #f6f6f6;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ margin-top: 7px; }
+
+/* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/dashboard/Dashboard.scss */
+.x-dashboard-dd-over {
+ overflow: hidden !important; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/MessageBox.scss */
+.x-message-box .x-window-body {
+ background-color: white;
+ border-width: 0; }
+
+/* line 13, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/MessageBox.scss */
+.x-message-box-info,
+.x-message-box-warning,
+.x-message-box-question,
+.x-message-box-error {
+ background-position: left top;
+ background-repeat: no-repeat; }
+
+/* line 23, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/MessageBox.scss */
+.x-rtl.x-message-box-info, .x-rtl.x-message-box-warning, .x-rtl.x-message-box-question, .x-rtl.x-message-box-error {
+ background-position: right top; }
+
+/* line 29, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/MessageBox.scss */
+.x-message-box-icon {
+ height: 32px;
+ width: 32px;
+ margin-right: 10px; }
+
+/* line 35, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/MessageBox.scss */
+.x-message-box-info {
+ background-image: url(images/shared/icon-info.png); }
+
+/* line 39, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/MessageBox.scss */
+.x-message-box-warning {
+ background-image: url(images/shared/icon-warning.png); }
+
+/* line 43, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/MessageBox.scss */
+.x-message-box-question {
+ background-image: url(images/shared/icon-question.png); }
+
+/* line 47, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/MessageBox.scss */
+.x-message-box-error {
+ background-image: url(images/shared/icon-error.png); }
+
+/**
+ * Creates a visual theme for a CheckboxGroup buttons. Note this mixin only provides
+ * styling for the CheckboxGroup body and its {@link Ext.form.field.Checkbox#boxLabel}, The {@link #fieldLabel}
+ * and error icon/message are styled by {@link #extjs-label-ui}.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number/list} [$ui-body-padding=$form-checkboxgroup-body-padding]
+ * The padding of the CheckboxGroup body element
+ *
+ * @param {color} [$ui-body-invalid-border-color=$form-checkboxgroup-body-invalid-border-color]
+ * The border color of the CheckboxGroup body element when in an invalid state.
+ *
+ * @param {string} [$ui-body-invalid-border-style=$form-checkboxgroup-body-invalid-border-style]
+ * The border style of the CheckboxGroup body element when in an invalid state.
+ *
+ * @param {number} [$ui-body-invalid-border-width=$form-checkboxgroup-body-invalid-border-width]
+ * The border width of the CheckboxGroup body element when in an invalid state.
+ *
+ * @param {string} [$ui-body-invalid-background-image=$form-checkboxgroup-body-invalid-background-image]
+ * The background image of the CheckboxGroup body element when in an invalid state.
+ *
+ * @param {string} [$form-checkboxgroup-body-invalid-background-repeat=$form-field-invalid-background-repeat]
+ * The background-repeat of the CheckboxGroup body element when in an invalid state.
+ *
+ * @param {string} [$ui-body-invalid-background-position=$form-checkboxgroup-body-invalid-background-position]
+ * The background-position of the CheckboxGroup body element when in an invalid state.
+ *
+ * @member Ext.form.CheckboxGroup
+ */
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/CheckboxGroup.scss */
+.x-form-item-body-default.x-form-checkboxgroup-body {
+ padding: 0 4px; }
+ /* line 47, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/CheckboxGroup.scss */
+ .x-form-invalid .x-form-item-body-default.x-form-checkboxgroup-body {
+ border-width: 1px;
+ border-style: solid;
+ border-color: #cf4c35; }
+
+/**
+ * Creates a visual theme for text fields. Note this mixin only provides styling
+ * For the form field body, The label and error are styled by
+ * {@link Ext.form.Labelable#css_mixin-extjs-label-ui}.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {number} [$ui-header-font-size=$fieldset-header-font-size]
+ * The font-size of the FieldSet header
+ *
+ * @param {string} [$ui-header-font-weight=$fieldset-header-font-weight]
+ * The font-weight of the FieldSet header
+ *
+ * @param {string} [$ui-header-font-family=$fieldset-header-font-family]
+ * The font-family of the FieldSet header
+ *
+ * @param {number/string} [$ui-header-line-height=$fieldset-header-line-height]
+ * The line-height of the FieldSet header
+ *
+ * @param {color} [$ui-header-color=$fieldset-header-color]
+ * The text color of the FieldSet header
+ *
+ * @param {number} [$ui-border-width=$fieldset-border-width]
+ * The border-width of the FieldSet
+ *
+ * @param {string} [$ui-border-style=$fieldset-border-style]
+ * The border-style of the FieldSet
+ *
+ * @param {color} [$ui-border-color=$fieldset=border-color]
+ * The border-color of the FieldSet
+ *
+ * @param {number} [$ui-border-radius=$fieldset=border-radius]
+ * The border radius of FieldSet elements.
+ *
+ * @param {number/list} [$ui-padding=$fieldset-padding]
+ * The FieldSet's padding
+ *
+ * @param {number/list} [$ui-margin=$fieldset-margin]
+ * The FieldSet's margin
+ *
+ * @param {number/list} [$ui-header-padding=$fieldset-header-padding]
+ * The padding to apply to the FieldSet's header
+ *
+ * @param {number} [$ui-collapse-tool-size=$fieldset-collapse-tool-size]
+ * The size of the FieldSet's collapse tool
+ *
+ * @param {number/list} [$ui-collapse-tool-margin=$fieldset-collapse-tool-margin]
+ * The margin to apply to the FieldSet's collapse tool
+ *
+ * @param {number/list} [$ui-collapse-tool-padding=$fieldset-collapse-tool-padding]
+ * The padding to apply to the FieldSet's collapse tool
+ *
+ * @param {string} [$ui-collapse-tool-background-image=$fieldset-collapse-tool-background-image]
+ * The background-image to use for the collapse tool. If 'none' the default tool
+ * sprite will be used. Defaults to 'none'.
+ *
+ * @param {number} [$ui-collapse-tool-opacity=$fieldset-collapse-tool-opacity]
+ * The opacity of the FieldSet's collapse tool
+ *
+ * @param {number} [$ui-collapse-tool-opacity-over=$fieldset-collapse-tool-opacity-over]
+ * The opacity of the FieldSet's collapse tool when hovered
+ *
+ * @param {number} [$ui-collapse-tool-opacity-pressed=$fieldset-collapse-tool-opacity-pressed]
+ * The opacity of the FieldSet's collapse tool when pressed
+ *
+ * @param {number/list} [$ui-checkbox-margin=$fieldset-checkbox-margin]
+ * The margin to apply to the FieldSet's checkbox (for FieldSets that use
+ * {@link #checkboxToggle})
+ *
+ * @member Ext.form.FieldSet
+ */
+/* line 110, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+.x-fieldset-default {
+ border: 1px solid #cecece;
+ padding: 0 10px;
+ margin: 0 0 10px; }
+
+/* line 132, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+.x-fieldset-header-default {
+ padding: 0 3px 1px;
+ line-height: 16px; }
+ /* line 136, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+ .x-fieldset-header-default > .x-fieldset-header-text {
+ font: 300 12px/16px "Roboto", sans-serif;
+ color: black;
+ padding: 1px 0; }
+
+/* line 143, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+.x-fieldset-header-checkbox-default {
+ margin: 2px 4px 0 0;
+ line-height: 16px; }
+ /* line 146, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+ .x-fieldset-header-checkbox-default.x-rtl {
+ margin: 2px 0 0 4px; }
+
+/* line 153, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+.x-fieldset-header-tool-default {
+ margin: 2px 4px 0 0;
+ padding: 0; }
+ /* line 156, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+ .x-fieldset-header-tool-default.x-rtl {
+ margin: 2px 0 0 4px; }
+ /* line 162, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+ .x-fieldset-header-tool-default > .x-tool-img {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8;
+ height: 15px;
+ width: 15px; }
+ /* line 169, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+ .x-fieldset-header-tool-default.x-tool-over > .x-tool-img {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
+ opacity: 0.9; }
+ /* line 175, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+ .x-fieldset-header-tool-default.x-tool-pressed > .x-tool-img {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1; }
+ /* line 180, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+ .x-fieldset-header-tool-default > .x-tool-toggle {
+ background-image: url(images/fieldset/collapse-tool.png);
+ background-position: 0 0; }
+ /* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+ .x-fieldset-header-tool-default.x-tool-over > .x-tool-toggle {
+ background-position: 0 -15px; }
+
+/* line 194, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+.x-fieldset-default.x-fieldset-collapsed {
+ border-width: 1px 1px 0 1px;
+ border-left-color: transparent;
+ border-right-color: transparent; }
+ /* line 202, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+ .x-fieldset-default.x-fieldset-collapsed .x-tool-toggle {
+ background-position: -15px 0; }
+ /* line 206, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/FieldSet.scss */
+ .x-fieldset-default.x-fieldset-collapsed .x-tool-over > .x-tool-toggle {
+ background-position: -15px -15px; }
+
+/* line 9, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker {
+ border-width: 1px;
+ border-style: solid;
+ border-color: #e1e1e1;
+ background-color: white;
+ width: 212px; }
+
+/* line 19, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-header {
+ padding: 4px 6px;
+ text-align: center;
+ background-image: none;
+ background-color: #f5f5f5; }
+
+/* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-arrow {
+ width: 12px;
+ height: 12px;
+ top: 9px;
+ cursor: pointer;
+ -webkit-touch-callout: none;
+ background-color: #f5f5f5;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
+ opacity: 0.7; }
+
+/* line 51, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+div.x-datepicker-arrow:hover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1; }
+
+/* line 56, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-next {
+ right: 6px;
+ background: url(images/datepicker/arrow-right.png) no-repeat 0 0; }
+
+/* line 61, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-prev {
+ left: 6px;
+ background: url(images/datepicker/arrow-left.png) no-repeat 0 0; }
+
+/* line 77, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-month .x-btn,
+.x-datepicker-month .x-btn .x-btn-tc,
+.x-datepicker-month .x-btn .x-btn-tl,
+.x-datepicker-month .x-btn .x-btn-tr,
+.x-datepicker-month .x-btn .x-btn-mc,
+.x-datepicker-month .x-btn .x-btn-ml,
+.x-datepicker-month .x-btn .x-btn-mr,
+.x-datepicker-month .x-btn .x-btn-bc,
+.x-datepicker-month .x-btn .x-btn-bl,
+.x-datepicker-month .x-btn .x-btn-br {
+ background: transparent;
+ border-width: 0 !important; }
+/* line 84, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-month .x-btn-inner {
+ color: #384955; }
+/* line 89, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-month .x-btn-split-right:after, .x-datepicker-month .x-btn-over .x-btn-split-right:after {
+ background-image: url(images/datepicker/month-arrow.png);
+ padding-right: 8px; }
+/* line 94, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-month .x-btn-over {
+ border-color: transparent; }
+
+/* line 99, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-column-header {
+ width: 30px;
+ color: black;
+ font: 300 13px "Roboto", sans-serif;
+ text-align: right;
+ background-image: none;
+ background-color: white; }
+
+/* line 118, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-column-header-inner {
+ line-height: 25px;
+ padding: 0 9px 0 0; }
+
+/* line 123, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-cell {
+ text-align: right;
+ border-width: 1px;
+ border-style: solid;
+ border-color: white; }
+
+/* line 133, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-date {
+ padding: 0 7px 0 0;
+ font: 300 13px "Roboto", sans-serif;
+ color: black;
+ cursor: pointer;
+ line-height: 23px; }
+
+/* line 143, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+div.x-datepicker-date:hover {
+ color: black;
+ background-color: #d2d8dc; }
+
+/* line 148, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-selected {
+ border-style: solid;
+ border-color: #384955; }
+ /* line 151, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+ .x-datepicker-selected .x-datepicker-date {
+ background-color: #a5b1ba;
+ font-weight: 300; }
+
+/* line 157, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-today {
+ border-color: darkred;
+ border-style: solid; }
+
+/* line 164, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-prevday .x-datepicker-date,
+.x-datepicker-nextday .x-datepicker-date {
+ color: #bfbfbf; }
+
+/* line 171, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-disabled .x-datepicker-date {
+ background-color: #eeeeee;
+ cursor: default;
+ color: gray; }
+
+/* line 179, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-disabled div.x-datepicker-date:hover {
+ background-color: #eeeeee;
+ color: gray; }
+
+/* line 185, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-datepicker-footer,
+.x-monthpicker-buttons {
+ padding: 3px 0;
+ background-image: none;
+ background-color: #f5f5f5;
+ text-align: center; }
+ /* line 201, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+ .x-datepicker-footer .x-btn,
+ .x-monthpicker-buttons .x-btn {
+ margin: 0 3px 0 2px; }
+
+/* line 207, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker {
+ width: 212px;
+ border-width: 1px;
+ border-style: solid;
+ border-color: #e1e1e1;
+ background-color: white; }
+
+/* line 217, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-months {
+ border-width: 0 1px 0 0;
+ border-color: #e1e1e1;
+ border-style: solid;
+ width: 105px; }
+ /* line 226, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+ .x-monthpicker-months .x-monthpicker-item {
+ width: 52px; }
+
+/* line 231, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-years {
+ width: 105px; }
+ /* line 234, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+ .x-monthpicker-years .x-monthpicker-item {
+ width: 52px; }
+
+/* line 239, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-item {
+ margin: 5px 0 5px;
+ font: 300 13px "Roboto", sans-serif;
+ text-align: center; }
+
+/* line 245, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-item-inner {
+ margin: 0 5px 0 5px;
+ color: black;
+ border-width: 1px;
+ border-style: solid;
+ border-color: white;
+ line-height: 22px;
+ cursor: pointer; }
+
+/* line 260, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+a.x-monthpicker-item-inner:hover {
+ background-color: #d2d8dc; }
+
+/* line 264, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-selected {
+ background-color: #a5b1ba;
+ border-style: solid;
+ border-color: #384955; }
+
+/* line 270, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-yearnav {
+ height: 34px; }
+
+/* line 274, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-yearnav-button-ct {
+ width: 52px; }
+
+/* line 278, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-yearnav-button {
+ height: 12px;
+ width: 12px;
+ cursor: pointer;
+ margin-top: 11px;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
+ opacity: 0.7;
+ -webkit-touch-callout: none;
+ background-color: white; }
+
+/* line 296, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+a.x-monthpicker-yearnav-button:hover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1; }
+
+/* line 301, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-yearnav-next {
+ background: url(images/datepicker/arrow-right.png) no-repeat 0 0; }
+
+/* line 305, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-yearnav-next-over {
+ background-position: 0 0; }
+
+/* line 309, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-yearnav-prev {
+ background: url(images/datepicker/arrow-left.png) no-repeat 0 0; }
+
+/* line 313, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-yearnav-prev-over {
+ background-position: 0 0; }
+
+/* line 318, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-small .x-monthpicker-item {
+ margin: 2px 0 2px; }
+/* line 322, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-small .x-monthpicker-item-inner {
+ margin: 0 5px 0 5px; }
+/* line 326, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-small .x-monthpicker-yearnav {
+ height: 28px; }
+/* line 330, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/picker/Date.scss */
+.x-monthpicker-small .x-monthpicker-yearnav-button {
+ margin-top: 8px; }
+
+/* */
+/* */
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Date.scss */
+.x-form-date-trigger {
+ background-image: url(images/form/date-trigger.png); }
+ /* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/form/field/Date.scss */
+ .x-form-date-trigger.x-rtl {
+ background-image: url(images/form/date-trigger-rtl.png); }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/DropZone.scss */
+.x-grid-drop-indicator {
+ position: absolute;
+ height: 1px;
+ line-height: 0px;
+ background-color: #77BC71;
+ overflow: visible;
+ pointer-events: none; }
+ /* line 9, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/DropZone.scss */
+ .x-grid-drop-indicator .x-grid-drop-indicator-left {
+ position: absolute;
+ top: -8px;
+ left: -12px;
+ background-image: url(images/grid/dd-insert-arrow-right.png);
+ height: 16px;
+ width: 16px; }
+ /* line 18, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/DropZone.scss */
+ .x-grid-drop-indicator .x-grid-drop-indicator-right {
+ position: absolute;
+ top: -8px;
+ right: -11px;
+ background-image: url(images/grid/dd-insert-arrow-left.png);
+ height: 16px;
+ width: 16px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Action.scss */
+.x-grid-cell-inner-action-col {
+ padding: 4px 4px 4px 4px; }
+
+/* line 12, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Action.scss */
+.x-action-col-cell .x-item-disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
+ opacity: 0.3; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Action.scss */
+.x-action-col-icon {
+ height: 16px;
+ width: 16px;
+ cursor: pointer; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Check.scss */
+.x-grid-cell-inner-checkcolumn {
+ padding: 5px 10px 4px 10px; }
+
+/* line 12, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Check.scss */
+.x-grid-checkcolumn {
+ width: 15px;
+ height: 15px;
+ background: url(images/form/checkbox.png) 0 0 no-repeat; }
+ /* line 17, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Check.scss */
+ .x-item-disabled .x-grid-checkcolumn {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
+ opacity: 0.3; }
+
+/* line 22, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/Check.scss */
+.x-grid-checkcolumn-checked {
+ background-position: 0 -15px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */
+.x-grid-cell-inner-row-numberer {
+ padding: 5px 5px 4px 3px; }
+
+/*
+ * Define UI for fields which are rendered to fit inside grid cells.
+ * This includes cell and row editor fields and fields in widget columns.
+ */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-btn-grid-cell-small {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 3px 3px 3px 3px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: #384955; }
+
+/* */
+/* line 423, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-grid-cell-small {
+ border-color: #162938; }
+
+/* line 430, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-button-grid-cell-small {
+ height: 16px; }
+
+/* line 435, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-inner-grid-cell-small {
+ font: 300 12px/16px "Roboto", sans-serif;
+ color: white;
+ padding: 0 5px;
+ max-width: 100%; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-right > .x-btn-inner-grid-cell-small, .x-btn-icon-left > .x-btn-inner-grid-cell-small {
+ max-width: calc(100% - 16px); }
+
+/* line 453, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-icon-el-grid-cell-small {
+ height: 16px; }
+ /* line 457, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-left > .x-btn-icon-el-grid-cell-small, .x-btn-icon-right > .x-btn-icon-el-grid-cell-small {
+ width: 16px; }
+ /* line 462, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-top > .x-btn-icon-el-grid-cell-small, .x-btn-icon-bottom > .x-btn-icon-el-grid-cell-small {
+ min-width: 16px; }
+ /* line 466, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-el-grid-cell-small.x-btn-glyph {
+ font-size: 16px;
+ line-height: 16px;
+ color: white;
+ opacity: 0.5; }
+ /* line 493, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-grid-cell-small {
+ margin-right: 0px; }
+ /* line 497, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-grid-cell-small.x-rtl {
+ margin-right: 0;
+ margin-left: 0px; }
+ /* line 504, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-grid-cell-small {
+ margin-left: 0px; }
+ /* line 508, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-grid-cell-small.x-rtl {
+ margin-left: 0;
+ margin-right: 0px; }
+ /* line 515, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-grid-cell-small {
+ margin-bottom: 5px; }
+ /* line 519, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-grid-cell-small {
+ margin-top: 5px; }
+
+/* line 525, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-grid-cell-small {
+ padding-right: 5px; }
+/* line 528, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-grid-cell-small {
+ margin-right: 5px; }
+
+/* line 535, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-bottom > .x-btn-button-grid-cell-small,
+.x-btn-split-bottom > .x-btn-button-grid-cell-small {
+ padding-bottom: 3px; }
+
+/* line 541, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-grid-cell-small.x-btn-arrow-right:after {
+ width: 8px;
+ padding-right: 8px;
+ background-image: url(images/button/grid-cell-small-arrow.png); }
+/* line 554, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-grid-cell-small.x-rtl.x-btn-arrow-right:after {
+ background-image: url(images/button/grid-cell-small-arrow-rtl.png); }
+/* line 563, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-grid-cell-small.x-btn-arrow-bottom:after {
+ height: 8px;
+ background-image: url(images/button/grid-cell-small-arrow.png); }
+
+/* line 583, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-grid-cell-small.x-btn-split-right:after {
+ width: 14px;
+ padding-right: 14px;
+ background-image: url(images/button/grid-cell-small-s-arrow.png); }
+/* line 592, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-grid-cell-small.x-rtl.x-btn-split-right:after {
+ background-image: url(images/button/grid-cell-small-s-arrow-rtl.png); }
+/* line 597, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-grid-cell-small.x-btn-split-bottom:after {
+ height: 14px;
+ background-image: url(images/button/grid-cell-small-s-arrow-b.png); }
+
+/* line 624, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-grid-cell-small {
+ padding-right: 5px; }
+/* line 627, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-grid-cell-small {
+ margin-right: 5px; }
+
+/* line 632, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-grid-cell-small {
+ background-image: none;
+ background-color: #384955; }
+
+/* line 667, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-over.x-btn-grid-cell-small {
+ border-color: #142533;
+ background-image: none;
+ background-color: #33434e; }
+
+/* line 723, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-menu-active.x-btn-grid-cell-small,
+.x-btn.x-btn-pressed.x-btn-grid-cell-small {
+ border-color: #101e2a;
+ background-image: none;
+ background-color: #2a363f; }
+
+/* line 779, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-disabled.x-btn-grid-cell-small {
+ background-image: none;
+ background-color: #384955; }
+
+/* line 963, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-disabled.x-btn-grid-cell-small {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+
+/* line 1128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-button-grid-cell-small-cell > .x-grid-cell-inner {
+ padding-top: 0px;
+ padding-bottom: 0px; }
+ /* line 1133, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-button-grid-cell-small-cell > .x-grid-cell-inner > .x-btn-grid-cell-small {
+ vertical-align: top; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
+.x-grid-group-hd {
+ border-width: 0 0 1px 0;
+ border-style: solid;
+ border-color: #4b6375;
+ padding: 7px 4px;
+ background: #30414f;
+ cursor: pointer; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
+.x-grid-group-hd-not-collapsible {
+ cursor: default; }
+
+/* line 15, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
+.x-grid-group-hd-collapsible .x-grid-group-title {
+ background-repeat: no-repeat;
+ background-position: left center;
+ background-image: url(images/grid/group-collapse.png);
+ padding: 0 0 0 17px; }
+
+/* line 24, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
+.x-rtl.x-grid-view .x-grid-group-hd-collapsible .x-grid-group-title {
+ background-position: right center;
+ padding: 0 17px 0 0; }
+
+/* line 30, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
+.x-grid-group-title {
+ color: #fefefe;
+ font: 300 13px/15px "Roboto", sans-serif; }
+
+/* line 36, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
+.x-grid-group-hd-collapsed .x-grid-group-title {
+ background-image: url(images/grid/group-expand.png); }
+
+/* line 41, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
+.x-grid-group-collapsed .x-grid-group-title {
+ background-image: url(images/grid/group-expand.png); }
+
+/* line 45, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
+.x-group-by-icon {
+ background-image: url(images/grid/group-by.png); }
+
+/* line 49, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
+.x-show-groups-icon {
+ background-image: url(images/grid/group-by.png); }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/RowBody.scss */
+.x-grid-rowbody {
+ font: 300 13px/15px "Roboto", sans-serif;
+ padding: 5px 10px 5px 10px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Summary.scss */
+.x-docked-summary {
+ border-width: 1px;
+ border-color: #cecece;
+ border-style: solid;
+ background: #162938 !important; }
+ /* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Summary.scss */
+ .x-docked-summary .x-grid-table {
+ border: 0 none; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Summary.scss */
+.x-grid-row-summary .x-grid-cell,
+.x-grid-row-summary .x-grid-rowwrap,
+.x-grid-row-summary .x-grid-cell-rowbody {
+ border-color: #4b6375;
+ background-color: #162938 !important;
+ border-top: 1px solid #4b6375;
+ font: 300 13px/15px "Roboto", sans-serif; }
+
+/* line 27, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Summary.scss */
+.x-docked-summary .x-grid-item,
+.x-docked-summary .x-grid-row-summary .x-grid-cell {
+ border-bottom: 0 none;
+ border-top: 0 none; }
+
+/* line 34, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/feature/Summary.scss */
+.x-grid-row-summary .x-grid-cell-inner-row-expander {
+ display: none; }
+
+/**
+ * Creates a visual theme for a Menu.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {color} [$ui-background-color=$menu-background-color]
+ * The background-color of the Menu
+ *
+ * @param {color} [$ui-border-color=$menu-border-color]
+ * The border-color of the Menu
+ *
+ * @param {string} [$ui-border-style=$menu-border-style]
+ * The border-style of the Menu
+ *
+ * @param {number} [$ui-border-width=$menu-border-width]
+ * The border-width of the Menu
+ *
+ * @param {number/list} [$ui-padding=$menu-padding]
+ * The padding to apply to the Menu body element
+ *
+ * @param {color} [$ui-text-color=$menu-text-color]
+ * The color of Menu Item text
+ *
+ * @param {string} [$ui-item-font-family=$menu-item-font-family]
+ * The font-family of {@link Ext.menu.Item Menu Items}
+ *
+ * @param {number} [$ui-item-font-size=$menu-item-font-size]
+ * The font-size of {@link Ext.menu.Item Menu Items}
+ *
+ * @param {string} [$ui-item-font-weight=$menu-item-font-weight]
+ * The font-weight of {@link Ext.menu.Item Menu Items}
+ *
+ * @param {number} [$ui-item-height=$menu-item-height]
+ * The height of {@link Ext.menu.Item Menu Items}
+ *
+ * @param {number} [$ui-item-border-width=$menu-item-border-width]
+ * The border-width of {@link Ext.menu.Item Menu Items}
+ *
+ * @param {string} [$ui-item-cursor=$menu-item-cursor]
+ * The style of cursor to display when the cursor is over a {@link Ext.menu.Item Menu Item}
+ *
+ * @param {string} [$ui-item-disabled-cursor=$menu-item-disabled-cursor]
+ * The style of cursor to display when the cursor is over a disabled {@link Ext.menu.Item Menu Item}
+ *
+ * @param {color} [$ui-item-active-background-color=$menu-item-active-background-color]
+ * The background-color of the active {@link Ext.menu.Item Menu Item}
+ *
+ * @param {color} [$ui-item-active-border-color=$menu-item-active-border-color]
+ * The border-color of the active {@link Ext.menu.Item Menu Item}
+ *
+ * @param {string/list} [$ui-item-background-gradient=$menu-item-background-gradient]
+ * The background-gradient for {@link Ext.menu.Item Menu Items}. Can be either the name
+ * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
+ * {@link Global_CSS#background-gradient}.
+ *
+ * @param {number} [$ui-item-active-border-radius=$menu-item-active-border-radius]
+ * The border-radius of {@link Ext.menu.Item Menu Items}
+ *
+ * @param {number} [$ui-item-icon-size=$menu-item-icon-size]
+ * The size of {@link Ext.menu.Item Menu Item} icons
+ *
+ * @param {color} [$ui-glyph-color=$menu-glyph-color]
+ * The color to use for menu icons configured using {@link Ext.menu.Item#glyph glyph}
+ *
+ * @param {number} [$ui-glyph-opacity=$menu-glyph-opacity]
+ * The opacity to use for menu icons configured using {@link Ext.menu.Item#glyph glyph}
+ *
+ * @param {number} [$ui-item-checkbox-size=$menu-item-checkbox-size]
+ * The size of {@link Ext.menu.Item Menu Item} checkboxes
+ *
+ * @param {list} [$ui-item-icon-background-position=$menu-item-icon-background-position]
+ * The background-position of {@link Ext.menu.Item Menu Item} icons
+ *
+ * @param {number} [$ui-item-icon-vertical-offset=$menu-item-icon-vertical-offset]
+ * vertical offset for menu item icons/checkboxes. By default the icons are roughly
+ * vertically centered, but it may be necessary in some cases to make minor adjustments
+ * to the vertical position.
+ *
+ * @param {number} [$ui-item-text-vertical-offset=$menu-item-text-vertical-offset]
+ * vertical offset for menu item text. By default the text is given a line-height
+ * equal to the menu item's content-height, however, depending on the font this may not
+ * result in perfect vertical centering. Offset can be used to make small adjustments
+ * to the text's vertical position.
+ *
+ * @param {number/list} [$ui-item-text-horizontal-spacing=$menu-item-text-horizontal-spacing]
+ * The space to the left and right of {@link Ext.menu.Item Menu Item} text. Can be specified
+ * as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g.
+ *
+ * $menu-item-text-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right
+ *
+ * @param {number} [$ui-item-icon-horizontal-spacing=$menu-item-icon-horizontal-spacing]
+ * The space to the left and right of {@link Ext.menu.Item Menu Item} icons. Can be specified
+ * as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g.
+ *
+ * $menu-item-icon-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right
+ *
+ * @param {number} [$ui-item-arrow-horizontal-spacing=$menu-item-arrow-horizontal-spacing]
+ * The space to the left and right of {@link Ext.menu.Item Menu Item} arrows. Can be specified
+ * as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g.
+ *
+ * $menu-item-arrow-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right
+ *
+ * @param {number/list} [$ui-item-separator-margin=$menu-item-separator-margin]
+ * The margin of {@link Ext.menu.Separator Menu Separators}
+ *
+ * @param {number} [$ui-item-arrow-height=$menu-item-arrow-height]
+ * The height of {@link Ext.menu.Item Menu Item} arrows
+ *
+ * @param {number} [$ui-item-arrow-width=$menu-item-arrow-width]
+ * The width of {@link Ext.menu.Item Menu Item} arrows
+ *
+ * @param {number} [$ui-item-disabled-opacity=$menu-item-disabled-opacity]
+ * The opacity of disabled {@link Ext.menu.Item Menu Items}
+ *
+ * @param {number/list} [$ui-component-margin=$menu-component-margin]
+ * The margin non-MenuItems placed in a Menu
+ *
+ * @param {color} [$ui-separator-border-color=$menu-separator-border-color]
+ * The border-color of {@link Ext.menu.Separator Menu Separators}
+ *
+ * @param {color} [$ui-separator-background-color=$menu-separator-background-color]
+ * The background-color of {@link Ext.menu.Separator Menu Separators}
+ *
+ * @param {number} [$ui-separator-size=$menu-separator-size]
+ * The size of {@link Ext.menu.Separator Menu Separators}
+ *
+ * @param {number} [$ui-scroller-width=$menu-scroller-width]
+ * The width of Menu scrollers
+ *
+ * @param {number} [$ui-scroller-height=$menu-scroller-height]
+ * The height of Menu scrollers
+ *
+ * @param {color} [$ui-scroller-border-color=$menu-scroller-border-color]
+ * The border-color of Menu scroller buttons
+ *
+ * @param {number} [$ui-scroller-border-width=$menu-scroller-border-width]
+ * The border-width of Menu scroller buttons
+ *
+ * @param {number/list} [$ui-scroller-top-margin=$menu-scroller-top-margin]
+ * The margin of "top" Menu scroller buttons
+ *
+ * @param {number/list} [$ui-scroller-bottom-margin=$menu-scroller-bottom-margin]
+ * The margin of "bottom" Menu scroller buttons
+ *
+ * @param {string} [$ui-scroller-cursor=$menu-scroller-cursor]
+ * The cursor of Menu scroller buttons
+ *
+ * @param {string} [$ui-scroller-cursor-disabled=$menu-scroller-cursor-disabled]
+ * The cursor of disabled Menu scroller buttons
+ *
+ * @param {number} [$ui-scroller-opacity=$menu-scroller-opacity]
+ * The opacity of Menu scroller buttons. Only applicable when
+ * {@link #$menu-classic-scrollers} is `false`.
+ *
+ * @param {number} [$ui-scroller-opacity-over=$menu-scroller-opacity-over]
+ * The opacity of hovered Menu scroller buttons. Only applicable when
+ * {@link #$menu-classic-scrollers} is `false`.
+ *
+ * @param {number} [$ui-scroller-opacity-pressed=$menu-scroller-opacity-pressed]
+ * The opacity of pressed Menu scroller buttons. Only applicable when
+ * {@link #$menu-classic-scrollers} is `false`.
+ *
+ * @param {number} [$ui-scroller-opacity-disabled=$menu-scroller-opacity-disabled]
+ * The opacity of disabled Menu scroller buttons.
+ *
+ * @param {boolean} [$ui-classic-scrollers=$menu-classic-scrollers]
+ * `true` to use classic-style scroller buttons. When `true` scroller buttons are given their
+ * hover state by changing their background-position, When `false` scroller buttons are
+ * given their hover state by applying opacity.
+ *
+ * @member Ext.menu.Menu
+ */
+/* line 236, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-menu-default {
+ border-style: solid;
+ border-width: 1px;
+ border-color: #e1e1e1; }
+
+/* line 242, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-menu-body-default {
+ background: white;
+ padding: 0; }
+
+/* line 247, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-menu-icon-separator-default {
+ left: 26px;
+ border-left: solid 1px #e1e1e1;
+ background-color: white;
+ width: 1px; }
+ /* line 254, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-icon-separator-default.x-rtl {
+ left: auto;
+ right: 26px; }
+
+/* line 261, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-menu-item-default {
+ border-width: 0;
+ cursor: pointer; }
+ /* line 265, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-default.x-menu-item-active {
+ background-image: none;
+ background-color: #a5b1ba; }
+ /* line 284, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-default.x-menu-item-disabled {
+ cursor: default; }
+ /* line 287, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-default.x-menu-item-disabled a {
+ cursor: default; }
+ /* line 292, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-default.x-menu-item-separator {
+ height: 1px;
+ border-top: solid 1px #e1e1e1;
+ background-color: white;
+ margin: 2px 0;
+ padding: 0; }
+ /* line 300, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-default.x-menu-item-disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+ /* line 319, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-default .x-form-item-label {
+ font-size: 13px;
+ color: black; }
+
+/* line 327, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-menu-item-text-default,
+.x-menu-item-cmp-default {
+ margin: 0 5px 0 5px; }
+
+/* line 331, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-menu-item-text-default {
+ font: normal 13px "Roboto", sans-serif;
+ line-height: 23px;
+ padding-top: 1px;
+ color: black;
+ cursor: pointer; }
+ /* line 342, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-text-default.x-menu-item-indent {
+ margin-left: 32px; }
+ /* line 346, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-text-default.x-menu-item-indent-no-separator {
+ margin-left: 26px; }
+ /* line 350, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-text-default.x-menu-item-indent-right-icon {
+ margin-right: 31px; }
+ /* line 354, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-text-default.x-menu-item-indent-right-arrow {
+ margin-right: 22px; }
+ /* line 358, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-disabled .x-menu-item-text-default {
+ cursor: default; }
+
+/* line 366, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-rtl.x-menu-item-text-default, .x-rtl.x-menu-item-cmp-default {
+ margin: 0 5px 0 5px; }
+/* line 371, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-rtl.x-menu-item-text-default.x-menu-item-indent {
+ margin-right: 32px; }
+/* line 375, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-rtl.x-menu-item-text-default.x-menu-item-indent-no-separator {
+ margin-right: 26px; }
+/* line 379, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-rtl.x-menu-item-text-default.x-menu-item-indent-right-icon {
+ margin-left: 31px; }
+/* line 383, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-rtl.x-menu-item-text-default.x-menu-item-indent-right-arrow {
+ margin-left: 22px; }
+
+/* line 390, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-menu-item-indent-default {
+ margin-left: 32px; }
+ /* line 393, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-indent-default.x-rtl {
+ margin-left: 0;
+ margin-right: 32px; }
+
+/* line 400, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-menu-item-icon-default {
+ width: 16px;
+ height: 16px;
+ top: 4px;
+ left: 5px;
+ background-position: center center; }
+ /* line 408, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-icon-default.x-rtl {
+ left: auto;
+ right: 5px; }
+ /* line 412, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-active .x-menu-item-icon-default.x-rtl {
+ right: 5px; }
+ /* line 418, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-icon-default.x-menu-item-glyph {
+ font-size: 16px;
+ line-height: 16px;
+ color: gray;
+ opacity: 0.5; }
+ /* line 443, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-icon-default.x-menu-item-icon-right {
+ width: 16px;
+ height: 16px;
+ top: 4px;
+ right: 5px;
+ left: auto;
+ background-position: center center; }
+ /* line 452, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-icon-default.x-menu-item-icon-right.x-rtl {
+ right: auto;
+ left: 5px; }
+ /* line 456, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-active .x-menu-item-icon-default.x-menu-item-icon-right.x-rtl {
+ left: 5px; }
+ /* line 468, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-checked .x-menu-item-icon-default.x-menu-item-checkbox {
+ background-image: url(images/menu/default-checked.png); }
+ /* line 472, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-unchecked .x-menu-item-icon-default.x-menu-item-checkbox {
+ background-image: url(images/menu/default-unchecked.png); }
+ /* line 478, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-checked .x-menu-item-icon-default.x-menu-group-icon {
+ background-image: url(images/menu/default-group-checked.png); }
+ /* line 482, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-unchecked .x-menu-item-icon-default.x-menu-group-icon {
+ background-image: none; }
+
+/* line 488, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-menu-item-arrow-default {
+ width: 12px;
+ height: 9px;
+ top: 8px;
+ right: 0;
+ background-image: url(images/menu/default-menu-parent.png); }
+ /* line 495, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-active .x-menu-item-arrow-default {
+ top: 8px;
+ right: 0; }
+ /* line 501, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-arrow-default.x-rtl {
+ left: 0;
+ right: auto;
+ background-image: url(images/menu/default-menu-parent-left.png); }
+ /* line 506, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+ .x-menu-item-active .x-menu-item-arrow-default.x-rtl {
+ left: 0; }
+
+/* line 145, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-menu-default-scroller .x-box-scroller-body-horizontal {
+ margin-left: 16px; }
+
+/* line 151, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-menu-default-vertical-scroller .x-box-scroller-body-vertical {
+ margin-top: 24px; }
+
+/* line 156, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-box-scroller-menu-default {
+ cursor: pointer;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+ /* line 165, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-menu-default.x-box-scroller-hover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
+ opacity: 0.6; }
+ /* line 171, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-menu-default.x-box-scroller-pressed {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
+ opacity: 0.7; }
+ /* line 177, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-menu-default.x-box-scroller-disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
+ opacity: 0.25;
+ cursor: default; }
+ /* line 263, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-menu-default.x-box-scroller-top, .x-box-scroller-menu-default.x-box-scroller-bottom {
+ height: 16px;
+ width: 16px;
+ left: 50%;
+ margin-left: -8px; }
+ /* line 289, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-menu-default.x-box-scroller-top {
+ margin-top: 4px;
+ margin-right: 0;
+ margin-bottom: 4px;
+ background-image: url(images/menu/default-scroll-top.png); }
+ /* line 312, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-menu-default.x-box-scroller-bottom {
+ margin-top: 4px;
+ margin-right: 0;
+ margin-bottom: 4px;
+ background-image: url(images/menu/default-scroll-bottom.png); }
+
+/* line 540, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/menu/Menu.scss */
+.x-ie8 .x-box-scroller-menu-default {
+ background-color: white; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/filters/Filters.scss */
+.x-grid-filters-filtered-column {
+ font-style: italic;
+ font-weight: bold;
+ text-decoration: inherit; }
+
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/filters/Filters.scss */
+.x-grid-filters-icon {
+ background-repeat: no-repeat;
+ background-position: center center; }
+
+/* line 12, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/filters/Filters.scss */
+.x-grid-filters-find {
+ background-image: url(images/grid/filters/find.png); }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/filters/Filters.scss */
+.x-grid-filters-gt {
+ background-image: url(images/grid/filters/greater_than.png); }
+
+/* line 20, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/filters/Filters.scss */
+.x-grid-filters-lt {
+ background-image: url(images/grid/filters/less_than.png); }
+
+/* line 24, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/filters/Filters.scss */
+.x-grid-filters-eq {
+ background-image: url(images/grid/filters/equals.png); }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
+.x-grid-locked .x-grid-inner-locked {
+ border-width: 0 1px 0 0;
+ border-style: solid; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
+.x-grid-locked .x-rtl.x-grid-inner-locked {
+ border-width: 0 0 0 1px; }
+
+/* line 12, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
+.x-grid-locked-split .x-grid-inner-normal {
+ border-width: 0 0 0 1px;
+ border-style: solid; }
+
+/* line 17, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
+.x-grid-locked-split .x-rtl.x-grid-inner-normal {
+ border-width: 0 1px 0 0; }
+
+/* line 22, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
+.x-grid-inner-locked {
+ border-right-color: #888888; }
+ /* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
+ .x-grid-inner-locked .x-column-header-last,
+ .x-grid-inner-locked .x-grid-cell-last {
+ border-right-width: 0!important; }
+ /* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
+ .x-grid-inner-locked .x-rtl.x-column-header-last {
+ border-left-width: 0!important; }
+
+/* line 41, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
+.x-rtl.x-grid-inner-locked {
+ border-right-color: #4b6375;
+ border-left-color: #888888; }
+ /* line 43, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
+ .x-rtl.x-grid-inner-locked .x-grid-row .x-column-header-last {
+ border-left: 0 none; }
+ /* line 46, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
+ .x-rtl.x-grid-inner-locked .x-grid-row .x-grid-cell-last {
+ border-left: 0 none; }
+
+/* line 57, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
+.x-hmenu-lock {
+ background-image: url(images/grid/hmenu-lock.png); }
+
+/* line 61, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
+.x-hmenu-unlock {
+ background-image: url(images/grid/hmenu-unlock.png); }
+
+/*
+ * Define UI for fields which are rendered to fit inside grid cells.
+ * This includes cell and row editor fields and fields in widget columns.
+ */
+/* line 17, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/Editing.scss */
+.x-grid-editor .x-form-display-field {
+ text-overflow: ellipsis; }
+/* line 23, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/Editing.scss */
+.x-grid-editor .x-form-action-col-field {
+ padding: 4px 4px 4px 4px; }
+
+/* line 3, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */
+.x-tree-cell-editor .x-form-text {
+ padding-left: 3px;
+ padding-right: 3px; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-grid-row-editor .x-field {
+ margin: 0 3px 0 2px; }
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-grid-row-editor .x-form-display-field {
+ padding: 5px 7px 4px 8px; }
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-grid-row-editor .x-form-action-col-field {
+ padding: 4px 1px 4px 2px; }
+/* line 27, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-grid-row-editor .x-form-text {
+ padding: 4px 6px 3px 7px; }
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-grid-row-editor .x-panel-body {
+ border-top: 1px solid #e1e1e1 !important;
+ border-bottom: 1px solid #e1e1e1 !important;
+ padding: 5px 0 5px 0;
+ background-color: #c2c9ce; }
+/* line 50, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-grid-with-col-lines .x-grid-row-editor .x-form-cb {
+ margin-right: 1px; }
+/* line 55, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-grid-with-col-lines .x-grid-row-editor .x-rtl.x-form-cb {
+ margin-right: 0;
+ margin-left: 1px; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-grid-row-editor-buttons-default-bottom {
+ -moz-border-radius-topleft: 0;
+ -webkit-border-top-left-radius: 0;
+ border-top-left-radius: 0;
+ -moz-border-radius-topright: 0;
+ -webkit-border-top-right-radius: 0;
+ border-top-right-radius: 0;
+ -moz-border-radius-bottomright: 5px;
+ -webkit-border-bottom-right-radius: 5px;
+ border-bottom-right-radius: 5px;
+ -moz-border-radius-bottomleft: 5px;
+ -webkit-border-bottom-left-radius: 5px;
+ border-bottom-left-radius: 5px;
+ padding: 5px 5px 5px 5px;
+ border-width: 0 1px 1px 1px;
+ border-style: solid;
+ background-color: #c2c9ce; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-grid-row-editor-buttons-default-top {
+ -moz-border-radius-topleft: 5px;
+ -webkit-border-top-left-radius: 5px;
+ border-top-left-radius: 5px;
+ -moz-border-radius-topright: 5px;
+ -webkit-border-top-right-radius: 5px;
+ border-top-right-radius: 5px;
+ -moz-border-radius-bottomright: 0;
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+ -moz-border-radius-bottomleft: 0;
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+ padding: 5px 5px 5px 5px;
+ border-width: 1px 1px 0 1px;
+ border-style: solid;
+ background-color: #c2c9ce; }
+
+/* */
+/* line 98, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-grid-row-editor-buttons {
+ border-color: #e1e1e1; }
+
+/* line 102, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-row-editor-update-button {
+ margin-right: 3px; }
+
+/* line 105, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-row-editor-cancel-button {
+ margin-left: 2px; }
+
+/* line 110, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-rtl.x-row-editor-update-button {
+ margin-left: 3px;
+ margin-right: auto; }
+
+/* line 114, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-rtl.x-row-editor-cancel-button {
+ margin-right: 2px;
+ margin-left: auto; }
+
+/* line 121, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-grid-row-editor-errors .x-tip-body {
+ padding: 5px; }
+
+/* line 126, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-grid-row-editor-errors-item {
+ list-style: disc;
+ margin-left: 15px; }
+
+/* line 133, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
+.x-rtl.x-grid-row-editor-errors .x-grid-row-editor-errors-item {
+ margin-left: 0;
+ margin-right: 15px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */
+.x-grid-cell-inner-row-expander {
+ padding: 7px 6px 6px 6px; }
+
+/* line 14, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */
+.x-grid-row-expander {
+ width: 11px;
+ height: 11px;
+ cursor: pointer;
+ background-image: url(images/grid/group-collapse.png); }
+ /* line 20, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */
+ .x-grid-row-collapsed .x-grid-row-expander {
+ background-image: url(images/grid/group-expand.png); }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Accordion.scss */
+.x-accordion-layout-ct {
+ background-color: white;
+ padding: 0; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Accordion.scss */
+.x-accordion-hd .x-panel-header-title {
+ color: #fefefe;
+ font-weight: 300;
+ font-family: "Roboto", sans-serif;
+ text-transform: none; }
+
+/* line 13, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Accordion.scss */
+.x-accordion-item {
+ margin: 0; }
+ /* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Accordion.scss */
+ .x-accordion-item .x-accordion-hd {
+ background: white;
+ border-width: 0 0 1px;
+ border-color: white #cecece #cecece;
+ padding: 8px 10px; }
+ /* line 29, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Accordion.scss */
+ .x-accordion-item .x-accordion-hd-sibling-expanded {
+ border-top-color: #cecece;
+ border-top-width: 1px; }
+ /* line 34, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Accordion.scss */
+ .x-accordion-item .x-accordion-hd-last-collapsed {
+ border-bottom-color: white; }
+ /* line 38, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Accordion.scss */
+ .x-accordion-item .x-accordion-body {
+ border-width: 0; }
+
+/* line 45, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Accordion.scss */
+.x-accordion-hd .x-tool-collapse-top,
+.x-accordion-hd .x-tool-collapse-bottom {
+ background-position: 0 -272px; }
+/* line 50, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Accordion.scss */
+.x-accordion-hd .x-tool-expand-top,
+.x-accordion-hd .x-tool-expand-bottom {
+ background-position: 0 -256px; }
+/* line 69, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Accordion.scss */
+.x-accordion-hd .x-tool-img {
+ background-color: white; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Form.scss */
+.x-form-layout-wrap {
+ border-spacing: 5px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle {
+ position: absolute;
+ z-index: 100;
+ font-size: 1px;
+ line-height: 5px;
+ overflow: hidden;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
+ opacity: 0;
+ background-color: #fff; }
+
+/* line 17, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-collapsed .x-resizable-handle {
+ display: none; }
+
+/* line 21, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-north {
+ cursor: n-resize; }
+
+/* line 24, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-south {
+ cursor: s-resize; }
+
+/* line 27, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-east {
+ cursor: e-resize; }
+
+/* line 30, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-west {
+ cursor: w-resize; }
+
+/* line 33, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-southeast {
+ cursor: se-resize; }
+
+/* line 36, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-northwest {
+ cursor: nw-resize; }
+
+/* line 39, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-northeast {
+ cursor: ne-resize; }
+
+/* line 42, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-southwest {
+ cursor: sw-resize; }
+
+/* line 46, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-east {
+ width: 5px;
+ height: 100%;
+ right: 0;
+ top: 0; }
+
+/* line 53, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-south {
+ width: 100%;
+ height: 5px;
+ left: 0;
+ bottom: 0; }
+
+/* line 60, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-west {
+ width: 5px;
+ height: 100%;
+ left: 0;
+ top: 0; }
+
+/* line 67, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-north {
+ width: 100%;
+ height: 5px;
+ left: 0;
+ top: 0; }
+
+/* line 74, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-southeast {
+ width: 5px;
+ height: 5px;
+ right: 0;
+ bottom: 0;
+ z-index: 101; }
+
+/* line 82, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-northwest {
+ width: 5px;
+ height: 5px;
+ left: 0;
+ top: 0;
+ z-index: 101; }
+
+/* line 90, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-northeast {
+ width: 5px;
+ height: 5px;
+ right: 0;
+ top: 0;
+ z-index: 101; }
+
+/* line 98, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-southwest {
+ width: 5px;
+ height: 5px;
+ left: 0;
+ bottom: 0;
+ z-index: 101; }
+
+/* line 107, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-window .x-window-handle {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
+ opacity: 0; }
+
+/* line 111, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-window-collapsed .x-window-handle {
+ display: none; }
+
+/* line 116, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-proxy {
+ border: 1px dashed #3b5a82;
+ position: absolute;
+ overflow: hidden;
+ z-index: 50000; }
+
+/* line 125, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-over,
+.x-resizable-pinned .x-resizable-handle {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1; }
+
+/* line 131, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-east-over,
+.x-resizable-handle-west-over {
+ background-image: url(images/sizer/e-handle.png); }
+
+/* line 137, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-south-over,
+.x-resizable-handle-north-over {
+ background-image: url(images/sizer/s-handle.png); }
+
+/* line 142, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-southeast-over {
+ background-position: top left;
+ background-image: url(images/sizer/se-handle.png); }
+
+/* line 147, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-northwest-over {
+ background-position: bottom right;
+ background-image: url(images/sizer/nw-handle.png); }
+
+/* line 152, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-northeast-over {
+ background-position: bottom left;
+ background-image: url(images/sizer/ne-handle.png); }
+
+/* line 157, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-southwest-over {
+ background-position: top right;
+ background-image: url(images/sizer/sw-handle.png); }
+
+/* line 165, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-pinned .x-resizable-handle-east,
+.x-resizable-pinned .x-resizable-handle-west {
+ background-image: url(images/sizer/e-handle.png); }
+/* line 171, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-pinned .x-resizable-handle-south,
+.x-resizable-pinned .x-resizable-handle-north {
+ background-image: url(images/sizer/s-handle.png); }
+/* line 176, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-pinned .x-resizable-handle-southeast {
+ background-position: top left;
+ background-image: url(images/sizer/se-handle.png); }
+/* line 181, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-pinned .x-resizable-handle-northwest {
+ background-position: bottom right;
+ background-image: url(images/sizer/nw-handle.png); }
+/* line 186, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-pinned .x-resizable-handle-northeast {
+ background-position: bottom left;
+ background-image: url(images/sizer/ne-handle.png); }
+/* line 191, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/resizer/Resizer.scss */
+.x-resizable-pinned .x-resizable-handle-southwest {
+ background-position: top right;
+ background-image: url(images/sizer/sw-handle.png); }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
+.x-column-header-checkbox {
+ border-color: #30414f; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
+.x-grid-row-checker,
+.x-column-header-checkbox .x-column-header-text {
+ height: 15px;
+ width: 15px;
+ background-image: url(images/form/checkbox.png);
+ line-height: 15px; }
+
+/* line 15, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
+.x-column-header-checkbox .x-column-header-inner {
+ padding: 7px 4px 7px 4px; }
+
+/* line 19, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
+.x-grid-cell-row-checker .x-grid-cell-inner {
+ padding: 5px 4px 4px 4px; }
+
+/* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
+.x-grid-hd-checker-on .x-column-header-text,
+.x-grid-item-selected .x-grid-row-checker,
+.x-grid-item-selected .x-grid-row-checker {
+ background-position: 0 -15px; }
+
+/* Horizontal styles */
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-horz {
+ padding-left: 7px;
+ background: no-repeat 0 -15px; }
+ /* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+ .x-slider-horz .x-slider-end {
+ padding-right: 8px;
+ background: no-repeat right -30px; }
+
+/* line 12, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-horz .x-slider-inner {
+ height: 15px; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-horz .x-slider-thumb {
+ width: 15px;
+ height: 15px;
+ margin-left: -7px;
+ background-image: url(images/slider/slider-thumb.png); }
+
+/* line 23, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-horz.x-slider-focus .x-slider-thumb {
+ background-position: -45px -45px; }
+
+/* line 27, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-horz .x-slider-thumb-over {
+ background-position: -15px -15px; }
+
+/* line 31, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-horz.x-slider-focus .x-slider-thumb-over {
+ background-position: -60px -60px; }
+
+/* line 35, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-horz .x-slider-thumb-drag {
+ background-position: -30px -30px; }
+
+/* line 39, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-horz.x-slider-focus .x-slider-thumb-drag {
+ background-position: -75px -75px; }
+
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-rtl.x-slider-horz {
+ padding-left: 0;
+ padding-right: 7px;
+ background-position: right -30px; }
+ /* line 49, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+ .x-rtl.x-slider-horz .x-slider-end {
+ padding-right: 0;
+ padding-left: 8px;
+ background-position: left -15px; }
+ /* line 55, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+ .x-rtl.x-slider-horz .x-slider-thumb {
+ margin-right: -8px; }
+
+/* Vertical styles */
+/* line 62, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-ct-vert {
+ height: 100%; }
+
+/* line 66, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-vert {
+ padding-top: 7px;
+ background: no-repeat -30px 0;
+ height: 100%; }
+ /* line 71, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+ .x-slider-vert > .x-slider-end {
+ height: 100%; }
+ /* line 73, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+ .x-slider-vert > .x-slider-end > .x-slider-inner {
+ height: 100%; }
+
+/* line 79, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-vert .x-slider-end {
+ padding-bottom: 8px;
+ background: no-repeat -15px bottom;
+ width: 15px; }
+
+/* line 85, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-vert .x-slider-inner {
+ width: 15px; }
+
+/* line 89, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-vert .x-slider-thumb {
+ width: 15px;
+ height: 15px;
+ margin-bottom: -8px;
+ background-image: url(images/slider/slider-v-thumb.png); }
+
+/* line 96, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-vert.x-slider-focus .x-slider-thumb {
+ background-position: -45px -45px; }
+
+/* line 100, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-vert .x-slider-thumb-over {
+ background-position: -15px -15px; }
+
+/* line 104, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-vert.x-slider-focus .x-slider-thumb-over {
+ background-position: -60px -60px; }
+
+/* line 108, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-vert .x-slider-thumb-drag {
+ background-position: -30px -30px; }
+
+/* line 112, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-vert.x-slider-focus .x-slider-thumb-drag {
+ background-position: -75px -75px; }
+
+/* line 118, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-horz,
+.x-slider-horz .x-slider-end,
+.x-slider-horz .x-slider-inner {
+ background-image: url(images/slider/slider-bg.png); }
+
+/* line 124, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-vert,
+.x-slider-vert .x-slider-end,
+.x-slider-vert .x-slider-inner {
+ background-image: url(images/slider/slider-v-bg.png); }
+
+/* line 129, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/slider/Multi.scss */
+.x-slider-default-cell > .x-grid-cell-inner,
+.x-sliderwidget-default-cell > .x-grid-cell-inner {
+ padding-top: 4px;
+ padding-bottom: 5px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/sparkline/Base.scss */
+.x-sparkline-cell .x-grid-cell-inner {
+ padding-top: 1px;
+ padding-bottom: 1px;
+ line-height: 22px; }
+
+/**
+ * Creates a visual theme for a Breadcrumb.
+ *
+ * @param {string} $ui
+ * The name of the UI being created. Can not included spaces or special punctuation
+ * (used in CSS class names).
+ *
+ * @param {string} [$ui-button-ui=$breadcrumb-button-ui]
+ * The name of the button UI that will be used with this breadcrumb UI. Used for overriding
+ * the button arrows for the given button UI when it is used inside a breadcrumb with this UI.
+ *
+ * @param {number} [$ui-button-spacing=$breadcrumb-button-spacing]
+ * The space between the breadcrumb buttons
+ *
+ * @param {number} [$ui-arrow-width=$breadcrumb-arrow-width]
+ * The width of the breadcrumb arrows when
+ * {@link Ext.toolbar.Breadcrumb#useSplitButtons} is `false`
+ *
+ * @param {number} [$ui-split-width=$breadcrumb-split-width]
+ * The width of breadcrumb arrows when {@link Ext.toolbar.Breadcrumb#useSplitButtons} is
+ * `true`
+ *
+ * @param {boolean} [$ui-include-menu-active-arrow=$breadcrumb-include-menu-active-arrow]
+ * `true` to include a separate background-image for menu arrows when a breadcrumb button's
+ * menu is open
+ *
+ * @param {boolean} [$ui-include-split-over-arrow=$breadcrumb-include-split-over-arrow
+ * `true` to include a separate background-image for split arrows when a breadcrumb button's
+ * arrow is hovered
+ *
+ * @param {string} [$ui-folder-icon=$breadcrumb-folder-icon]
+ * The background-image for the default "folder" icon
+ *
+ * @param {string} [$ui-leaf-icon=$breadcrumb-leaf-icon]
+ * The background-image for the default "leaf" icon
+ *
+ * @param {number} [$ui-scroller-width=$breadcrumb-scroller-width]
+ * The width of Breadcrumb scrollers
+ *
+ * @param {number} [$ui-scroller-height=$breadcrumb-scroller-height]
+ * The height of Breadcrumb scrollers
+ *
+ * @param {color} [$ui-scroller-border-color=$breadcrumb-scroller-border-color]
+ * The border-color of Breadcrumb scrollers
+ *
+ * @param {number} [$ui-scroller-border-width=$breadcrumb-scroller-border-width]
+ * The border-width of Breadcrumb scrollers
+ *
+ * @param {number/list} [$ui-scroller-top-margin=$breadcrumb-scroller-top-margin]
+ * The margin of "top" scroller buttons
+ *
+ * @param {number/list} [$ui-scroller-right-margin=$breadcrumb-scroller-right-margin]
+ * The margin of "right" scroller buttons
+ *
+ * @param {number/list} [$ui-scroller-bottom-margin=$breadcrumb-scroller-bottom-margin]
+ * The margin of "bottom" scroller buttons
+ *
+ * @param {number/list} [$ui-scroller-left-margin=$breadcrumb-scroller-left-margin]
+ * The margin of "left" scroller buttons
+ *
+ * @param {string} [$ui-scroller-cursor=$breadcrumb-scroller-cursor]
+ * The cursor of Breadcrumb scrollers
+ *
+ * @param {string} [$ui-scroller-cursor-disabled=$breadcrumb-scroller-cursor-disabled]
+ * The cursor of disabled Breadcrumb scrollers
+ *
+ * @param {number} [$ui-scroller-opacity=$breadcrumb-scroller-opacity]
+ * The opacity of Breadcrumb scroller buttons. Only applicable when
+ * `$ui-classic-scrollers` is `false`.
+ *
+ * @param {number} [$ui-scroller-opacity-over=$breadcrumb-scroller-opacity-over]
+ * The opacity of hovered Breadcrumb scroller buttons. Only applicable when
+ * `$ui-classic-scrollers` is `false`.
+ *
+ * @param {number} [$ui-scroller-opacity-pressed=$breadcrumb-scroller-opacity-pressed]
+ * The opacity of pressed Breadcrumb scroller buttons. Only applicable when
+ * `$ui-classic-scrollers` is `false`.
+ *
+ * @param {number} [$ui-scroller-opacity-disabled=$breadcrumb-scroller-opacity-disabled]
+ * The opacity of disabled Breadcrumb scroller buttons.
+ *
+ * @param {boolean} [$ui-classic-scrollers=$breadcrumb-classic-scrollers]
+ * `true` to use classic-style scroller buttons. When `true` scroller buttons are given
+ * their hover state by changing their background-position, When `false` scroller buttons
+ * are given their hover state by applying opacity.
+ *
+ * @member Ext.toolbar.Breadcrumb
+ */
+/* line 115, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
+.x-breadcrumb-btn-default {
+ margin: 0 0 0 0px; }
+
+/* line 119, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
+.x-breadcrumb-icon-folder-default {
+ background-image: url(images/tree/folder.png); }
+
+/* line 123, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
+.x-breadcrumb-icon-leaf-default {
+ background-image: url(images/tree/leaf.png); }
+
+/* line 128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
+.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-arrow:after {
+ width: 20px;
+ background-image: url(images/breadcrumb/default-arrow.png); }
+/* line 134, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
+.x-rtl.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-arrow:after {
+ background-image: url(images/breadcrumb/default-arrow-rtl.png); }
+/* line 140, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
+.x-btn-menu-active.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-arrow:after {
+ background-image: url(images/breadcrumb/default-arrow-open.png); }
+/* line 145, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
+.x-rtl.x-btn-menu-active.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-arrow:after {
+ background-image: url(images/breadcrumb/default-arrow-open-rtl.png); }
+
+/* line 153, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
+.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-split:after {
+ width: 20px;
+ background-image: url(images/breadcrumb/default-split-arrow.png); }
+/* line 159, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
+.x-rtl.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-split:after {
+ background-image: url(images/breadcrumb/default-split-arrow-rtl.png); }
+/* line 165, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
+.x-btn-over.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-split:after {
+ background-image: url(images/breadcrumb/default-split-arrow-over.png); }
+/* line 170, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
+.x-rtl.x-btn-over.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-split:after {
+ background-image: url(images/breadcrumb/default-split-arrow-over-rtl.png); }
+/* line 177, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
+.x-btn-menu-active.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-split:after {
+ background-image: url(images/breadcrumb/default-split-arrow-open.png); }
+/* line 182, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
+.x-rtl.x-btn-menu-active.x-breadcrumb-btn > .x-btn-wrap-plain-toolbar-small.x-btn-split:after {
+ background-image: url(images/breadcrumb/default-split-arrow-open-rtl.png); }
+
+/* line 145, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-breadcrumb-default-scroller .x-box-scroller-body-horizontal {
+ margin-left: 24px; }
+
+/* line 151, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-breadcrumb-default-vertical-scroller .x-box-scroller-body-vertical {
+ margin-top: 24px; }
+
+/* line 156, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-box-scroller-breadcrumb-default {
+ cursor: pointer;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
+ opacity: 0.6; }
+ /* line 165, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-breadcrumb-default.x-box-scroller-hover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8; }
+ /* line 171, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-breadcrumb-default.x-box-scroller-pressed {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1; }
+ /* line 177, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-breadcrumb-default.x-box-scroller-disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
+ opacity: 0.25;
+ cursor: default; }
+ /* line 188, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-breadcrumb-default.x-box-scroller-left, .x-box-scroller-breadcrumb-default.x-box-scroller-right {
+ width: 16px;
+ height: 16px;
+ top: 50%;
+ margin-top: -8px; }
+ /* line 214, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-breadcrumb-default.x-box-scroller-left {
+ margin-left: 4px;
+ margin-right: 4px;
+ margin-bottom: 0;
+ background-image: url(images/breadcrumb/default-scroll-left.png); }
+ /* line 237, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-breadcrumb-default.x-box-scroller-right {
+ margin-left: 4px;
+ margin-right: 4px;
+ margin-bottom: 0;
+ background-image: url(images/breadcrumb/default-scroll-right.png); }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
+.x-tree-drop-ok-append .x-dd-drop-icon {
+ background-image: url(images/tree/drop-append.png); }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
+.x-tree-drop-ok-above .x-dd-drop-icon {
+ background-image: url(images/tree/drop-above.png); }
+
+/* line 9, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
+.x-tree-drop-ok-below .x-dd-drop-icon {
+ background-image: url(images/tree/drop-below.png); }
+
+/* line 13, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
+.x-tree-drop-ok-between .x-dd-drop-icon {
+ background-image: url(images/tree/drop-between.png); }
+
+/* line 17, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
+.x-tree-ddindicator {
+ height: 1px;
+ border-width: 1px 0px 0px;
+ border-style: dotted;
+ border-color: green; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ux/dashboard/GoogleRssView.scss */
+.x-dashboard-googlerss {
+ font-family: helvetica, arial, verdana, sans-serif;
+ margin: 5px; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ux/dashboard/GoogleRssView.scss */
+.x-dashboard-googlerss-title {
+ font-weight: bold; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ux/dashboard/GoogleRssView.scss */
+.x-dashboard-googlerss-author {
+ color: #aaaaaa; }
+
+/* line 14, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ux/dashboard/GoogleRssView.scss */
+.x-dashboard-googlerss-preview {
+ width: 16px;
+ height: 16px;
+ background-color: white;
+ background-image: url(images/ux/dashboard/magnify.png); }
+
+/* line 21, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ux/dashboard/GoogleRssView.scss */
+.x-dashboard-googlerss-detail-header {
+ position: relative;
+ background-color: #f5f5f5;
+ padding: 5px;
+ border-bottom-width: 1px;
+ border-bottom-color: #cecece;
+ border-bottom-style: solid; }
+
+/* line 30, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ux/dashboard/GoogleRssView.scss */
+.x-dashboard-googlerss-glyph {
+ cursor: pointer;
+ font-weight: bold;
+ font-size: 22px; }
+
+/* line 36, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ux/dashboard/GoogleRssView.scss */
+.x-dashboard-googlerss-detail {
+ padding: 5px;
+ overflow: auto; }
+
+/* line 41, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ux/dashboard/GoogleRssView.scss */
+.x-dashboard-googlerss-detail-nav {
+ position: absolute;
+ color: #aaaaaa;
+ right: 5px;
+ top: 5px; }
+
+/* line 48, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ux/dashboard/GoogleRssView.scss */
+.x-dashboard-googlerss-detail .x-dashboard-googlerss-title {
+ font-weight: bold; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ux/grid/SubTable.scss */
+.x-grid-subtable {
+ border-collapse: collapse; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ux/grid/SubTable.scss */
+tr.x-grid-subtable-row {
+ background-color: #162938; }
+
+/* line 9, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ux/grid/SubTable.scss */
+.x-grid-subtable-header {
+ border: 1px solid #4b6375;
+ color: #fefefe;
+ font: 300 13px/15px "Roboto", sans-serif;
+ background-image: none;
+ background-color: #30414f;
+ padding: 6px 10px 6px 10px;
+ text-overflow: ellipsis; }
+
+/* line 27, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/ux/grid/SubTable.scss */
+.x-grid-subtable-cell {
+ border-top: 1px solid #4b6375;
+ border-right: 1px solid #4b6375;
+ border-bottom: 1px solid #4b6375;
+ border-left: 1px solid #4b6375; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/MultiSelector.scss */
+.x-multiselector-remove {
+ font-size: 100%;
+ color: #e1e1e1;
+ cursor: pointer; }
+ /* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/MultiSelector.scss */
+ .x-multiselector-remove .x-grid-cell-inner {
+ padding: 5px 10px 4px 10px; }
+
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/view/MultiSelector.scss */
+.x-grid-item-over .x-multiselector-remove {
+ color: red; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Toast.scss */
+.x-toast-icon-information {
+ background-image: url(images/window/toast/icon16_info.png); }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Toast.scss */
+.x-toast-icon-error {
+ background-image: url(images/window/toast/icon16_error.png); }
+
+/* Using standard theme */
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Toast.scss */
+.x-toast-window .x-window-body {
+ padding: 15px 5px 15px 5px; }
+
+/* Custom styling */
+/* line 17, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Toast.scss */
+.x-toast-light .x-window-header {
+ background-color: white; }
+
+/* line 21, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Toast.scss */
+.x-toast-light .x-tool-img {
+ background-color: white; }
+
+/* line 25, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Toast.scss */
+.x-toast-light {
+ background-image: url(images/window/toast/fader.png); }
+
+/* line 29, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/window/Toast.scss */
+.x-toast-light .x-window-body {
+ padding: 15px 5px 20px 5px;
+ background-color: transparent;
+ border: 0px solid white; }
+
+/* including package ext-theme-neptune */
+/* line 256, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-light {
+ border-color: white;
+ padding: 0; }
+
+/* line 262, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light {
+ font-size: 13px;
+ border: 1px solid white; }
+ /* line 269, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-light .x-tool-img {
+ background-image: url(images/tools/tool-sprites-dark.png);
+ background-color: white; }
+
+/* line 282, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-horizontal {
+ padding: 9px 9px 10px 9px; }
+ /* line 286, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-light-horizontal .x-panel-header-light-tab-bar {
+ margin-top: -9px;
+ margin-bottom: -10px; }
+
+/* line 294, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-horizontal.x-header-noborder {
+ padding: 10px 10px 10px 10px; }
+ /* line 298, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-light-horizontal.x-header-noborder .x-panel-header-light-tab-bar {
+ margin-top: -10px;
+ margin-bottom: -10px; }
+
+/* line 306, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-vertical {
+ padding: 9px 9px 9px 10px; }
+ /* line 310, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-light-vertical .x-panel-header-light-tab-bar {
+ margin-right: -9px;
+ margin-left: -10px; }
+
+/* line 318, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-vertical.x-header-noborder {
+ padding: 10px 10px 10px 10px; }
+ /* line 322, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-light-vertical.x-header-noborder .x-panel-header-light-tab-bar {
+ margin-right: -10px;
+ margin-left: -10px; }
+
+/* line 331, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-light-vertical {
+ padding: 9px 10px 9px 9px; }
+ /* line 335, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-rtl.x-panel-header-light-vertical .x-panel-header-light-tab-bar {
+ margin-left: -9px;
+ margin-right: -10px; }
+
+/* line 343, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-light-vertical.x-header-noborder {
+ padding: 10px 10px 10px 10px; }
+ /* line 347, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-rtl.x-panel-header-light-vertical.x-header-noborder .x-panel-header-light-tab-bar {
+ margin-left: -10px;
+ margin-right: -10px; }
+
+/* line 356, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-title-light {
+ color: black;
+ font-size: 13px;
+ font-weight: 300;
+ font-family: "Roboto", sans-serif;
+ line-height: 16px; }
+ /* line 369, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light > .x-title-text-light {
+ text-transform: none;
+ padding: 0; }
+ /* line 412, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light > .x-title-icon-wrap-light.x-title-icon-top {
+ height: 22px;
+ padding-bottom: 6px; }
+ /* line 417, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light > .x-title-icon-wrap-light.x-title-icon-right {
+ width: 22px;
+ padding-left: 6px; }
+ /* line 422, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light > .x-title-icon-wrap-light.x-title-icon-right.x-rtl {
+ padding-left: 0;
+ padding-right: 6px; }
+ /* line 429, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light > .x-title-icon-wrap-light.x-title-icon-bottom {
+ height: 22px;
+ padding-top: 6px; }
+ /* line 434, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light > .x-title-icon-wrap-light.x-title-icon-left {
+ width: 22px;
+ padding-right: 6px; }
+ /* line 439, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light > .x-title-icon-wrap-light.x-title-icon-left.x-rtl {
+ padding-right: 0;
+ padding-left: 6px; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light > .x-title-icon-wrap-light > .x-title-icon-light {
+ width: 16px;
+ height: 16px;
+ background-position: center center; }
+ /* line 452, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light > .x-title-icon-wrap-light > .x-title-glyph {
+ color: #fefefe;
+ font-size: 16px;
+ line-height: 16px;
+ opacity: 0.5; }
+
+/* line 479, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-body-light {
+ background: #162938;
+ border-color: #cecece;
+ color: #fefefe;
+ font-size: 13px;
+ font-weight: 300;
+ font-family: "Roboto", sans-serif;
+ border-width: 1px;
+ border-style: solid; }
+
+/* line 643, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light {
+ background-image: none;
+ background-color: white; }
+
+/* line 647, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-vertical {
+ background-image: none;
+ background-color: white; }
+
+/* line 652, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-light-vertical {
+ background-image: none;
+ background-color: white; }
+
+/* line 705, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-light-collapsed-border-top {
+ border-bottom-width: 1px !important; }
+/* line 709, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-light-collapsed-border-right {
+ border-left-width: 1px !important; }
+/* line 713, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-light-collapsed-border-bottom {
+ border-top-width: 1px !important; }
+/* line 717, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-light-collapsed-border-left {
+ border-right-width: 1px !important; }
+
+/* */
+/* */
+/* */
+/* */
+/* line 753, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-horizontal .x-tool-after-title {
+ margin: 0 0 0 6px; }
+/* line 758, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-horizontal .x-rtl.x-tool-after-title {
+ margin: 0 6px 0 0; }
+/* line 763, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-horizontal .x-tool-before-title {
+ margin: 0 6px 0 0; }
+/* line 768, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-horizontal .x-rtl.x-tool-before-title {
+ margin: 0 0 0 6px; }
+
+/* line 775, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-vertical .x-tool-after-title {
+ margin: 6px 0 0 0; }
+/* line 780, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-vertical .x-rtl.x-tool-after-title {
+ margin: 6px 0 0 0; }
+/* line 785, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-vertical .x-tool-before-title {
+ margin: 0 0 6px 0; }
+/* line 790, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-vertical .x-rtl.x-tool-before-title {
+ margin: 0 0 6px 0; }
+
+/* line 798, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-light-collapsed-border-right {
+ border-right-width: 1px !important; }
+/* line 801, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-light-collapsed-border-left {
+ border-left-width: 1px !important; }
+
+/* line 815, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-light-resizable .x-panel-handle {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
+ opacity: 0; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-l {
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-b {
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-bl {
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important;
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-r {
+ border-right-color: white !important;
+ border-right-width: 1px !important; }
+
+/* line 20, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-rl {
+ border-right-color: white !important;
+ border-right-width: 1px !important;
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 26, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-rb {
+ border-right-color: white !important;
+ border-right-width: 1px !important;
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important; }
+
+/* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-rbl {
+ border-right-color: white !important;
+ border-right-width: 1px !important;
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important;
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-t {
+ border-top-color: white !important;
+ border-top-width: 1px !important; }
+
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-tl {
+ border-top-color: white !important;
+ border-top-width: 1px !important;
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 50, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-tb {
+ border-top-color: white !important;
+ border-top-width: 1px !important;
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important; }
+
+/* line 56, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-tbl {
+ border-top-color: white !important;
+ border-top-width: 1px !important;
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important;
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 64, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-tr {
+ border-top-color: white !important;
+ border-top-width: 1px !important;
+ border-right-color: white !important;
+ border-right-width: 1px !important; }
+
+/* line 70, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-trl {
+ border-top-color: white !important;
+ border-top-width: 1px !important;
+ border-right-color: white !important;
+ border-right-width: 1px !important;
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 78, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-trb {
+ border-top-color: white !important;
+ border-top-width: 1px !important;
+ border-right-color: white !important;
+ border-right-width: 1px !important;
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important; }
+
+/* line 86, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-outer-border-trbl {
+ border-color: white !important;
+ border-width: 1px !important; }
+
+/* line 256, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-light-framed {
+ border-color: white;
+ padding: 0; }
+
+/* line 262, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-framed {
+ font-size: 13px;
+ border: 1px solid white; }
+ /* line 269, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-light-framed .x-tool-img {
+ background-image: url(images/tools/tool-sprites-dark.png);
+ background-color: white; }
+
+/* line 282, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-framed-horizontal {
+ padding: 9px 9px 9px 9px; }
+ /* line 286, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-light-framed-horizontal .x-panel-header-light-framed-tab-bar {
+ margin-top: -9px;
+ margin-bottom: -9px; }
+
+/* line 294, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-framed-horizontal.x-header-noborder {
+ padding: 10px 10px 9px 10px; }
+ /* line 298, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-light-framed-horizontal.x-header-noborder .x-panel-header-light-framed-tab-bar {
+ margin-top: -10px;
+ margin-bottom: -9px; }
+
+/* line 306, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-framed-vertical {
+ padding: 9px 9px 9px 9px; }
+ /* line 310, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-light-framed-vertical .x-panel-header-light-framed-tab-bar {
+ margin-right: -9px;
+ margin-left: -9px; }
+
+/* line 318, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-framed-vertical.x-header-noborder {
+ padding: 10px 10px 10px 9px; }
+ /* line 322, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-light-framed-vertical.x-header-noborder .x-panel-header-light-framed-tab-bar {
+ margin-right: -10px;
+ margin-left: -9px; }
+
+/* line 331, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-light-framed-vertical {
+ padding: 9px 9px 9px 9px; }
+ /* line 335, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-rtl.x-panel-header-light-framed-vertical .x-panel-header-light-framed-tab-bar {
+ margin-left: -9px;
+ margin-right: -9px; }
+
+/* line 343, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-light-framed-vertical.x-header-noborder {
+ padding: 10px 9px 10px 10px; }
+ /* line 347, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-rtl.x-panel-header-light-framed-vertical.x-header-noborder .x-panel-header-light-framed-tab-bar {
+ margin-left: -10px;
+ margin-right: -9px; }
+
+/* line 356, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-title-light-framed {
+ color: black;
+ font-size: 13px;
+ font-weight: 300;
+ font-family: "Roboto", sans-serif;
+ line-height: 16px; }
+ /* line 369, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light-framed > .x-title-text-light-framed {
+ text-transform: none;
+ padding: 0; }
+ /* line 412, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light-framed > .x-title-icon-wrap-light-framed.x-title-icon-top {
+ height: 22px;
+ padding-bottom: 6px; }
+ /* line 417, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light-framed > .x-title-icon-wrap-light-framed.x-title-icon-right {
+ width: 22px;
+ padding-left: 6px; }
+ /* line 422, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light-framed > .x-title-icon-wrap-light-framed.x-title-icon-right.x-rtl {
+ padding-left: 0;
+ padding-right: 6px; }
+ /* line 429, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light-framed > .x-title-icon-wrap-light-framed.x-title-icon-bottom {
+ height: 22px;
+ padding-top: 6px; }
+ /* line 434, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light-framed > .x-title-icon-wrap-light-framed.x-title-icon-left {
+ width: 22px;
+ padding-right: 6px; }
+ /* line 439, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light-framed > .x-title-icon-wrap-light-framed.x-title-icon-left.x-rtl {
+ padding-right: 0;
+ padding-left: 6px; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light-framed > .x-title-icon-wrap-light-framed > .x-title-icon-light-framed {
+ width: 16px;
+ height: 16px;
+ background-position: center center; }
+ /* line 452, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+ .x-panel-header-title-light-framed > .x-title-icon-wrap-light-framed > .x-title-glyph {
+ color: #fefefe;
+ font-size: 16px;
+ line-height: 16px;
+ opacity: 0.5; }
+
+/* line 479, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-body-light-framed {
+ background: white;
+ border-color: #cecece;
+ color: #fefefe;
+ font-size: 13px;
+ font-weight: 300;
+ font-family: "Roboto", sans-serif;
+ border-width: 1px;
+ border-style: solid; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-light-framed {
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ -ms-border-radius: 4px;
+ -o-border-radius: 4px;
+ border-radius: 4px;
+ padding: 0 0 0 0;
+ border-width: 1px;
+ border-style: solid;
+ background-color: white; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-light-framed-top {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 0;
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+ -moz-border-radius-bottomleft: 0;
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px 1px 0 1px;
+ border-style: solid;
+ background-color: white; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-light-framed-right {
+ -moz-border-radius-topleft: 0;
+ -webkit-border-top-left-radius: 0;
+ border-top-left-radius: 0;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 0;
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px 1px 1px 0;
+ border-style: solid;
+ background-color: white; }
+
+/* line 226, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-rtl.x-panel-header-light-framed-right {
+ background-image: none;
+ background-color: white; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-light-framed-bottom {
+ -moz-border-radius-topleft: 0;
+ -webkit-border-top-left-radius: 0;
+ border-top-left-radius: 0;
+ -moz-border-radius-topright: 0;
+ -webkit-border-top-right-radius: 0;
+ border-top-right-radius: 0;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 0 1px 1px 1px;
+ border-style: solid;
+ background-color: white; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-light-framed-left {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 0;
+ -webkit-border-top-right-radius: 0;
+ border-top-right-radius: 0;
+ -moz-border-radius-bottomright: 0;
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px 0 1px 1px;
+ border-style: solid;
+ background-color: white; }
+
+/* line 226, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-rtl.x-panel-header-light-framed-left {
+ background-image: none;
+ background-color: white; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-light-framed-collapsed-top {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: white; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-light-framed-collapsed-right {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: white; }
+
+/* line 226, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-rtl.x-panel-header-light-framed-collapsed-right {
+ background-image: none;
+ background-color: white; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-light-framed-collapsed-bottom {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: white; }
+
+/* */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-panel-header-light-framed-collapsed-left {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ padding: 9px 9px 9px 9px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: white; }
+
+/* line 226, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-rtl.x-panel-header-light-framed-collapsed-left {
+ background-image: none;
+ background-color: white; }
+
+/* */
+/* line 605, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-light-framed-top {
+ border-bottom-width: 1px !important; }
+/* line 609, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-light-framed-right {
+ border-left-width: 1px !important; }
+/* line 613, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-light-framed-bottom {
+ border-top-width: 1px !important; }
+/* line 617, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel .x-panel-header-light-framed-left {
+ border-right-width: 1px !important; }
+
+/* line 753, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-framed-horizontal .x-tool-after-title {
+ margin: 0 0 0 6px; }
+/* line 758, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-framed-horizontal .x-rtl.x-tool-after-title {
+ margin: 0 6px 0 0; }
+/* line 763, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-framed-horizontal .x-tool-before-title {
+ margin: 0 6px 0 0; }
+/* line 768, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-framed-horizontal .x-rtl.x-tool-before-title {
+ margin: 0 0 0 6px; }
+
+/* line 775, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-framed-vertical .x-tool-after-title {
+ margin: 6px 0 0 0; }
+/* line 780, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-framed-vertical .x-rtl.x-tool-after-title {
+ margin: 6px 0 0 0; }
+/* line 785, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-framed-vertical .x-tool-before-title {
+ margin: 0 0 6px 0; }
+/* line 790, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-header-light-framed-vertical .x-rtl.x-tool-before-title {
+ margin: 0 0 6px 0; }
+
+/* line 798, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-light-framed-collapsed-border-right {
+ border-right-width: 1px !important; }
+/* line 801, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-rtl.x-panel-header-light-framed-collapsed-border-left {
+ border-left-width: 1px !important; }
+
+/* line 815, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/panel/Panel.scss */
+.x-panel-light-framed-resizable .x-panel-handle {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
+ opacity: 0; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-l {
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-b {
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important; }
+
+/* line 10, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-bl {
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important;
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-r {
+ border-right-color: white !important;
+ border-right-width: 1px !important; }
+
+/* line 20, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-rl {
+ border-right-color: white !important;
+ border-right-width: 1px !important;
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 26, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-rb {
+ border-right-color: white !important;
+ border-right-width: 1px !important;
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important; }
+
+/* line 32, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-rbl {
+ border-right-color: white !important;
+ border-right-width: 1px !important;
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important;
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-t {
+ border-top-color: white !important;
+ border-top-width: 1px !important; }
+
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-tl {
+ border-top-color: white !important;
+ border-top-width: 1px !important;
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 50, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-tb {
+ border-top-color: white !important;
+ border-top-width: 1px !important;
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important; }
+
+/* line 56, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-tbl {
+ border-top-color: white !important;
+ border-top-width: 1px !important;
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important;
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 64, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-tr {
+ border-top-color: white !important;
+ border-top-width: 1px !important;
+ border-right-color: white !important;
+ border-right-width: 1px !important; }
+
+/* line 70, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-trl {
+ border-top-color: white !important;
+ border-top-width: 1px !important;
+ border-right-color: white !important;
+ border-right-width: 1px !important;
+ border-left-color: white !important;
+ border-left-width: 1px !important; }
+
+/* line 78, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-trb {
+ border-top-color: white !important;
+ border-top-width: 1px !important;
+ border-right-color: white !important;
+ border-right-width: 1px !important;
+ border-bottom-color: white !important;
+ border-bottom-width: 1px !important; }
+
+/* line 86, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/border-management.scss */
+.x-panel-light-framed-outer-border-trbl {
+ border-color: white !important;
+ border-width: 1px !important; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-btn-plain-toolbar-small {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 3px 3px 3px 3px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: transparent; }
+
+/* */
+/* line 423, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-plain-toolbar-small {
+ border-color: transparent; }
+
+/* line 430, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-button-plain-toolbar-small {
+ height: 16px; }
+
+/* line 435, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-inner-plain-toolbar-small {
+ font: 300 12px/16px "Roboto", sans-serif;
+ color: #666666;
+ padding: 0 5px;
+ max-width: 100%; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-right > .x-btn-inner-plain-toolbar-small, .x-btn-icon-left > .x-btn-inner-plain-toolbar-small {
+ max-width: calc(100% - 16px); }
+
+/* line 453, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-icon-el-plain-toolbar-small {
+ height: 16px; }
+ /* line 457, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-left > .x-btn-icon-el-plain-toolbar-small, .x-btn-icon-right > .x-btn-icon-el-plain-toolbar-small {
+ width: 16px; }
+ /* line 462, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-top > .x-btn-icon-el-plain-toolbar-small, .x-btn-icon-bottom > .x-btn-icon-el-plain-toolbar-small {
+ min-width: 16px; }
+ /* line 466, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-el-plain-toolbar-small.x-btn-glyph {
+ font-size: 16px;
+ line-height: 16px;
+ color: #666666;
+ opacity: 0.5; }
+ /* line 493, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-plain-toolbar-small {
+ margin-right: 0px; }
+ /* line 497, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-plain-toolbar-small.x-rtl {
+ margin-right: 0;
+ margin-left: 0px; }
+ /* line 504, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-plain-toolbar-small {
+ margin-left: 0px; }
+ /* line 508, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-plain-toolbar-small.x-rtl {
+ margin-left: 0;
+ margin-right: 0px; }
+ /* line 515, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-plain-toolbar-small {
+ margin-bottom: 5px; }
+ /* line 519, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-plain-toolbar-small {
+ margin-top: 5px; }
+
+/* line 525, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-plain-toolbar-small {
+ padding-right: 5px; }
+/* line 528, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-plain-toolbar-small {
+ margin-right: 5px; }
+
+/* line 535, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-bottom > .x-btn-button-plain-toolbar-small,
+.x-btn-split-bottom > .x-btn-button-plain-toolbar-small {
+ padding-bottom: 3px; }
+
+/* line 541, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-small.x-btn-arrow-right:after {
+ width: 16px;
+ padding-right: 16px;
+ background-image: url(images/button/plain-toolbar-small-arrow.png); }
+/* line 554, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-small.x-rtl.x-btn-arrow-right:after {
+ background-image: url(images/button/plain-toolbar-small-arrow-rtl.png); }
+/* line 563, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-small.x-btn-arrow-bottom:after {
+ height: 13px;
+ background-image: url(images/button/plain-toolbar-small-arrow.png); }
+
+/* line 583, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-small.x-btn-split-right:after {
+ width: 20px;
+ padding-right: 20px;
+ background-image: url(images/button/plain-toolbar-small-s-arrow.png); }
+/* line 592, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-small.x-rtl.x-btn-split-right:after {
+ background-image: url(images/button/plain-toolbar-small-s-arrow-rtl.png); }
+/* line 597, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-small.x-btn-split-bottom:after {
+ height: 15px;
+ background-image: url(images/button/plain-toolbar-small-s-arrow-b.png); }
+
+/* line 624, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-plain-toolbar-small {
+ padding-right: 5px; }
+/* line 627, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-plain-toolbar-small {
+ margin-right: 5px; }
+
+/* line 632, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-plain-toolbar-small {
+ background-image: none;
+ background-color: transparent; }
+
+/* line 667, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-over.x-btn-plain-toolbar-small {
+ border-color: #cfcfcf;
+ background-image: none;
+ background-color: #ebebeb; }
+
+/* line 723, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-menu-active.x-btn-plain-toolbar-small,
+.x-btn.x-btn-pressed.x-btn-plain-toolbar-small {
+ border-color: #c6c6c6;
+ background-image: none;
+ background-color: #e1e1e1; }
+
+/* line 779, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-disabled.x-btn-plain-toolbar-small {
+ background-image: none;
+ background-color: transparent; }
+
+/* line 963, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-disabled.x-btn-plain-toolbar-small {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+
+/* line 1128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-button-plain-toolbar-small-cell > .x-grid-cell-inner {
+ padding-top: 0px;
+ padding-bottom: 0px; }
+ /* line 1133, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-button-plain-toolbar-small-cell > .x-grid-cell-inner > .x-btn-plain-toolbar-small {
+ vertical-align: top; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-btn-plain-toolbar-medium {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 3px 3px 3px 3px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: transparent; }
+
+/* */
+/* line 423, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-plain-toolbar-medium {
+ border-color: transparent; }
+
+/* line 430, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-button-plain-toolbar-medium {
+ height: 24px; }
+
+/* line 435, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-inner-plain-toolbar-medium {
+ font: 300 14px/18px "Roboto", sans-serif;
+ color: #666666;
+ padding: 0 8px;
+ max-width: 100%; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-right > .x-btn-inner-plain-toolbar-medium, .x-btn-icon-left > .x-btn-inner-plain-toolbar-medium {
+ max-width: calc(100% - 24px); }
+
+/* line 453, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-icon-el-plain-toolbar-medium {
+ height: 24px; }
+ /* line 457, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-left > .x-btn-icon-el-plain-toolbar-medium, .x-btn-icon-right > .x-btn-icon-el-plain-toolbar-medium {
+ width: 24px; }
+ /* line 462, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-top > .x-btn-icon-el-plain-toolbar-medium, .x-btn-icon-bottom > .x-btn-icon-el-plain-toolbar-medium {
+ min-width: 24px; }
+ /* line 466, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-el-plain-toolbar-medium.x-btn-glyph {
+ font-size: 24px;
+ line-height: 24px;
+ color: #666666;
+ opacity: 0.5; }
+ /* line 493, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-plain-toolbar-medium {
+ margin-right: 0; }
+ /* line 497, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-plain-toolbar-medium.x-rtl {
+ margin-right: 0;
+ margin-left: 0; }
+ /* line 504, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-plain-toolbar-medium {
+ margin-left: 0; }
+ /* line 508, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-plain-toolbar-medium.x-rtl {
+ margin-left: 0;
+ margin-right: 0; }
+ /* line 515, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-plain-toolbar-medium {
+ margin-bottom: 5px; }
+ /* line 519, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-plain-toolbar-medium {
+ margin-top: 5px; }
+
+/* line 525, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-plain-toolbar-medium {
+ padding-right: 8px; }
+/* line 528, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-plain-toolbar-medium {
+ margin-right: 8px; }
+
+/* line 535, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-bottom > .x-btn-button-plain-toolbar-medium,
+.x-btn-split-bottom > .x-btn-button-plain-toolbar-medium {
+ padding-bottom: 3px; }
+
+/* line 541, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-medium.x-btn-arrow-right:after {
+ width: 24px;
+ padding-right: 24px;
+ background-image: url(images/button/plain-toolbar-medium-arrow.png); }
+/* line 554, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-medium.x-rtl.x-btn-arrow-right:after {
+ background-image: url(images/button/plain-toolbar-medium-arrow-rtl.png); }
+/* line 563, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-medium.x-btn-arrow-bottom:after {
+ height: 18px;
+ background-image: url(images/button/plain-toolbar-medium-arrow.png); }
+
+/* line 583, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-medium.x-btn-split-right:after {
+ width: 28px;
+ padding-right: 28px;
+ background-image: url(images/button/plain-toolbar-medium-s-arrow.png); }
+/* line 592, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-medium.x-rtl.x-btn-split-right:after {
+ background-image: url(images/button/plain-toolbar-medium-s-arrow-rtl.png); }
+/* line 597, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-medium.x-btn-split-bottom:after {
+ height: 24px;
+ background-image: url(images/button/plain-toolbar-medium-s-arrow-b.png); }
+
+/* line 624, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-plain-toolbar-medium {
+ padding-right: 8px; }
+/* line 627, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-plain-toolbar-medium {
+ margin-right: 8px; }
+
+/* line 632, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-plain-toolbar-medium {
+ background-image: none;
+ background-color: transparent; }
+
+/* line 667, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-over.x-btn-plain-toolbar-medium {
+ border-color: #cfcfcf;
+ background-image: none;
+ background-color: #ebebeb; }
+
+/* line 723, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-menu-active.x-btn-plain-toolbar-medium,
+.x-btn.x-btn-pressed.x-btn-plain-toolbar-medium {
+ border-color: #c6c6c6;
+ background-image: none;
+ background-color: #e1e1e1; }
+
+/* line 779, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-disabled.x-btn-plain-toolbar-medium {
+ background-image: none;
+ background-color: transparent; }
+
+/* line 963, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-disabled.x-btn-plain-toolbar-medium {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+
+/* line 1128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-button-plain-toolbar-medium-cell > .x-grid-cell-inner {
+ padding-top: 0;
+ padding-bottom: 0; }
+ /* line 1133, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-button-plain-toolbar-medium-cell > .x-grid-cell-inner > .x-btn-plain-toolbar-medium {
+ vertical-align: top; }
+
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-btn-plain-toolbar-large {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 3px 3px 3px 3px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: transparent; }
+
+/* */
+/* line 423, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-plain-toolbar-large {
+ border-color: transparent; }
+
+/* line 430, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-button-plain-toolbar-large {
+ height: 32px; }
+
+/* line 435, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-inner-plain-toolbar-large {
+ font: 300 16px/20px "Roboto", sans-serif;
+ color: #666666;
+ padding: 0 10px;
+ max-width: 100%; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-right > .x-btn-inner-plain-toolbar-large, .x-btn-icon-left > .x-btn-inner-plain-toolbar-large {
+ max-width: calc(100% - 32px); }
+
+/* line 453, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-icon-el-plain-toolbar-large {
+ height: 32px; }
+ /* line 457, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-left > .x-btn-icon-el-plain-toolbar-large, .x-btn-icon-right > .x-btn-icon-el-plain-toolbar-large {
+ width: 32px; }
+ /* line 462, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-top > .x-btn-icon-el-plain-toolbar-large, .x-btn-icon-bottom > .x-btn-icon-el-plain-toolbar-large {
+ min-width: 32px; }
+ /* line 466, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-el-plain-toolbar-large.x-btn-glyph {
+ font-size: 32px;
+ line-height: 32px;
+ color: #666666;
+ opacity: 0.5; }
+ /* line 493, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-plain-toolbar-large {
+ margin-right: 0; }
+ /* line 497, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-plain-toolbar-large.x-rtl {
+ margin-right: 0;
+ margin-left: 0; }
+ /* line 504, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-plain-toolbar-large {
+ margin-left: 0; }
+ /* line 508, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-plain-toolbar-large.x-rtl {
+ margin-left: 0;
+ margin-right: 0; }
+ /* line 515, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-plain-toolbar-large {
+ margin-bottom: 5px; }
+ /* line 519, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-plain-toolbar-large {
+ margin-top: 5px; }
+
+/* line 525, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-plain-toolbar-large {
+ padding-right: 10px; }
+/* line 528, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-plain-toolbar-large {
+ margin-right: 10px; }
+
+/* line 535, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-bottom > .x-btn-button-plain-toolbar-large,
+.x-btn-split-bottom > .x-btn-button-plain-toolbar-large {
+ padding-bottom: 3px; }
+
+/* line 541, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-large.x-btn-arrow-right:after {
+ width: 28px;
+ padding-right: 28px;
+ background-image: url(images/button/plain-toolbar-large-arrow.png); }
+/* line 554, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-large.x-rtl.x-btn-arrow-right:after {
+ background-image: url(images/button/plain-toolbar-large-arrow-rtl.png); }
+/* line 563, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-large.x-btn-arrow-bottom:after {
+ height: 20px;
+ background-image: url(images/button/plain-toolbar-large-arrow.png); }
+
+/* line 583, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-large.x-btn-split-right:after {
+ width: 35px;
+ padding-right: 35px;
+ background-image: url(images/button/plain-toolbar-large-s-arrow.png); }
+/* line 592, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-large.x-rtl.x-btn-split-right:after {
+ background-image: url(images/button/plain-toolbar-large-s-arrow-rtl.png); }
+/* line 597, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-plain-toolbar-large.x-btn-split-bottom:after {
+ height: 29px;
+ background-image: url(images/button/plain-toolbar-large-s-arrow-b.png); }
+
+/* line 624, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-plain-toolbar-large {
+ padding-right: 10px; }
+/* line 627, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-plain-toolbar-large {
+ margin-right: 10px; }
+
+/* line 632, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-plain-toolbar-large {
+ background-image: none;
+ background-color: transparent; }
+
+/* line 667, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-over.x-btn-plain-toolbar-large {
+ border-color: #cfcfcf;
+ background-image: none;
+ background-color: #ebebeb; }
+
+/* line 723, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-menu-active.x-btn-plain-toolbar-large,
+.x-btn.x-btn-pressed.x-btn-plain-toolbar-large {
+ border-color: #c6c6c6;
+ background-image: none;
+ background-color: #e1e1e1; }
+
+/* line 779, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-disabled.x-btn-plain-toolbar-large {
+ background-image: none;
+ background-color: transparent; }
+
+/* line 963, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-disabled.x-btn-plain-toolbar-large {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+
+/* line 1128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-button-plain-toolbar-large-cell > .x-grid-cell-inner {
+ padding-top: 0;
+ padding-bottom: 0; }
+ /* line 1133, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-button-plain-toolbar-large-cell > .x-grid-cell-inner > .x-btn-plain-toolbar-large {
+ vertical-align: top; }
+
+/* line 220, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/button/Button.scss */
+.x-btn-plain-toolbar-small-disabled .x-btn-icon-el,
+.x-btn-plain-toolbar-medium-disabled .x-btn-icon-el,
+.x-btn-plain-toolbar-large-disabled .x-btn-icon-el {
+ background-color: white; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/form/field/HtmlEditor.scss */
+.x-html-editor-container {
+ border: 1px solid;
+ border-color: #cecece; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/grid/header/Container.scss */
+.x-grid-header-ct {
+ border: 1px solid #4b6375; }
+
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/grid/column/Column.scss */
+.x-column-header-trigger {
+ background: #dbdfe3 url(images/grid/hd-pop.png) no-repeat center center;
+ border-left: 1px solid #4b6375; }
+
+/* line 12, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/grid/column/Column.scss */
+.x-rtl.x-column-header-trigger {
+ border-right: 1px solid #4b6375;
+ border-left: 0; }
+
+/* line 18, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/grid/column/Column.scss */
+.x-column-header-last {
+ border-right-width: 0; }
+ /* line 20, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/grid/column/Column.scss */
+ .x-column-header-last .x-column-header-over .x-column-header-trigger {
+ border-right: 1px solid #4b6375; }
+
+/* line 26, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/grid/column/Column.scss */
+.x-rtl.x-column-header-last {
+ border-left-width: 0; }
+ /* line 28, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/grid/column/Column.scss */
+ .x-rtl.x-column-header-last .x-column-header-over .x-column-header-trigger {
+ border-left: 1px solid #4b6375; }
+
+/* line 3, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/form/field/File.scss */
+.x-form-file-wrap .x-form-trigger-wrap {
+ border: 0; }
+
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/form/field/File.scss */
+.x-form-file-wrap .x-form-trigger-wrap .x-form-text {
+ border: 1px solid;
+ border-color: #cecece;
+ height: 24px; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/resizer/Resizer.scss */
+.x-resizable-handle {
+ background-color: #cecece;
+ background-repeat: no-repeat; }
+
+/* line 8, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-east-over,
+.x-resizable-handle-west-over {
+ background-position: center; }
+
+/* line 13, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-south-over,
+.x-resizable-handle-north-over {
+ background-position: center; }
+
+/* line 17, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-southeast-over {
+ background-position: -2px -2px; }
+
+/* line 21, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-northwest-over {
+ background-position: 2px 2px; }
+
+/* line 25, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-northeast-over {
+ background-position: -2px 2px; }
+
+/* line 29, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/resizer/Resizer.scss */
+.x-resizable-handle-southwest-over {
+ background-position: 2px -2px; }
+
+/* line 35, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/resizer/Resizer.scss */
+.x-resizable-pinned .x-resizable-handle-east,
+.x-resizable-pinned .x-resizable-handle-west {
+ background-position: center; }
+/* line 40, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/resizer/Resizer.scss */
+.x-resizable-pinned .x-resizable-handle-south,
+.x-resizable-pinned .x-resizable-handle-north {
+ background-position: center; }
+/* line 44, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/resizer/Resizer.scss */
+.x-resizable-pinned .x-resizable-handle-southeast {
+ background-position: -2px -2px; }
+/* line 48, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/resizer/Resizer.scss */
+.x-resizable-pinned .x-resizable-handle-northwest {
+ background-position: 2px 2px; }
+/* line 52, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/resizer/Resizer.scss */
+.x-resizable-pinned .x-resizable-handle-northeast {
+ background-position: -2px 2px; }
+/* line 56, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neptune/sass/src/resizer/Resizer.scss */
+.x-resizable-pinned .x-resizable-handle-southwest {
+ background-position: 2px -2px; }
+
+/* including package rambox-dark-theme */
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/form/field/Text.scss */
+.x-form-trigger-wrap {
+ border-width: 1px;
+ border-radius: 0;
+ border-style: solid;
+ border-color: #162938;
+ background-color: #30414f;
+ color: #fefefe; }
+ /* line 12, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/form/field/Text.scss */
+ .x-form-trigger-wrap .x-form-text, .x-form-trigger-wrap .x-form-trigger-default {
+ border-radius: 15px;
+ background-color: transparent;
+ color: #fefefe; }
+ /* line 16, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/form/field/Text.scss */
+ .x-form-trigger-wrap .x-form-text .x-form-spinner-default, .x-form-trigger-wrap .x-form-trigger-default .x-form-spinner-default {
+ border-radius: 15px;
+ background-color: #3e4552;
+ color: #fefefe; }
+
+/* line 23, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/form/field/Text.scss */
+.x-form-item-label-default {
+ color: #fefefe; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/LoadMask.scss */
+.bottomMask {
+ bottom: 0;
+ height: 32px;
+ position: fixed;
+ top: auto !important;
+ left: 0 !important;
+ width: 120px; }
+ /* line 8, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/LoadMask.scss */
+ .bottomMask .x-mask-msg-text {
+ padding: 0 0 0 24px;
+ background-image: url(images/loadmask/loading.gif);
+ background-repeat: no-repeat;
+ background-position: 0 0; }
+
+/*
+ * Aplica estilo a la barra de login
+ */
+/* line 198, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-main {
+ padding: 6px 0 6px 8px;
+ border-style: solid;
+ border-color: #cecece;
+ border-width: 1px;
+ background-image: none;
+ background-color: #162938; }
+ /* line 202, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-main.x-rtl {
+ padding: 6px 8px 6px 0; }
+ /* line 214, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-main .x-tool-img {
+ background-image: url(images/tools/tool-sprites-dark.png);
+ background-color: #162938; }
+ /* line 227, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-main .x-toolbar-item {
+ margin: 0 8px 0 0; }
+ /* line 231, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-main .x-toolbar-item.x-rtl {
+ margin: 0 0 0 8px; }
+ /* line 237, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-main .x-toolbar-separator-horizontal {
+ margin: 0 8px 0 0;
+ height: 14px;
+ border-style: solid;
+ border-width: 0 0 0 1px;
+ border-left-color: #e1e1e1;
+ border-right-color: white; }
+ /* line 246, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-main .x-box-menu-after {
+ margin: 0 8px; }
+
+/* line 251, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-main-vertical {
+ padding: 6px 8px 0; }
+ /* line 255, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-main-vertical.x-rtl {
+ padding: 6px 8px 0; }
+ /* line 260, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-main-vertical .x-toolbar-item {
+ margin: 0 0 6px 0; }
+ /* line 263, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-main-vertical .x-toolbar-item.x-rtl {
+ margin: 0 0 6px 0; }
+ /* line 269, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-main-vertical .x-toolbar-separator-vertical {
+ margin: 0 5px 6px;
+ border-style: solid none;
+ border-width: 1px 0 0;
+ border-top-color: #e1e1e1;
+ border-bottom-color: white; }
+ /* line 277, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-main-vertical .x-box-menu-after {
+ margin: 6px 0; }
+
+/* line 292, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-text-main {
+ padding: 0 4px;
+ color: #192936;
+ font: 300 13px/16px "Roboto", sans-serif; }
+
+/* line 298, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-spacer-main {
+ width: 2px; }
+
+/* line 145, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-toolbar-main-scroller .x-box-scroller-body-horizontal {
+ margin-left: 16px; }
+
+/* line 151, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-toolbar-main-vertical-scroller .x-box-scroller-body-vertical {
+ margin-top: 18px; }
+
+/* line 156, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-box-scroller-toolbar-main {
+ cursor: pointer;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
+ opacity: 0.6; }
+ /* line 165, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-main.x-box-scroller-hover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8; }
+ /* line 171, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-main.x-box-scroller-pressed {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1; }
+ /* line 177, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-main.x-box-scroller-disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
+ opacity: 0.25;
+ cursor: default; }
+ /* line 188, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-main.x-box-scroller-left, .x-box-scroller-toolbar-main.x-box-scroller-right {
+ width: 16px;
+ height: 16px;
+ top: 50%;
+ margin-top: -8px; }
+ /* line 214, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-main.x-box-scroller-left {
+ margin-left: 4px;
+ margin-right: 4px;
+ margin-bottom: 0;
+ background-image: url(images/toolbar/main-scroll-left.png); }
+ /* line 237, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-main.x-box-scroller-right {
+ margin-left: 4px;
+ margin-right: 4px;
+ margin-bottom: 0;
+ background-image: url(images/toolbar/main-scroll-right.png); }
+ /* line 263, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-main.x-box-scroller-top, .x-box-scroller-toolbar-main.x-box-scroller-bottom {
+ height: 16px;
+ width: 16px;
+ left: 50%;
+ margin-left: -8px; }
+ /* line 289, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-main.x-box-scroller-top {
+ margin-top: 4px;
+ margin-right: 0;
+ margin-bottom: 4px;
+ background-image: url(images/toolbar/main-scroll-top.png); }
+ /* line 312, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-main.x-box-scroller-bottom {
+ margin-top: 4px;
+ margin-right: 0;
+ margin-bottom: 4px;
+ background-image: url(images/toolbar/main-scroll-bottom.png); }
+
+/* line 335, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-ie8 .x-box-scroller-toolbar-main {
+ background-color: #162938; }
+
+/* line 341, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-more-icon {
+ background-image: url(images/toolbar/main-more.png); }
+ /* line 345, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-more-icon.x-rtl {
+ background-image: url(images/toolbar/main-more-left.png); }
+
+/* line 198, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-newversion {
+ padding: 6px 0 6px 8px;
+ border-style: solid;
+ border-color: #cecece;
+ border-width: 1px;
+ background-image: none;
+ background-color: #3e4552; }
+ /* line 202, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-newversion.x-rtl {
+ padding: 6px 8px 6px 0; }
+ /* line 214, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-newversion .x-tool-img {
+ background-image: url(images/tools/tool-sprites-dark.png);
+ background-color: #3e4552; }
+ /* line 227, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-newversion .x-toolbar-item {
+ margin: 0 8px 0 0; }
+ /* line 231, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-newversion .x-toolbar-item.x-rtl {
+ margin: 0 0 0 8px; }
+ /* line 237, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-newversion .x-toolbar-separator-horizontal {
+ margin: 0 8px 0 0;
+ height: 14px;
+ border-style: solid;
+ border-width: 0 0 0 1px;
+ border-left-color: #e1e1e1;
+ border-right-color: white; }
+ /* line 246, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-newversion .x-box-menu-after {
+ margin: 0 8px; }
+
+/* line 251, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-newversion-vertical {
+ padding: 6px 8px 0; }
+ /* line 255, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-newversion-vertical.x-rtl {
+ padding: 6px 8px 0; }
+ /* line 260, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-newversion-vertical .x-toolbar-item {
+ margin: 0 0 6px 0; }
+ /* line 263, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-newversion-vertical .x-toolbar-item.x-rtl {
+ margin: 0 0 6px 0; }
+ /* line 269, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-newversion-vertical .x-toolbar-separator-vertical {
+ margin: 0 5px 6px;
+ border-style: solid none;
+ border-width: 1px 0 0;
+ border-top-color: #e1e1e1;
+ border-bottom-color: white; }
+ /* line 277, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-newversion-vertical .x-box-menu-after {
+ margin: 6px 0; }
+
+/* line 292, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-text-newversion {
+ padding: 0 4px;
+ color: #192936;
+ font: 300 13px/16px "Roboto", sans-serif; }
+
+/* line 298, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-spacer-newversion {
+ width: 2px; }
+
+/* line 145, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-toolbar-newversion-scroller .x-box-scroller-body-horizontal {
+ margin-left: 16px; }
+
+/* line 151, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-toolbar-newversion-vertical-scroller .x-box-scroller-body-vertical {
+ margin-top: 18px; }
+
+/* line 156, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+.x-box-scroller-toolbar-newversion {
+ cursor: pointer;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
+ opacity: 0.6; }
+ /* line 165, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-newversion.x-box-scroller-hover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8; }
+ /* line 171, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-newversion.x-box-scroller-pressed {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1; }
+ /* line 177, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-newversion.x-box-scroller-disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
+ opacity: 0.25;
+ cursor: default; }
+ /* line 188, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-newversion.x-box-scroller-left, .x-box-scroller-toolbar-newversion.x-box-scroller-right {
+ width: 16px;
+ height: 16px;
+ top: 50%;
+ margin-top: -8px; }
+ /* line 214, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-newversion.x-box-scroller-left {
+ margin-left: 4px;
+ margin-right: 4px;
+ margin-bottom: 0;
+ background-image: url(images/toolbar/newversion-scroll-left.png); }
+ /* line 237, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-newversion.x-box-scroller-right {
+ margin-left: 4px;
+ margin-right: 4px;
+ margin-bottom: 0;
+ background-image: url(images/toolbar/newversion-scroll-right.png); }
+ /* line 263, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-newversion.x-box-scroller-top, .x-box-scroller-toolbar-newversion.x-box-scroller-bottom {
+ height: 16px;
+ width: 16px;
+ left: 50%;
+ margin-left: -8px; }
+ /* line 289, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-newversion.x-box-scroller-top {
+ margin-top: 4px;
+ margin-right: 0;
+ margin-bottom: 4px;
+ background-image: url(images/toolbar/newversion-scroll-top.png); }
+ /* line 312, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/layout/container/Box.scss */
+ .x-box-scroller-toolbar-newversion.x-box-scroller-bottom {
+ margin-top: 4px;
+ margin-right: 0;
+ margin-bottom: 4px;
+ background-image: url(images/toolbar/newversion-scroll-bottom.png); }
+
+/* line 335, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-ie8 .x-box-scroller-toolbar-newversion {
+ background-color: #3e4552; }
+
+/* line 341, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-more-icon {
+ background-image: url(images/toolbar/newversion-more.png); }
+ /* line 345, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
+ .x-toolbar-more-icon.x-rtl {
+ background-image: url(images/toolbar/newversion-more-left.png); }
+
+/* line 15, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/toolbar/Toolbar.scss */
+.x-toolbar-newversion label {
+ color: #1B1112; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/panel/Tool.scss */
+.x-btn-icon-el-default-small.x-btn-glyph {
+ cursor: pointer;
+ color: #fbfcfc; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/panel/Tool.scss */
+.x-btn-icon-el-default-toolbar-small.x-btn-glyph {
+ cursor: pointer;
+ color: #fbfcfc;
+ opacity: 1; }
+
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/panel/Tool.scss */
+.x-panel-default .x-toolbar-docked-bottom {
+ background-color: #3e4552; }
+
+/* line 15, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/panel/Tool.scss */
+.x-autocontainer-innerCt {
+ background-color: rgba(146, 157, 177, 0.12); }
+
+/*
+ * Aplica estilo decline a botones
+ */
+/* line 187, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-base/sass/etc/mixins/frame.scss */
+.x-btn-decline-small {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 3px 3px 3px 3px;
+ border-width: 1px;
+ border-style: solid;
+ background-color: transparent; }
+
+/* */
+/* line 423, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-decline-small {
+ border-color: #162938; }
+
+/* line 430, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-button-decline-small {
+ height: 16px; }
+
+/* line 435, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-inner-decline-small {
+ font: 300 12px/16px "Roboto", sans-serif;
+ color: #162938;
+ padding: 0 5px;
+ max-width: 100%; }
+ /* line 446, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-right > .x-btn-inner-decline-small, .x-btn-icon-left > .x-btn-inner-decline-small {
+ max-width: calc(100% - 16px); }
+
+/* line 453, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-icon-el-decline-small {
+ height: 16px; }
+ /* line 457, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-left > .x-btn-icon-el-decline-small, .x-btn-icon-right > .x-btn-icon-el-decline-small {
+ width: 16px; }
+ /* line 462, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-top > .x-btn-icon-el-decline-small, .x-btn-icon-bottom > .x-btn-icon-el-decline-small {
+ min-width: 16px; }
+ /* line 466, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-icon-el-decline-small.x-btn-glyph {
+ font-size: 16px;
+ line-height: 16px;
+ color: white;
+ opacity: 0.5; }
+ /* line 493, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-decline-small {
+ margin-right: 0px; }
+ /* line 497, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-left > .x-btn-icon-el-decline-small.x-rtl {
+ margin-right: 0;
+ margin-left: 0px; }
+ /* line 504, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-decline-small {
+ margin-left: 0px; }
+ /* line 508, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-right > .x-btn-icon-el-decline-small.x-rtl {
+ margin-left: 0;
+ margin-right: 0px; }
+ /* line 515, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-top > .x-btn-icon-el-decline-small {
+ margin-bottom: 5px; }
+ /* line 519, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-decline-small {
+ margin-top: 5px; }
+
+/* line 525, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-decline-small {
+ padding-right: 5px; }
+/* line 528, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-decline-small {
+ margin-right: 5px; }
+
+/* line 535, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-arrow-bottom > .x-btn-button-decline-small,
+.x-btn-split-bottom > .x-btn-button-decline-small {
+ padding-bottom: 3px; }
+
+/* line 541, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-decline-small.x-btn-arrow-right:after {
+ width: 16px;
+ padding-right: 16px;
+ background-image: url(images/button/decline-small-arrow.png); }
+/* line 554, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-decline-small.x-rtl.x-btn-arrow-right:after {
+ background-image: url(images/button/decline-small-arrow-rtl.png); }
+/* line 563, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-decline-small.x-btn-arrow-bottom:after {
+ height: 13px;
+ background-image: url(images/button/decline-small-arrow.png); }
+
+/* line 583, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-decline-small.x-btn-split-right:after {
+ width: 20px;
+ padding-right: 20px;
+ background-image: url(images/button/decline-small-s-arrow.png); }
+/* line 592, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-decline-small.x-rtl.x-btn-split-right:after {
+ background-image: url(images/button/decline-small-s-arrow-rtl.png); }
+/* line 597, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-wrap-decline-small.x-btn-split-bottom:after {
+ height: 15px;
+ background-image: url(images/button/decline-small-s-arrow-b.png); }
+
+/* line 624, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-decline-small {
+ padding-right: 5px; }
+/* line 627, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-decline-small {
+ margin-right: 5px; }
+
+/* line 632, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-decline-small {
+ background-image: none;
+ background-color: transparent;
+ -webkit-box-shadow: #d7dadd 0 1px 0px 0 inset, #d7dadd 0 -1px 0px 0 inset, #d7dadd -1px 0 0px 0 inset, #d7dadd 1px 0 0px 0 inset;
+ -moz-box-shadow: #d7dadd 0 1px 0px 0 inset, #d7dadd 0 -1px 0px 0 inset, #d7dadd -1px 0 0px 0 inset, #d7dadd 1px 0 0px 0 inset;
+ box-shadow: #d7dadd 0 1px 0px 0 inset, #d7dadd 0 -1px 0px 0 inset, #d7dadd -1px 0 0px 0 inset, #d7dadd 1px 0 0px 0 inset; }
+
+/* line 667, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-over.x-btn-decline-small {
+ border-color: #142533;
+ background-image: none;
+ background-color: transparent; }
+
+/* line 694, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-over.x-btn-decline-small {
+ -webkit-box-shadow: #d6d9db 0 1px 0px 0 inset, #d6d9db 0 -1px 0px 0 inset, #d6d9db -1px 0 0px 0 inset, #d6d9db 1px 0 0px 0 inset;
+ -moz-box-shadow: #d6d9db 0 1px 0px 0 inset, #d6d9db 0 -1px 0px 0 inset, #d6d9db -1px 0 0px 0 inset, #d6d9db 1px 0 0px 0 inset;
+ box-shadow: #d6d9db 0 1px 0px 0 inset, #d6d9db 0 -1px 0px 0 inset, #d6d9db -1px 0 0px 0 inset, #d6d9db 1px 0 0px 0 inset; }
+
+/* line 723, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-menu-active.x-btn-decline-small,
+.x-btn.x-btn-pressed.x-btn-decline-small {
+ border-color: #101e2a;
+ background-image: none;
+ background-color: transparent; }
+
+/* line 751, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-focus.x-btn-menu-active.x-btn-decline-small,
+.x-btn-focus.x-btn-pressed.x-btn-decline-small {
+ -webkit-box-shadow: #d4d6d8 0 1px 0px 0 inset, #d4d6d8 0 -1px 0px 0 inset, #d4d6d8 -1px 0 0px 0 inset, #d4d6d8 1px 0 0px 0 inset;
+ -moz-box-shadow: #d4d6d8 0 1px 0px 0 inset, #d4d6d8 0 -1px 0px 0 inset, #d4d6d8 -1px 0 0px 0 inset, #d4d6d8 1px 0 0px 0 inset;
+ box-shadow: #d4d6d8 0 1px 0px 0 inset, #d4d6d8 0 -1px 0px 0 inset, #d4d6d8 -1px 0 0px 0 inset, #d4d6d8 1px 0 0px 0 inset; }
+
+/* line 779, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn.x-btn-disabled.x-btn-decline-small {
+ background-image: none;
+ background-color: transparent; }
+
+/* line 963, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-btn-disabled.x-btn-decline-small {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5; }
+
+/* line 1128, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+.x-button-decline-small-cell > .x-grid-cell-inner {
+ padding-top: 0px;
+ padding-bottom: 0px; }
+ /* line 1133, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../ext/packages/ext-theme-neutral/sass/src/button/Button.scss */
+ .x-button-decline-small-cell > .x-grid-cell-inner > .x-btn-decline-small {
+ vertical-align: top; }
+
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/button/Button.scss */
+.x-btn-inner-decline-small:hover {
+ text-decoration: underline; }
+
+/* line 15, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/button/Button.scss */
+.x-btn-default-toolbar-small {
+ border-radius: 30px;
+ border-width: 2px;
+ border-color: #fbfcfc;
+ background-color: transparent; }
+ /* line 20, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/button/Button.scss */
+ .x-btn-default-toolbar-small .x-btn-inner-default-toolbar-small {
+ color: #fefefe; }
+
+/* line 27, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/button/Button.scss */
+.x-btn.x-btn-focus.x-btn-default-toolbar-small, .x-btn.x-btn-over.x-btn-default-toolbar-small, .x-btn.x-btn-menu-active.x-btn-default-toolbar-small {
+ border-color: #929db1;
+ background-color: #30414f; }
+/* line 33, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/button/Button.scss */
+.x-btn.x-btn-pressed.x-btn-default-toolbar-small {
+ border-color: #fefefe;
+ background-color: #30414f; }
+
+/* line 2, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/tab/Bar.scss */
+.x-tab-bar-top .x-tab-bar-body {
+ background-color: #3e4552;
+ padding: 8px 0 0 0 !important; }
+/* line 6, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/tab/Bar.scss */
+.x-tab-bar-top .x-tab-bar-strip {
+ position: relative !important;
+ margin-top: -10px;
+ background-color: #4b6375; }
+
+/* line 5, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/window/Window.scss */
+.x-window-default .x-window-body-default {
+ background: #3e4552;
+ color: #fefefe; }
+ /* line 8, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/window/Window.scss */
+ .x-window-default .x-window-body-default .x-window-item > div {
+ background: #3e4552;
+ color: #fefefe; }
+ /* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/window/Window.scss */
+ .x-window-default .x-window-body-default .x-window-item > div .x-component-default {
+ color: #fefefe; }
+ /* line 14, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/window/Window.scss */
+ .x-window-default .x-window-body-default .x-window-item > div .fieldset-body-default {
+ padding: 0 .1rem .25rem; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/window/MessageBox.scss */
+.x-window-header-default-top {
+ background: #162938; }
+ /* line 3, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/window/MessageBox.scss */
+ .x-window-header-default-top .x-tool-img {
+ background-color: transparent; }
+
+/* line 7, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/window/MessageBox.scss */
+.x-message-box .x-window-body {
+ background: #3e4552;
+ color: #fefefe; }
+
+/* line 11, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/window/MessageBox.scss */
+.x-toolbar-footer {
+ background: #162938; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/grid/column/Action.scss */
+.x-action-col-glyph {
+ color: #335f81; }
+
+/* line 1, /Users/v-nicholas.shindler/Code/rambox/build/temp/development/Rambox/sass/../../../../../packages/local/rambox-dark-theme/sass/src/grid/column/Check.scss */
+#ramboxTab .x-grid-cell-inner-checkcolumn {
+ padding: 13px 10px 14px 10px !important; }
diff --git a/build/dark/development/Rambox/resources/Readme.md b/build/dark/development/Rambox/resources/Readme.md
new file mode 100644
index 00000000..dc0d331d
--- /dev/null
+++ b/build/dark/development/Rambox/resources/Readme.md
@@ -0,0 +1,4 @@
+# Rambox/resources
+
+This folder contains resources (such as images) needed by the application. This file can
+be removed if not needed.
diff --git a/build/dark/development/Rambox/resources/auth0.png b/build/dark/development/Rambox/resources/auth0.png
new file mode 100644
index 00000000..9b9c69cb
Binary files /dev/null and b/build/dark/development/Rambox/resources/auth0.png differ
diff --git a/build/dark/development/Rambox/resources/earth.png b/build/dark/development/Rambox/resources/earth.png
new file mode 100644
index 00000000..cbaa46c0
Binary files /dev/null and b/build/dark/development/Rambox/resources/earth.png differ
diff --git a/build/dark/development/Rambox/resources/ext-locale/Readme.md b/build/dark/development/Rambox/resources/ext-locale/Readme.md
new file mode 100644
index 00000000..348e5577
--- /dev/null
+++ b/build/dark/development/Rambox/resources/ext-locale/Readme.md
@@ -0,0 +1,3 @@
+# ext-locale/resources
+
+This folder contains static resources (typically an `"images"` folder as well).
diff --git a/build/dark/development/Rambox/resources/flag.png b/build/dark/development/Rambox/resources/flag.png
new file mode 100644
index 00000000..e5ef8f1f
Binary files /dev/null and b/build/dark/development/Rambox/resources/flag.png differ
diff --git a/build/dark/development/Rambox/resources/fonts/font-awesome/css/font-awesome.css b/build/dark/development/Rambox/resources/fonts/font-awesome/css/font-awesome.css
new file mode 100644
index 00000000..a0b879fa
--- /dev/null
+++ b/build/dark/development/Rambox/resources/fonts/font-awesome/css/font-awesome.css
@@ -0,0 +1,2199 @@
+/*!
+ * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */
+/* FONT PATH
+ * -------------------------- */
+@font-face {
+ font-family: 'FontAwesome';
+ src: url('../fonts/fontawesome-webfont.eot?v=4.6.3');
+ src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');
+ font-weight: normal;
+ font-style: normal;
+}
+.fa {
+ display: inline-block;
+ font: normal normal normal 14px/1 FontAwesome;
+ font-size: inherit;
+ text-rendering: auto;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+/* makes the font 33% larger relative to the icon container */
+.fa-lg {
+ font-size: 1.33333333em;
+ line-height: 0.75em;
+ vertical-align: -15%;
+}
+.fa-2x {
+ font-size: 2em;
+}
+.fa-3x {
+ font-size: 3em;
+}
+.fa-4x {
+ font-size: 4em;
+}
+.fa-5x {
+ font-size: 5em;
+}
+.fa-fw {
+ width: 1.28571429em;
+ text-align: center;
+}
+.fa-ul {
+ padding-left: 0;
+ margin-left: 2.14285714em;
+ list-style-type: none;
+}
+.fa-ul > li {
+ position: relative;
+}
+.fa-li {
+ position: absolute;
+ left: -2.14285714em;
+ width: 2.14285714em;
+ top: 0.14285714em;
+ text-align: center;
+}
+.fa-li.fa-lg {
+ left: -1.85714286em;
+}
+.fa-border {
+ padding: .2em .25em .15em;
+ border: solid 0.08em #eeeeee;
+ border-radius: .1em;
+}
+.fa-pull-left {
+ float: left;
+}
+.fa-pull-right {
+ float: right;
+}
+.fa.fa-pull-left {
+ margin-right: .3em;
+}
+.fa.fa-pull-right {
+ margin-left: .3em;
+}
+/* Deprecated as of 4.4.0 */
+.pull-right {
+ float: right;
+}
+.pull-left {
+ float: left;
+}
+.fa.pull-left {
+ margin-right: .3em;
+}
+.fa.pull-right {
+ margin-left: .3em;
+}
+.fa-spin {
+ -webkit-animation: fa-spin 2s infinite linear;
+ animation: fa-spin 2s infinite linear;
+}
+.fa-pulse {
+ -webkit-animation: fa-spin 1s infinite steps(8);
+ animation: fa-spin 1s infinite steps(8);
+}
+@-webkit-keyframes fa-spin {
+ 0% {
+ -webkit-transform: rotate(0deg);
+ transform: rotate(0deg);
+ }
+ 100% {
+ -webkit-transform: rotate(359deg);
+ transform: rotate(359deg);
+ }
+}
+@keyframes fa-spin {
+ 0% {
+ -webkit-transform: rotate(0deg);
+ transform: rotate(0deg);
+ }
+ 100% {
+ -webkit-transform: rotate(359deg);
+ transform: rotate(359deg);
+ }
+}
+.fa-rotate-90 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
+ -webkit-transform: rotate(90deg);
+ -ms-transform: rotate(90deg);
+ transform: rotate(90deg);
+}
+.fa-rotate-180 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
+ -webkit-transform: rotate(180deg);
+ -ms-transform: rotate(180deg);
+ transform: rotate(180deg);
+}
+.fa-rotate-270 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
+ -webkit-transform: rotate(270deg);
+ -ms-transform: rotate(270deg);
+ transform: rotate(270deg);
+}
+.fa-flip-horizontal {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
+ -webkit-transform: scale(-1, 1);
+ -ms-transform: scale(-1, 1);
+ transform: scale(-1, 1);
+}
+.fa-flip-vertical {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+ -webkit-transform: scale(1, -1);
+ -ms-transform: scale(1, -1);
+ transform: scale(1, -1);
+}
+:root .fa-rotate-90,
+:root .fa-rotate-180,
+:root .fa-rotate-270,
+:root .fa-flip-horizontal,
+:root .fa-flip-vertical {
+ filter: none;
+}
+.fa-stack {
+ position: relative;
+ display: inline-block;
+ width: 2em;
+ height: 2em;
+ line-height: 2em;
+ vertical-align: middle;
+}
+.fa-stack-1x,
+.fa-stack-2x {
+ position: absolute;
+ left: 0;
+ width: 100%;
+ text-align: center;
+}
+.fa-stack-1x {
+ line-height: inherit;
+}
+.fa-stack-2x {
+ font-size: 2em;
+}
+.fa-inverse {
+ color: #ffffff;
+}
+/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+ readers do not read off random characters that represent icons */
+.fa-glass:before {
+ content: "\f000";
+}
+.fa-music:before {
+ content: "\f001";
+}
+.fa-search:before {
+ content: "\f002";
+}
+.fa-envelope-o:before {
+ content: "\f003";
+}
+.fa-heart:before {
+ content: "\f004";
+}
+.fa-star:before {
+ content: "\f005";
+}
+.fa-star-o:before {
+ content: "\f006";
+}
+.fa-user:before {
+ content: "\f007";
+}
+.fa-film:before {
+ content: "\f008";
+}
+.fa-th-large:before {
+ content: "\f009";
+}
+.fa-th:before {
+ content: "\f00a";
+}
+.fa-th-list:before {
+ content: "\f00b";
+}
+.fa-check:before {
+ content: "\f00c";
+}
+.fa-remove:before,
+.fa-close:before,
+.fa-times:before {
+ content: "\f00d";
+}
+.fa-search-plus:before {
+ content: "\f00e";
+}
+.fa-search-minus:before {
+ content: "\f010";
+}
+.fa-power-off:before {
+ content: "\f011";
+}
+.fa-signal:before {
+ content: "\f012";
+}
+.fa-gear:before,
+.fa-cog:before {
+ content: "\f013";
+}
+.fa-trash-o:before {
+ content: "\f014";
+}
+.fa-home:before {
+ content: "\f015";
+}
+.fa-file-o:before {
+ content: "\f016";
+}
+.fa-clock-o:before {
+ content: "\f017";
+}
+.fa-road:before {
+ content: "\f018";
+}
+.fa-download:before {
+ content: "\f019";
+}
+.fa-arrow-circle-o-down:before {
+ content: "\f01a";
+}
+.fa-arrow-circle-o-up:before {
+ content: "\f01b";
+}
+.fa-inbox:before {
+ content: "\f01c";
+}
+.fa-play-circle-o:before {
+ content: "\f01d";
+}
+.fa-rotate-right:before,
+.fa-repeat:before {
+ content: "\f01e";
+}
+.fa-refresh:before {
+ content: "\f021";
+}
+.fa-list-alt:before {
+ content: "\f022";
+}
+.fa-lock:before {
+ content: "\f023";
+}
+.fa-flag:before {
+ content: "\f024";
+}
+.fa-headphones:before {
+ content: "\f025";
+}
+.fa-volume-off:before {
+ content: "\f026";
+}
+.fa-volume-down:before {
+ content: "\f027";
+}
+.fa-volume-up:before {
+ content: "\f028";
+}
+.fa-qrcode:before {
+ content: "\f029";
+}
+.fa-barcode:before {
+ content: "\f02a";
+}
+.fa-tag:before {
+ content: "\f02b";
+}
+.fa-tags:before {
+ content: "\f02c";
+}
+.fa-book:before {
+ content: "\f02d";
+}
+.fa-bookmark:before {
+ content: "\f02e";
+}
+.fa-print:before {
+ content: "\f02f";
+}
+.fa-camera:before {
+ content: "\f030";
+}
+.fa-font:before {
+ content: "\f031";
+}
+.fa-bold:before {
+ content: "\f032";
+}
+.fa-italic:before {
+ content: "\f033";
+}
+.fa-text-height:before {
+ content: "\f034";
+}
+.fa-text-width:before {
+ content: "\f035";
+}
+.fa-align-left:before {
+ content: "\f036";
+}
+.fa-align-center:before {
+ content: "\f037";
+}
+.fa-align-right:before {
+ content: "\f038";
+}
+.fa-align-justify:before {
+ content: "\f039";
+}
+.fa-list:before {
+ content: "\f03a";
+}
+.fa-dedent:before,
+.fa-outdent:before {
+ content: "\f03b";
+}
+.fa-indent:before {
+ content: "\f03c";
+}
+.fa-video-camera:before {
+ content: "\f03d";
+}
+.fa-photo:before,
+.fa-image:before,
+.fa-picture-o:before {
+ content: "\f03e";
+}
+.fa-pencil:before {
+ content: "\f040";
+}
+.fa-map-marker:before {
+ content: "\f041";
+}
+.fa-adjust:before {
+ content: "\f042";
+}
+.fa-tint:before {
+ content: "\f043";
+}
+.fa-edit:before,
+.fa-pencil-square-o:before {
+ content: "\f044";
+}
+.fa-share-square-o:before {
+ content: "\f045";
+}
+.fa-check-square-o:before {
+ content: "\f046";
+}
+.fa-arrows:before {
+ content: "\f047";
+}
+.fa-step-backward:before {
+ content: "\f048";
+}
+.fa-fast-backward:before {
+ content: "\f049";
+}
+.fa-backward:before {
+ content: "\f04a";
+}
+.fa-play:before {
+ content: "\f04b";
+}
+.fa-pause:before {
+ content: "\f04c";
+}
+.fa-stop:before {
+ content: "\f04d";
+}
+.fa-forward:before {
+ content: "\f04e";
+}
+.fa-fast-forward:before {
+ content: "\f050";
+}
+.fa-step-forward:before {
+ content: "\f051";
+}
+.fa-eject:before {
+ content: "\f052";
+}
+.fa-chevron-left:before {
+ content: "\f053";
+}
+.fa-chevron-right:before {
+ content: "\f054";
+}
+.fa-plus-circle:before {
+ content: "\f055";
+}
+.fa-minus-circle:before {
+ content: "\f056";
+}
+.fa-times-circle:before {
+ content: "\f057";
+}
+.fa-check-circle:before {
+ content: "\f058";
+}
+.fa-question-circle:before {
+ content: "\f059";
+}
+.fa-info-circle:before {
+ content: "\f05a";
+}
+.fa-crosshairs:before {
+ content: "\f05b";
+}
+.fa-times-circle-o:before {
+ content: "\f05c";
+}
+.fa-check-circle-o:before {
+ content: "\f05d";
+}
+.fa-ban:before {
+ content: "\f05e";
+}
+.fa-arrow-left:before {
+ content: "\f060";
+}
+.fa-arrow-right:before {
+ content: "\f061";
+}
+.fa-arrow-up:before {
+ content: "\f062";
+}
+.fa-arrow-down:before {
+ content: "\f063";
+}
+.fa-mail-forward:before,
+.fa-share:before {
+ content: "\f064";
+}
+.fa-expand:before {
+ content: "\f065";
+}
+.fa-compress:before {
+ content: "\f066";
+}
+.fa-plus:before {
+ content: "\f067";
+}
+.fa-minus:before {
+ content: "\f068";
+}
+.fa-asterisk:before {
+ content: "\f069";
+}
+.fa-exclamation-circle:before {
+ content: "\f06a";
+}
+.fa-gift:before {
+ content: "\f06b";
+}
+.fa-leaf:before {
+ content: "\f06c";
+}
+.fa-fire:before {
+ content: "\f06d";
+}
+.fa-eye:before {
+ content: "\f06e";
+}
+.fa-eye-slash:before {
+ content: "\f070";
+}
+.fa-warning:before,
+.fa-exclamation-triangle:before {
+ content: "\f071";
+}
+.fa-plane:before {
+ content: "\f072";
+}
+.fa-calendar:before {
+ content: "\f073";
+}
+.fa-random:before {
+ content: "\f074";
+}
+.fa-comment:before {
+ content: "\f075";
+}
+.fa-magnet:before {
+ content: "\f076";
+}
+.fa-chevron-up:before {
+ content: "\f077";
+}
+.fa-chevron-down:before {
+ content: "\f078";
+}
+.fa-retweet:before {
+ content: "\f079";
+}
+.fa-shopping-cart:before {
+ content: "\f07a";
+}
+.fa-folder:before {
+ content: "\f07b";
+}
+.fa-folder-open:before {
+ content: "\f07c";
+}
+.fa-arrows-v:before {
+ content: "\f07d";
+}
+.fa-arrows-h:before {
+ content: "\f07e";
+}
+.fa-bar-chart-o:before,
+.fa-bar-chart:before {
+ content: "\f080";
+}
+.fa-twitter-square:before {
+ content: "\f081";
+}
+.fa-facebook-square:before {
+ content: "\f082";
+}
+.fa-camera-retro:before {
+ content: "\f083";
+}
+.fa-key:before {
+ content: "\f084";
+}
+.fa-gears:before,
+.fa-cogs:before {
+ content: "\f085";
+}
+.fa-comments:before {
+ content: "\f086";
+}
+.fa-thumbs-o-up:before {
+ content: "\f087";
+}
+.fa-thumbs-o-down:before {
+ content: "\f088";
+}
+.fa-star-half:before {
+ content: "\f089";
+}
+.fa-heart-o:before {
+ content: "\f08a";
+}
+.fa-sign-out:before {
+ content: "\f08b";
+}
+.fa-linkedin-square:before {
+ content: "\f08c";
+}
+.fa-thumb-tack:before {
+ content: "\f08d";
+}
+.fa-external-link:before {
+ content: "\f08e";
+}
+.fa-sign-in:before {
+ content: "\f090";
+}
+.fa-trophy:before {
+ content: "\f091";
+}
+.fa-github-square:before {
+ content: "\f092";
+}
+.fa-upload:before {
+ content: "\f093";
+}
+.fa-lemon-o:before {
+ content: "\f094";
+}
+.fa-phone:before {
+ content: "\f095";
+}
+.fa-square-o:before {
+ content: "\f096";
+}
+.fa-bookmark-o:before {
+ content: "\f097";
+}
+.fa-phone-square:before {
+ content: "\f098";
+}
+.fa-twitter:before {
+ content: "\f099";
+}
+.fa-facebook-f:before,
+.fa-facebook:before {
+ content: "\f09a";
+}
+.fa-github:before {
+ content: "\f09b";
+}
+.fa-unlock:before {
+ content: "\f09c";
+}
+.fa-credit-card:before {
+ content: "\f09d";
+}
+.fa-feed:before,
+.fa-rss:before {
+ content: "\f09e";
+}
+.fa-hdd-o:before {
+ content: "\f0a0";
+}
+.fa-bullhorn:before {
+ content: "\f0a1";
+}
+.fa-bell:before {
+ content: "\f0f3";
+}
+.fa-certificate:before {
+ content: "\f0a3";
+}
+.fa-hand-o-right:before {
+ content: "\f0a4";
+}
+.fa-hand-o-left:before {
+ content: "\f0a5";
+}
+.fa-hand-o-up:before {
+ content: "\f0a6";
+}
+.fa-hand-o-down:before {
+ content: "\f0a7";
+}
+.fa-arrow-circle-left:before {
+ content: "\f0a8";
+}
+.fa-arrow-circle-right:before {
+ content: "\f0a9";
+}
+.fa-arrow-circle-up:before {
+ content: "\f0aa";
+}
+.fa-arrow-circle-down:before {
+ content: "\f0ab";
+}
+.fa-globe:before {
+ content: "\f0ac";
+}
+.fa-wrench:before {
+ content: "\f0ad";
+}
+.fa-tasks:before {
+ content: "\f0ae";
+}
+.fa-filter:before {
+ content: "\f0b0";
+}
+.fa-briefcase:before {
+ content: "\f0b1";
+}
+.fa-arrows-alt:before {
+ content: "\f0b2";
+}
+.fa-group:before,
+.fa-users:before {
+ content: "\f0c0";
+}
+.fa-chain:before,
+.fa-link:before {
+ content: "\f0c1";
+}
+.fa-cloud:before {
+ content: "\f0c2";
+}
+.fa-flask:before {
+ content: "\f0c3";
+}
+.fa-cut:before,
+.fa-scissors:before {
+ content: "\f0c4";
+}
+.fa-copy:before,
+.fa-files-o:before {
+ content: "\f0c5";
+}
+.fa-paperclip:before {
+ content: "\f0c6";
+}
+.fa-save:before,
+.fa-floppy-o:before {
+ content: "\f0c7";
+}
+.fa-square:before {
+ content: "\f0c8";
+}
+.fa-navicon:before,
+.fa-reorder:before,
+.fa-bars:before {
+ content: "\f0c9";
+}
+.fa-list-ul:before {
+ content: "\f0ca";
+}
+.fa-list-ol:before {
+ content: "\f0cb";
+}
+.fa-strikethrough:before {
+ content: "\f0cc";
+}
+.fa-underline:before {
+ content: "\f0cd";
+}
+.fa-table:before {
+ content: "\f0ce";
+}
+.fa-magic:before {
+ content: "\f0d0";
+}
+.fa-truck:before {
+ content: "\f0d1";
+}
+.fa-pinterest:before {
+ content: "\f0d2";
+}
+.fa-pinterest-square:before {
+ content: "\f0d3";
+}
+.fa-google-plus-square:before {
+ content: "\f0d4";
+}
+.fa-google-plus:before {
+ content: "\f0d5";
+}
+.fa-money:before {
+ content: "\f0d6";
+}
+.fa-caret-down:before {
+ content: "\f0d7";
+}
+.fa-caret-up:before {
+ content: "\f0d8";
+}
+.fa-caret-left:before {
+ content: "\f0d9";
+}
+.fa-caret-right:before {
+ content: "\f0da";
+}
+.fa-columns:before {
+ content: "\f0db";
+}
+.fa-unsorted:before,
+.fa-sort:before {
+ content: "\f0dc";
+}
+.fa-sort-down:before,
+.fa-sort-desc:before {
+ content: "\f0dd";
+}
+.fa-sort-up:before,
+.fa-sort-asc:before {
+ content: "\f0de";
+}
+.fa-envelope:before {
+ content: "\f0e0";
+}
+.fa-linkedin:before {
+ content: "\f0e1";
+}
+.fa-rotate-left:before,
+.fa-undo:before {
+ content: "\f0e2";
+}
+.fa-legal:before,
+.fa-gavel:before {
+ content: "\f0e3";
+}
+.fa-dashboard:before,
+.fa-tachometer:before {
+ content: "\f0e4";
+}
+.fa-comment-o:before {
+ content: "\f0e5";
+}
+.fa-comments-o:before {
+ content: "\f0e6";
+}
+.fa-flash:before,
+.fa-bolt:before {
+ content: "\f0e7";
+}
+.fa-sitemap:before {
+ content: "\f0e8";
+}
+.fa-umbrella:before {
+ content: "\f0e9";
+}
+.fa-paste:before,
+.fa-clipboard:before {
+ content: "\f0ea";
+}
+.fa-lightbulb-o:before {
+ content: "\f0eb";
+}
+.fa-exchange:before {
+ content: "\f0ec";
+}
+.fa-cloud-download:before {
+ content: "\f0ed";
+}
+.fa-cloud-upload:before {
+ content: "\f0ee";
+}
+.fa-user-md:before {
+ content: "\f0f0";
+}
+.fa-stethoscope:before {
+ content: "\f0f1";
+}
+.fa-suitcase:before {
+ content: "\f0f2";
+}
+.fa-bell-o:before {
+ content: "\f0a2";
+}
+.fa-coffee:before {
+ content: "\f0f4";
+}
+.fa-cutlery:before {
+ content: "\f0f5";
+}
+.fa-file-text-o:before {
+ content: "\f0f6";
+}
+.fa-building-o:before {
+ content: "\f0f7";
+}
+.fa-hospital-o:before {
+ content: "\f0f8";
+}
+.fa-ambulance:before {
+ content: "\f0f9";
+}
+.fa-medkit:before {
+ content: "\f0fa";
+}
+.fa-fighter-jet:before {
+ content: "\f0fb";
+}
+.fa-beer:before {
+ content: "\f0fc";
+}
+.fa-h-square:before {
+ content: "\f0fd";
+}
+.fa-plus-square:before {
+ content: "\f0fe";
+}
+.fa-angle-double-left:before {
+ content: "\f100";
+}
+.fa-angle-double-right:before {
+ content: "\f101";
+}
+.fa-angle-double-up:before {
+ content: "\f102";
+}
+.fa-angle-double-down:before {
+ content: "\f103";
+}
+.fa-angle-left:before {
+ content: "\f104";
+}
+.fa-angle-right:before {
+ content: "\f105";
+}
+.fa-angle-up:before {
+ content: "\f106";
+}
+.fa-angle-down:before {
+ content: "\f107";
+}
+.fa-desktop:before {
+ content: "\f108";
+}
+.fa-laptop:before {
+ content: "\f109";
+}
+.fa-tablet:before {
+ content: "\f10a";
+}
+.fa-mobile-phone:before,
+.fa-mobile:before {
+ content: "\f10b";
+}
+.fa-circle-o:before {
+ content: "\f10c";
+}
+.fa-quote-left:before {
+ content: "\f10d";
+}
+.fa-quote-right:before {
+ content: "\f10e";
+}
+.fa-spinner:before {
+ content: "\f110";
+}
+.fa-circle:before {
+ content: "\f111";
+}
+.fa-mail-reply:before,
+.fa-reply:before {
+ content: "\f112";
+}
+.fa-github-alt:before {
+ content: "\f113";
+}
+.fa-folder-o:before {
+ content: "\f114";
+}
+.fa-folder-open-o:before {
+ content: "\f115";
+}
+.fa-smile-o:before {
+ content: "\f118";
+}
+.fa-frown-o:before {
+ content: "\f119";
+}
+.fa-meh-o:before {
+ content: "\f11a";
+}
+.fa-gamepad:before {
+ content: "\f11b";
+}
+.fa-keyboard-o:before {
+ content: "\f11c";
+}
+.fa-flag-o:before {
+ content: "\f11d";
+}
+.fa-flag-checkered:before {
+ content: "\f11e";
+}
+.fa-terminal:before {
+ content: "\f120";
+}
+.fa-code:before {
+ content: "\f121";
+}
+.fa-mail-reply-all:before,
+.fa-reply-all:before {
+ content: "\f122";
+}
+.fa-star-half-empty:before,
+.fa-star-half-full:before,
+.fa-star-half-o:before {
+ content: "\f123";
+}
+.fa-location-arrow:before {
+ content: "\f124";
+}
+.fa-crop:before {
+ content: "\f125";
+}
+.fa-code-fork:before {
+ content: "\f126";
+}
+.fa-unlink:before,
+.fa-chain-broken:before {
+ content: "\f127";
+}
+.fa-question:before {
+ content: "\f128";
+}
+.fa-info:before {
+ content: "\f129";
+}
+.fa-exclamation:before {
+ content: "\f12a";
+}
+.fa-superscript:before {
+ content: "\f12b";
+}
+.fa-subscript:before {
+ content: "\f12c";
+}
+.fa-eraser:before {
+ content: "\f12d";
+}
+.fa-puzzle-piece:before {
+ content: "\f12e";
+}
+.fa-microphone:before {
+ content: "\f130";
+}
+.fa-microphone-slash:before {
+ content: "\f131";
+}
+.fa-shield:before {
+ content: "\f132";
+}
+.fa-calendar-o:before {
+ content: "\f133";
+}
+.fa-fire-extinguisher:before {
+ content: "\f134";
+}
+.fa-rocket:before {
+ content: "\f135";
+}
+.fa-maxcdn:before {
+ content: "\f136";
+}
+.fa-chevron-circle-left:before {
+ content: "\f137";
+}
+.fa-chevron-circle-right:before {
+ content: "\f138";
+}
+.fa-chevron-circle-up:before {
+ content: "\f139";
+}
+.fa-chevron-circle-down:before {
+ content: "\f13a";
+}
+.fa-html5:before {
+ content: "\f13b";
+}
+.fa-css3:before {
+ content: "\f13c";
+}
+.fa-anchor:before {
+ content: "\f13d";
+}
+.fa-unlock-alt:before {
+ content: "\f13e";
+}
+.fa-bullseye:before {
+ content: "\f140";
+}
+.fa-ellipsis-h:before {
+ content: "\f141";
+}
+.fa-ellipsis-v:before {
+ content: "\f142";
+}
+.fa-rss-square:before {
+ content: "\f143";
+}
+.fa-play-circle:before {
+ content: "\f144";
+}
+.fa-ticket:before {
+ content: "\f145";
+}
+.fa-minus-square:before {
+ content: "\f146";
+}
+.fa-minus-square-o:before {
+ content: "\f147";
+}
+.fa-level-up:before {
+ content: "\f148";
+}
+.fa-level-down:before {
+ content: "\f149";
+}
+.fa-check-square:before {
+ content: "\f14a";
+}
+.fa-pencil-square:before {
+ content: "\f14b";
+}
+.fa-external-link-square:before {
+ content: "\f14c";
+}
+.fa-share-square:before {
+ content: "\f14d";
+}
+.fa-compass:before {
+ content: "\f14e";
+}
+.fa-toggle-down:before,
+.fa-caret-square-o-down:before {
+ content: "\f150";
+}
+.fa-toggle-up:before,
+.fa-caret-square-o-up:before {
+ content: "\f151";
+}
+.fa-toggle-right:before,
+.fa-caret-square-o-right:before {
+ content: "\f152";
+}
+.fa-euro:before,
+.fa-eur:before {
+ content: "\f153";
+}
+.fa-gbp:before {
+ content: "\f154";
+}
+.fa-dollar:before,
+.fa-usd:before {
+ content: "\f155";
+}
+.fa-rupee:before,
+.fa-inr:before {
+ content: "\f156";
+}
+.fa-cny:before,
+.fa-rmb:before,
+.fa-yen:before,
+.fa-jpy:before {
+ content: "\f157";
+}
+.fa-ruble:before,
+.fa-rouble:before,
+.fa-rub:before {
+ content: "\f158";
+}
+.fa-won:before,
+.fa-krw:before {
+ content: "\f159";
+}
+.fa-bitcoin:before,
+.fa-btc:before {
+ content: "\f15a";
+}
+.fa-file:before {
+ content: "\f15b";
+}
+.fa-file-text:before {
+ content: "\f15c";
+}
+.fa-sort-alpha-asc:before {
+ content: "\f15d";
+}
+.fa-sort-alpha-desc:before {
+ content: "\f15e";
+}
+.fa-sort-amount-asc:before {
+ content: "\f160";
+}
+.fa-sort-amount-desc:before {
+ content: "\f161";
+}
+.fa-sort-numeric-asc:before {
+ content: "\f162";
+}
+.fa-sort-numeric-desc:before {
+ content: "\f163";
+}
+.fa-thumbs-up:before {
+ content: "\f164";
+}
+.fa-thumbs-down:before {
+ content: "\f165";
+}
+.fa-youtube-square:before {
+ content: "\f166";
+}
+.fa-youtube:before {
+ content: "\f167";
+}
+.fa-xing:before {
+ content: "\f168";
+}
+.fa-xing-square:before {
+ content: "\f169";
+}
+.fa-youtube-play:before {
+ content: "\f16a";
+}
+.fa-dropbox:before {
+ content: "\f16b";
+}
+.fa-stack-overflow:before {
+ content: "\f16c";
+}
+.fa-instagram:before {
+ content: "\f16d";
+}
+.fa-flickr:before {
+ content: "\f16e";
+}
+.fa-adn:before {
+ content: "\f170";
+}
+.fa-bitbucket:before {
+ content: "\f171";
+}
+.fa-bitbucket-square:before {
+ content: "\f172";
+}
+.fa-tumblr:before {
+ content: "\f173";
+}
+.fa-tumblr-square:before {
+ content: "\f174";
+}
+.fa-long-arrow-down:before {
+ content: "\f175";
+}
+.fa-long-arrow-up:before {
+ content: "\f176";
+}
+.fa-long-arrow-left:before {
+ content: "\f177";
+}
+.fa-long-arrow-right:before {
+ content: "\f178";
+}
+.fa-apple:before {
+ content: "\f179";
+}
+.fa-windows:before {
+ content: "\f17a";
+}
+.fa-android:before {
+ content: "\f17b";
+}
+.fa-linux:before {
+ content: "\f17c";
+}
+.fa-dribbble:before {
+ content: "\f17d";
+}
+.fa-skype:before {
+ content: "\f17e";
+}
+.fa-foursquare:before {
+ content: "\f180";
+}
+.fa-trello:before {
+ content: "\f181";
+}
+.fa-female:before {
+ content: "\f182";
+}
+.fa-male:before {
+ content: "\f183";
+}
+.fa-gittip:before,
+.fa-gratipay:before {
+ content: "\f184";
+}
+.fa-sun-o:before {
+ content: "\f185";
+}
+.fa-moon-o:before {
+ content: "\f186";
+}
+.fa-archive:before {
+ content: "\f187";
+}
+.fa-bug:before {
+ content: "\f188";
+}
+.fa-vk:before {
+ content: "\f189";
+}
+.fa-weibo:before {
+ content: "\f18a";
+}
+.fa-renren:before {
+ content: "\f18b";
+}
+.fa-pagelines:before {
+ content: "\f18c";
+}
+.fa-stack-exchange:before {
+ content: "\f18d";
+}
+.fa-arrow-circle-o-right:before {
+ content: "\f18e";
+}
+.fa-arrow-circle-o-left:before {
+ content: "\f190";
+}
+.fa-toggle-left:before,
+.fa-caret-square-o-left:before {
+ content: "\f191";
+}
+.fa-dot-circle-o:before {
+ content: "\f192";
+}
+.fa-wheelchair:before {
+ content: "\f193";
+}
+.fa-vimeo-square:before {
+ content: "\f194";
+}
+.fa-turkish-lira:before,
+.fa-try:before {
+ content: "\f195";
+}
+.fa-plus-square-o:before {
+ content: "\f196";
+}
+.fa-space-shuttle:before {
+ content: "\f197";
+}
+.fa-slack:before {
+ content: "\f198";
+}
+.fa-envelope-square:before {
+ content: "\f199";
+}
+.fa-wordpress:before {
+ content: "\f19a";
+}
+.fa-openid:before {
+ content: "\f19b";
+}
+.fa-institution:before,
+.fa-bank:before,
+.fa-university:before {
+ content: "\f19c";
+}
+.fa-mortar-board:before,
+.fa-graduation-cap:before {
+ content: "\f19d";
+}
+.fa-yahoo:before {
+ content: "\f19e";
+}
+.fa-google:before {
+ content: "\f1a0";
+}
+.fa-reddit:before {
+ content: "\f1a1";
+}
+.fa-reddit-square:before {
+ content: "\f1a2";
+}
+.fa-stumbleupon-circle:before {
+ content: "\f1a3";
+}
+.fa-stumbleupon:before {
+ content: "\f1a4";
+}
+.fa-delicious:before {
+ content: "\f1a5";
+}
+.fa-digg:before {
+ content: "\f1a6";
+}
+.fa-pied-piper-pp:before {
+ content: "\f1a7";
+}
+.fa-pied-piper-alt:before {
+ content: "\f1a8";
+}
+.fa-drupal:before {
+ content: "\f1a9";
+}
+.fa-joomla:before {
+ content: "\f1aa";
+}
+.fa-language:before {
+ content: "\f1ab";
+}
+.fa-fax:before {
+ content: "\f1ac";
+}
+.fa-building:before {
+ content: "\f1ad";
+}
+.fa-child:before {
+ content: "\f1ae";
+}
+.fa-paw:before {
+ content: "\f1b0";
+}
+.fa-spoon:before {
+ content: "\f1b1";
+}
+.fa-cube:before {
+ content: "\f1b2";
+}
+.fa-cubes:before {
+ content: "\f1b3";
+}
+.fa-behance:before {
+ content: "\f1b4";
+}
+.fa-behance-square:before {
+ content: "\f1b5";
+}
+.fa-steam:before {
+ content: "\f1b6";
+}
+.fa-steam-square:before {
+ content: "\f1b7";
+}
+.fa-recycle:before {
+ content: "\f1b8";
+}
+.fa-automobile:before,
+.fa-car:before {
+ content: "\f1b9";
+}
+.fa-cab:before,
+.fa-taxi:before {
+ content: "\f1ba";
+}
+.fa-tree:before {
+ content: "\f1bb";
+}
+.fa-spotify:before {
+ content: "\f1bc";
+}
+.fa-deviantart:before {
+ content: "\f1bd";
+}
+.fa-soundcloud:before {
+ content: "\f1be";
+}
+.fa-database:before {
+ content: "\f1c0";
+}
+.fa-file-pdf-o:before {
+ content: "\f1c1";
+}
+.fa-file-word-o:before {
+ content: "\f1c2";
+}
+.fa-file-excel-o:before {
+ content: "\f1c3";
+}
+.fa-file-powerpoint-o:before {
+ content: "\f1c4";
+}
+.fa-file-photo-o:before,
+.fa-file-picture-o:before,
+.fa-file-image-o:before {
+ content: "\f1c5";
+}
+.fa-file-zip-o:before,
+.fa-file-archive-o:before {
+ content: "\f1c6";
+}
+.fa-file-sound-o:before,
+.fa-file-audio-o:before {
+ content: "\f1c7";
+}
+.fa-file-movie-o:before,
+.fa-file-video-o:before {
+ content: "\f1c8";
+}
+.fa-file-code-o:before {
+ content: "\f1c9";
+}
+.fa-vine:before {
+ content: "\f1ca";
+}
+.fa-codepen:before {
+ content: "\f1cb";
+}
+.fa-jsfiddle:before {
+ content: "\f1cc";
+}
+.fa-life-bouy:before,
+.fa-life-buoy:before,
+.fa-life-saver:before,
+.fa-support:before,
+.fa-life-ring:before {
+ content: "\f1cd";
+}
+.fa-circle-o-notch:before {
+ content: "\f1ce";
+}
+.fa-ra:before,
+.fa-resistance:before,
+.fa-rebel:before {
+ content: "\f1d0";
+}
+.fa-ge:before,
+.fa-empire:before {
+ content: "\f1d1";
+}
+.fa-git-square:before {
+ content: "\f1d2";
+}
+.fa-git:before {
+ content: "\f1d3";
+}
+.fa-y-combinator-square:before,
+.fa-yc-square:before,
+.fa-hacker-news:before {
+ content: "\f1d4";
+}
+.fa-tencent-weibo:before {
+ content: "\f1d5";
+}
+.fa-qq:before {
+ content: "\f1d6";
+}
+.fa-wechat:before,
+.fa-weixin:before {
+ content: "\f1d7";
+}
+.fa-send:before,
+.fa-paper-plane:before {
+ content: "\f1d8";
+}
+.fa-send-o:before,
+.fa-paper-plane-o:before {
+ content: "\f1d9";
+}
+.fa-history:before {
+ content: "\f1da";
+}
+.fa-circle-thin:before {
+ content: "\f1db";
+}
+.fa-header:before {
+ content: "\f1dc";
+}
+.fa-paragraph:before {
+ content: "\f1dd";
+}
+.fa-sliders:before {
+ content: "\f1de";
+}
+.fa-share-alt:before {
+ content: "\f1e0";
+}
+.fa-share-alt-square:before {
+ content: "\f1e1";
+}
+.fa-bomb:before {
+ content: "\f1e2";
+}
+.fa-soccer-ball-o:before,
+.fa-futbol-o:before {
+ content: "\f1e3";
+}
+.fa-tty:before {
+ content: "\f1e4";
+}
+.fa-binoculars:before {
+ content: "\f1e5";
+}
+.fa-plug:before {
+ content: "\f1e6";
+}
+.fa-slideshare:before {
+ content: "\f1e7";
+}
+.fa-twitch:before {
+ content: "\f1e8";
+}
+.fa-yelp:before {
+ content: "\f1e9";
+}
+.fa-newspaper-o:before {
+ content: "\f1ea";
+}
+.fa-wifi:before {
+ content: "\f1eb";
+}
+.fa-calculator:before {
+ content: "\f1ec";
+}
+.fa-paypal:before {
+ content: "\f1ed";
+}
+.fa-google-wallet:before {
+ content: "\f1ee";
+}
+.fa-cc-visa:before {
+ content: "\f1f0";
+}
+.fa-cc-mastercard:before {
+ content: "\f1f1";
+}
+.fa-cc-discover:before {
+ content: "\f1f2";
+}
+.fa-cc-amex:before {
+ content: "\f1f3";
+}
+.fa-cc-paypal:before {
+ content: "\f1f4";
+}
+.fa-cc-stripe:before {
+ content: "\f1f5";
+}
+.fa-bell-slash:before {
+ content: "\f1f6";
+}
+.fa-bell-slash-o:before {
+ content: "\f1f7";
+}
+.fa-trash:before {
+ content: "\f1f8";
+}
+.fa-copyright:before {
+ content: "\f1f9";
+}
+.fa-at:before {
+ content: "\f1fa";
+}
+.fa-eyedropper:before {
+ content: "\f1fb";
+}
+.fa-paint-brush:before {
+ content: "\f1fc";
+}
+.fa-birthday-cake:before {
+ content: "\f1fd";
+}
+.fa-area-chart:before {
+ content: "\f1fe";
+}
+.fa-pie-chart:before {
+ content: "\f200";
+}
+.fa-line-chart:before {
+ content: "\f201";
+}
+.fa-lastfm:before {
+ content: "\f202";
+}
+.fa-lastfm-square:before {
+ content: "\f203";
+}
+.fa-toggle-off:before {
+ content: "\f204";
+}
+.fa-toggle-on:before {
+ content: "\f205";
+}
+.fa-bicycle:before {
+ content: "\f206";
+}
+.fa-bus:before {
+ content: "\f207";
+}
+.fa-ioxhost:before {
+ content: "\f208";
+}
+.fa-angellist:before {
+ content: "\f209";
+}
+.fa-cc:before {
+ content: "\f20a";
+}
+.fa-shekel:before,
+.fa-sheqel:before,
+.fa-ils:before {
+ content: "\f20b";
+}
+.fa-meanpath:before {
+ content: "\f20c";
+}
+.fa-buysellads:before {
+ content: "\f20d";
+}
+.fa-connectdevelop:before {
+ content: "\f20e";
+}
+.fa-dashcube:before {
+ content: "\f210";
+}
+.fa-forumbee:before {
+ content: "\f211";
+}
+.fa-leanpub:before {
+ content: "\f212";
+}
+.fa-sellsy:before {
+ content: "\f213";
+}
+.fa-shirtsinbulk:before {
+ content: "\f214";
+}
+.fa-simplybuilt:before {
+ content: "\f215";
+}
+.fa-skyatlas:before {
+ content: "\f216";
+}
+.fa-cart-plus:before {
+ content: "\f217";
+}
+.fa-cart-arrow-down:before {
+ content: "\f218";
+}
+.fa-diamond:before {
+ content: "\f219";
+}
+.fa-ship:before {
+ content: "\f21a";
+}
+.fa-user-secret:before {
+ content: "\f21b";
+}
+.fa-motorcycle:before {
+ content: "\f21c";
+}
+.fa-street-view:before {
+ content: "\f21d";
+}
+.fa-heartbeat:before {
+ content: "\f21e";
+}
+.fa-venus:before {
+ content: "\f221";
+}
+.fa-mars:before {
+ content: "\f222";
+}
+.fa-mercury:before {
+ content: "\f223";
+}
+.fa-intersex:before,
+.fa-transgender:before {
+ content: "\f224";
+}
+.fa-transgender-alt:before {
+ content: "\f225";
+}
+.fa-venus-double:before {
+ content: "\f226";
+}
+.fa-mars-double:before {
+ content: "\f227";
+}
+.fa-venus-mars:before {
+ content: "\f228";
+}
+.fa-mars-stroke:before {
+ content: "\f229";
+}
+.fa-mars-stroke-v:before {
+ content: "\f22a";
+}
+.fa-mars-stroke-h:before {
+ content: "\f22b";
+}
+.fa-neuter:before {
+ content: "\f22c";
+}
+.fa-genderless:before {
+ content: "\f22d";
+}
+.fa-facebook-official:before {
+ content: "\f230";
+}
+.fa-pinterest-p:before {
+ content: "\f231";
+}
+.fa-whatsapp:before {
+ content: "\f232";
+}
+.fa-server:before {
+ content: "\f233";
+}
+.fa-user-plus:before {
+ content: "\f234";
+}
+.fa-user-times:before {
+ content: "\f235";
+}
+.fa-hotel:before,
+.fa-bed:before {
+ content: "\f236";
+}
+.fa-viacoin:before {
+ content: "\f237";
+}
+.fa-train:before {
+ content: "\f238";
+}
+.fa-subway:before {
+ content: "\f239";
+}
+.fa-medium:before {
+ content: "\f23a";
+}
+.fa-yc:before,
+.fa-y-combinator:before {
+ content: "\f23b";
+}
+.fa-optin-monster:before {
+ content: "\f23c";
+}
+.fa-opencart:before {
+ content: "\f23d";
+}
+.fa-expeditedssl:before {
+ content: "\f23e";
+}
+.fa-battery-4:before,
+.fa-battery-full:before {
+ content: "\f240";
+}
+.fa-battery-3:before,
+.fa-battery-three-quarters:before {
+ content: "\f241";
+}
+.fa-battery-2:before,
+.fa-battery-half:before {
+ content: "\f242";
+}
+.fa-battery-1:before,
+.fa-battery-quarter:before {
+ content: "\f243";
+}
+.fa-battery-0:before,
+.fa-battery-empty:before {
+ content: "\f244";
+}
+.fa-mouse-pointer:before {
+ content: "\f245";
+}
+.fa-i-cursor:before {
+ content: "\f246";
+}
+.fa-object-group:before {
+ content: "\f247";
+}
+.fa-object-ungroup:before {
+ content: "\f248";
+}
+.fa-sticky-note:before {
+ content: "\f249";
+}
+.fa-sticky-note-o:before {
+ content: "\f24a";
+}
+.fa-cc-jcb:before {
+ content: "\f24b";
+}
+.fa-cc-diners-club:before {
+ content: "\f24c";
+}
+.fa-clone:before {
+ content: "\f24d";
+}
+.fa-balance-scale:before {
+ content: "\f24e";
+}
+.fa-hourglass-o:before {
+ content: "\f250";
+}
+.fa-hourglass-1:before,
+.fa-hourglass-start:before {
+ content: "\f251";
+}
+.fa-hourglass-2:before,
+.fa-hourglass-half:before {
+ content: "\f252";
+}
+.fa-hourglass-3:before,
+.fa-hourglass-end:before {
+ content: "\f253";
+}
+.fa-hourglass:before {
+ content: "\f254";
+}
+.fa-hand-grab-o:before,
+.fa-hand-rock-o:before {
+ content: "\f255";
+}
+.fa-hand-stop-o:before,
+.fa-hand-paper-o:before {
+ content: "\f256";
+}
+.fa-hand-scissors-o:before {
+ content: "\f257";
+}
+.fa-hand-lizard-o:before {
+ content: "\f258";
+}
+.fa-hand-spock-o:before {
+ content: "\f259";
+}
+.fa-hand-pointer-o:before {
+ content: "\f25a";
+}
+.fa-hand-peace-o:before {
+ content: "\f25b";
+}
+.fa-trademark:before {
+ content: "\f25c";
+}
+.fa-registered:before {
+ content: "\f25d";
+}
+.fa-creative-commons:before {
+ content: "\f25e";
+}
+.fa-gg:before {
+ content: "\f260";
+}
+.fa-gg-circle:before {
+ content: "\f261";
+}
+.fa-tripadvisor:before {
+ content: "\f262";
+}
+.fa-odnoklassniki:before {
+ content: "\f263";
+}
+.fa-odnoklassniki-square:before {
+ content: "\f264";
+}
+.fa-get-pocket:before {
+ content: "\f265";
+}
+.fa-wikipedia-w:before {
+ content: "\f266";
+}
+.fa-safari:before {
+ content: "\f267";
+}
+.fa-chrome:before {
+ content: "\f268";
+}
+.fa-firefox:before {
+ content: "\f269";
+}
+.fa-opera:before {
+ content: "\f26a";
+}
+.fa-internet-explorer:before {
+ content: "\f26b";
+}
+.fa-tv:before,
+.fa-television:before {
+ content: "\f26c";
+}
+.fa-contao:before {
+ content: "\f26d";
+}
+.fa-500px:before {
+ content: "\f26e";
+}
+.fa-amazon:before {
+ content: "\f270";
+}
+.fa-calendar-plus-o:before {
+ content: "\f271";
+}
+.fa-calendar-minus-o:before {
+ content: "\f272";
+}
+.fa-calendar-times-o:before {
+ content: "\f273";
+}
+.fa-calendar-check-o:before {
+ content: "\f274";
+}
+.fa-industry:before {
+ content: "\f275";
+}
+.fa-map-pin:before {
+ content: "\f276";
+}
+.fa-map-signs:before {
+ content: "\f277";
+}
+.fa-map-o:before {
+ content: "\f278";
+}
+.fa-map:before {
+ content: "\f279";
+}
+.fa-commenting:before {
+ content: "\f27a";
+}
+.fa-commenting-o:before {
+ content: "\f27b";
+}
+.fa-houzz:before {
+ content: "\f27c";
+}
+.fa-vimeo:before {
+ content: "\f27d";
+}
+.fa-black-tie:before {
+ content: "\f27e";
+}
+.fa-fonticons:before {
+ content: "\f280";
+}
+.fa-reddit-alien:before {
+ content: "\f281";
+}
+.fa-edge:before {
+ content: "\f282";
+}
+.fa-credit-card-alt:before {
+ content: "\f283";
+}
+.fa-codiepie:before {
+ content: "\f284";
+}
+.fa-modx:before {
+ content: "\f285";
+}
+.fa-fort-awesome:before {
+ content: "\f286";
+}
+.fa-usb:before {
+ content: "\f287";
+}
+.fa-product-hunt:before {
+ content: "\f288";
+}
+.fa-mixcloud:before {
+ content: "\f289";
+}
+.fa-scribd:before {
+ content: "\f28a";
+}
+.fa-pause-circle:before {
+ content: "\f28b";
+}
+.fa-pause-circle-o:before {
+ content: "\f28c";
+}
+.fa-stop-circle:before {
+ content: "\f28d";
+}
+.fa-stop-circle-o:before {
+ content: "\f28e";
+}
+.fa-shopping-bag:before {
+ content: "\f290";
+}
+.fa-shopping-basket:before {
+ content: "\f291";
+}
+.fa-hashtag:before {
+ content: "\f292";
+}
+.fa-bluetooth:before {
+ content: "\f293";
+}
+.fa-bluetooth-b:before {
+ content: "\f294";
+}
+.fa-percent:before {
+ content: "\f295";
+}
+.fa-gitlab:before {
+ content: "\f296";
+}
+.fa-wpbeginner:before {
+ content: "\f297";
+}
+.fa-wpforms:before {
+ content: "\f298";
+}
+.fa-envira:before {
+ content: "\f299";
+}
+.fa-universal-access:before {
+ content: "\f29a";
+}
+.fa-wheelchair-alt:before {
+ content: "\f29b";
+}
+.fa-question-circle-o:before {
+ content: "\f29c";
+}
+.fa-blind:before {
+ content: "\f29d";
+}
+.fa-audio-description:before {
+ content: "\f29e";
+}
+.fa-volume-control-phone:before {
+ content: "\f2a0";
+}
+.fa-braille:before {
+ content: "\f2a1";
+}
+.fa-assistive-listening-systems:before {
+ content: "\f2a2";
+}
+.fa-asl-interpreting:before,
+.fa-american-sign-language-interpreting:before {
+ content: "\f2a3";
+}
+.fa-deafness:before,
+.fa-hard-of-hearing:before,
+.fa-deaf:before {
+ content: "\f2a4";
+}
+.fa-glide:before {
+ content: "\f2a5";
+}
+.fa-glide-g:before {
+ content: "\f2a6";
+}
+.fa-signing:before,
+.fa-sign-language:before {
+ content: "\f2a7";
+}
+.fa-low-vision:before {
+ content: "\f2a8";
+}
+.fa-viadeo:before {
+ content: "\f2a9";
+}
+.fa-viadeo-square:before {
+ content: "\f2aa";
+}
+.fa-snapchat:before {
+ content: "\f2ab";
+}
+.fa-snapchat-ghost:before {
+ content: "\f2ac";
+}
+.fa-snapchat-square:before {
+ content: "\f2ad";
+}
+.fa-pied-piper:before {
+ content: "\f2ae";
+}
+.fa-first-order:before {
+ content: "\f2b0";
+}
+.fa-yoast:before {
+ content: "\f2b1";
+}
+.fa-themeisle:before {
+ content: "\f2b2";
+}
+.fa-google-plus-circle:before,
+.fa-google-plus-official:before {
+ content: "\f2b3";
+}
+.fa-fa:before,
+.fa-font-awesome:before {
+ content: "\f2b4";
+}
+.sr-only {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ margin: -1px;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ border: 0;
+}
+.sr-only-focusable:active,
+.sr-only-focusable:focus {
+ position: static;
+ width: auto;
+ height: auto;
+ margin: 0;
+ overflow: visible;
+ clip: auto;
+}
diff --git a/build/dark/development/Rambox/resources/fonts/font-awesome/css/font-awesome.min.css b/build/dark/development/Rambox/resources/fonts/font-awesome/css/font-awesome.min.css
new file mode 100644
index 00000000..9b27f8ea
--- /dev/null
+++ b/build/dark/development/Rambox/resources/fonts/font-awesome/css/font-awesome.min.css
@@ -0,0 +1,4 @@
+/*!
+ * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.6.3');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
diff --git a/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/FontAwesome.otf b/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/FontAwesome.otf
new file mode 100644
index 00000000..d4de13e8
Binary files /dev/null and b/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/FontAwesome.otf differ
diff --git a/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.eot b/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.eot
new file mode 100644
index 00000000..c7b00d2b
Binary files /dev/null and b/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.eot differ
diff --git a/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.svg b/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.svg
new file mode 100644
index 00000000..8b66187f
--- /dev/null
+++ b/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.svg
@@ -0,0 +1,685 @@
+
+
+
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.ttf b/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.ttf
new file mode 100644
index 00000000..f221e50a
Binary files /dev/null and b/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.ttf differ
diff --git a/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.woff b/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.woff
new file mode 100644
index 00000000..6e7483cf
Binary files /dev/null and b/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.woff differ
diff --git a/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.woff2 b/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.woff2
new file mode 100644
index 00000000..7eb74fd1
Binary files /dev/null and b/build/dark/development/Rambox/resources/fonts/font-awesome/fonts/fontawesome-webfont.woff2 differ
diff --git a/build/dark/development/Rambox/resources/fonts/icomoon/icomoon.eot b/build/dark/development/Rambox/resources/fonts/icomoon/icomoon.eot
new file mode 100644
index 00000000..0d9f71a5
Binary files /dev/null and b/build/dark/development/Rambox/resources/fonts/icomoon/icomoon.eot differ
diff --git a/build/dark/development/Rambox/resources/fonts/icomoon/icomoon.svg b/build/dark/development/Rambox/resources/fonts/icomoon/icomoon.svg
new file mode 100644
index 00000000..360b0b0a
--- /dev/null
+++ b/build/dark/development/Rambox/resources/fonts/icomoon/icomoon.svg
@@ -0,0 +1,21 @@
+
+
+
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/fonts/icomoon/icomoon.ttf b/build/dark/development/Rambox/resources/fonts/icomoon/icomoon.ttf
new file mode 100644
index 00000000..fc7e5642
Binary files /dev/null and b/build/dark/development/Rambox/resources/fonts/icomoon/icomoon.ttf differ
diff --git a/build/dark/development/Rambox/resources/fonts/icomoon/icomoon.woff b/build/dark/development/Rambox/resources/fonts/icomoon/icomoon.woff
new file mode 100644
index 00000000..5b3c470a
Binary files /dev/null and b/build/dark/development/Rambox/resources/fonts/icomoon/icomoon.woff differ
diff --git a/build/dark/development/Rambox/resources/icons/allo.png b/build/dark/development/Rambox/resources/icons/allo.png
new file mode 100644
index 00000000..b87d4352
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/allo.png differ
diff --git a/build/dark/development/Rambox/resources/icons/amium.png b/build/dark/development/Rambox/resources/icons/amium.png
new file mode 100644
index 00000000..1a91c4fe
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/amium.png differ
diff --git a/build/dark/development/Rambox/resources/icons/aol.png b/build/dark/development/Rambox/resources/icons/aol.png
new file mode 100644
index 00000000..14d84a57
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/aol.png differ
diff --git a/build/dark/development/Rambox/resources/icons/bearychat.png b/build/dark/development/Rambox/resources/icons/bearychat.png
new file mode 100644
index 00000000..6e9286f3
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/bearychat.png differ
diff --git a/build/dark/development/Rambox/resources/icons/chatwork.png b/build/dark/development/Rambox/resources/icons/chatwork.png
new file mode 100644
index 00000000..110e9fb6
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/chatwork.png differ
diff --git a/build/dark/development/Rambox/resources/icons/ciscospark.png b/build/dark/development/Rambox/resources/icons/ciscospark.png
new file mode 100644
index 00000000..b71797d1
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/ciscospark.png differ
diff --git a/build/dark/development/Rambox/resources/icons/clocktweets.png b/build/dark/development/Rambox/resources/icons/clocktweets.png
new file mode 100644
index 00000000..e7ebe883
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/clocktweets.png differ
diff --git a/build/dark/development/Rambox/resources/icons/crisp.png b/build/dark/development/Rambox/resources/icons/crisp.png
new file mode 100644
index 00000000..1e6ad78a
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/crisp.png differ
diff --git a/build/dark/development/Rambox/resources/icons/custom.png b/build/dark/development/Rambox/resources/icons/custom.png
new file mode 100644
index 00000000..710acb6a
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/custom.png differ
diff --git a/build/dark/development/Rambox/resources/icons/dasher.png b/build/dark/development/Rambox/resources/icons/dasher.png
new file mode 100644
index 00000000..ac62a15b
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/dasher.png differ
diff --git a/build/dark/development/Rambox/resources/icons/dingtalk.png b/build/dark/development/Rambox/resources/icons/dingtalk.png
new file mode 100644
index 00000000..6eb6078d
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/dingtalk.png differ
diff --git a/build/dark/development/Rambox/resources/icons/discord.png b/build/dark/development/Rambox/resources/icons/discord.png
new file mode 100644
index 00000000..e32c9a99
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/discord.png differ
diff --git a/build/dark/development/Rambox/resources/icons/drift.png b/build/dark/development/Rambox/resources/icons/drift.png
new file mode 100644
index 00000000..c995a413
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/drift.png differ
diff --git a/build/dark/development/Rambox/resources/icons/fastmail.png b/build/dark/development/Rambox/resources/icons/fastmail.png
new file mode 100644
index 00000000..eb88ef67
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/fastmail.png differ
diff --git a/build/dark/development/Rambox/resources/icons/fleep.png b/build/dark/development/Rambox/resources/icons/fleep.png
new file mode 100644
index 00000000..5935aa0e
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/fleep.png differ
diff --git a/build/dark/development/Rambox/resources/icons/flock.png b/build/dark/development/Rambox/resources/icons/flock.png
new file mode 100644
index 00000000..d1d15e93
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/flock.png differ
diff --git a/build/dark/development/Rambox/resources/icons/flowdock.png b/build/dark/development/Rambox/resources/icons/flowdock.png
new file mode 100644
index 00000000..b1b6390e
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/flowdock.png differ
diff --git a/build/dark/development/Rambox/resources/icons/freenode.png b/build/dark/development/Rambox/resources/icons/freenode.png
new file mode 100644
index 00000000..0ac9d6e9
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/freenode.png differ
diff --git a/build/dark/development/Rambox/resources/icons/gadugadu.png b/build/dark/development/Rambox/resources/icons/gadugadu.png
new file mode 100644
index 00000000..0c4602c5
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/gadugadu.png differ
diff --git a/build/dark/development/Rambox/resources/icons/gitter.png b/build/dark/development/Rambox/resources/icons/gitter.png
new file mode 100644
index 00000000..caea49ec
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/gitter.png differ
diff --git a/build/dark/development/Rambox/resources/icons/glip.png b/build/dark/development/Rambox/resources/icons/glip.png
new file mode 100644
index 00000000..60797ea5
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/glip.png differ
diff --git a/build/dark/development/Rambox/resources/icons/gmail.png b/build/dark/development/Rambox/resources/icons/gmail.png
new file mode 100644
index 00000000..b21fef0c
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/gmail.png differ
diff --git a/build/dark/development/Rambox/resources/icons/googlevoice.png b/build/dark/development/Rambox/resources/icons/googlevoice.png
new file mode 100644
index 00000000..76682773
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/googlevoice.png differ
diff --git a/build/dark/development/Rambox/resources/icons/grape.png b/build/dark/development/Rambox/resources/icons/grape.png
new file mode 100644
index 00000000..c00a48c3
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/grape.png differ
diff --git a/build/dark/development/Rambox/resources/icons/groupme.png b/build/dark/development/Rambox/resources/icons/groupme.png
new file mode 100644
index 00000000..5a1f65e8
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/groupme.png differ
diff --git a/build/dark/development/Rambox/resources/icons/hangouts.png b/build/dark/development/Rambox/resources/icons/hangouts.png
new file mode 100644
index 00000000..0bf6e104
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/hangouts.png differ
diff --git a/build/dark/development/Rambox/resources/icons/hibox.png b/build/dark/development/Rambox/resources/icons/hibox.png
new file mode 100644
index 00000000..a848b341
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/hibox.png differ
diff --git a/build/dark/development/Rambox/resources/icons/hipchat.png b/build/dark/development/Rambox/resources/icons/hipchat.png
new file mode 100644
index 00000000..3d73faa6
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/hipchat.png differ
diff --git a/build/dark/development/Rambox/resources/icons/hootsuite.png b/build/dark/development/Rambox/resources/icons/hootsuite.png
new file mode 100644
index 00000000..8a1a94f3
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/hootsuite.png differ
diff --git a/build/dark/development/Rambox/resources/icons/horde.png b/build/dark/development/Rambox/resources/icons/horde.png
new file mode 100644
index 00000000..3cc036cf
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/horde.png differ
diff --git a/build/dark/development/Rambox/resources/icons/hushmail.png b/build/dark/development/Rambox/resources/icons/hushmail.png
new file mode 100644
index 00000000..a22643cd
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/hushmail.png differ
diff --git a/build/dark/development/Rambox/resources/icons/icloud.png b/build/dark/development/Rambox/resources/icons/icloud.png
new file mode 100644
index 00000000..8eddbb80
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/icloud.png differ
diff --git a/build/dark/development/Rambox/resources/icons/icq.png b/build/dark/development/Rambox/resources/icons/icq.png
new file mode 100644
index 00000000..c6f9ca4c
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/icq.png differ
diff --git a/build/dark/development/Rambox/resources/icons/inbox.png b/build/dark/development/Rambox/resources/icons/inbox.png
new file mode 100644
index 00000000..6f7a2f85
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/inbox.png differ
diff --git a/build/dark/development/Rambox/resources/icons/intercom.png b/build/dark/development/Rambox/resources/icons/intercom.png
new file mode 100644
index 00000000..3256f131
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/intercom.png differ
diff --git a/build/dark/development/Rambox/resources/icons/irccloud.png b/build/dark/development/Rambox/resources/icons/irccloud.png
new file mode 100644
index 00000000..60044c0a
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/irccloud.png differ
diff --git a/build/dark/development/Rambox/resources/icons/jandi.png b/build/dark/development/Rambox/resources/icons/jandi.png
new file mode 100644
index 00000000..830ac562
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/jandi.png differ
diff --git a/build/dark/development/Rambox/resources/icons/kaiwa.png b/build/dark/development/Rambox/resources/icons/kaiwa.png
new file mode 100644
index 00000000..fc16270b
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/kaiwa.png differ
diff --git a/build/dark/development/Rambox/resources/icons/kezmo.png b/build/dark/development/Rambox/resources/icons/kezmo.png
new file mode 100644
index 00000000..0b68e62e
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/kezmo.png differ
diff --git a/build/dark/development/Rambox/resources/icons/kiwi.png b/build/dark/development/Rambox/resources/icons/kiwi.png
new file mode 100644
index 00000000..dbff10a3
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/kiwi.png differ
diff --git a/build/dark/development/Rambox/resources/icons/kune.png b/build/dark/development/Rambox/resources/icons/kune.png
new file mode 100644
index 00000000..fc812548
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/kune.png differ
diff --git a/build/dark/development/Rambox/resources/icons/linkedin.png b/build/dark/development/Rambox/resources/icons/linkedin.png
new file mode 100644
index 00000000..38d92f5e
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/linkedin.png differ
diff --git a/build/dark/development/Rambox/resources/icons/lounge.png b/build/dark/development/Rambox/resources/icons/lounge.png
new file mode 100644
index 00000000..3ed196b0
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/lounge.png differ
diff --git a/build/dark/development/Rambox/resources/icons/mailru.png b/build/dark/development/Rambox/resources/icons/mailru.png
new file mode 100644
index 00000000..c79ec1fe
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/mailru.png differ
diff --git a/build/dark/development/Rambox/resources/icons/mastodon.png b/build/dark/development/Rambox/resources/icons/mastodon.png
new file mode 100644
index 00000000..7d62e371
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/mastodon.png differ
diff --git a/build/dark/development/Rambox/resources/icons/mattermost.png b/build/dark/development/Rambox/resources/icons/mattermost.png
new file mode 100644
index 00000000..a4bce628
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/mattermost.png differ
diff --git a/build/dark/development/Rambox/resources/icons/messenger.png b/build/dark/development/Rambox/resources/icons/messenger.png
new file mode 100644
index 00000000..f09954d2
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/messenger.png differ
diff --git a/build/dark/development/Rambox/resources/icons/messengerpages.png b/build/dark/development/Rambox/resources/icons/messengerpages.png
new file mode 100644
index 00000000..f30486c4
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/messengerpages.png differ
diff --git a/build/dark/development/Rambox/resources/icons/mightytext.png b/build/dark/development/Rambox/resources/icons/mightytext.png
new file mode 100644
index 00000000..475ea1c4
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/mightytext.png differ
diff --git a/build/dark/development/Rambox/resources/icons/missive.png b/build/dark/development/Rambox/resources/icons/missive.png
new file mode 100644
index 00000000..420cc5c7
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/missive.png differ
diff --git a/build/dark/development/Rambox/resources/icons/mmmelon.png b/build/dark/development/Rambox/resources/icons/mmmelon.png
new file mode 100644
index 00000000..aadf806c
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/mmmelon.png differ
diff --git a/build/dark/development/Rambox/resources/icons/movim.png b/build/dark/development/Rambox/resources/icons/movim.png
new file mode 100644
index 00000000..8840297b
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/movim.png differ
diff --git a/build/dark/development/Rambox/resources/icons/mysms.png b/build/dark/development/Rambox/resources/icons/mysms.png
new file mode 100644
index 00000000..a99ae87e
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/mysms.png differ
diff --git a/build/dark/development/Rambox/resources/icons/noysi.png b/build/dark/development/Rambox/resources/icons/noysi.png
new file mode 100644
index 00000000..1128dda1
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/noysi.png differ
diff --git a/build/dark/development/Rambox/resources/icons/office365.png b/build/dark/development/Rambox/resources/icons/office365.png
new file mode 100644
index 00000000..90890852
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/office365.png differ
diff --git a/build/dark/development/Rambox/resources/icons/openmailbox.png b/build/dark/development/Rambox/resources/icons/openmailbox.png
new file mode 100644
index 00000000..c4d59c78
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/openmailbox.png differ
diff --git a/build/dark/development/Rambox/resources/icons/outlook.png b/build/dark/development/Rambox/resources/icons/outlook.png
new file mode 100644
index 00000000..9477f695
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/outlook.png differ
diff --git a/build/dark/development/Rambox/resources/icons/outlook365.png b/build/dark/development/Rambox/resources/icons/outlook365.png
new file mode 100644
index 00000000..10765276
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/outlook365.png differ
diff --git a/build/dark/development/Rambox/resources/icons/protonmail.png b/build/dark/development/Rambox/resources/icons/protonmail.png
new file mode 100644
index 00000000..19fb052b
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/protonmail.png differ
diff --git a/build/dark/development/Rambox/resources/icons/pushbullet.png b/build/dark/development/Rambox/resources/icons/pushbullet.png
new file mode 100644
index 00000000..c0243f1a
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/pushbullet.png differ
diff --git a/build/dark/development/Rambox/resources/icons/rainloop.png b/build/dark/development/Rambox/resources/icons/rainloop.png
new file mode 100644
index 00000000..c66a381c
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/rainloop.png differ
diff --git a/build/dark/development/Rambox/resources/icons/riot.png b/build/dark/development/Rambox/resources/icons/riot.png
new file mode 100644
index 00000000..1a80ae1d
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/riot.png differ
diff --git a/build/dark/development/Rambox/resources/icons/rocketchat.png b/build/dark/development/Rambox/resources/icons/rocketchat.png
new file mode 100644
index 00000000..da74f2a1
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/rocketchat.png differ
diff --git a/build/dark/development/Rambox/resources/icons/roundcube.png b/build/dark/development/Rambox/resources/icons/roundcube.png
new file mode 100644
index 00000000..e0b780b8
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/roundcube.png differ
diff --git a/build/dark/development/Rambox/resources/icons/ryver.png b/build/dark/development/Rambox/resources/icons/ryver.png
new file mode 100644
index 00000000..f1f6c36f
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/ryver.png differ
diff --git a/build/dark/development/Rambox/resources/icons/sandstorm.png b/build/dark/development/Rambox/resources/icons/sandstorm.png
new file mode 100644
index 00000000..e41f5580
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/sandstorm.png differ
diff --git a/build/dark/development/Rambox/resources/icons/skype.png b/build/dark/development/Rambox/resources/icons/skype.png
new file mode 100644
index 00000000..74c5629f
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/skype.png differ
diff --git a/build/dark/development/Rambox/resources/icons/slack.png b/build/dark/development/Rambox/resources/icons/slack.png
new file mode 100644
index 00000000..bbdd3a55
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/slack.png differ
diff --git a/build/dark/development/Rambox/resources/icons/smooch.png b/build/dark/development/Rambox/resources/icons/smooch.png
new file mode 100644
index 00000000..360cbbde
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/smooch.png differ
diff --git a/build/dark/development/Rambox/resources/icons/socialcast.png b/build/dark/development/Rambox/resources/icons/socialcast.png
new file mode 100644
index 00000000..ddb3f99b
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/socialcast.png differ
diff --git a/build/dark/development/Rambox/resources/icons/spark.png b/build/dark/development/Rambox/resources/icons/spark.png
new file mode 100644
index 00000000..f6efbe49
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/spark.png differ
diff --git a/build/dark/development/Rambox/resources/icons/squirrelmail.png b/build/dark/development/Rambox/resources/icons/squirrelmail.png
new file mode 100644
index 00000000..7c8b5bf8
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/squirrelmail.png differ
diff --git a/build/dark/development/Rambox/resources/icons/steam.png b/build/dark/development/Rambox/resources/icons/steam.png
new file mode 100644
index 00000000..0bfdb482
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/steam.png differ
diff --git a/build/dark/development/Rambox/resources/icons/sync.png b/build/dark/development/Rambox/resources/icons/sync.png
new file mode 100644
index 00000000..8ce4fa2f
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/sync.png differ
diff --git a/build/dark/development/Rambox/resources/icons/teams.png b/build/dark/development/Rambox/resources/icons/teams.png
new file mode 100644
index 00000000..228cebf2
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/teams.png differ
diff --git a/build/dark/development/Rambox/resources/icons/teamworkchat.png b/build/dark/development/Rambox/resources/icons/teamworkchat.png
new file mode 100644
index 00000000..36df5104
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/teamworkchat.png differ
diff --git a/build/dark/development/Rambox/resources/icons/telegram.png b/build/dark/development/Rambox/resources/icons/telegram.png
new file mode 100644
index 00000000..3afc72fb
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/telegram.png differ
diff --git a/build/dark/development/Rambox/resources/icons/threema.png b/build/dark/development/Rambox/resources/icons/threema.png
new file mode 100644
index 00000000..9d39ef35
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/threema.png differ
diff --git a/build/dark/development/Rambox/resources/icons/tutanota.png b/build/dark/development/Rambox/resources/icons/tutanota.png
new file mode 100644
index 00000000..9e526c85
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/tutanota.png differ
diff --git a/build/dark/development/Rambox/resources/icons/tweetdeck.png b/build/dark/development/Rambox/resources/icons/tweetdeck.png
new file mode 100644
index 00000000..aec50613
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/tweetdeck.png differ
diff --git a/build/dark/development/Rambox/resources/icons/typetalk.png b/build/dark/development/Rambox/resources/icons/typetalk.png
new file mode 100644
index 00000000..9a8ea317
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/typetalk.png differ
diff --git a/build/dark/development/Rambox/resources/icons/vk.png b/build/dark/development/Rambox/resources/icons/vk.png
new file mode 100644
index 00000000..eddf807c
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/vk.png differ
diff --git a/build/dark/development/Rambox/resources/icons/voxer.png b/build/dark/development/Rambox/resources/icons/voxer.png
new file mode 100644
index 00000000..acfd2c6f
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/voxer.png differ
diff --git a/build/dark/development/Rambox/resources/icons/wechat.png b/build/dark/development/Rambox/resources/icons/wechat.png
new file mode 100644
index 00000000..a34729a9
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/wechat.png differ
diff --git a/build/dark/development/Rambox/resources/icons/whatsapp.png b/build/dark/development/Rambox/resources/icons/whatsapp.png
new file mode 100644
index 00000000..2900d782
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/whatsapp.png differ
diff --git a/build/dark/development/Rambox/resources/icons/wire.png b/build/dark/development/Rambox/resources/icons/wire.png
new file mode 100644
index 00000000..e327e514
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/wire.png differ
diff --git a/build/dark/development/Rambox/resources/icons/workplace.png b/build/dark/development/Rambox/resources/icons/workplace.png
new file mode 100644
index 00000000..5af90dd2
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/workplace.png differ
diff --git a/build/dark/development/Rambox/resources/icons/xing.png b/build/dark/development/Rambox/resources/icons/xing.png
new file mode 100644
index 00000000..cbf2e1fe
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/xing.png differ
diff --git a/build/dark/development/Rambox/resources/icons/yahoo.png b/build/dark/development/Rambox/resources/icons/yahoo.png
new file mode 100644
index 00000000..6356877a
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/yahoo.png differ
diff --git a/build/dark/development/Rambox/resources/icons/yahoomessenger.png b/build/dark/development/Rambox/resources/icons/yahoomessenger.png
new file mode 100644
index 00000000..93997132
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/yahoomessenger.png differ
diff --git a/build/dark/development/Rambox/resources/icons/yandex.png b/build/dark/development/Rambox/resources/icons/yandex.png
new file mode 100644
index 00000000..8bfbc7f3
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/yandex.png differ
diff --git a/build/dark/development/Rambox/resources/icons/zimbra.png b/build/dark/development/Rambox/resources/icons/zimbra.png
new file mode 100644
index 00000000..388d6b8c
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/zimbra.png differ
diff --git a/build/dark/development/Rambox/resources/icons/zinc.png b/build/dark/development/Rambox/resources/icons/zinc.png
new file mode 100644
index 00000000..7991b6f9
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/zinc.png differ
diff --git a/build/dark/development/Rambox/resources/icons/zohochat.png b/build/dark/development/Rambox/resources/icons/zohochat.png
new file mode 100644
index 00000000..fe7f677c
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/zohochat.png differ
diff --git a/build/dark/development/Rambox/resources/icons/zohoemail.png b/build/dark/development/Rambox/resources/icons/zohoemail.png
new file mode 100644
index 00000000..70ec5137
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/zohoemail.png differ
diff --git a/build/dark/development/Rambox/resources/icons/zulip.png b/build/dark/development/Rambox/resources/icons/zulip.png
new file mode 100644
index 00000000..e6fe8ab4
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/zulip.png differ
diff --git a/build/dark/development/Rambox/resources/icons/zyptonite.png b/build/dark/development/Rambox/resources/icons/zyptonite.png
new file mode 100644
index 00000000..73369679
Binary files /dev/null and b/build/dark/development/Rambox/resources/icons/zyptonite.png differ
diff --git a/build/dark/development/Rambox/resources/images/breadcrumb/default-arrow-open-rtl.png b/build/dark/development/Rambox/resources/images/breadcrumb/default-arrow-open-rtl.png
new file mode 100644
index 00000000..e15277ea
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/breadcrumb/default-arrow-open-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/breadcrumb/default-arrow-open.png b/build/dark/development/Rambox/resources/images/breadcrumb/default-arrow-open.png
new file mode 100644
index 00000000..833d0daa
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/breadcrumb/default-arrow-open.png differ
diff --git a/build/dark/development/Rambox/resources/images/breadcrumb/default-arrow-rtl.png b/build/dark/development/Rambox/resources/images/breadcrumb/default-arrow-rtl.png
new file mode 100644
index 00000000..d96a18ed
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/breadcrumb/default-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/breadcrumb/default-arrow.png b/build/dark/development/Rambox/resources/images/breadcrumb/default-arrow.png
new file mode 100644
index 00000000..21230357
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/breadcrumb/default-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/breadcrumb/default-scroll-left.png b/build/dark/development/Rambox/resources/images/breadcrumb/default-scroll-left.png
new file mode 100644
index 00000000..9d96ae2e
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/breadcrumb/default-scroll-left.png differ
diff --git a/build/dark/development/Rambox/resources/images/breadcrumb/default-scroll-right.png b/build/dark/development/Rambox/resources/images/breadcrumb/default-scroll-right.png
new file mode 100644
index 00000000..b741af22
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/breadcrumb/default-scroll-right.png differ
diff --git a/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-open-rtl.png b/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-open-rtl.png
new file mode 100644
index 00000000..b9b63b6a
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-open-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-open.png b/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-open.png
new file mode 100644
index 00000000..4c51240d
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-open.png differ
diff --git a/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-over-rtl.png b/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-over-rtl.png
new file mode 100644
index 00000000..d78bc89b
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-over-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-over.png b/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-over.png
new file mode 100644
index 00000000..d258b660
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-over.png differ
diff --git a/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-rtl.png b/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-rtl.png
new file mode 100644
index 00000000..0b911820
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow.png b/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow.png
new file mode 100644
index 00000000..90621eaf
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/breadcrumb/default-split-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-large-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/default-large-arrow-rtl.png
new file mode 100644
index 00000000..f2c12021
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-large-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-large-arrow.png b/build/dark/development/Rambox/resources/images/button/default-large-arrow.png
new file mode 100644
index 00000000..1eda80bd
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-large-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-large-s-arrow-b-rtl.png b/build/dark/development/Rambox/resources/images/button/default-large-s-arrow-b-rtl.png
new file mode 100644
index 00000000..aa95f468
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-large-s-arrow-b-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-large-s-arrow-b.png b/build/dark/development/Rambox/resources/images/button/default-large-s-arrow-b.png
new file mode 100644
index 00000000..efde40e7
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-large-s-arrow-b.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-large-s-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/default-large-s-arrow-rtl.png
new file mode 100644
index 00000000..81d24744
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-large-s-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-large-s-arrow.png b/build/dark/development/Rambox/resources/images/button/default-large-s-arrow.png
new file mode 100644
index 00000000..7d25019f
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-large-s-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-medium-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/default-medium-arrow-rtl.png
new file mode 100644
index 00000000..0863de4f
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-medium-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-medium-arrow.png b/build/dark/development/Rambox/resources/images/button/default-medium-arrow.png
new file mode 100644
index 00000000..c7cf5cbd
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-medium-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-medium-s-arrow-b-rtl.png b/build/dark/development/Rambox/resources/images/button/default-medium-s-arrow-b-rtl.png
new file mode 100644
index 00000000..e05da4b9
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-medium-s-arrow-b-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-medium-s-arrow-b.png b/build/dark/development/Rambox/resources/images/button/default-medium-s-arrow-b.png
new file mode 100644
index 00000000..8573de9c
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-medium-s-arrow-b.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-medium-s-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/default-medium-s-arrow-rtl.png
new file mode 100644
index 00000000..83434aae
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-medium-s-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-medium-s-arrow.png b/build/dark/development/Rambox/resources/images/button/default-medium-s-arrow.png
new file mode 100644
index 00000000..1fcec224
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-medium-s-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-small-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/default-small-arrow-rtl.png
new file mode 100644
index 00000000..f4871da7
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-small-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-small-arrow.png b/build/dark/development/Rambox/resources/images/button/default-small-arrow.png
new file mode 100644
index 00000000..de8fcccb
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-small-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-small-s-arrow-b-rtl.png b/build/dark/development/Rambox/resources/images/button/default-small-s-arrow-b-rtl.png
new file mode 100644
index 00000000..f0e3b0ae
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-small-s-arrow-b-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-small-s-arrow-b.png b/build/dark/development/Rambox/resources/images/button/default-small-s-arrow-b.png
new file mode 100644
index 00000000..b33a0b0c
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-small-s-arrow-b.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-small-s-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/default-small-s-arrow-rtl.png
new file mode 100644
index 00000000..2de176a9
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-small-s-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-small-s-arrow.png b/build/dark/development/Rambox/resources/images/button/default-small-s-arrow.png
new file mode 100644
index 00000000..f7dec83c
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-small-s-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-large-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-large-arrow-rtl.png
new file mode 100644
index 00000000..ec1d908a
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-large-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-large-arrow.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-large-arrow.png
new file mode 100644
index 00000000..7dcd4de3
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-large-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-large-s-arrow-b-rtl.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-large-s-arrow-b-rtl.png
new file mode 100644
index 00000000..379d2d9f
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-large-s-arrow-b-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-large-s-arrow-b.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-large-s-arrow-b.png
new file mode 100644
index 00000000..54f3dd55
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-large-s-arrow-b.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-large-s-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-large-s-arrow-rtl.png
new file mode 100644
index 00000000..9b52d5b3
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-large-s-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-large-s-arrow.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-large-s-arrow.png
new file mode 100644
index 00000000..003417a7
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-large-s-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-arrow-rtl.png
new file mode 100644
index 00000000..e4e8342d
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-arrow.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-arrow.png
new file mode 100644
index 00000000..b573c0c4
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-s-arrow-b-rtl.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-s-arrow-b-rtl.png
new file mode 100644
index 00000000..3678da35
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-s-arrow-b-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-s-arrow-b.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-s-arrow-b.png
new file mode 100644
index 00000000..7536cf20
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-s-arrow-b.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-s-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-s-arrow-rtl.png
new file mode 100644
index 00000000..81cc241f
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-s-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-s-arrow.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-s-arrow.png
new file mode 100644
index 00000000..4a34fe40
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-medium-s-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-small-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-small-arrow-rtl.png
new file mode 100644
index 00000000..b5bca15a
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-small-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-small-arrow.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-small-arrow.png
new file mode 100644
index 00000000..5b64e450
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-small-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-small-s-arrow-b-rtl.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-small-s-arrow-b-rtl.png
new file mode 100644
index 00000000..44307a62
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-small-s-arrow-b-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-small-s-arrow-b.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-small-s-arrow-b.png
new file mode 100644
index 00000000..48c52efe
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-small-s-arrow-b.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-small-s-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-small-s-arrow-rtl.png
new file mode 100644
index 00000000..e0b0102f
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-small-s-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/default-toolbar-small-s-arrow.png b/build/dark/development/Rambox/resources/images/button/default-toolbar-small-s-arrow.png
new file mode 100644
index 00000000..26982178
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/default-toolbar-small-s-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/grid-cell-small-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/grid-cell-small-arrow-rtl.png
new file mode 100644
index 00000000..a59643d6
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/grid-cell-small-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/grid-cell-small-arrow.png b/build/dark/development/Rambox/resources/images/button/grid-cell-small-arrow.png
new file mode 100644
index 00000000..a444189c
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/grid-cell-small-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/grid-cell-small-s-arrow-b.png b/build/dark/development/Rambox/resources/images/button/grid-cell-small-s-arrow-b.png
new file mode 100644
index 00000000..6b333844
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/grid-cell-small-s-arrow-b.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/grid-cell-small-s-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/grid-cell-small-s-arrow-rtl.png
new file mode 100644
index 00000000..23d258db
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/grid-cell-small-s-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/grid-cell-small-s-arrow.png b/build/dark/development/Rambox/resources/images/button/grid-cell-small-s-arrow.png
new file mode 100644
index 00000000..83b1f277
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/grid-cell-small-s-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-arrow-rtl.png
new file mode 100644
index 00000000..d9bfbb80
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-arrow.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-arrow.png
new file mode 100644
index 00000000..7dcd4de3
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-s-arrow-b-rtl.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-s-arrow-b-rtl.png
new file mode 100644
index 00000000..5fe042d7
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-s-arrow-b-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-s-arrow-b.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-s-arrow-b.png
new file mode 100644
index 00000000..54f3dd55
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-s-arrow-b.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-s-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-s-arrow-rtl.png
new file mode 100644
index 00000000..c19f1267
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-s-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-s-arrow.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-s-arrow.png
new file mode 100644
index 00000000..003417a7
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-large-s-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-arrow-rtl.png
new file mode 100644
index 00000000..84b91cba
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-arrow.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-arrow.png
new file mode 100644
index 00000000..b573c0c4
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-s-arrow-b-rtl.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-s-arrow-b-rtl.png
new file mode 100644
index 00000000..a8eec040
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-s-arrow-b-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-s-arrow-b.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-s-arrow-b.png
new file mode 100644
index 00000000..7536cf20
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-s-arrow-b.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-s-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-s-arrow-rtl.png
new file mode 100644
index 00000000..bd9c85b6
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-s-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-s-arrow.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-s-arrow.png
new file mode 100644
index 00000000..4a34fe40
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-medium-s-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-arrow-rtl.png
new file mode 100644
index 00000000..57ce6aac
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-arrow.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-arrow.png
new file mode 100644
index 00000000..5b64e450
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-s-arrow-b-rtl.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-s-arrow-b-rtl.png
new file mode 100644
index 00000000..ace54867
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-s-arrow-b-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-s-arrow-b.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-s-arrow-b.png
new file mode 100644
index 00000000..48c52efe
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-s-arrow-b.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-s-arrow-rtl.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-s-arrow-rtl.png
new file mode 100644
index 00000000..322eb932
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-s-arrow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-s-arrow.png b/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-s-arrow.png
new file mode 100644
index 00000000..26982178
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/button/plain-toolbar-small-s-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/datepicker/arrow-left.png b/build/dark/development/Rambox/resources/images/datepicker/arrow-left.png
new file mode 100644
index 00000000..5b477cca
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/datepicker/arrow-left.png differ
diff --git a/build/dark/development/Rambox/resources/images/datepicker/arrow-right.png b/build/dark/development/Rambox/resources/images/datepicker/arrow-right.png
new file mode 100644
index 00000000..2e1a235d
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/datepicker/arrow-right.png differ
diff --git a/build/dark/development/Rambox/resources/images/datepicker/month-arrow.png b/build/dark/development/Rambox/resources/images/datepicker/month-arrow.png
new file mode 100644
index 00000000..5f878122
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/datepicker/month-arrow.png differ
diff --git a/build/dark/development/Rambox/resources/images/dd/drop-add.png b/build/dark/development/Rambox/resources/images/dd/drop-add.png
new file mode 100644
index 00000000..a7b8f28d
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/dd/drop-add.png differ
diff --git a/build/dark/development/Rambox/resources/images/dd/drop-no.png b/build/dark/development/Rambox/resources/images/dd/drop-no.png
new file mode 100644
index 00000000..02e219a1
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/dd/drop-no.png differ
diff --git a/build/dark/development/Rambox/resources/images/dd/drop-yes.png b/build/dark/development/Rambox/resources/images/dd/drop-yes.png
new file mode 100644
index 00000000..a7b8f28d
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/dd/drop-yes.png differ
diff --git a/build/dark/development/Rambox/resources/images/editor/tb-sprite.png b/build/dark/development/Rambox/resources/images/editor/tb-sprite.png
new file mode 100644
index 00000000..d8c872f8
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/editor/tb-sprite.png differ
diff --git a/build/dark/development/Rambox/resources/images/fieldset/collapse-tool.png b/build/dark/development/Rambox/resources/images/fieldset/collapse-tool.png
new file mode 100644
index 00000000..56d50b0b
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/fieldset/collapse-tool.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/checkbox.png b/build/dark/development/Rambox/resources/images/form/checkbox.png
new file mode 100644
index 00000000..e0411ded
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/checkbox.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/clear-trigger-rtl.png b/build/dark/development/Rambox/resources/images/form/clear-trigger-rtl.png
new file mode 100644
index 00000000..5092eead
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/clear-trigger-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/clear-trigger.png b/build/dark/development/Rambox/resources/images/form/clear-trigger.png
new file mode 100644
index 00000000..5092eead
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/clear-trigger.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/date-trigger-rtl.png b/build/dark/development/Rambox/resources/images/form/date-trigger-rtl.png
new file mode 100644
index 00000000..b2064a6b
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/date-trigger-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/date-trigger.png b/build/dark/development/Rambox/resources/images/form/date-trigger.png
new file mode 100644
index 00000000..b2064a6b
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/date-trigger.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/exclamation.png b/build/dark/development/Rambox/resources/images/form/exclamation.png
new file mode 100644
index 00000000..d0bd74d1
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/exclamation.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/radio.png b/build/dark/development/Rambox/resources/images/form/radio.png
new file mode 100644
index 00000000..fef5ab54
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/radio.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/search-trigger-rtl.png b/build/dark/development/Rambox/resources/images/form/search-trigger-rtl.png
new file mode 100644
index 00000000..88ddcbb0
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/search-trigger-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/search-trigger.png b/build/dark/development/Rambox/resources/images/form/search-trigger.png
new file mode 100644
index 00000000..88ddcbb0
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/search-trigger.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/spinner-down-rtl.png b/build/dark/development/Rambox/resources/images/form/spinner-down-rtl.png
new file mode 100644
index 00000000..b50f7c2d
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/spinner-down-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/spinner-down.png b/build/dark/development/Rambox/resources/images/form/spinner-down.png
new file mode 100644
index 00000000..b50f7c2d
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/spinner-down.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/spinner-rtl.png b/build/dark/development/Rambox/resources/images/form/spinner-rtl.png
new file mode 100644
index 00000000..ab16678b
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/spinner-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/spinner-up-rtl.png b/build/dark/development/Rambox/resources/images/form/spinner-up-rtl.png
new file mode 100644
index 00000000..d5800c2a
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/spinner-up-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/spinner-up.png b/build/dark/development/Rambox/resources/images/form/spinner-up.png
new file mode 100644
index 00000000..d5800c2a
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/spinner-up.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/spinner.png b/build/dark/development/Rambox/resources/images/form/spinner.png
new file mode 100644
index 00000000..ab16678b
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/spinner.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/tag-field-item-close.png b/build/dark/development/Rambox/resources/images/form/tag-field-item-close.png
new file mode 100644
index 00000000..4ceb8d9f
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/tag-field-item-close.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/trigger-rtl.png b/build/dark/development/Rambox/resources/images/form/trigger-rtl.png
new file mode 100644
index 00000000..41897db2
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/trigger-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/form/trigger.png b/build/dark/development/Rambox/resources/images/form/trigger.png
new file mode 100644
index 00000000..41897db2
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/form/trigger.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/col-move-bottom.png b/build/dark/development/Rambox/resources/images/grid/col-move-bottom.png
new file mode 100644
index 00000000..97822194
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/col-move-bottom.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/col-move-top.png b/build/dark/development/Rambox/resources/images/grid/col-move-top.png
new file mode 100644
index 00000000..6e28535a
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/col-move-top.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/columns.png b/build/dark/development/Rambox/resources/images/grid/columns.png
new file mode 100644
index 00000000..02c0a5e5
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/columns.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/dd-insert-arrow-left.png b/build/dark/development/Rambox/resources/images/grid/dd-insert-arrow-left.png
new file mode 100644
index 00000000..e8177d05
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/dd-insert-arrow-left.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/dd-insert-arrow-right.png b/build/dark/development/Rambox/resources/images/grid/dd-insert-arrow-right.png
new file mode 100644
index 00000000..d610f9d5
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/dd-insert-arrow-right.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/dirty-rtl.png b/build/dark/development/Rambox/resources/images/grid/dirty-rtl.png
new file mode 100644
index 00000000..5f841228
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/dirty-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/dirty.png b/build/dark/development/Rambox/resources/images/grid/dirty.png
new file mode 100644
index 00000000..fc06fdde
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/dirty.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/drop-no.png b/build/dark/development/Rambox/resources/images/grid/drop-no.png
new file mode 100644
index 00000000..02e219a1
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/drop-no.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/drop-yes.png b/build/dark/development/Rambox/resources/images/grid/drop-yes.png
new file mode 100644
index 00000000..a7b8f28d
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/drop-yes.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/filters/equals.png b/build/dark/development/Rambox/resources/images/grid/filters/equals.png
new file mode 100644
index 00000000..1e7c09c8
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/filters/equals.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/filters/find.png b/build/dark/development/Rambox/resources/images/grid/filters/find.png
new file mode 100644
index 00000000..4617054c
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/filters/find.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/filters/greater_than.png b/build/dark/development/Rambox/resources/images/grid/filters/greater_than.png
new file mode 100644
index 00000000..6a5782e6
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/filters/greater_than.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/filters/less_than.png b/build/dark/development/Rambox/resources/images/grid/filters/less_than.png
new file mode 100644
index 00000000..376d8fad
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/filters/less_than.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/group-by.png b/build/dark/development/Rambox/resources/images/grid/group-by.png
new file mode 100644
index 00000000..d5904526
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/group-by.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/group-collapse.png b/build/dark/development/Rambox/resources/images/grid/group-collapse.png
new file mode 100644
index 00000000..763837da
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/group-collapse.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/group-expand.png b/build/dark/development/Rambox/resources/images/grid/group-expand.png
new file mode 100644
index 00000000..eb130654
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/group-expand.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/hd-pop.png b/build/dark/development/Rambox/resources/images/grid/hd-pop.png
new file mode 100644
index 00000000..b22131d0
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/hd-pop.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/hmenu-asc.png b/build/dark/development/Rambox/resources/images/grid/hmenu-asc.png
new file mode 100644
index 00000000..eddf15e5
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/hmenu-asc.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/hmenu-desc.png b/build/dark/development/Rambox/resources/images/grid/hmenu-desc.png
new file mode 100644
index 00000000..5b1ec3bf
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/hmenu-desc.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/hmenu-lock.png b/build/dark/development/Rambox/resources/images/grid/hmenu-lock.png
new file mode 100644
index 00000000..2502ff91
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/hmenu-lock.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/hmenu-unlock.png b/build/dark/development/Rambox/resources/images/grid/hmenu-unlock.png
new file mode 100644
index 00000000..ff433b2e
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/hmenu-unlock.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/loading.gif b/build/dark/development/Rambox/resources/images/grid/loading.gif
new file mode 100644
index 00000000..81b0f125
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/loading.gif differ
diff --git a/build/dark/development/Rambox/resources/images/grid/page-first.png b/build/dark/development/Rambox/resources/images/grid/page-first.png
new file mode 100644
index 00000000..bb70ddc0
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/page-first.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/page-last.png b/build/dark/development/Rambox/resources/images/grid/page-last.png
new file mode 100644
index 00000000..ccdadc13
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/page-last.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/page-next.png b/build/dark/development/Rambox/resources/images/grid/page-next.png
new file mode 100644
index 00000000..9904f950
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/page-next.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/page-prev.png b/build/dark/development/Rambox/resources/images/grid/page-prev.png
new file mode 100644
index 00000000..bdcf9a6c
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/page-prev.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/pick-button.png b/build/dark/development/Rambox/resources/images/grid/pick-button.png
new file mode 100644
index 00000000..acafacef
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/pick-button.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/refresh.png b/build/dark/development/Rambox/resources/images/grid/refresh.png
new file mode 100644
index 00000000..4079262b
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/refresh.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/sort_asc.png b/build/dark/development/Rambox/resources/images/grid/sort_asc.png
new file mode 100644
index 00000000..5feaa994
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/sort_asc.png differ
diff --git a/build/dark/development/Rambox/resources/images/grid/sort_desc.png b/build/dark/development/Rambox/resources/images/grid/sort_desc.png
new file mode 100644
index 00000000..0e61c243
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/grid/sort_desc.png differ
diff --git a/build/dark/development/Rambox/resources/images/loadmask/loading.gif b/build/dark/development/Rambox/resources/images/loadmask/loading.gif
new file mode 100644
index 00000000..8471b4f0
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/loadmask/loading.gif differ
diff --git a/build/dark/development/Rambox/resources/images/magnify.png b/build/dark/development/Rambox/resources/images/magnify.png
new file mode 100644
index 00000000..b807c42a
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/magnify.png differ
diff --git a/build/dark/development/Rambox/resources/images/menu/default-checked.png b/build/dark/development/Rambox/resources/images/menu/default-checked.png
new file mode 100644
index 00000000..8fe0a203
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/menu/default-checked.png differ
diff --git a/build/dark/development/Rambox/resources/images/menu/default-group-checked.png b/build/dark/development/Rambox/resources/images/menu/default-group-checked.png
new file mode 100644
index 00000000..02c455cf
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/menu/default-group-checked.png differ
diff --git a/build/dark/development/Rambox/resources/images/menu/default-menu-parent-left.png b/build/dark/development/Rambox/resources/images/menu/default-menu-parent-left.png
new file mode 100644
index 00000000..14c0c330
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/menu/default-menu-parent-left.png differ
diff --git a/build/dark/development/Rambox/resources/images/menu/default-menu-parent.png b/build/dark/development/Rambox/resources/images/menu/default-menu-parent.png
new file mode 100644
index 00000000..4e4477ac
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/menu/default-menu-parent.png differ
diff --git a/build/dark/development/Rambox/resources/images/menu/default-scroll-bottom.png b/build/dark/development/Rambox/resources/images/menu/default-scroll-bottom.png
new file mode 100644
index 00000000..8574124c
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/menu/default-scroll-bottom.png differ
diff --git a/build/dark/development/Rambox/resources/images/menu/default-scroll-top.png b/build/dark/development/Rambox/resources/images/menu/default-scroll-top.png
new file mode 100644
index 00000000..4d0b4647
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/menu/default-scroll-top.png differ
diff --git a/build/dark/development/Rambox/resources/images/menu/default-unchecked.png b/build/dark/development/Rambox/resources/images/menu/default-unchecked.png
new file mode 100644
index 00000000..db739033
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/menu/default-unchecked.png differ
diff --git a/build/dark/development/Rambox/resources/images/shared/icon-error.png b/build/dark/development/Rambox/resources/images/shared/icon-error.png
new file mode 100644
index 00000000..a34a5940
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/shared/icon-error.png differ
diff --git a/build/dark/development/Rambox/resources/images/shared/icon-info.png b/build/dark/development/Rambox/resources/images/shared/icon-info.png
new file mode 100644
index 00000000..8a01a467
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/shared/icon-info.png differ
diff --git a/build/dark/development/Rambox/resources/images/shared/icon-question.png b/build/dark/development/Rambox/resources/images/shared/icon-question.png
new file mode 100644
index 00000000..8411a757
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/shared/icon-question.png differ
diff --git a/build/dark/development/Rambox/resources/images/shared/icon-warning.png b/build/dark/development/Rambox/resources/images/shared/icon-warning.png
new file mode 100644
index 00000000..461c60c7
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/shared/icon-warning.png differ
diff --git a/build/dark/development/Rambox/resources/images/sizer/e-handle.png b/build/dark/development/Rambox/resources/images/sizer/e-handle.png
new file mode 100644
index 00000000..2fe5cb15
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/sizer/e-handle.png differ
diff --git a/build/dark/development/Rambox/resources/images/sizer/ne-handle.png b/build/dark/development/Rambox/resources/images/sizer/ne-handle.png
new file mode 100644
index 00000000..8d8eb638
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/sizer/ne-handle.png differ
diff --git a/build/dark/development/Rambox/resources/images/sizer/nw-handle.png b/build/dark/development/Rambox/resources/images/sizer/nw-handle.png
new file mode 100644
index 00000000..9835bea8
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/sizer/nw-handle.png differ
diff --git a/build/dark/development/Rambox/resources/images/sizer/s-handle.png b/build/dark/development/Rambox/resources/images/sizer/s-handle.png
new file mode 100644
index 00000000..06f914e7
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/sizer/s-handle.png differ
diff --git a/build/dark/development/Rambox/resources/images/sizer/se-handle.png b/build/dark/development/Rambox/resources/images/sizer/se-handle.png
new file mode 100644
index 00000000..5a2c695c
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/sizer/se-handle.png differ
diff --git a/build/dark/development/Rambox/resources/images/sizer/sw-handle.png b/build/dark/development/Rambox/resources/images/sizer/sw-handle.png
new file mode 100644
index 00000000..7f68f406
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/sizer/sw-handle.png differ
diff --git a/build/dark/development/Rambox/resources/images/slider/slider-bg.png b/build/dark/development/Rambox/resources/images/slider/slider-bg.png
new file mode 100644
index 00000000..1ade2925
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/slider/slider-bg.png differ
diff --git a/build/dark/development/Rambox/resources/images/slider/slider-thumb.png b/build/dark/development/Rambox/resources/images/slider/slider-thumb.png
new file mode 100644
index 00000000..d8a03de9
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/slider/slider-thumb.png differ
diff --git a/build/dark/development/Rambox/resources/images/slider/slider-v-bg.png b/build/dark/development/Rambox/resources/images/slider/slider-v-bg.png
new file mode 100644
index 00000000..c24663e5
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/slider/slider-v-bg.png differ
diff --git a/build/dark/development/Rambox/resources/images/slider/slider-v-thumb.png b/build/dark/development/Rambox/resources/images/slider/slider-v-thumb.png
new file mode 100644
index 00000000..d8a03de9
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/slider/slider-v-thumb.png differ
diff --git a/build/dark/development/Rambox/resources/images/tab-bar/default-plain-scroll-bottom.png b/build/dark/development/Rambox/resources/images/tab-bar/default-plain-scroll-bottom.png
new file mode 100644
index 00000000..25a21b9e
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tab-bar/default-plain-scroll-bottom.png differ
diff --git a/build/dark/development/Rambox/resources/images/tab-bar/default-plain-scroll-left.png b/build/dark/development/Rambox/resources/images/tab-bar/default-plain-scroll-left.png
new file mode 100644
index 00000000..5bebb886
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tab-bar/default-plain-scroll-left.png differ
diff --git a/build/dark/development/Rambox/resources/images/tab-bar/default-plain-scroll-right.png b/build/dark/development/Rambox/resources/images/tab-bar/default-plain-scroll-right.png
new file mode 100644
index 00000000..eb2d6512
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tab-bar/default-plain-scroll-right.png differ
diff --git a/build/dark/development/Rambox/resources/images/tab-bar/default-plain-scroll-top.png b/build/dark/development/Rambox/resources/images/tab-bar/default-plain-scroll-top.png
new file mode 100644
index 00000000..c17d012b
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tab-bar/default-plain-scroll-top.png differ
diff --git a/build/dark/development/Rambox/resources/images/tab-bar/default-scroll-bottom.png b/build/dark/development/Rambox/resources/images/tab-bar/default-scroll-bottom.png
new file mode 100644
index 00000000..25a21b9e
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tab-bar/default-scroll-bottom.png differ
diff --git a/build/dark/development/Rambox/resources/images/tab-bar/default-scroll-left.png b/build/dark/development/Rambox/resources/images/tab-bar/default-scroll-left.png
new file mode 100644
index 00000000..5bebb886
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tab-bar/default-scroll-left.png differ
diff --git a/build/dark/development/Rambox/resources/images/tab-bar/default-scroll-right.png b/build/dark/development/Rambox/resources/images/tab-bar/default-scroll-right.png
new file mode 100644
index 00000000..eb2d6512
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tab-bar/default-scroll-right.png differ
diff --git a/build/dark/development/Rambox/resources/images/tab-bar/default-scroll-top.png b/build/dark/development/Rambox/resources/images/tab-bar/default-scroll-top.png
new file mode 100644
index 00000000..c17d012b
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tab-bar/default-scroll-top.png differ
diff --git a/build/dark/development/Rambox/resources/images/tab/tab-default-close.png b/build/dark/development/Rambox/resources/images/tab/tab-default-close.png
new file mode 100644
index 00000000..59bc7380
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tab/tab-default-close.png differ
diff --git a/build/dark/development/Rambox/resources/images/toolbar/default-more-left.png b/build/dark/development/Rambox/resources/images/toolbar/default-more-left.png
new file mode 100644
index 00000000..8af67e38
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/toolbar/default-more-left.png differ
diff --git a/build/dark/development/Rambox/resources/images/toolbar/default-more.png b/build/dark/development/Rambox/resources/images/toolbar/default-more.png
new file mode 100644
index 00000000..8af67e38
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/toolbar/default-more.png differ
diff --git a/build/dark/development/Rambox/resources/images/toolbar/default-scroll-bottom.png b/build/dark/development/Rambox/resources/images/toolbar/default-scroll-bottom.png
new file mode 100644
index 00000000..8574124c
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/toolbar/default-scroll-bottom.png differ
diff --git a/build/dark/development/Rambox/resources/images/toolbar/default-scroll-left.png b/build/dark/development/Rambox/resources/images/toolbar/default-scroll-left.png
new file mode 100644
index 00000000..9d96ae2e
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/toolbar/default-scroll-left.png differ
diff --git a/build/dark/development/Rambox/resources/images/toolbar/default-scroll-right.png b/build/dark/development/Rambox/resources/images/toolbar/default-scroll-right.png
new file mode 100644
index 00000000..b741af22
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/toolbar/default-scroll-right.png differ
diff --git a/build/dark/development/Rambox/resources/images/toolbar/default-scroll-top.png b/build/dark/development/Rambox/resources/images/toolbar/default-scroll-top.png
new file mode 100644
index 00000000..4d0b4647
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/toolbar/default-scroll-top.png differ
diff --git a/build/dark/development/Rambox/resources/images/toolbar/footer-more-left.png b/build/dark/development/Rambox/resources/images/toolbar/footer-more-left.png
new file mode 100644
index 00000000..8af67e38
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/toolbar/footer-more-left.png differ
diff --git a/build/dark/development/Rambox/resources/images/toolbar/footer-more.png b/build/dark/development/Rambox/resources/images/toolbar/footer-more.png
new file mode 100644
index 00000000..8af67e38
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/toolbar/footer-more.png differ
diff --git a/build/dark/development/Rambox/resources/images/toolbar/footer-scroll-left.png b/build/dark/development/Rambox/resources/images/toolbar/footer-scroll-left.png
new file mode 100644
index 00000000..fbaae2f2
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/toolbar/footer-scroll-left.png differ
diff --git a/build/dark/development/Rambox/resources/images/toolbar/footer-scroll-right.png b/build/dark/development/Rambox/resources/images/toolbar/footer-scroll-right.png
new file mode 100644
index 00000000..dfff9dc9
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/toolbar/footer-scroll-right.png differ
diff --git a/build/dark/development/Rambox/resources/images/toolbar/main-more.png b/build/dark/development/Rambox/resources/images/toolbar/main-more.png
new file mode 100644
index 00000000..8af67e38
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/toolbar/main-more.png differ
diff --git a/build/dark/development/Rambox/resources/images/toolbar/newversion-more.png b/build/dark/development/Rambox/resources/images/toolbar/newversion-more.png
new file mode 100644
index 00000000..8af67e38
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/toolbar/newversion-more.png differ
diff --git a/build/dark/development/Rambox/resources/images/tools/tool-sprites-dark.png b/build/dark/development/Rambox/resources/images/tools/tool-sprites-dark.png
new file mode 100644
index 00000000..a731a028
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tools/tool-sprites-dark.png differ
diff --git a/build/dark/development/Rambox/resources/images/tools/tool-sprites.png b/build/dark/development/Rambox/resources/images/tools/tool-sprites.png
new file mode 100644
index 00000000..25f50bde
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tools/tool-sprites.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/arrows-rtl.png b/build/dark/development/Rambox/resources/images/tree/arrows-rtl.png
new file mode 100644
index 00000000..8f11681f
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/arrows-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/arrows.png b/build/dark/development/Rambox/resources/images/tree/arrows.png
new file mode 100644
index 00000000..801ef40d
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/arrows.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-above.png b/build/dark/development/Rambox/resources/images/tree/drop-above.png
new file mode 100644
index 00000000..57825318
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-above.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-add.gif b/build/dark/development/Rambox/resources/images/tree/drop-add.gif
new file mode 100644
index 00000000..b22cd144
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-add.gif differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-add.png b/build/dark/development/Rambox/resources/images/tree/drop-add.png
new file mode 100644
index 00000000..c9d24fd8
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-add.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-append.png b/build/dark/development/Rambox/resources/images/tree/drop-append.png
new file mode 100644
index 00000000..57825318
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-append.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-below.png b/build/dark/development/Rambox/resources/images/tree/drop-below.png
new file mode 100644
index 00000000..57825318
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-below.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-between.gif b/build/dark/development/Rambox/resources/images/tree/drop-between.gif
new file mode 100644
index 00000000..f5a042d7
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-between.gif differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-between.png b/build/dark/development/Rambox/resources/images/tree/drop-between.png
new file mode 100644
index 00000000..57825318
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-between.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-no.gif b/build/dark/development/Rambox/resources/images/tree/drop-no.gif
new file mode 100644
index 00000000..9d9c6a9c
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-no.gif differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-no.png b/build/dark/development/Rambox/resources/images/tree/drop-no.png
new file mode 100644
index 00000000..bb89cfc1
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-no.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-over.gif b/build/dark/development/Rambox/resources/images/tree/drop-over.gif
new file mode 100644
index 00000000..2e514e7e
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-over.gif differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-over.png b/build/dark/development/Rambox/resources/images/tree/drop-over.png
new file mode 100644
index 00000000..70d1807f
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-over.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-under.gif b/build/dark/development/Rambox/resources/images/tree/drop-under.gif
new file mode 100644
index 00000000..8535ef46
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-under.gif differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-under.png b/build/dark/development/Rambox/resources/images/tree/drop-under.png
new file mode 100644
index 00000000..3ba23b37
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-under.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-yes.gif b/build/dark/development/Rambox/resources/images/tree/drop-yes.gif
new file mode 100644
index 00000000..8aacb307
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-yes.gif differ
diff --git a/build/dark/development/Rambox/resources/images/tree/drop-yes.png b/build/dark/development/Rambox/resources/images/tree/drop-yes.png
new file mode 100644
index 00000000..83d0dbc2
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/drop-yes.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-end-minus-rtl.png b/build/dark/development/Rambox/resources/images/tree/elbow-end-minus-rtl.png
new file mode 100644
index 00000000..675e49b3
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-end-minus-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-end-minus.png b/build/dark/development/Rambox/resources/images/tree/elbow-end-minus.png
new file mode 100644
index 00000000..404ad2b2
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-end-minus.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-end-plus-rtl.png b/build/dark/development/Rambox/resources/images/tree/elbow-end-plus-rtl.png
new file mode 100644
index 00000000..469eb2da
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-end-plus-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-end-plus.png b/build/dark/development/Rambox/resources/images/tree/elbow-end-plus.png
new file mode 100644
index 00000000..6b3e8d05
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-end-plus.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-end-rtl.png b/build/dark/development/Rambox/resources/images/tree/elbow-end-rtl.png
new file mode 100644
index 00000000..8bf0b000
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-end-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-end.png b/build/dark/development/Rambox/resources/images/tree/elbow-end.png
new file mode 100644
index 00000000..bcbe95fd
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-end.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-line-rtl.png b/build/dark/development/Rambox/resources/images/tree/elbow-line-rtl.png
new file mode 100644
index 00000000..f36d1e4c
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-line-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-line.png b/build/dark/development/Rambox/resources/images/tree/elbow-line.png
new file mode 100644
index 00000000..ef3ec9bc
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-line.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-minus-nl-rtl.png b/build/dark/development/Rambox/resources/images/tree/elbow-minus-nl-rtl.png
new file mode 100644
index 00000000..51ccccc1
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-minus-nl-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-minus-nl.png b/build/dark/development/Rambox/resources/images/tree/elbow-minus-nl.png
new file mode 100644
index 00000000..6ff32f22
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-minus-nl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-minus-rtl.png b/build/dark/development/Rambox/resources/images/tree/elbow-minus-rtl.png
new file mode 100644
index 00000000..76238ee0
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-minus-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-minus.png b/build/dark/development/Rambox/resources/images/tree/elbow-minus.png
new file mode 100644
index 00000000..65c29ce8
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-minus.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-plus-nl-rtl.png b/build/dark/development/Rambox/resources/images/tree/elbow-plus-nl-rtl.png
new file mode 100644
index 00000000..fe6917e6
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-plus-nl-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-plus-nl.png b/build/dark/development/Rambox/resources/images/tree/elbow-plus-nl.png
new file mode 100644
index 00000000..348fcb9a
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-plus-nl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-plus-rtl.png b/build/dark/development/Rambox/resources/images/tree/elbow-plus-rtl.png
new file mode 100644
index 00000000..26f263da
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-plus-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-plus.png b/build/dark/development/Rambox/resources/images/tree/elbow-plus.png
new file mode 100644
index 00000000..b9568caa
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-plus.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow-rtl.png b/build/dark/development/Rambox/resources/images/tree/elbow-rtl.png
new file mode 100644
index 00000000..62c01a8a
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/elbow.png b/build/dark/development/Rambox/resources/images/tree/elbow.png
new file mode 100644
index 00000000..877827b8
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/elbow.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/folder-open-rtl.png b/build/dark/development/Rambox/resources/images/tree/folder-open-rtl.png
new file mode 100644
index 00000000..05f6f71f
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/folder-open-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/folder-open.png b/build/dark/development/Rambox/resources/images/tree/folder-open.png
new file mode 100644
index 00000000..0e6ef486
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/folder-open.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/folder-rtl.png b/build/dark/development/Rambox/resources/images/tree/folder-rtl.png
new file mode 100644
index 00000000..0bdcb871
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/folder-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/folder.png b/build/dark/development/Rambox/resources/images/tree/folder.png
new file mode 100644
index 00000000..698eab97
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/folder.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/leaf-rtl.png b/build/dark/development/Rambox/resources/images/tree/leaf-rtl.png
new file mode 100644
index 00000000..7a38a487
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/leaf-rtl.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/leaf.png b/build/dark/development/Rambox/resources/images/tree/leaf.png
new file mode 100644
index 00000000..c2e21c98
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/leaf.png differ
diff --git a/build/dark/development/Rambox/resources/images/tree/loading.gif b/build/dark/development/Rambox/resources/images/tree/loading.gif
new file mode 100644
index 00000000..81b0f125
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/tree/loading.gif differ
diff --git a/build/dark/development/Rambox/resources/images/util/splitter/mini-bottom.png b/build/dark/development/Rambox/resources/images/util/splitter/mini-bottom.png
new file mode 100644
index 00000000..fdb367d4
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/util/splitter/mini-bottom.png differ
diff --git a/build/dark/development/Rambox/resources/images/util/splitter/mini-left.png b/build/dark/development/Rambox/resources/images/util/splitter/mini-left.png
new file mode 100644
index 00000000..2d7597c9
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/util/splitter/mini-left.png differ
diff --git a/build/dark/development/Rambox/resources/images/util/splitter/mini-right.png b/build/dark/development/Rambox/resources/images/util/splitter/mini-right.png
new file mode 100644
index 00000000..521a5c4e
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/util/splitter/mini-right.png differ
diff --git a/build/dark/development/Rambox/resources/images/util/splitter/mini-top.png b/build/dark/development/Rambox/resources/images/util/splitter/mini-top.png
new file mode 100644
index 00000000..b39c4ca4
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/util/splitter/mini-top.png differ
diff --git a/build/dark/development/Rambox/resources/images/ux/dashboard/magnify.png b/build/dark/development/Rambox/resources/images/ux/dashboard/magnify.png
new file mode 100644
index 00000000..0efc4470
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/ux/dashboard/magnify.png differ
diff --git a/build/dark/development/Rambox/resources/images/window/toast/fade-blue.png b/build/dark/development/Rambox/resources/images/window/toast/fade-blue.png
new file mode 100644
index 00000000..4dbf08b0
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/window/toast/fade-blue.png differ
diff --git a/build/dark/development/Rambox/resources/images/window/toast/fader.png b/build/dark/development/Rambox/resources/images/window/toast/fader.png
new file mode 100644
index 00000000..be8c27fa
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/window/toast/fader.png differ
diff --git a/build/dark/development/Rambox/resources/images/window/toast/icon16_error.png b/build/dark/development/Rambox/resources/images/window/toast/icon16_error.png
new file mode 100644
index 00000000..5f168d32
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/window/toast/icon16_error.png differ
diff --git a/build/dark/development/Rambox/resources/images/window/toast/icon16_info.png b/build/dark/development/Rambox/resources/images/window/toast/icon16_info.png
new file mode 100644
index 00000000..6c6b32d0
Binary files /dev/null and b/build/dark/development/Rambox/resources/images/window/toast/icon16_info.png differ
diff --git a/build/dark/development/Rambox/resources/installer/background.png b/build/dark/development/Rambox/resources/installer/background.png
new file mode 100644
index 00000000..0b3b62f6
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/background.png differ
diff --git a/build/dark/development/Rambox/resources/installer/icon.icns b/build/dark/development/Rambox/resources/installer/icon.icns
new file mode 100644
index 00000000..70207a97
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/icon.icns differ
diff --git a/build/dark/development/Rambox/resources/installer/icon.ico b/build/dark/development/Rambox/resources/installer/icon.ico
new file mode 100644
index 00000000..00c0c927
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/icon.ico differ
diff --git a/build/dark/development/Rambox/resources/installer/icons/128x128.png b/build/dark/development/Rambox/resources/installer/icons/128x128.png
new file mode 100644
index 00000000..c6c1a976
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/icons/128x128.png differ
diff --git a/build/dark/development/Rambox/resources/installer/icons/16x16.png b/build/dark/development/Rambox/resources/installer/icons/16x16.png
new file mode 100644
index 00000000..3ec0776d
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/icons/16x16.png differ
diff --git a/build/dark/development/Rambox/resources/installer/icons/24x24.png b/build/dark/development/Rambox/resources/installer/icons/24x24.png
new file mode 100644
index 00000000..0a9deb8c
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/icons/24x24.png differ
diff --git a/build/dark/development/Rambox/resources/installer/icons/256x256.png b/build/dark/development/Rambox/resources/installer/icons/256x256.png
new file mode 100644
index 00000000..a6fb01bf
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/icons/256x256.png differ
diff --git a/build/dark/development/Rambox/resources/installer/icons/32x32.png b/build/dark/development/Rambox/resources/installer/icons/32x32.png
new file mode 100644
index 00000000..8c74aa35
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/icons/32x32.png differ
diff --git a/build/dark/development/Rambox/resources/installer/icons/48x48.png b/build/dark/development/Rambox/resources/installer/icons/48x48.png
new file mode 100644
index 00000000..82f34a98
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/icons/48x48.png differ
diff --git a/build/dark/development/Rambox/resources/installer/icons/512x512.png b/build/dark/development/Rambox/resources/installer/icons/512x512.png
new file mode 100644
index 00000000..89dfe479
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/icons/512x512.png differ
diff --git a/build/dark/development/Rambox/resources/installer/icons/64x64.png b/build/dark/development/Rambox/resources/installer/icons/64x64.png
new file mode 100644
index 00000000..c7942a0e
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/icons/64x64.png differ
diff --git a/build/dark/development/Rambox/resources/installer/icons/96x96.png b/build/dark/development/Rambox/resources/installer/icons/96x96.png
new file mode 100644
index 00000000..94cd4215
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/icons/96x96.png differ
diff --git a/build/dark/development/Rambox/resources/installer/install-spinner.gif b/build/dark/development/Rambox/resources/installer/install-spinner.gif
new file mode 100644
index 00000000..0f9fc642
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/install-spinner.gif differ
diff --git a/build/dark/development/Rambox/resources/installer/installerIcon.ico b/build/dark/development/Rambox/resources/installer/installerIcon.ico
new file mode 100644
index 00000000..00c0c927
Binary files /dev/null and b/build/dark/development/Rambox/resources/installer/installerIcon.ico differ
diff --git a/build/dark/development/Rambox/resources/js/GALocalStorage.js b/build/dark/development/Rambox/resources/js/GALocalStorage.js
new file mode 100644
index 00000000..112ca374
--- /dev/null
+++ b/build/dark/development/Rambox/resources/js/GALocalStorage.js
@@ -0,0 +1,396 @@
+/**
+ * Modified version of "Google Analytics for Pokki" to make it usable in PhoneGap.
+ * For all details and documentation:
+ * https://github.com/ggendre/GALocalStorage
+ *
+ * @version 1.1
+ * @license MIT License
+ * @author Guillaume Gendre, haploid.fr
+ *
+ * Original Work from Pokki team :
+ * Blake Machado , SweetLabs, Inc.
+ * Fontaine Shu , SweetLabs, Inc.
+ * see this repository : https://github.com/blakemachado/Pokki
+ *
+ * Example usage:
+ *
+ * - Place these two lines with your values in a script tag in the head of index.html
+ * ga_storage._setAccount('--GA-ACCOUNT-ID--');
+ * ga_storage._trackPageview('/index.html');
+ *
+ * - Call these whenever you want to track a page view or a custom event
+ * ga_storage._trackPageview('/index', 'optional title');
+ * ga_storage._trackEvent('category', 'action', 'label', 'value');
+ */
+
+(function() {
+ var IS_DEBUG = false;
+
+ var LocalStorage = function(key, initial_value) {
+ if (window.localStorage.getItem(key) == null && initial_value != null) {
+ window.localStorage.setItem(key, initial_value);
+ }
+
+ this._get = function() {
+ return window.localStorage.getItem(key);
+ };
+
+ this._set = function(value) {
+ return window.localStorage.setItem(key, value);
+ };
+
+ this._remove = function() {
+ return window.localStorage.removeItem(key);
+ };
+
+ this.toString = function() {
+ return this._get();
+ };
+ };
+
+ ga_storage = new function() {
+ var ga_url = 'http://www.google-analytics.com';
+ var ga_ssl_url = 'https://ssl.google-analytics.com';
+ var last_url = '/'; // used to keep track of last page view logged to pass forward to subsequent events tracked
+ var last_nav_url = '/'; // used to keep track of last page actually visited by the user (not popup_hidden or popup_blurred!)
+ var last_page_title = '-'; // used to keep track of last page view logged to pass forward to subsequent events tracked
+ var timer; // used for blur/focus state changes
+
+ var ga_use_ssl = false; // set by calling _enableSSL or _disableSSL
+ var utmac = false; // set by calling _setAccount
+ var utmhn = false; // set by calling _setDomain
+ var utmwv = '4.3'; // tracking api version
+ var utmcs = 'UTF-8'; // charset
+ var utmul = 'en-us'; // language
+ var utmdt = '-'; // page title
+ var utmt = 'event'; // analytics type
+ var utmhid = 0; // unique id per session
+
+ var event_map = {
+ hidden: {
+ path: '/popup_hidden',
+ event: 'PopupHidden'
+ },
+ blurred: {
+ path: '/popup_blurred',
+ event: 'PopupBlurred'
+ },
+ focused: {
+ path: '{last_nav_url}',
+ event: 'PopupFocused'
+ }
+ };
+
+ var uid = new LocalStorage('ga_storage_uid');
+ var uid_rand = new LocalStorage('ga_storage_uid_rand');
+ var session_cnt = new LocalStorage('ga_storage_session_cnt');
+ var f_session = new LocalStorage('ga_storage_f_session');
+ var l_session = new LocalStorage('ga_storage_l_session');
+ var visitor_custom_vars = new LocalStorage('ga_storage_visitor_custom_vars');
+
+ var c_session = 0;
+ var custom_vars = visitor_custom_vars._get() ? JSON.parse(visitor_custom_vars._get()) : ['dummy'];
+
+ var request_cnt = 0;
+
+ function beacon_url() {
+ return (
+ ga_use_ssl ? ga_ssl_url : ga_url
+ ) + '/__utm.gif';
+ }
+
+ function rand(min, max) {
+ return min + Math.floor(Math.random() * (max - min));
+ }
+
+ function get_random() {
+ return rand(100000000, 999999999);
+ }
+
+
+ function return_cookies(source, medium, campaign) {
+ source = source || '(direct)';
+ medium = medium || '(none)';
+ campaign = campaign || '(direct)';
+
+ // utma represents user, should exist for lifetime: [user_id].[random #].[first session timestamp].[last session timestamp].[start of this session timestamp].[total # of sessions]
+ // utmb is a session, [user_id].[requests_per_session?].[??].[start of session timestamp]
+ // utmc is a session, [user_id]
+ // utmz is a referrer cookie
+ var cookie = uid._get();
+ var ret = '__utma=' + cookie + '.' + uid_rand._get() + '.' + f_session._get() + '.' + l_session._get() + '.' + c_session + '.' + session_cnt._get() + ';';
+ ret += '+__utmz=' + cookie + '.' + c_session + '.1.1.utmcsr=' + source + '|utmccn=' + campaign + '|utmcmd=' + medium + ';';
+ ret += '+__utmc=' + cookie + ';';
+ ret += '+__utmb=' + cookie + '.' + request_cnt + '.10.' + c_session + ';';
+ return ret;
+ }
+
+ function generate_query_string(params) {
+ var qa = [];
+ for (var key in params) {
+ qa.push(key + '=' + encodeURIComponent(params[key]));
+ }
+ return '?' + qa.join('&');
+ }
+
+ function reset_session(c_session) {
+ if (IS_DEBUG) console.log('resetting session');
+
+ l_session._set(c_session);
+ request_cnt = 0;
+ utmhid = get_random();
+ }
+
+ function gainit() {
+ c_session = (new Date()).getTime();
+ if (IS_DEBUG) console.log('gainit', c_session);
+
+ request_cnt = 0;
+ utmhid = get_random();
+
+ if (uid._get() == null) {
+ uid._set(rand(10000000, 99999999));
+ uid_rand._set(rand(1000000000, 2147483647));
+ }
+
+ if (session_cnt._get() == null) {
+ session_cnt._set(1);
+ } else {
+ session_cnt._set(parseInt(session_cnt._get()) + 1);
+ }
+
+ if (f_session._get() == null) {
+ f_session._set(c_session);
+ }
+ if (l_session._get() == null) {
+ l_session._set(c_session);
+ }
+
+ }
+
+ // public
+ this._enableSSL = function() {
+ if (IS_DEBUG) console.log("Enabling SSL");
+ ga_use_ssl = true;
+ };
+
+ // public
+ this._disableSSL = function() {
+ if (IS_DEBUG) console.log("Disabling SSL");
+ ga_use_ssl = false;
+ };
+
+ // public
+ this._setAccount = function(account_id) {
+ if (IS_DEBUG) console.log(account_id);
+ utmac = account_id;
+ gainit();
+ };
+ // public
+ this._setDomain = function(domain) {
+ if (IS_DEBUG) console.log(domain);
+ utmhn = domain;
+ };
+ // public
+ this._setLocale = function(lng, country) {
+ lng = (typeof lng === 'string' && lng.match(/^[a-z][a-z]$/i)) ? lng.toLowerCase() : 'en';
+ country = (typeof country === 'string' && country.match(/^[a-z][a-z]$/i)) ? country.toLowerCase() : 'us';
+ utmul = lng + '-' + country;
+ if (IS_DEBUG) console.log(utmul);
+ };
+
+ // public
+ this._setCustomVar = function(index, name, value, opt_scope) {
+ if (index < 1 || index > 5) return false;
+
+ var params = {
+ name: name,
+ value: value,
+ scope: opt_scope
+ };
+
+ custom_vars[index] = params;
+
+ // store if custom var is visitor-level (1)
+ if (opt_scope === 1) {
+ var vcv = visitor_custom_vars._get() ? JSON.parse(visitor_custom_vars._get()) : ['dummy'];
+ vcv[index] = params;
+ visitor_custom_vars._set(JSON.stringify(vcv));
+ }
+
+ if (IS_DEBUG) {
+ console.log(custom_vars);
+ }
+
+ return true;
+ };
+
+ // public
+ this._deleteCustomVar = function(index) {
+ if (index < 1 || index > 5) return false;
+ var scope = custom_vars[index] && custom_vars[index].scope;
+ custom_vars[index] = null;
+ if (scope === 1) {
+ var vcv = visitor_custom_vars._get() ? JSON.parse(visitor_custom_vars._get()) : ['dummy'];
+ vcv[index] = null;
+ visitor_custom_vars._set(JSON.stringify(vcv));
+ }
+ if (IS_DEBUG) {
+ console.log(custom_vars);
+ }
+ return true;
+ };
+
+ // public
+ this._trackPageview = function(path, title, source, medium, campaign) {
+ if (IS_DEBUG) {
+ console.log('Track Page View', arguments);
+ }
+
+ clearTimeout(timer);
+
+ request_cnt++;
+ if (!path) {
+ path = '/';
+ }
+ if (!title) {
+ title = utmdt;
+ }
+
+ // custom vars
+ var event = '';
+
+ if (custom_vars.length > 1) {
+ var names = '';
+ var values = '';
+ var scopes = '';
+ var last_slot = 0;
+
+ for (var i = 1; i < custom_vars.length; i++) {
+ if (custom_vars[i])
+ last_slot = i;
+ }
+ for (i = 1; i < custom_vars.length; i++) {
+ if (custom_vars[i]) {
+ var slotPrefix = '';
+ if (!custom_vars[i - 1])
+ slotPrefix = i + '!';
+
+ names += slotPrefix + custom_vars[i].name;
+ values += slotPrefix + custom_vars[i].value;
+ scopes += slotPrefix + (custom_vars[i].scope == null ? 3 : custom_vars[i].scope);
+
+ if (i < last_slot) {
+ names += '*';
+ values += '*';
+ scopes += '*';
+ }
+ }
+ }
+
+ event += '8(' + names + ')';
+ event += '9(' + values + ')';
+ event += '11(' + scopes + ')';
+ }
+
+ // remember page path and title for event tracking
+ last_url = path;
+ last_page_title = title;
+ if ([event_map.hidden.path, event_map.blurred.path].indexOf(path) < 0) {
+ last_nav_url = path;
+ }
+
+ var params = {
+ utmwv: utmwv,
+ utmn: get_random(),
+ utmhn: utmhn,
+ utmcs: utmcs,
+ utmul: utmul,
+ utmdt: title,
+ utmhid: utmhid,
+ utmp: path,
+ utmac: utmac,
+ utmcc: return_cookies(source, medium, campaign)
+ };
+ if (event != '') {
+ params.utme = event;
+ }
+
+ var url = beacon_url() + generate_query_string(params);
+ var img = new Image();
+ img.src = url;
+ };
+
+ // public
+ this._trackEvent = function(category, action, label, value, source, medium, campaign) {
+ if (IS_DEBUG) {
+ console.log('Track Event', arguments);
+ }
+
+ request_cnt++;
+ var event = '5(' + category + '*' + action;
+ if (label) {
+ event += '*' + label + ')';
+ } else {
+ event += ')';
+ }
+ if (value) {
+ event += '(' + value + ')'
+ }
+
+ // custom vars
+ if (custom_vars.length > 1) {
+ var names = '';
+ var values = '';
+ var scopes = '';
+ var last_slot = 0;
+
+ for (var i = 1; i < custom_vars.length; i++) {
+ if (custom_vars[i])
+ last_slot = i;
+ }
+
+ for (i = 1; i < custom_vars.length; i++) {
+ if (custom_vars[i]) {
+ var slotPrefix = '';
+ if (!custom_vars[i - 1])
+ slotPrefix = i + '!';
+
+ names += slotPrefix + custom_vars[i].name;
+ values += slotPrefix + custom_vars[i].value;
+ scopes += slotPrefix + (custom_vars[i].scope == null ? 3 : custom_vars[i].scope);
+
+ if (i < last_slot) {
+ names += '*';
+ values += '*';
+ scopes += '*';
+ }
+ }
+ }
+
+ event += '8(' + names + ')';
+ event += '9(' + values + ')';
+ event += '11(' + scopes + ')';
+ }
+
+ var params = {
+ utmwv: utmwv,
+ utmn: get_random(),
+ utmhn: utmhn,
+ utmcs: utmcs,
+ utmul: utmul,
+ utmt: utmt,
+ utme: event,
+ utmhid: utmhid,
+ utmdt: last_page_title,
+ utmp: last_url,
+ utmac: utmac,
+ utmcc: return_cookies(source, medium, campaign)
+ };
+ var url = beacon_url() + generate_query_string(params);
+ var img = new Image();
+ img.src = url;
+ };
+
+ };
+})();
diff --git a/build/dark/development/Rambox/resources/js/loadscreen.js b/build/dark/development/Rambox/resources/js/loadscreen.js
new file mode 100644
index 00000000..049d2675
--- /dev/null
+++ b/build/dark/development/Rambox/resources/js/loadscreen.js
@@ -0,0 +1,263 @@
+/*! modernizr 3.2.0 (Custom Build) | MIT *
+ * http://modernizr.com/download/?-csstransitions-prefixedcss !*/
+!function(e,n,t){function r(e,n){return typeof e===n}function o(){var e,n,t,o,i,s,a;for(var f in C)if(C.hasOwnProperty(f)){if(e=[],n=C[f],n.name&&(e.push(n.name.toLowerCase()),n.options&&n.options.aliases&&n.options.aliases.length))for(t=0;td;d++)if(v=e[d],h=N.style[v],f(v,"-")&&(v=a(v)),N.style[v]!==t){if(i||r(o,"undefined"))return s(),"pfx"==n?v:!0;try{N.style[v]=o}catch(g){}if(N.style[v]!=h)return s(),"pfx"==n?v:!0}return s(),!1}function h(e,n,t,o,i){var s=e.charAt(0).toUpperCase()+e.slice(1),a=(e+" "+b.join(s+" ")+s).split(" ");return r(n,"string")||r(n,"undefined")?v(a,n,o,i):(a=(e+" "+P.join(s+" ")+s).split(" "),p(a,n,t))}function y(e,n,r){return h(e,t,t,n,r)}var g=[],C=[],x={_version:"3.2.0",_config:{classPrefix:"",enableClasses:!0,enableJSClass:!0,usePrefixes:!0},_q:[],on:function(e,n){var t=this;setTimeout(function(){n(t[e])},0)},addTest:function(e,n,t){C.push({name:e,fn:n,options:t})},addAsyncTest:function(e){C.push({name:null,fn:e})}},Modernizr=function(){};Modernizr.prototype=x,Modernizr=new Modernizr;var _=n.documentElement,w="svg"===_.nodeName.toLowerCase(),S="Moz O ms Webkit",b=x._config.usePrefixes?S.split(" "):[];x._cssomPrefixes=b;var E=function(n){var r,o=prefixes.length,i=e.CSSRule;if("undefined"==typeof i)return t;if(!n)return!1;if(n=n.replace(/^@/,""),r=n.replace(/-/g,"_").toUpperCase()+"_RULE",r in i)return"@"+n;for(var s=0;o>s;s++){var a=prefixes[s],f=a.toUpperCase()+"_"+r;if(f in i)return"@-"+a.toLowerCase()+"-"+n}return!1};x.atRule=E;var P=x._config.usePrefixes?S.toLowerCase().split(" "):[];x._domPrefixes=P;var z={elem:l("modernizr")};Modernizr._q.push(function(){delete z.elem});var N={style:z.elem.style};Modernizr._q.unshift(function(){delete N.style}),x.testAllProps=h;var T=x.prefixed=function(e,n,t){return 0===e.indexOf("@")?E(e):(-1!=e.indexOf("-")&&(e=a(e)),n?h(e,n,t):h(e,"pfx"))};x.prefixedCSS=function(e){var n=T(e);return n&&s(n)};x.testAllProps=y,Modernizr.addTest("csstransitions",y("transition","all",!0)),o(),i(g),delete x.addTest,delete x.addAsyncTest;for(var j=0;j t1) return curveY(t1);
+
+ // Fallback to the bisection method for reliability.
+ while (t0 < t1){
+ x2 = curveX(t2);
+ if (Math.abs(x2 - x) < epsilon) return curveY(t2);
+ if (x > x2) t0 = t2;
+ else t1 = t2;
+ t2 = (t1 - t0) * .5 + t0;
+ }
+ // Failure
+ return curveY(t2);
+ };
+ },
+ getRandomNumber = function(min, max) {
+ return Math.floor(Math.random() * (max - min + 1)) + min;
+ },
+ throttle = function(fn, delay) {
+ var allowSample = true;
+
+ return function(e) {
+ if (allowSample) {
+ allowSample = false;
+ setTimeout(function() { allowSample = true; }, delay);
+ fn(e);
+ }
+ };
+ },
+ // from https://davidwalsh.name/vendor-prefix
+ prefix = (function () {
+ var styles = window.getComputedStyle(document.documentElement, ''),
+ pre = (Array.prototype.slice.call(styles).join('').match(/-(moz|webkit|ms)-/) || (styles.OLink === '' && ['', 'o']))[1],
+ dom = ('WebKit|Moz|MS|O').match(new RegExp('(' + pre + ')', 'i'))[1];
+
+ return {
+ dom: dom,
+ lowercase: pre,
+ css: '-' + pre + '-',
+ js: pre[0].toUpperCase() + pre.substr(1)
+ };
+ })();
+
+ var support = {transitions : Modernizr.csstransitions},
+ transEndEventNames = { 'WebkitTransition': 'webkitTransitionEnd', 'MozTransition': 'transitionend', 'OTransition': 'oTransitionEnd', 'msTransition': 'MSTransitionEnd', 'transition': 'transitionend' },
+ transEndEventName = transEndEventNames[ Modernizr.prefixed( 'transition' ) ],
+ onEndTransition = function( el, callback, propTest ) {
+ var onEndCallbackFn = function( ev ) {
+ if( support.transitions ) {
+ if( ev.target != this || propTest && ev.propertyName !== propTest && ev.propertyName !== prefix.css + propTest ) return;
+ this.removeEventListener( transEndEventName, onEndCallbackFn );
+ }
+ if( callback && typeof callback === 'function' ) { callback.call(this); }
+ };
+ if( support.transitions ) {
+ el.addEventListener( transEndEventName, onEndCallbackFn );
+ }
+ else {
+ onEndCallbackFn();
+ }
+ },
+ // the main component element/wrapper
+ shzEl = document.querySelector('.component'),
+ // the initial button
+ shzCtrl = shzEl.querySelector('div.button--start'),
+ // total number of notes/symbols moving towards the listen button
+ totalNotes = 50,
+ // the notes elements
+ notes,
+ // the note´s speed factor relative to the distance from the note element to the button.
+ // if notesSpeedFactor = 1, then the speed equals the distance (in ms)
+ notesSpeedFactor = 4.5,
+ // window sizes
+ winsize = {width: window.innerWidth, height: window.innerHeight},
+ // button offset
+ shzCtrlOffset = shzCtrl.getBoundingClientRect(),
+ // button sizes
+ shzCtrlSize = {width: shzCtrl.offsetWidth, height: shzCtrl.offsetHeight},
+ // tells us if the listening animation is taking place
+ isListening = false,
+ // audio player element
+ playerEl = shzEl.querySelector('.player');
+ // close player control
+ //playerCloseCtrl = playerEl.querySelector('.button--close');
+
+ function init() {
+ // create the music notes elements - the musical symbols that will animate/move towards the listen button
+ createNotes();
+ // star animation
+ listen();
+ }
+
+ /**
+ * creates [totalNotes] note elements (the musical symbols that will animate/move towards the listen button)
+ */
+ function createNotes() {
+ var notesEl = document.createElement('div'), notesElContent = '';
+ notesEl.className = 'notes';
+ for(var i = 0; i < totalNotes; ++i) {
+ // we have 6 different types of symbols (icon--note1, icon--note2 ... icon--note6)
+ var j = (i + 1) - 6 * Math.floor(i/6);
+ notesElContent += '';
+ }
+ notesEl.innerHTML = notesElContent;
+ shzEl.insertBefore(notesEl, shzEl.firstChild)
+
+ // reference to the notes elements
+ notes = [].slice.call(notesEl.querySelectorAll('.note'));
+ }
+
+ /**
+ * transform the initial button into a circle shaped one that "listens" to the current song..
+ */
+ function listen() {
+ isListening = true;
+
+ showNotes();
+ }
+
+ /**
+ * stop the ripples and notes animations
+ */
+ function stopListening() {
+ isListening = false;
+ // music notes animation stops...
+ hideNotes();
+ }
+
+ /**
+ * show the notes elements: first set a random position and then animate them towards the button
+ */
+ function showNotes() {
+ notes.forEach(function(note) {
+ // first position the notes randomly on the page
+ positionNote(note);
+ // now, animate the notes torwards the button
+ animateNote(note);
+ });
+ }
+
+ /**
+ * fade out the notes elements
+ */
+ function hideNotes() {
+ notes.forEach(function(note) {
+ note.style.opacity = 0;
+ });
+ }
+
+ /**
+ * positions a note/symbol randomly on the page. The area is restricted to be somewhere outside of the viewport.
+ * @param {Element Node} note - the note element
+ */
+ function positionNote(note) {
+ // we want to position the notes randomly (translation and rotation) outside of the viewport
+ var x = getRandomNumber(-2*(shzCtrlOffset.left + shzCtrlSize.width/2), 2*(winsize.width - (shzCtrlOffset.left + shzCtrlSize.width/2))), y,
+ rotation = getRandomNumber(-30, 30);
+
+ if( x > -1*(shzCtrlOffset.top + shzCtrlSize.height/2) && x < shzCtrlOffset.top + shzCtrlSize.height/2 ) {
+ y = getRandomNumber(0,1) > 0 ? getRandomNumber(-2*(shzCtrlOffset.top + shzCtrlSize.height/2), -1*(shzCtrlOffset.top + shzCtrlSize.height/2)) : getRandomNumber(winsize.height - (shzCtrlOffset.top + shzCtrlSize.height/2), winsize.height + winsize.height - (shzCtrlOffset.top + shzCtrlSize.height/2));
+ }
+ else {
+ y = getRandomNumber(-2*(shzCtrlOffset.top + shzCtrlSize.height/2), winsize.height + winsize.height - (shzCtrlOffset.top + shzCtrlSize.height/2));
+ }
+
+ // first reset transition if any
+ note.style.WebkitTransition = note.style.transition = 'none';
+
+ // apply the random transforms
+ note.style.WebkitTransform = note.style.transform = 'translate3d(' + x + 'px,' + y + 'px,0) rotate3d(0,0,1,' + rotation + 'deg)';
+
+ // save the translation values for later
+ note.setAttribute('data-tx', Math.abs(x));
+ note.setAttribute('data-ty', Math.abs(y));
+ }
+
+ /**
+ * animates a note torwards the button. Once that's done, it repositions the note and animates it again until the component is no longer listening.
+ * @param {Element Node} note - the note element
+ */
+ function animateNote(note) {
+ setTimeout(function() {
+ if(!isListening) return;
+ // the transition speed of each note will be proportional to the its distance to the button
+ // speed = notesSpeedFactor * distance
+ var noteSpeed = notesSpeedFactor * Math.sqrt(Math.pow(note.getAttribute('data-tx'),2) + Math.pow(note.getAttribute('data-ty'),2));
+
+ // apply the transition
+ note.style.WebkitTransition = '-webkit-transform ' + noteSpeed + 'ms ease, opacity 0.8s';
+ note.style.transition = 'transform ' + noteSpeed + 'ms ease-in, opacity 0.8s';
+
+ // now apply the transform (reset the transform so the note moves to its original position) and fade in the note
+ note.style.WebkitTransform = note.style.transform = 'translate3d(0,0,0)';
+ note.style.opacity = 1;
+
+ // after the animation is finished,
+ var onEndTransitionCallback = function() {
+ // reset transitions and styles
+ note.style.WebkitTransition = note.style.transition = 'none';
+ note.style.opacity = 0;
+
+ if(!isListening) return;
+
+ positionNote(note);
+ animateNote(note);
+ };
+
+ onEndTransition(note, onEndTransitionCallback, 'transform');
+ }, 60);
+ }
+
+ init();
+
+})(window);
diff --git a/build/dark/development/Rambox/resources/js/rambox-modal-api.js b/build/dark/development/Rambox/resources/js/rambox-modal-api.js
new file mode 100644
index 00000000..50930fbd
--- /dev/null
+++ b/build/dark/development/Rambox/resources/js/rambox-modal-api.js
@@ -0,0 +1,4 @@
+document.addEventListener("DOMContentLoaded", function() {
+ window.WHAT_TYPE.isChildWindowAnIframe=function(){return false;}; // for iCloud
+ window.onbeforeunload=function(){return require("electron").ipcRenderer.sendToHost("close");};
+});
diff --git a/build/dark/development/Rambox/resources/js/rambox-service-api.js b/build/dark/development/Rambox/resources/js/rambox-service-api.js
new file mode 100644
index 00000000..c09152bf
--- /dev/null
+++ b/build/dark/development/Rambox/resources/js/rambox-service-api.js
@@ -0,0 +1,46 @@
+/**
+ * This file is loaded in the service web views to provide a Rambox API.
+ */
+
+const { ipcRenderer } = require('electron');
+
+/**
+ * Make the Rambox API available via a global "rambox" variable.
+ *
+ * @type {{}}
+ */
+window.rambox = {};
+
+/**
+ * Sets the unraed count of the tab.
+ *
+ * @param {*} count The unread count
+ */
+window.rambox.setUnreadCount = function(count) {
+ ipcRenderer.sendToHost('rambox.setUnreadCount', count);
+};
+
+/**
+ * Clears the unread count.
+ */
+window.rambox.clearUnreadCount = function() {
+ ipcRenderer.sendToHost('rambox.clearUnreadCount');
+}
+
+/**
+ * Override to add notification click event to display Rambox window and activate service tab
+ */
+var NativeNotification = Notification;
+Notification = function(title, options) {
+ var notification = new NativeNotification(title, options);
+
+ notification.addEventListener('click', function() {
+ ipcRenderer.sendToHost('rambox.showWindowAndActivateTab');
+ });
+
+ return notification;
+}
+
+Notification.prototype = NativeNotification.prototype;
+Notification.permission = NativeNotification.permission;
+Notification.requestPermission = NativeNotification.requestPermission.bind(Notification);
diff --git a/build/dark/development/Rambox/resources/languages/README.md b/build/dark/development/Rambox/resources/languages/README.md
new file mode 100644
index 00000000..30d29c62
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/README.md
@@ -0,0 +1,5 @@
+## PLEASE DO NOT EDIT ANY FILES HERE
+
+WE GENERATE THIS FILES FROM CROWDIN, SO PLEASE VISIT https://crowdin.com/project/rambox/invite AND TRANSLATE FROM THERE.
+
+If you are making a pull request with a new feature, just do it in English and then we add the strings in Crowdin to translate it to all languages.
diff --git a/build/dark/development/Rambox/resources/languages/af.js b/build/dark/development/Rambox/resources/languages/af.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/af.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/ar.js b/build/dark/development/Rambox/resources/languages/ar.js
new file mode 100644
index 00000000..884da734
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/ar.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="الإعدادات";locale["preferences[1]"]="إخفاء شريط القوائم تلقائيا";locale["preferences[2]"]="إظهار في شريط المهام";locale["preferences[3]"]="إبقاء رامبوكس في شريط المهام عند إغلاقه";locale["preferences[4]"]="البدء مصغرا";locale["preferences[5]"]="التشغيل التلقائي عند بدء تشغيل النظام";locale["preferences[6]"]="لا تريد عرض شريط القوائم دائما؟";locale["preferences[7]"]="اضغط المفتاح Alt لإظهار شريط القوائم مؤقتا.";locale["app.update[0]"]="يوجد إصدار جديد!";locale["app.update[1]"]="تحميل";locale["app.update[2]"]="سِجل التغييرات";locale["app.update[3]"]="لديك أحدث إصدار!";locale["app.update[4]"]="لديك أحدث إصدار من رامبوكس.";locale["app.about[0]"]="نبذة عن رامبوكس";locale["app.about[1]"]="برنامج مراسلة وبريد إلكتروني مجاني ومفتوح المصدر يضم تطبيقات الويب الرائجة.";locale["app.about[2]"]="إصدار";locale["app.about[3]"]="منصة";locale["app.about[4]"]="طور من طرف";locale["app.main[0]"]="إضافة خدمة جديدة";locale["app.main[1]"]="المراسلة";locale["app.main[2]"]="البريد الإلكتروني";locale["app.main[3]"]="لم يتم العثور على أي خدمات... حاول البحث مرة أخرى.";locale["app.main[4]"]="الخدمات الممكنة";locale["app.main[5]"]="اتجاه النص";locale["app.main[6]"]="يسار";locale["app.main[7]"]="يمين";locale["app.main[8]"]="عنصر";locale["app.main[9]"]="عناصر";locale["app.main[10]"]="إزالة جميع الخدمات";locale["app.main[11]"]="منع التنبيهات";locale["app.main[12]"]="مكتوم";locale["app.main[13]"]="إعداد";locale["app.main[14]"]="ازالة";locale["app.main[15]"]="لم تضف أي خدمات...";locale["app.main[16]"]="عدم الإزعاج";locale["app.main[17]"]="توقيف التنبيهات والأصوات لجميع الخدمات. مثالي للتركيز والإنجاز.";locale["app.main[18]"]="مفتاح الاختصار";locale["app.main[19]"]="قفل رامبوكس";locale["app.main[20]"]="قفل التطبيق إذا كنت ستتركه لفترة من الزمن.";locale["app.main[21]"]="تسجيل خروج";locale["app.main[22]"]="تسجيل دخول";locale["app.main[23]"]="قم بتسجيل الدخول لحفظ إعداداتك (لا يتم تخزين أي بيانات خاصة) حتى تتمكن من المزامنة بين كل أجهزة الكمبيوتر الخاصة بك.";locale["app.main[24]"]="بدعم من قبل";locale["app.main[25]"]="تبرّع";locale["app.main[26]"]="مع";locale["app.main[27]"]="من الأرجنتين كمشروع مفتوح المصدر.";locale["app.window[0]"]="إضافة";locale["app.window[1]"]="تعديل";locale["app.window[2]"]="الإسم";locale["app.window[3]"]="خيارات";locale["app.window[4]"]="محاذاة إلى اليمين";locale["app.window[5]"]="إظهار الإشعارات";locale["app.window[6]"]="كتم جميع الأصوات";locale["app.window[7]"]="متقدّم";locale["app.window[8]"]="كود مخصص";locale["app.window[9]"]="اقرأ المزيد...";locale["app.window[10]"]="إضافة خدمة";locale["app.window[11]"]="فريق";locale["app.window[12]"]="رجاءاً أكّد...";locale["app.window[13]"]="هل أنت متأكد أنك تريد إزالة";locale["app.window[14]"]="هل أنت متأكد من أنك تريد إزالة كافة الخدمات؟";locale["app.window[15]"]="إضافة خدمة مخصصة";locale["app.window[16]"]="تحرير خدمة مخصصة";locale["app.window[17]"]="الرابط";locale["app.window[18]"]="الشعار";locale["app.window[19]"]="ثق في الشهادات غير الصالحة";locale["app.window[20]"]="مُفعّل";locale["app.window[21]"]="غير مُفعّل";locale["app.window[22]"]="أدخل كلمة مرور مؤقتة لفتحه فيما بعد";locale["app.window[23]"]="تكرار كلمة المرور المؤقتة";locale["app.window[24]"]="تحذير";locale["app.window[25]"]="كلمات المرور ليست هي نفسها. الرجاء المحاولة مرة أخرى...";locale["app.window[26]"]="رامبوكس مقفول";locale["app.window[27]"]="فتح القفل";locale["app.window[28]"]="جارٍ الاتصال...";locale["app.window[29]"]="الرجاء الانتظار حتى نحصل على الإعدادات الخاصة بك.";locale["app.window[30]"]="إستيراد";locale["app.window[31]"]="لا توجد لديك أي خدمة مخزنة. هل تريد استيراد خدماتك الحالية؟";locale["app.window[32]"]="مسح الخدمات";locale["app.window[33]"]="هل تريد حذف جميع خدماتك و تبدأ بداية جديدة؟";locale["app.window[34]"]="، سيتم تسديل خروجك.";locale["app.window[35]"]="تأكيد";locale["app.window[36]"]="لاستيراد إعداداتك، رامبوكس بحاجة إلى أن يزيل كل خدماتك الحالية. هل تريد الاستمرار؟";locale["app.window[37]"]="يتم الآن غلق جلستك...";locale["app.window[38]"]="هل أنت متأكد من رغبتك في تسجيل الخروج؟";locale["app.webview[0]"]="إعادة التحميل";locale["app.webview[1]"]="الإتصال";locale["app.webview[2]"]="";locale["app.webview[3]"]="تشغيل أدوات المطور";locale["app.webview[4]"]="جاري التحميل...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="حسناً";locale["button[1]"]="إلغاء";locale["button[2]"]="نعم";locale["button[3]"]="لا";locale["button[4]"]="حفظ";locale["main.dialog[0]"]="خطأ في الشهادة";locale["main.dialog[1]"]="شهادة صلاحية الخدمة المحددة بعنوان URL التالي غير صالحة.";locale["main.dialog[2]"]="يجب عليك حذف الخدمة وإضافتها مرة أخرى، مع تشغيل خاصية الثقة في الشهادات غير الصالحة في الخيارات.";locale["menu.help[0]"]="زيارة موقع رامبوكس";locale["menu.help[1]"]="أبلغ عن مشكلة...";locale["menu.help[2]"]="طلب المساعدة";locale["menu.help[3]"]="تبرّع";locale["menu.help[4]"]="مساعدة";locale["menu.edit[0]"]="تعديل";locale["menu.edit[1]"]="التراجع";locale["menu.edit[2]"]="إعادة";locale["menu.edit[3]"]="قصّ";locale["menu.edit[4]"]="نسخ";locale["menu.edit[5]"]="لصق";locale["menu.edit[6]"]="اختيار الكل";locale["menu.view[0]"]="عرض";locale["menu.view[1]"]="إعادة التحميل";locale["menu.view[2]"]="التبديل لوضع ملء الشاشة";locale["menu.view[3]"]="تشغيل أدوات المطور";locale["menu.window[0]"]="نافذة";locale["menu.window[1]"]="تصغير";locale["menu.window[2]"]="إغلاق";locale["menu.window[3]"]="دائما في المقدمة";locale["menu.help[5]"]="التحقق من وجود تحديثات...";locale["menu.help[6]"]="عن رامبوكس";locale["menu.osx[0]"]="الخدمات";locale["menu.osx[1]"]="إخفاء رامبوكس";locale["menu.osx[2]"]="إخفاء الآخرين";locale["menu.osx[3]"]="إظهار الكل";locale["menu.file[0]"]="ملف";locale["menu.file[1]"]="إنهاء رامبوكس";locale["tray[0]"]="إظهار/إخفاء النافذة";locale["tray[1]"]="خروج";locale["services[0]"]="برنامج محادثات متعدد الأنظمة للأيفون، البلاكبيري، الأندرويد، و ويندوزفون و نوكيا. أرسل نصوص، فيديو، صور، وأصوات مجاناً.";locale["services[1]"]="يقوم Slack بجلب كل اتصالاتك في مكانٍ واحد. إنه برنامج محادثة فورية أرشيفي داعم للبحث لفرق العمل الحديثة.";locale["services[2]"]="Noysi هو برنامج اتصالات لفرق العمل حيث الخصوصية مضمونة. مع Noysi يمكنك الوصول إلى كل محادثاتك وملفاتك خلال لحظات من أي مكانٍ وبلا حدود.";locale["services[3]"]="فلتصل على الفور بكل من هم في حياتك مجاناً. Messenger مثل الرسائل، ولكنك لا تحتاج للدفع مع كل رسالة.";locale["services[4]"]="ابق على تواصل مع الأسرة والأصدقاء مجاناً. احصل على اتصالات دولية، اتصالات مجانية عبر الإنترنت، و Skype للأعمال على أجهزة سطح المكتب والجوالات.";locale["services[5]"]="يقوم Hangouts ببث الحياة في المحادثات عبر الصور، والوجوه التعبيرية، وحتى محادثات الفيديو الجماعية مجاناً. اتصل بأصدقائك عبر أجهزة الحاسوب، والأندرويد، وأبل.";locale["services[6]"]="HipChat هو مضيف للمحادثات الجماعية ومحادثات الفيديو لفرق العمل. دفعة فائقة للتعاون الفوري مع غرف محادثة مستمرة، مشاركة الملفات، ومشاركة الشاشة.";locale["services[7]"]="تليقرام برنامج مراسلة ذي اهتمام خاص بالسرعة والأمان. سريعٌ سرعة فائقة، سهل الإستعمال، آمن، ومجاني.";locale["services[8]"]="WeChat برنامج إتصال مجاني يسمح لك الإتصال بسهولة مع أسرتك وأصدقائك عبر البلدان. إنه برنامج الإتصالات الموحدة للرسائل المجانية (SMS/MMS)، الصوت، مكالمات الفيديو، اللحظات، مشاركة الصور، والألعاب.";locale["services[9]"]="Gmail، خدمة Google المجانية للبريد الإلكتروني واحدة من أشهر برامج البريد.";locale["services[10]"]="Inbox من Gmail هو برنامج جديد من فريق إعداد Gmail، وهو مكان منظم لإنجاز الأمور والعودة إلى ما يهم. تقوم الحزم بالمحافظة على البريد منظم.";locale["services[11]"]="ChatWork مجموعة تطبيقات محادثة للشركات. تأمين المراسلة, دردشة فيديو, إدارة المهام و مشاركة الملفات. اتصال في الوقت الحقيقي و زيادة في إنتاجية الفرق.";locale["services[12]"]="GroupMe يجلب مجموعة الرسائل النصية لكل هاتف. شكل مجموعات محادثة و تراسل مع الأشخاص المهمين في حياتك.";locale["services[13]"]="دردشة الفرق, الأكثر تقدماً في العالم, يلاقي ما تبحث عنه الشركات.";locale["services[14]"]="Gitter مبني على Github, يتناسب مع شركاتك, حافظاتك, تقارير المشاكل, و النشاطات.";locale["services[15]"]="Steam منصة توزيع رقمي مطورة من Valve Corporation, تقدم إدارة الحقوق الرقمية (DRM), طور الألعاب متعدد اللاعبين, و خدمات التواصل الإجتماعي.";locale["services[16]"]="تقدم خطوة في ألعابك مع تطبيق الدردشة المتطور الصوتي والنصي. صوت واضح جداً, دعم بعدة مخدمات و عدة قنوات, تطبيقات على الهواتف, و أكثر.";locale["services[17]"]="امسك زمام الامور. و أفعل أكثر. Outlook خدمة بريد ألكتروني و تقويم مجانية تساعدك على البقاء في قمة عملك وتسهل عليك إتمامه.";locale["services[18]"]="برنامج Outlook للأعمال";locale["services[19]"]="خدمة البريد الألكتروني المستندة إلى الويب و المقدمة من الشركة الأمريكية Yahoo!. الخدمة مجانية للاستخدام الشخصي, و مدفوعة للشركات وفق عروض متاحة.";locale["services[20]"]="خدمة بريد ألكتروني مشفرة";locale["services[21]"]="Tutanota برنامج بريد إلكتروني مفتوح المصدر, يعتمد على التشفير نهاية-ل-نهاية, و خدمة استضافة بريد إلكتروني موثوقة و مجانية, مستندة على هذا التطبيق.";locale["services[22]"]=". Hushmail يستخدم معايير OpenPGP والمصدر متوفر للتحميل.";locale["services[23]"]="بريد الكتروني للتعاون ودردشة مجموعات للفرق المنتجة. تطبيق واحد لجميع الاتصالات الداخلية والخارجية الخاصة بكم.";locale["services[24]"]="بداية من رسائل المجموعات ومكالمات الفيديو حتي الوصول الي مكتب مساعدات، هدفنا ان نصبح منصة الدردشة الأولي مفتوحة المصدر لحلول المشاكل.";locale["services[25]"]="مكالمات بجودة عالية، دردشة للأفراد والمجموعات تدعم الصور والموسيقي والفيديو، يدعم هاتفك وكمبيوترك اللوحي ايضاْ.";locale["services[26]"]="Sync هو برنامج للفرق التجارية لتحسين انتاجية فريقك.";locale["services[27]"]="لا يوجد وصف...";locale["services[28]"]="يسمح لك بارسال رسائل فورية لأي شخص علي خادم Yahoo. يخبرك عند وصول بريد جديد لك، ويعطيك نبذات عن أسعار الأسهم.";locale["services[29]"]="Voxer تطبيق مراسلة لهاتفك الذكي بالاصوت المباشره (مثل المحادثات اللاسلكيه) والنصوص والصور ومشاركة المواقع الجغرافية.";locale["services[30]"]="Dasher يتيح لك قول ما تريد حقاً باستخدام الصور المتحركة والثابتة والروابط والمزيد. قم بأنشاء استطلاع للرأي لمعرفة ماذا يعتقد أصدقائك حقاً بأشيائك الجديدة.";locale["services[31]"]="Flowdock هو دردشة مشتركة لفريقك. الفرق التي تستخدم Flowdock تبقي علي معرفة بكل جديد وتتفاعل في ثوان بدلاً من ايام، ولا ينسوا اي شئ.";locale["services[32]"]="Mattermost هو تطبيق مفتوح المصدر، بديلاً لSlack يستضاف ذاتياً. يجمع Mattermost جميع اتصالات الفريق الخاص بك في مكان واحد، ويجعلها قابلة للبحث ممكن الوصول إليها من أي مكان.";locale["services[33]"]="DingTalk منصة متعددة الجوانب تمكن الأعمال التجارية الصغيرة ومتوسطة الحجم من التواصل بشكل فعال.";locale["services[34]"]="مجموعة تطبيقات mysms تساعدك على ارسال النصوص لأي مكان وتعزز تجربه المراسلة على هاتفك الذكي وكمبيوترك اللوحي والكمبيوتر.";locale["services[35]"]="أي سي كيو هو برنامج مراسلة فورية للكمبيوتر مفتوح المصدر وكان اول البرامج تطويرا وانتشاراً.";locale["services[36]"]="TweetDeck هو تطبيق لوحات للتواصل الاجتماعي لإدارة حسابات تويتر.";locale["services[37]"]="خدمة مخصصة";locale["services[38]"]="قم بإضافة خدمة مخصصة ليست مذكورة في القائمة.";locale["services[39]"]="Zinc تطبيق اتصالات آمن للعاملين المتنقلين يدعم النصوص والصوت والفيديو ومشاركة الملفات والمزيد.";locale["services[40]"]="، هو شبكة IRC مستخدمة لأستضافة المشاريع التعليمية والمنفتحة.";locale["services[41]"]="ارسل من جهاز الكمبيوتر وسوف تتم المزامنة مع جهاز هاتف الأندرويد والرقم.";locale["services[42]"]="بريد الكتروني مجاني مفتوح المصدر للجماهير، كتب بأستخدام PHP.";locale["services[43]"]="Horde هو برنامج للمجموعات علي شبكة الانترنت مجاني مفتوح المصدر.";locale["services[44]"]="SquirrelMail حزمة بريد إلكتروني مستندة إلى المعايير الأساسية, مكتوب بالPHP.";locale["services[45]"]="استضافة بريد إلكتروني للشركات خالية من الإعلانات بواجهة نظيفة, و مختصرة. التطبيقات المتاحة تقويم مدمج, جهات الاتصال, ملاحظات, و تطبيق المهمات.";locale["services[46]"]="دردشة Zoho دردشة آمنة للمحادثة والتعاون للفرق تعمل علي تحسين انتاجياتهم.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/bg.js b/build/dark/development/Rambox/resources/languages/bg.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/bg.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/bn.js b/build/dark/development/Rambox/resources/languages/bn.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/bn.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/bs2.js b/build/dark/development/Rambox/resources/languages/bs2.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/bs2.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/ca.js b/build/dark/development/Rambox/resources/languages/ca.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/ca.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/cs.js b/build/dark/development/Rambox/resources/languages/cs.js
new file mode 100644
index 00000000..fed7a221
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/cs.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Předvolby";locale["preferences[1]"]="Automatický skrývat panel nabídek";locale["preferences[2]"]="Zobrazit na hlavním panelu";locale["preferences[3]"]="Nechat Rambox spuštěný na pozadí při zavření okna";locale["preferences[4]"]="Spouštět minimalizované";locale["preferences[5]"]="Spustit automaticky při startu systému";locale["preferences[6]"]="Nemusíte vidět menu celou dobu?";locale["preferences[7]"]="Chcete-li dočasně zobrazit panel nabídek, stačí stisknìte klávesu Alt.";locale["app.update[0]"]="Je dostupná nová verze!";locale["app.update[1]"]="Stáhnout";locale["app.update[2]"]="Seznam změn";locale["app.update[3]"]="Máte aktualizováno!";locale["app.update[4]"]="Máte nejnovější verzi Rambox.";locale["app.about[0]"]="O Rambox";locale["app.about[1]"]="Zdarma a open source aplikace na odesílání zpráv, která kombinuje běžné webové aplikace do jedné.";locale["app.about[2]"]="Verze";locale["app.about[3]"]="Platforma";locale["app.about[4]"]="Vyvinuto";locale["app.main[0]"]="Přidat novou službu";locale["app.main[1]"]="Zprávy";locale["app.main[2]"]="E-mail";locale["app.main[3]"]="Nebyly nalezeny žádné služby... Zkuste jiné hledání.";locale["app.main[4]"]="Povolené služby";locale["app.main[5]"]="ZAROVNÁNÍ";locale["app.main[6]"]="Vlevo";locale["app.main[7]"]="Vpravo";locale["app.main[8]"]="Položka";locale["app.main[9]"]="Položky";locale["app.main[10]"]="Odebrat všechny služby";locale["app.main[11]"]="Zabránit oznámení";locale["app.main[12]"]="Ztlumeno";locale["app.main[13]"]="Konfigurace";locale["app.main[14]"]="Odstranit";locale["app.main[15]"]="Žádné přidané služby...";locale["app.main[16]"]="Nerušit";locale["app.main[17]"]="Zakáže oznámení a zvuky ve všech službách. Perfektní pro koncentraci a soustředění.";locale["app.main[18]"]="Klávesová zkratka";locale["app.main[19]"]="Zámek Rambox";locale["app.main[20]"]="Uzamknout tuto aplikaci, pokud budete nějaký čas pryč.";locale["app.main[21]"]="Odhlášení";locale["app.main[22]"]="Přihlášení";locale["app.main[23]"]="Přihlášení pro uložení vaší konfigurace (bez uložení přihlašovacích údajů) pro účely synchronizace se všemi vašimi počítači.";locale["app.main[24]"]="Běží na";locale["app.main[25]"]="Přispět";locale["app.main[26]"]="s";locale["app.main[27]"]="z Argentiny jako Open Source projekt.";locale["app.window[0]"]="Přidat";locale["app.window[1]"]="Upravit";locale["app.window[2]"]="Jméno";locale["app.window[3]"]="Nastavení";locale["app.window[4]"]="Zarovnat doprava";locale["app.window[5]"]="Zobrazovat oznámení";locale["app.window[6]"]="Vypnout všechny zvuky";locale["app.window[7]"]="Rozšířené";locale["app.window[8]"]="Vlastní kód";locale["app.window[9]"]="Více...";locale["app.window[10]"]="Přidat službu";locale["app.window[11]"]="tým";locale["app.window[12]"]="Prosím, potvrďte...";locale["app.window[13]"]="Jste si jisti, že chcete odebrat";locale["app.window[14]"]="Opravdu chcete odstranit všechny služby?";locale["app.window[15]"]="Přidat vlastní služby";locale["app.window[16]"]="Upravit vlastní službu";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Důvěřovat neplatným certifikátům";locale["app.window[20]"]="Zap.";locale["app.window[21]"]="Vyp.";locale["app.window[22]"]="Zadejte dočasné heslo k pozdějšímu odemčení";locale["app.window[23]"]="Dočasné heslo znovu";locale["app.window[24]"]="Varování";locale["app.window[25]"]="Hesla nejsou stejné. Opakujte akci...";locale["app.window[26]"]="Rambox je uzamčen";locale["app.window[27]"]="Odemknout";locale["app.window[28]"]="Připojování...";locale["app.window[29]"]="Počkejte prosím, než se stáhne vaše nastavení.";locale["app.window[30]"]="Import";locale["app.window[31]"]="Nemáte uloženy žádné služby. Chcete importovat vaše současné služby?";locale["app.window[32]"]="Vymazat služby";locale["app.window[33]"]="Chcete odstranit všechny vaše současné služby a začít znovu?";locale["app.window[34]"]="Pokud ne, budete odhlášeni.";locale["app.window[35]"]="Potvrdit";locale["app.window[36]"]="Chcete-li importovat nastavení, Rambox musí odstranit všechny vaše aktuální služby. Chcete pokračovat?";locale["app.window[37]"]="Uzavírání připojení...";locale["app.window[38]"]="Jste si jisti, že se chcete odhlásit?";locale["app.webview[0]"]="Obnovit";locale["app.webview[1]"]="Přejít do režimu Online";locale["app.webview[2]"]="Přejít do režimu Offline";locale["app.webview[3]"]="Nástroje pro vývojáře";locale["app.webview[4]"]="Nahrávám...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Zrušit";locale["button[2]"]="Ano";locale["button[3]"]="Ne";locale["button[4]"]="Uložit";locale["main.dialog[0]"]="Chyba certifikátu";locale["main.dialog[1]"]="Služba s následující adresou URL má neplatný certifikát.";locale["main.dialog[2]"]="Budete muset odstranit službu a přidat ji znovu";locale["menu.help[0]"]="Navštivte stránky Rambox";locale["menu.help[1]"]="Nahlásit chybu...";locale["menu.help[2]"]="Požádat o pomoc";locale["menu.help[3]"]="Přispět";locale["menu.help[4]"]="Nápověda";locale["menu.edit[0]"]="Upravit";locale["menu.edit[1]"]="Vrátit";locale["menu.edit[2]"]="Provést znovu";locale["menu.edit[3]"]="Vyjmout";locale["menu.edit[4]"]="Kopírovat";locale["menu.edit[5]"]="Vložit";locale["menu.edit[6]"]="Vybrat Vše";locale["menu.view[0]"]="Zobrazení";locale["menu.view[1]"]="Obnovit";locale["menu.view[2]"]="Přepnout na celou obrazovku";locale["menu.view[3]"]="Nástroje pro vývojáře";locale["menu.window[0]"]="Okno";locale["menu.window[1]"]="Minimalizovat";locale["menu.window[2]"]="Zavřít";locale["menu.window[3]"]="Vždy navrchu";locale["menu.help[5]"]="Zkontrolovat aktualizace...";locale["menu.help[6]"]="O Rambox";locale["menu.osx[0]"]="Služby";locale["menu.osx[1]"]="Skrýt Rambox";locale["menu.osx[2]"]="Skrýt ostatní";locale["menu.osx[3]"]="Ukázat vše";locale["menu.file[0]"]="Soubor";locale["menu.file[1]"]="Ukončete Rambox";locale["tray[0]"]="Zobrazit/Skrýt okno";locale["tray[1]"]="Ukončit";locale["services[0]"]="WhatsApp je multiplatformní mobilní messaging aplikace pro iPhone, BlackBerry, Android, Windows Phone a Nokia. Zdarma posílejte text, video, obrázky, audio.";locale["services[1]"]="Slack přichází se sdružením veškeré vaší komunikace na jednom místě. Je to zasílání zpráv v reálném čase, archivace zpráv a jejich vyhledávání pro moderní týmy.";locale["services[2]"]="Noysi je komunikační nástroj pro týmy, kde je zaručeno soukromí. S Noysi můžete přistupovat k vašim konverzacím a souborům v sekundách z libovolného místa a neomezeně.";locale["services[3]"]="Okamžitě a zdarma kontaktujte lidi ve svém životě. Messenger je stejný jako SMS, ale není nutné platit za každou zprávu.";locale["services[4]"]="Zůstaňte v kontaktu s rodinou a přáteli zdarma. Získejte mezinárodní volání, online hovory zdarma a Skype pro firmy na počítače a mobilní zařízení.";locale["services[5]"]="Hangouts přináší konverzace s fotografiemi, emotikony a skupinovými videohovory zdarma. Spojte se s přáteli přes počítače, Android a Apple zařízení.";locale["services[6]"]="HipChat je poskytovatelem skupinového chatu a video chatu pro týmy. Nabízí spolupráci v reálném čase s trvalými konverzačními skupinami, sdílením souborů a sdílením obrazovky.";locale["services[7]"]="Telegram je aplikace pro zasílání zpráv se zaměřením na rychlost a bezpečnost. Je to super rychlé, jednoduché, bezpečné a zdarma.";locale["services[8]"]="WeChat je bezplatná aplikace na zasílání zpráv a volání";locale["services[9]"]="Gmail, bezplatná e-mailová služba společnosti Google, je jedním z nejpopulárnějších e-mailových aplikací na světě.";locale["services[10]"]="Služba Inbox od Gmailu je nová aplikace od týmu služby Gmail. Doručená pošta je organizované místo, které vám umožňuje věnovat se důležitým věcem. Udělejte si ve svých e-mailech pořádek.";locale["services[11]"]="ChatWork je aplikace skupinového chatu pro podnikání. Bezpečné zasílání zpráv, video chat, správa úkolů a sdílení souborů. Real-time komunikace a zvýšení produktivity pro týmy.";locale["services[12]"]="GroupMe přináší skupinové textové zprávy na každý telefon. Pište si skupinové zprávy s lidmi ve vašem životě, kteří jsou pro vás důležití.";locale["services[13]"]="Světově nejpokročilejší týmový chat splňuje funkce vyhledávané manažery.";locale["services[14]"]="Gitter je nadstavbou GitHub a je úzce integrován s organizacemi, úložišti, řešením problémů a aktivitou.";locale["services[15]"]="Steam je digitální distribuční platforma vyvinutá společností Valve Corporation, která nabízí správu digitálních práv (DRM), hraní pro více hráčů a služby sociálních sítí.";locale["services[16]"]="Zlepšete vaši hru s moderní aplikací poskytující hlasovou a textovou komunikaci. Nabízí mimo jiné křišťálově čistý hlas, více serverů, podporu kanálů, mobilní aplikace a další.";locale["services[17]"]="Převezměte kontrolu. Udělejte víc. Aplikace Outlook je e-mailová a kalendářová služba, která vám pomůže zůstat na vrcholu a odvést kus práce.";locale["services[18]"]="Aplikace Outlook pro podnikání";locale["services[19]"]="Webová e-mailová služba nabízená americkou společností Yahoo!. Tato služba je zdarma pro osobní použití, a placená pro podnikatele a firmy.";locale["services[20]"]="Svobodná webová šifrovaná e-mailová služba, která vznikla v roce 2013 ve výzkumném ústavu CERN. ProtonMail je vytvářen pro uživatele s novými znalostmi jako systém využívající šifrování na straně klienta k ochraně e-mailů a uživatelských dat před jejich odesláním na servery na rozdíl od jiných služeb typu Gmail nebo Hotmail.";locale["services[21]"]="Tutanota je open source end-to-end šifrovací e-mailový software a freemium šifrovaná e-mailová služba vytvořená na základě tohoto softwaru.";locale["services[22]"]="Webová e-mailová služba nabízející PGP šifrované e-maily. Hushmail má bezplatnou a placenou verzi služby a používá standard OpenPGP. Zdrojové kódy jsou k dispozici ke stažení.";locale["services[23]"]="E-mail pro spolupráci a chat ve vláknech pro produktivní týmy. Jedna aplikace pro veškerou vaší interní a externí komunikaci.";locale["services[24]"]="S pomocí skupinových zpráv a video hovorů překonat funkce tradiční technické podpory. Naším cílem je stát se jedničkou v poskytování chatového multiplatformního open-source řešení.";locale["services[25]"]="Hovory s HD kvalitou, soukromý a skupinový chat s vloženými fotografiemi, zvukem a videem. Vše dostupné pro váš telefon nebo tablet.";locale["services[26]"]="Sync je chatovací nástroj, který zvýší produktivitu vašeho týmu.";locale["services[27]"]="Bez popisu...";locale["services[28]"]="Umožňuje odesílat rychle zprávy komukoli na serveru Yahoo. Pozná, když vám přijde e-mail a poskytuje kurzy akcií.";locale["services[29]"]="Voxer je aplikace pro zasílání zpráv pro váš smartphone s živým hlasem (jako vysílačka PTT), textovými zprávami, obrázky a sdílením polohy.";locale["services[30]"]="Dasher umožňuje říct, co opravdu chcete s obrázky, GIFy, odkazy a dalším. Zjistěte, co vaši přátelé opravdu myslí.";locale["services[31]"]="Flowdock je váš týmový chat se sdíleným inboxem. Týmy jsou s pomocí Flowdock neustále v obraze, reagují v řádu vteřin namísto dnů a nikdy nic nezapomenou.";locale["services[32]"]="Mattermost je open source samoobslužná Slack alternativa. Jako alternativa k zasílání zpráv pomocí proprietární SaaS Mattermost přináší komunikaci všech vašich týmů do jednoho místa, navíc je prohledávatelný a přístupný kdekoli.";locale["services[33]"]="DingTalk je vícestranná platforma, která umožňuje malým a středně velkým firmám efektivně komunikovat.";locale["services[34]"]="Rodina aplikací mysms vám umožňuje odesílat textové zprávy kdekoli na vašem smartphonu, tabletu i počítači.";locale["services[35]"]="ICQ je open source aplikace pro rychlé zasílání zpráv na počítač, která byla vyvinuta a zpopularizována mezi prvními.";locale["services[36]"]="TweetDeck je sociální multimédiální aplikace pro správu účtů sítě Twitter.";locale["services[37]"]="Vlastní služba";locale["services[38]"]="Přidejte si vlastní službu, pokud není v seznamu uvedena.";locale["services[39]"]="Zinc je zabezpečená komunikační aplikace pro mobilní pracovníky, s textovými zprávami, hlasem, videem, sdílením souborů a dalším.";locale["services[40]"]="Freenode, dříve známá jako Open Projects Network, je IRC síť používaná k diskuzi při týmovém řízení projektů.";locale["services[41]"]="Textové zprávy z počítače, synchronizace s Android telefonem s číslem.";locale["services[42]"]="Svobodný a open source webmail software pro masy, napsaný v PHP.";locale["services[43]"]="Horde je svobodný a open source webový groupware.";locale["services[44]"]="SquirrelMail je standardní webmail balíček napsaný v PHP.";locale["services[45]"]="E-mailový business hosting bez reklam s jednoduchým a minimalistickým rozhraním. Obsahuje integrovaný kalendář, kontakty, poznámky a úkoly.";locale["services[46]"]="Zoho chat je bezpečná a škálovatelná platforma pro real-time komunikaci a spolupráci mezi týmy, které tím zlepší svou produktivitu.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/da.js b/build/dark/development/Rambox/resources/languages/da.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/da.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/de-CH.js b/build/dark/development/Rambox/resources/languages/de-CH.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/de-CH.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/de.js b/build/dark/development/Rambox/resources/languages/de.js
new file mode 100644
index 00000000..448da7f2
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/de.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Einstellungen";locale["preferences[1]"]="Menüleiste automatisch verstecken";locale["preferences[2]"]="In der Taskleiste anzeigen";locale["preferences[3]"]="Rambox beim Schließen in der Taskleiste behalten";locale["preferences[4]"]="Minimiert starten";locale["preferences[5]"]="Beim Systemstart automatisch starten";locale["preferences[6]"]="Die Menüleiste nicht ständig anzeigen?";locale["preferences[7]"]="Um die Menüleiste temporär anzuzeigen, die 'Alt' Taste drücken.";locale["app.update[0]"]="Eine neue Version ist verfügbar!";locale["app.update[1]"]="Herunterladen";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="Sie benutzen bereits die neueste Version!";locale["app.update[4]"]="Sie benutzen bereits die neueste Version von Rambox.";locale["app.about[0]"]="Über Rambox";locale["app.about[1]"]="Kostenlose, Open-Source Nachrichten- und E-Mail-Anwendung, die verbreitete Web-Anwendungen in einer Oberfläche vereinigt.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Plattform";locale["app.about[4]"]="Entwickelt von";locale["app.main[0]"]="Neuen Dienst hinzufügen";locale["app.main[1]"]="Mitteilungen";locale["app.main[2]"]="E-Mail";locale["app.main[3]"]="Keine Dienste gefunden... Verwenden Sie einen neuen Suchbegriff.";locale["app.main[4]"]="Aktivierte Dienste";locale["app.main[5]"]="Ausrichtung";locale["app.main[6]"]="Linksbündig";locale["app.main[7]"]="Rechtsbündig";locale["app.main[8]"]="Eintrag";locale["app.main[9]"]="Einträge";locale["app.main[10]"]="Alle Dienste entfernen";locale["app.main[11]"]="Benachrichtigungen unterdrücken";locale["app.main[12]"]="Stumm";locale["app.main[13]"]="Konfigurieren";locale["app.main[14]"]="Entfernen";locale["app.main[15]"]="Keine Dienste hinzugefügt...";locale["app.main[16]"]="Nicht stören";locale["app.main[17]"]="Deaktiviert Benachrichtigungen und Töne aller Dienste. Perfekt, um sich zu konzentrieren und fokussieren.";locale["app.main[18]"]="Tastenkombination";locale["app.main[19]"]="Rambox sperren";locale["app.main[20]"]="Sperren Sie diese Anwendung, wenn Sie für eine Weile abwesend sind.";locale["app.main[21]"]="Abmelden";locale["app.main[22]"]="Anmelden";locale["app.main[23]"]="Melden Sie sich an, um die Konfiguration mit Ihren anderen Geräten zu synchronisieren. Es werden keine Anmeldeinformationen gespeichert.";locale["app.main[24]"]="Unterstützt von";locale["app.main[25]"]="Spenden";locale["app.main[26]"]="mit";locale["app.main[27]"]="aus Argentinien als Open-Source-Projekt.";locale["app.window[0]"]="Hinzufügen";locale["app.window[1]"]="Bearbeiten";locale["app.window[2]"]="Name";locale["app.window[3]"]="Optionen";locale["app.window[4]"]="Rechts ausrichten";locale["app.window[5]"]="Benachrichtigungen anzeigen";locale["app.window[6]"]="Alle Töne stummschalten";locale["app.window[7]"]="Erweiterte Einstellungen";locale["app.window[8]"]="Benutzerdefinierter Code";locale["app.window[9]"]="weiterlesen...";locale["app.window[10]"]="Dienst hinzufügen";locale["app.window[11]"]="Team";locale["app.window[12]"]="Bitte bestätigen...";locale["app.window[13]"]="Sind Sie sicher, dass Sie folgendes entfernen möchten:";locale["app.window[14]"]="Sind Sie sicher, dass Sie alle Dienste entfernen möchten?";locale["app.window[15]"]="Benutzerdefinierten Dienst hinzufügen";locale["app.window[16]"]="Benutzerdefinierten Dienst bearbeiten";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Ungültigen Autorisierungszertifikaten vertrauen";locale["app.window[20]"]="AN";locale["app.window[21]"]="AUS";locale["app.window[22]"]="Geben Sie ein temporäres Passwort ein, um später wieder zu entsperren";locale["app.window[23]"]="Das temporäre Passwort wiederholen";locale["app.window[24]"]="Warnung";locale["app.window[25]"]="Kennwörter stimmen nicht überein. Bitte versuchen Sie es erneut...";locale["app.window[26]"]="Rambox ist gesperrt";locale["app.window[27]"]="ENTSPERREN";locale["app.window[28]"]="Verbindung wird hergestellt...";locale["app.window[29]"]="Bitte warten Sie, bis wir Ihre Konfiguration erhalten.";locale["app.window[30]"]="Importieren";locale["app.window[31]"]="Sie haben keine Dienste gespeichert. Möchten Sie Ihre aktuellen Dienste importieren?";locale["app.window[32]"]="Alle Dienste löschen";locale["app.window[33]"]="Möchten Sie Ihre aktuellen Dienste entfernen, um von vorne zu beginnen?";locale["app.window[34]"]="Falls nicht, werden Sie abgemeldet.";locale["app.window[35]"]="Bestätigen";locale["app.window[36]"]="Um Ihre Konfiguration zu importieren, muss Rambox Ihre aktuellen Dienste entfernen. Möchten Sie fortfahren?";locale["app.window[37]"]="Ihre Sitzung wird beendet...";locale["app.window[38]"]="Sind Sie sicher, dass Sie sich abmelden wollen?";locale["app.webview[0]"]="Aktualisieren";locale["app.webview[1]"]="Online gehen";locale["app.webview[2]"]="Offline gehen";locale["app.webview[3]"]="Entwickler-Werkzeuge an-/ausschalten";locale["app.webview[4]"]="Wird geladen...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Abbrechen";locale["button[2]"]="Ja";locale["button[3]"]="Nein";locale["button[4]"]="Speichern";locale["main.dialog[0]"]="Zertifikatsfehler";locale["main.dialog[1]"]="Der Dienst mit der folgenden URL hat ein ungültiges Zertifikat.";locale["main.dialog[2]"]=".";locale["menu.help[0]"]="Rambox Website besuchen";locale["menu.help[1]"]="Ein Problem melden...";locale["menu.help[2]"]="Um Hilfe bitten";locale["menu.help[3]"]="Spenden";locale["menu.help[4]"]="Hilfe";locale["menu.edit[0]"]="Bearbeiten";locale["menu.edit[1]"]="Rückgängig";locale["menu.edit[2]"]="Wiederholen";locale["menu.edit[3]"]="Ausschneiden";locale["menu.edit[4]"]="Kopieren";locale["menu.edit[5]"]="Einfügen";locale["menu.edit[6]"]="Alles markieren";locale["menu.view[0]"]="Anzeige";locale["menu.view[1]"]="Neu laden";locale["menu.view[2]"]="Vollbild ein/aus";locale["menu.view[3]"]="Entwickler-Werkzeuge ein/aus";locale["menu.window[0]"]="Fenster";locale["menu.window[1]"]="Minimieren";locale["menu.window[2]"]="Schließen";locale["menu.window[3]"]="Immer im Vordergrund";locale["menu.help[5]"]="Nach Updates suchen...";locale["menu.help[6]"]="Über Rambox";locale["menu.osx[0]"]="Dienste";locale["menu.osx[1]"]="Rambox ausblenden";locale["menu.osx[2]"]="Andere ausblenden";locale["menu.osx[3]"]="Alles zeigen";locale["menu.file[0]"]="Datei";locale["menu.file[1]"]="Rambox beenden";locale["tray[0]"]="Fenster ein-/ausblenden";locale["tray[1]"]="Beenden";locale["services[0]"]="WhatsApp ist eine plattformübergreifende, mobile Nachrichten-Anwendung für iPhone, Android, Windows Phone, BlackBerry und Nokia. Senden Sie kostenfrei Text, Videos, Bilder, Audio.";locale["services[1]"]="Slack vereint alle Ihre Kommunikation an einem Ort. Es ist ein Echtzeit-Messenger, Archivierungssystem und eine Suche für moderne Teams.";locale["services[2]"]="Noysi ist ein Kommunikations-Tool für Teams, welches Privatsphäre garantiert. Mit Noysi können Sie auf Ihre Gespräche und Dateien in Sekunden überall und unbegrenzt zugreifen.";locale["services[3]"]="Erreichen Sie die Menschen in Ihrem Leben sofort kostenlos. Messenger-Nachrichten sind wie SMS, aber Sie müssen nicht für jede Nachricht zahlen.";locale["services[4]"]="Bleiben Sie kostenlos in Kontakt mit Familie und Freund_innen. Sie können internationale Anrufe, kostenlose Online-Anrufe sowie Skype für Business nutzen, am Desktop und mobil.";locale["services[5]"]="Hangouts ermöglicht kostenfreie Gespräche mit Fotos, Emoji und sogar Gruppen-Videoanrufe. Verbinde Sie sich mit Freunden auf Computern, Android- und Apple Geräten.";locale["services[6]"]="HipChat ist ein für Teams gehosteter Gruppen-Chat und Video-Chat. Nutzen Sie Echtzeit-Zusammenarbeit in dauerhaften Chaträumen sowie bei Datei- und Bildschirmfreigaben.";locale["services[7]"]="Telegram ist ein Messenger mit Fokus auf Geschwindigkeit und Sicherheit. Er ist super schnell, einfach, sicher und kostenlos.";locale["services[8]"]="WeChat ist eine kostenlose Nachrichten-/Anruf-App, die es dir erlaubt auf einfache Art und Weise mit deiner Familie und deinen Freunden in Kontakt zu treten. Es ist die kostenlose All-in-One Kommunikationsanwendung für Text- (SMS/MMS), Sprachnachrichten, Videoanrufe und zum Teilen von Fotos und Spielen.";locale["services[9]"]="Google Mail, Googles kostenloser e-Mail-Service ist einers der weltweit beliebtesten e-Mail-Programme.";locale["services[10]"]="Inbox von Google Mail ist eine neue Anwendung vom Google Mail-Team. Inbox ist ein organisierter Ort, um Dinge zu erledigen und sich drauf zu besinnen, worauf es ankommt. Gruppierungen halten e-Mails organisiert.";locale["services[11]"]="ChatWork ist ein Gruppenchat für Unternehmen. Mit sicherem Nachrichtenversand, Video-Chat, Aufgabenmanagement und Dateifreigaben. Nutzen Sie Echtzeitkommunikation und steigern Sie die Produktivität in Teams.";locale["services[12]"]="GroupMe bringt Gruppennachrichten auf jedes Handy. Schreiben Sie Nachrichten mit den Menschen in Ihrem Leben, die Ihnen wichtig sind.";locale["services[13]"]="-Funktionen.";locale["services[14]"]="Gitter baut auf Github auf und ist eng mit Ihren Organisationen, Repositories, Issues und Aktivitäten integriert.";locale["services[15]"]="Steam ist eine digitale Vertriebsplattform entwickelt von der Valve Corporation. Sie bietet digitale Rechteverwaltung (DRM), Multiplayer-Spiele und Social-Networking-Dienste.";locale["services[16]"]="Statte dein Spiel mit einer modernen Sprach- und Text-Chat-App aus. Kristallklare Sprachübertragung, Mehrfach-Server- und Channel-Unterstützung, mobile Anwendungen und mehr.";locale["services[17]"]="Übernehmen Sie die Kontrolle. Erledigen Sie mehr. Outlook ist der kostenlose e-Mail- und Kalenderdienst, der Ihnen hilft, den Überblick zu behalten und Dinge zu erledigen.";locale["services[18]"]="Outlook für Unternehmen";locale["services[19]"]="Web-basierter E-Mail-Service von der amerikanischen Firma Yahoo!. Das Angebot ist kostenlos für den persönlichen Gebrauch, und bezahlte E-Mail-Businesspläne stehen zur Verfügung.";locale["services[20]"]="Kostenloser, webbasierter E-Mail-Service, gegründet 2013 an der CERN Forschungseinrichtung. ProtonMail ist, ganz anders als bei gängigen Webmailanbietern wie Gmail und Hotmail, auf einem zero-knowledge System entworfen, das unter Verwendung von Client-Side-Verschlüsselung E-Mail- und Benutzerdaten schützt, bevor sie zu den ProtonMail-Servern gesendet werden.";locale["services[21]"]="Tutanota ist eine Open-Source E-Mail Anwendung mit Ende-zu-Ende-Verschlüsselung und mit sicher gehosteten Freemium E-Mail Diensten auf Basis dieser Software.";locale["services[22]"]="Webbasierter E-Mail Service, der PGP-verschlüsselte E-Mails und einen Vanity-Domain-Service anbietet. Hushmail benutzt OpenPGP-Standards und der Quellcode ist zum Download verfügbar.";locale["services[23]"]="Gemeinschaftliches E-Mailen und thematisierte Gruppenchats für produktive Teams. Eine einzelne App für all deine interne und externe Kommunikation.";locale["services[24]"]="Von Gruppennachrichten und Videoanrufen bis hin zu Helpdesk-Killer-Funktionen. Unser Ziel ist es die Nummer eins bei plattformübergreifenden, quelloffenen Chat-Lösungen zu werden.";locale["services[25]"]="Anrufe in HD-Qualität, private und Gruppenchats mit Inline-Fotos, Musik und Videos. Auch erhältlich für dein Tablet und Smartphone.";locale["services[26]"]="Sync ist eine Business-Chat-Anwendung, die die Produktivität Ihres Teams steigern wird.";locale["services[27]"]="Keine Beschreibung...";locale["services[28]"]="Erlaubt Ihnen Sofortnachrichten mit jedem Benutzer des Yahoo-Servers zu teilen. Sie erhalten Benachrichtigungen zu E-Mails und Aktienkursen.";locale["services[29]"]="Voxer ist eine Messaging-App für dein Smartphone mit Live-Sprachübertragung (ähnlich Push-To-Talk bei WalkieTalkies), Text-, Foto- und Location-Sharing.";locale["services[30]"]="Mit Dasher kannst du sagen, was was du wirklich willst. Zum Beispiel mit Bildern, GIFs, Links und vielem mehr. Erstelle eine Umfrage, um herauszufinden, was deine Freunde wirklich von deiner neuen Bekanntschaft denken.";locale["services[31]"]="Flowdock ist Ihr Team-Chat mit einem gemeinsamen Posteingang. Teams mit Flowdock bleiben auf dem neuesten Stand, reagieren in Sekunden statt Tagen und vergessen niemals etwas.";locale["services[32]"]="Mattermost ist eine Open-Source, selbst-gehostete Slack-Alternative. Als Alternative zu proprietären SaaS Nachrichten-Lösungen bringt Mattermost Ihre Teamkommunikation an einem Ort, überall durchsuchbar und zugänglich.";locale["services[33]"]="DingTalk ist eine vielseitige Plattform und ermöglicht es kleinen und mittleren Unternehmen, effektiv zu kommunizieren.";locale["services[34]"]="Die Familie der mysms Anwendungen hilft Ihnen Nachrichten überall zu versenden und verbessert Ihr Nachrichten-Erlebnis auf Ihrem Smartphone, Tablet und Computer.";locale["services[35]"]="ICQ ist ein Open-Source Sofortnachrichten-Computer-Programm, das früh entwickelt und populär wurde.";locale["services[36]"]="TweetDeck ist eine Social-Media-Anwendung für die Verwaltung von Twitter-Accounts.";locale["services[37]"]="Benutzerdefinierter Dienst";locale["services[38]"]="Fügen Sie einen benutzerdefinierten Dienst hinzu, wenn er oben nicht aufgeführt ist.";locale["services[39]"]="Zinc ist eine sichere Kommunikationsanwendung für mobile Mitarbeiter, mit Text, Sprache, Video, Dateifreigaben und mehr.";locale["services[40]"]="Freenode, früher bekannt als Open-Projects-Network ist ein IRC-Netzwerk, oft genutzt um in Eigenregie zu diskutieren.";locale["services[41]"]="Schreiben Sie Nachrichten von Ihrem Computer und diese werden mit Ihrem Android-Handy & Ihrer Telefonnummer synchronisiert.";locale["services[42]"]="Kostenlose, Open-Source Webmail-Software für die Massen. In PHP geschrieben.";locale["services[43]"]="Horde ist eine kostenlose und Open-Source web-basierte Groupware.";locale["services[44]"]="SquirrelMail ist ein in PHP geschriebenes standard-basiertes Webmail-Paket.";locale["services[45]"]="Werbefreies Business e-Mail-Hosting mit einer aufgeräumten, minimalistischen Oberfläche. Kalender-, Kontakt-, Notiz- und Aufgabenanwendungen sind integriert.";locale["services[46]"]="Zoho Chat ist eine sichere und skalierbare Echtzeit-Kommunikations- und Kollaborations-Plattform für Teams, um ihre Produktivität zu verbessern.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/el.js b/build/dark/development/Rambox/resources/languages/el.js
new file mode 100644
index 00000000..9844f67b
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/el.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Προτιμήσεις";locale["preferences[1]"]="Αυτόματη απόκρυψη γραμμής μενού";locale["preferences[2]"]="Εμφάνιση στη γραμμή εργασιών";locale["preferences[3]"]="Κρατήστε το Rambox στην γραμμή εργασιών, όταν το κλείσετε.";locale["preferences[4]"]="Εκκίνηση ελαχιστοποιημένο";locale["preferences[5]"]="Αυτόματη έναρξη κατά την εκκίνηση του συστήματος";locale["preferences[6]"]="Δεν χρειάζεται να βλέπετε το μενού πάνελ συνέχεια;";locale["preferences[7]"]="Για να εμφανίσετε προσωρινά τη γραμμή μενού, απλά πατήστε το πλήκτρο Alt.";locale["app.update[0]"]="Νέα έκδοση είναι διαθέσιμη!";locale["app.update[1]"]="Λήψη";locale["app.update[2]"]="Αρχείο καταγραφής αλλαγών";locale["app.update[3]"]="Είστε ενημερωμένοι!";locale["app.update[4]"]="Έχετε την τελευταία έκδοση του Rambox.";locale["app.about[0]"]="Σχετικά με το Rambox";locale["app.about[1]"]="Δωρεάν και Ανοιχτού Κώδικα εφαρμογή μηνυμάτων και ηλεκτρονικού ταχυδρομείου που συνδυάζει κοινές διαδικτυακές εφαρμογές σε μία.";locale["app.about[2]"]="Έκδοση";locale["app.about[3]"]="Πλατφόρμα";locale["app.about[4]"]="Αναπτύχθηκε από";locale["app.main[0]"]="Προσθέσετε μια νέα υπηρεσία";locale["app.main[1]"]="Υπηρεσίες μηνυμάτων";locale["app.main[2]"]="Ηλεκτρονικό ταχυδρομείο";locale["app.main[3]"]="Δεν βρέθηκαν υπηρεσίες. Δοκιμάστε με διαφορετική αναζήτηση.";locale["app.main[4]"]="Ενεργοποιημένες υπηρεσίες";locale["app.main[5]"]="ΣΤΟΙΧΙΣΗ";locale["app.main[6]"]="Αριστερά";locale["app.main[7]"]="Δεξιά";locale["app.main[8]"]="Αντικείμενο";locale["app.main[9]"]="Αντικείμενα";locale["app.main[10]"]="Καταργήστε όλες τις υπηρεσίες";locale["app.main[11]"]="Αποτροπή ειδοποιήσεων";locale["app.main[12]"]="Σίγαση";locale["app.main[13]"]="Διαμόρφωση";locale["app.main[14]"]="Διαγραφή";locale["app.main[15]"]="Δεν προστεθήκαν υπηρεσίες...";locale["app.main[16]"]="Μην ενοχλείτε";locale["app.main[17]"]="Μπορείτε να απενεργοποιήσετε τις ειδοποιήσεις και τους ήχους σε όλες τις υπηρεσίες.";locale["app.main[18]"]="Πλήκτρο συντόμευσης";locale["app.main[19]"]="Κλείδωμα του Rambox";locale["app.main[20]"]="Κλείδωμα της εφαρμογής αν θα απομακρυνθείτε από τον υπολογιστή για ένα χρονικό διάστημα.";locale["app.main[21]"]="Αποσύνδεση";locale["app.main[22]"]="Σύνδεση";locale["app.main[23]"]="Συνδεθείτε για να αποθηκεύσετε την ρύθμιση παραμέτρων σας (χωρίς τα διαπιστευτήριά σας να αποθηκεύονται) για συγχρονισμό με όλους σας τους υπολογιστές.";locale["app.main[24]"]="Παρέχεται από";locale["app.main[25]"]="Δωρεά";locale["app.main[26]"]="με";locale["app.main[27]"]="από την Αργεντινή ως ένα έργο ανοικτού κώδικα.";locale["app.window[0]"]="Προσθήκη";locale["app.window[1]"]="Επεξεργασία";locale["app.window[2]"]="Όνομα";locale["app.window[3]"]="Επιλογές";locale["app.window[4]"]="Στοίχιση δεξιά";locale["app.window[5]"]="Εμφάνιση ειδοποιήσεων";locale["app.window[6]"]="Σίγαση όλων των ήχων";locale["app.window[7]"]="Προχωρημένες ρυθμίσεις";locale["app.window[8]"]="Προσαρμοσμένος κώδικας";locale["app.window[9]"]="διαβάστε περισσότερα...";locale["app.window[10]"]="Προσθήκη υπηρεσίας";locale["app.window[11]"]="ομάδα";locale["app.window[12]"]="Παρακαλώ, επιβεβαιώσετε...";locale["app.window[13]"]="Είστε βέβαιοι ότι θέλετε να το καταργήσετε";locale["app.window[14]"]="Είστε βέβαιοι ότι θέλετε να καταργήσετε όλες τις υπηρεσίες;";locale["app.window[15]"]="Προσθέστε προσαρμοσμένη υπηρεσία";locale["app.window[16]"]="Επεξεργασία προσαρμοσμένης υπηρεσίας";locale["app.window[17]"]="Διεύθυνση URL";locale["app.window[18]"]="Λογότυπο";locale["app.window[19]"]="Να θεωρούνται έμπιστα τα πιστοποιητικά από τρίτες πηγές";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Εισαγάγετε έναν κύριο κωδικό πρόσβασης για να ξεκλειδώσετε αργότερα την εφαρμογή";locale["app.window[23]"]="Επαναλάβετε τον κύριο κωδικό πρόσβασης";locale["app.window[24]"]="Προσοχή";locale["app.window[25]"]="Οι κωδικοί πρόσβασης δεν είναι ίδιοι. Παρακαλώ προσπαθήστε ξανά...";locale["app.window[26]"]="Το Rambox είναι κλειδωμένο";locale["app.window[27]"]="ΞΕΚΛΕΙΔΩΜΑ";locale["app.window[28]"]="Συνδέεται...";locale["app.window[29]"]="Παρακαλώ περιμένετε μέχρι να γίνει η ρύθμιση των παραμέτρων σας.";locale["app.window[30]"]="Εισαγωγή";locale["app.window[31]"]="Δεν έχετε καμία υπηρεσία που αποθηκευμένη. Θέλετε να εισαγάγετε τις τρέχουσες υπηρεσίες σας;";locale["app.window[32]"]="Εγκεκριμένες υπηρεσίες";locale["app.window[33]"]="Θέλετε να καταργήσετε όλες τις τρέχουσες υπηρεσίες σας να ξεκινήσετε από την αρχή;";locale["app.window[34]"]="Εάν όχι, θα αποσυνδεθείτε.";locale["app.window[35]"]="Επιβεβαίωση";locale["app.window[36]"]="Για να εισαγάγετε τις ρυθμίσεις σας το Rambox πρέπει να αφαιρέσει όλες τις τρέχουσες υπηρεσίες σας. Θέλετε να συνεχίσετε;";locale["app.window[37]"]="Κλείσιμο της συνεδρίας σας...";locale["app.window[38]"]="Είστε βέβαιοι ότι θέλετε να αποσυνδεθείτε;";locale["app.webview[0]"]="Ανανέωση";locale["app.webview[1]"]="Συνδεθείτε στο Ιντερνέτ";locale["app.webview[2]"]="Εκτός σύνδεσης";locale["app.webview[3]"]="Εναλλαγή σε Εργαλεία προγραμματιστή";locale["app.webview[4]"]="Φόρτωση...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Εντάξει";locale["button[1]"]="Ακύρωση";locale["button[2]"]="Ναι";locale["button[3]"]="'Οχι";locale["button[4]"]="Αποθήκευση";locale["main.dialog[0]"]="Σφάλμα πιστοποίησης";locale["main.dialog[1]"]="Η υπηρεσία με την ακόλουθη διεύθυνση URL έχει μια μη έγκυρη αρχή πιστοποίησης.";locale["main.dialog[2]"]="Θα πρέπει να καταργήσετε την υπηρεσία και να την προσθέσετε ξανά, ενεργοποιώντας στις Επιλογές το «Να θεωρούνται έμπιστα τα πιστοποιητικά από τρίτες πηγές».";locale["menu.help[0]"]="Επισκεφθείτε την ιστοσελίδα του Rambox";locale["menu.help[1]"]="Αναφορά προβλήματος...";locale["menu.help[2]"]="Ζητήστε βοήθεια";locale["menu.help[3]"]="Κάντε κάποια Δωρεά";locale["menu.help[4]"]="Βοήθεια";locale["menu.edit[0]"]="Επεξεργασία";locale["menu.edit[1]"]="Αναίρεση";locale["menu.edit[2]"]="Επανάληψη";locale["menu.edit[3]"]="Αποκοπή";locale["menu.edit[4]"]="Αντιγραφή";locale["menu.edit[5]"]="Επικόλληση";locale["menu.edit[6]"]="Επιλογή όλων";locale["menu.view[0]"]="Προβολή";locale["menu.view[1]"]="Ανανέωση";locale["menu.view[2]"]="Εναλλαγή σε πλήρη οθόνη";locale["menu.view[3]"]="Εναλλαγή σε Εργαλεία προγραμματιστή";locale["menu.window[0]"]="Παράθυρο";locale["menu.window[1]"]="Ελαχιστοποίηση";locale["menu.window[2]"]="Κλείσιμο";locale["menu.window[3]"]="Πάντα σε πρώτο πλάνο";locale["menu.help[5]"]="Έλεγχος για ενημερώσεις...";locale["menu.help[6]"]="Σχετικά με το Rambox";locale["menu.osx[0]"]="Υπηρεσίες";locale["menu.osx[1]"]="Απόκρυψη του Rambox";locale["menu.osx[2]"]="Απόκρυψη υπολοίπων";locale["menu.osx[3]"]="Εμφάνιση όλων";locale["menu.file[0]"]="Aρχείο";locale["menu.file[1]"]="Κλείστε το Rambox";locale["tray[0]"]="Εμφάνιση/Απόκρυψη παραθύρου";locale["tray[1]"]="Έξοδος";locale["services[0]"]="Το WhatsApp είναι μια διαπλατφορμική εφαρμογή μηνυμάτων για iPhone, BlackBerry, Android, Windows Phone και Nokia. Δωρεάν αποστολή κειμένου, βίντεο, εικόνων, ήχου.";locale["services[1]"]="Το Slack συγκεντρώνει όλη την επικοινωνία σου σε ένα μέρος. Αποστολή και λήψη μηνυμάτων, αρχειοθέτηση και αναζήτηση για τις σύγχρονες ομάδες· όλα σε πραγματικό χρόνο.";locale["services[2]"]="Το Noysi είναι ένα εργαλείο επικοινωνίας για ομάδες με εγγύηση απορρήτου. Με το Noysi μπορείτε να προσπελάσετε όλες τις συνομιλίες και τα αρχεία σας σε δευτερόλεπτα, από οπουδήποτε και χωρίς περιορισμούς.";locale["services[3]"]="Το Instantly είναι ιδανικό για να επικοινωνείτε δωρεάν με τους ανθρώπους σας. Η υπηρεσία μηνυμάτων του είναι ακριβώς όπως των γραπτών μηνυμάτων, με την διαφορά πως δεν χρειάζεται να πληρώνετε για κάθε μήνυμα.";locale["services[4]"]="Διατηρήστε συνεχή επαφή με την οικογένεια και τους φίλους σας, δωρεάν. Κάντε διεθνείς κλήσεις, δωρεάν κλήσεις όντας συνδεδεμένοι στο ιντερνέτ, και έχοντας το Skype για επιχειρήσεις σε υπολογιστές και κινητά.";locale["services[5]"]="Τα Hangouts ζωντανεύουν τις συνομιλίες με φωτογραφίες, emoji (φατσούλες), ακόμη και ομαδικές κλήσεις βίντεο· και όλα αυτά δωρεάν. Επικοινωνήστε με φίλους μέσω υπολογιστών και συσκευών Android και Apple.";locale["services[6]"]="To HipChat σχεδιάστηκε για να φιλοξενεί ομαδική συνομιλία και συνομιλία μέσω βίντεο για τις ομάδες. Δώστε ώθηση στη συνεργασία με δωμάτια συνομιλίας, κοινή χρήση αρχείων και κοινή χρήση οθόνης σε πραγματικό χρόνο.";locale["services[7]"]="Το Telegram είναι μια εφαρμογή επικοινωνίας με έμφαση σε ταχύτητα και ασφάλεια. Είναι εξαιρετικά γρήγορη, απλή, ασφαλής και δωρεάν.";locale["services[8]"]="To WeChat είναι μια δωρεάν εφαρμογή μηνυμάτων και κλήσεων που σας επιτρέπει να συνδεθείτε εύκολα με την οικογένεια και τους φίλους σας σε όλο τον κόσμο. Είναι η όλα-σε-ένα εφαρμογή επικοινωνίας για δωρεάν μηνύματα κειμένου (SMS/MMS), κλήσεις ήχου και βίντεο, στιγμές, διαμοιρασμό φωτογραφιών και παιχνίδια.";locale["services[9]"]="Το Gmail της Google είναι μια δωρεάν υπηρεσία ηλεκτρονικού ταχυδρομείου και είναι ένα από τα πιο δημοφιλή προγράμματα ηλεκτρονικού ταχυδρομείου στον κόσμο.";locale["services[10]"]="Το Inbox από το Gmail είναι μια νέα εφαρμογή από την ομάδα του Gmail. Το Inbox είναι ένα οργανωμένο περιβάλλον ώστε να έχετε αυτά που έχουν σημασία, κρατώντας τα mail σας οργανωμένα.";locale["services[11]"]="Το ChatWork είναι μια εφαρμογή συνομιλίας ομάδων για επαγγελματίες. Ασφαλής ανταλλαγή μηνυμάτων, βιντεοκλήσεις, διαχείριση εργασιών και κοινή χρήση αρχείων. Επικοινωνία σε πραγματικό χρόνο και αύξηση παραγωγικότητας για τις ομάδες.";locale["services[12]"]="Το GroupMe φέρνει τα ομαδικά μηνύματα κειμένου σε κάθε τηλέφωνο. Επικοινωνήστε ομαδικά με τους ανθρώπους που είναι σημαντικοί στη ζωή σας.";locale["services[13]"]="Η πιο προηγμένη ομαδική συνομιλία στον κόσμο συναντά την εταιρική αναζήτηση.";locale["services[14]"]="Το Gitter είναι χτισμένο πάνω στο Github και στενά συνδεδεμένο με τους οργανισμούς, τα αποθετήρια, τα θέματα και τη δραστηριότητά σας.";locale["services[15]"]="Το Steam είναι μια πλατφόρμα ψηφιακής διανομής που δημιουργήθηκε από τη Valve Corporation και προσφέρει διαχείριση ψηφιακών δικαιωμάτων (DRM), multiplayer παιχνίδια και υπηρεσίες κοινωνικής δικτύωσης.";locale["services[16]"]="Ανεβείτε επίπεδο με μια μοντέρνα εφαρμογή συνομιλίας με φωνή και κείμενο. Κρυστάλλινη φωνή, υποστήριξη πολλαπλών εξυπηρετητών και καναλιών, εφαρμογές για κινητά και ακόμα περισσότερα.";locale["services[17]"]="Πάρτε τον έλεγχο. Κάνετε περισσότερα. Το Outlook είναι η δωρεάν υπηρεσία ηλεκτρονικού ταχυδρομείου και ημερολογίου που σας βοηθά να επικεντρωθείτε σε ό, τι έχει σημασία.";locale["services[18]"]="Το Outlook για επιχειρήσεις";locale["services[19]"]="Υπηρεσία ηλεκτρονικού ταχυδρομείου που προσφέρεται από την αμερικανική εταιρεία του Yahoo!. Η υπηρεσία είναι δωρεάν για προσωπική χρήση, και εμπορική για επιχειρήσεις.";locale["services[20]"]="Δωρεάν και web-based κρυπτογραφημένη υπηρεσία ηλεκτρονικού ταχυδρομείου που ιδρύθηκε το 2013 στις εγκαταστάσεις έρευνας του CERN. Το ProtonMail έχει σχεδιαστεί ως ένα σύστημα μηδενικής γνώσης, χρησιμοποιώντας client-side κρυπτογράφηση για την προστασία των μηνυμάτων ηλεκτρονικού ταχυδρομείου και τα δεδομένα του χρήστη πριν την αποστολή τους στους διακομιστές του ProtonMail, σε αντίθεση με άλλες κοινές υπηρεσίες webmail όπως το Gmail και το Hotmail.";locale["services[21]"]="Το Tutanota είναι ένα λογισμικό ανοικτού κώδικα με end-to-end κρυπτογραφημένο ηλεκτρονικό ταχυδρομείο και freemium hosted υπηρεσία ασφαλούς ηλεκτρονικού ταχυδρομείου με βάση αυτό το λογισμικό.";locale["services[22]"]="Διαδικτυακή υπηρεσία ηλεκτρονικής αλληλογραφίας που προσφέρει αλληλογραφία με κρυπτογράφηση PGP και υπηρεσία προσωπικού domain.";locale["εκδοχές της υπηρεσίας. Χρησιμοποιεί πρότυπα OpenPGP και ο πηγαίος κώδικας είναι διαθέσιμος για λήψη."]="";locale["services[23]"]="Συνεργατική ηλεκτρονική αλληλογραφία και ομαδική συνομιλία με νήματα για παραγωγικές ομάδες. Μία και μόνο εφαρμογή για την εσωτερική και εξωτερική σας επικοινωνία.";locale["services[24]"]="Από τα ομαδικά μηνύματα και τις κλήσεις βίντεο μέχρι τα εξαιρετικά χαρακτηριστικά απομακρυσμένης βοήθειας, ο στόχος μας είναι να γίνουμε η νούμερο ένα διαπλατφορμική, ανοιχτού κώδικα λύση συνομιλίας.";locale["services[25]"]="HD ποιότητας κλήσεις, ιδιωτικές και ομαδικές συνομιλίες με ενσωματωμένες φωτογραφίες, μουσική και βίντεο. Επίσης διαθέσιμο για το τηλέφωνο ή το tablet σας.";locale["services[26]"]="Το Sync είναι ένα εργαλείο συνομιλίας για επαγγελματίες που θα ενισχύσει την παραγωγικότητα για την ομάδα σας.";locale["services[27]"]="Δεν υπάρχει περιγραφή...";locale["services[28]"]="Σας δίνει τη δυνατότητα άμεσων μηνυμάτων με οποιονδήποτε στον εξυπηρετητή Yahoo. Σας ενημερώνει για τη λήψη αλληλογραφίας και παρέχει τις τιμές των μετοχών.";locale["services[29]"]="Το Voxer είναι μια messaging εφαρμογή για το smartphone σας με «ζωντανή» φωνή (σαν PTT γουόκι τόκι), με κείμενο, φωτογραφία και κοινή χρήση τοποθεσίας.";locale["services[30]"]="Το Dasher σας επιτρέπει να πείτε αυτό που πραγματικά θέλετε με εικόνες, GIFs, συνδέσμους και πολλά άλλα. Κάντε μια δημοσκόπηση για να μάθετε τι πραγματικά σκέφτονται οι φίλοι σας για το νέο σας αμόρε.";locale["services[31]"]="Το Flowdock είναι η ομαδική σας συνομιλία με κοινό φάκελο εισερχομένων. Οι ομάδες που χρησιμοποιούν το Flowdock είναι πάντα ενημερωμένες, αντιδρούν σε δευτερόλεπτα αντί για ημέρες, και δεν ξεχνούν ποτέ τίποτα.";locale["services[32]"]="Το Mattermost είναι ένα ανοιχτού κώδικα, self-hosted εναλλακτικό του Slack. Ως εναλλακτικό της ιδιοταγούς SaaS υπηρεσίας μηνυμάτων, το Mattermost συγκεντρώνει την ομαδική σας επικοινωνία σε ένα μέρος, κάνοντας την ερευνήσιμη και προσβάσιμη από οπουδήποτε.";locale["services[33]"]="Το DingTalk είναι μια πολύπλευρη πλατφόρμα που δίνει τη δυνατότητα σε επιχειρήσεις μικρού και μεσαίου μεγέθους να επικοινωνούν αποτελεσματικά.";locale["services[34]"]="Η οικογένεια των εφαρμογών mysms σας βοηθά να επικοινωνήσετε με μηνύματα οπουδήποτε και ενισχύει την εμπειρία ανταλλαγής μηνυμάτων στο smartphone, το tablet και τον υπολογιστή σας.";locale["services[35]"]="Το ICQ είναι ένα ανοικτού κώδικα πρόγραμμα ανταλλαγής άμεσων μηνυμάτων υπολογιστή από τα πρώτα που δημιουργήθηκαν και έγιναν γνωστά.";locale["services[36]"]="Το TweetDeck είναι μια dashboard εφαρμογή για την διαχείριση Twitter λογαριασμών.";locale["services[37]"]="Προσαρμοσμένη υπηρεσία";locale["services[38]"]="Προσθέστε μια προσαρμοσμένη υπηρεσία, αν δεν αναφέρεται παραπάνω.";locale["services[39]"]="Το Zinc είναι μια ασφαλής εφαρμογή επικοινωνίας για εργαζόμενους εν κινήσει, με μηνύματα κειμένου, φωνή, βίντεο, διαμοιρασμό αρχείων και πολλά άλλα.";locale["services[40]"]="Το Freenode, παλαιότερα γνωστό ως Open Projects Network, είναι ένα δίκτυο IRC που χρησιμοποιείται για τη συζήτηση peer-directed έργων.";locale["services[41]"]="Μηνύματα από τον υπολογιστή σας, συγχρονισμένα με το Android τηλέφωνο και τον αριθμό σας.";locale["services[42]"]="Δωρεάν και ανοιχτού κώδικα λογισμικό διαδικτυακής αλληλογραφίας για όλους, γραμμένο σε PHP.";locale["services[43]"]="Το Horde είναι ένα δωρεάν και ανοιχτού κώδικα διαδικτυακό λογισμικό ομαδικής συνεργασίας.";locale["services[44]"]="Το SquirrelMail είναι ένα webmail λογισμικό βασισμένο σε πρότυπα, γραμμένο σε PHP.";locale["services[45]"]="Επιχειρηματικό Email Hosting, απαλλαγμένο από διαφημίσεις, με ένα καθαρό και μινιμαλιστικό περιβάλλον εργασίας. Ενσωματωμένο ημερολόγιο, επαφές, σημειώσεις, εφαρμογές οργάνωσης.";locale["services[46]"]="Το Zoho chat είναι μια ασφαλής και επεκτάσιμη σε πραγματικό χρόνο, συνεργατική πλατφόρμα επικοινωνίας για ομάδες ώστε να βελτιώσουν την παραγωγικότητά τους.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/en.js b/build/dark/development/Rambox/resources/languages/en.js
new file mode 100644
index 00000000..94cfd980
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/en.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when closing it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organizations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/es-ES.js b/build/dark/development/Rambox/resources/languages/es-ES.js
new file mode 100644
index 00000000..c85b7404
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/es-ES.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferencias";locale["preferences[1]"]="Ocultar automáticamente la barra de menú";locale["preferences[2]"]="Mostrar en la barra de tareas";locale["preferences[3]"]="Mantener Rambox en la barra de tareas cuando se cierra";locale["preferences[4]"]="Iniciar minimizado";locale["preferences[5]"]="Iniciar automáticamente en el arranque del sistema";locale["preferences[6]"]="¿No necesita ver la barra de menú todo el tiempo?";locale["preferences[7]"]="Para mostrar temporalmente la barra de menú, simplemente oprima la tecla Alt.";locale["app.update[0]"]="¡Nueva versión disponible!";locale["app.update[1]"]="Descargar";locale["app.update[2]"]="Registro de cambios";locale["app.update[3]"]="¡Estás actualizado!";locale["app.update[4]"]="Tiene la última versión disponible.";locale["app.about[0]"]="Acerca de Rambox";locale["app.about[1]"]="Aplicación libre y de código abierto, que combina las aplicaciones web más comunes de mensajería y correo electrónico.";locale["app.about[2]"]="Versión";locale["app.about[3]"]="Plataforma";locale["app.about[4]"]="Desarrollado por";locale["app.main[0]"]="Añadir nuevo servicio";locale["app.main[1]"]="Mensajería";locale["app.main[2]"]="Correo electrónico";locale["app.main[3]"]="No se encontraron los servicios... Prueba con otra búsqueda.";locale["app.main[4]"]="Servicios Habilitados";locale["app.main[5]"]="ALINEAR";locale["app.main[6]"]="Izquierda";locale["app.main[7]"]="Derecha";locale["app.main[8]"]="Ítem";locale["app.main[9]"]="Ítems";locale["app.main[10]"]="Quitar todos los servicios";locale["app.main[11]"]="Evitar notificaciones";locale["app.main[12]"]="Silenciado";locale["app.main[13]"]="Configurar";locale["app.main[14]"]="Quitar";locale["app.main[15]"]="Ningún servicio añadido...";locale["app.main[16]"]="No molestar";locale["app.main[17]"]="Desactivar notificaciones y sonidos en todos los servicios. Perfecto para estar concentrados y enfocados.";locale["app.main[18]"]="Tecla de acceso rápido";locale["app.main[19]"]="Bloquear Rambox";locale["app.main[20]"]="Bloquear la aplicación si estará ausente por un período de tiempo.";locale["app.main[21]"]="Salir";locale["app.main[22]"]="Acceder";locale["app.main[23]"]="Inicia sesión para guardar la configuración (no hay credenciales almacenadas) y sincronizarla con todos sus equipos.";locale["app.main[24]"]="Creado por";locale["app.main[25]"]="Donar";locale["app.main[26]"]="con";locale["app.main[27]"]="desde Argentina como un proyecto Open Source.";locale["app.window[0]"]="Añadir";locale["app.window[1]"]="Editar";locale["app.window[2]"]="Nombre";locale["app.window[3]"]="Opciones";locale["app.window[4]"]="Alinear a la derecha";locale["app.window[5]"]="Mostrar las notificaciones";locale["app.window[6]"]="Silenciar todos los sonidos";locale["app.window[7]"]="Opciones avanzadas";locale["app.window[8]"]="Código personalizado";locale["app.window[9]"]="leer más...";locale["app.window[10]"]="Añadir servicio";locale["app.window[11]"]="equipo";locale["app.window[12]"]="Confirme, por favor...";locale["app.window[13]"]="¿Estás seguro de que desea borrar";locale["app.window[14]"]="¿Está seguro que desea eliminar todos los servicios?";locale["app.window[15]"]="Añadir servicio personalizado";locale["app.window[16]"]="Editar servicio personalizado";locale["app.window[17]"]="URL (dirección web)";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Confiar en certificados de autoridad inválidos";locale["app.window[20]"]="ACTIVADO";locale["app.window[21]"]="DESACTIVADO";locale["app.window[22]"]="Escriba una contraseña temporal para desbloquear más adelante";locale["app.window[23]"]="Repita la contraseña temporal";locale["app.window[24]"]="Advertencia";locale["app.window[25]"]="Las contraseñas no son iguales. Por favor, inténtelo de nuevo...";locale["app.window[26]"]="Rambox está bloqueado";locale["app.window[27]"]="DESBLOQUEAR";locale["app.window[28]"]="Conectando...";locale["app.window[29]"]="Por favor, espere hasta que consigamos su configuración.";locale["app.window[30]"]="Importar";locale["app.window[31]"]="No tiene ningún servicio de guardado. ¿Quiere importar sus servicios actuales?";locale["app.window[32]"]="Limpiar servicios";locale["app.window[33]"]="¿Desea eliminar todos sus servicios actuales para empezar?";locale["app.window[34]"]="Si no, se cerrará su sesión.";locale["app.window[35]"]="Aplicar";locale["app.window[36]"]="Para importar la configuración, Rambox necesita eliminar todos sus servicios actuales. ¿Desea continuar?";locale["app.window[37]"]="Cerrando su sesión...";locale["app.window[38]"]="¿Seguro que quiere salir?";locale["app.webview[0]"]="Volver a cargar";locale["app.webview[1]"]="Conectarse";locale["app.webview[2]"]="Desconectarse";locale["app.webview[3]"]="Herramientas de desarrollo";locale["app.webview[4]"]="Cargando...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Aceptar";locale["button[1]"]="Cancelar";locale["button[2]"]="Si";locale["button[3]"]="No";locale["button[4]"]="Guardar";locale["main.dialog[0]"]="Error de certificación";locale["main.dialog[1]"]="El servicio con la siguiente URL tiene un certificado de autoridad inválido.";locale["main.dialog[2]"]="Va a tener que remover el servicio y agregarlo de nuevo";locale["menu.help[0]"]="Visite el sitio web de Rambox";locale["menu.help[1]"]="Reportar un problema...";locale["menu.help[2]"]="Pida ayuda";locale["menu.help[3]"]="Hacer un donativo";locale["menu.help[4]"]="Ayuda";locale["menu.edit[0]"]="Editar";locale["menu.edit[1]"]="Deshacer";locale["menu.edit[2]"]="Rehacer";locale["menu.edit[3]"]="Cortar";locale["menu.edit[4]"]="Copiar";locale["menu.edit[5]"]="Pegar";locale["menu.edit[6]"]="Seleccionar todo";locale["menu.view[0]"]="Ver";locale["menu.view[1]"]="Volver a cargar";locale["menu.view[2]"]="Alternar Pantalla Completa";locale["menu.view[3]"]="Alternar herramientas de desarrollo";locale["menu.window[0]"]="Ventana";locale["menu.window[1]"]="Minimizar";locale["menu.window[2]"]="Cerrar";locale["menu.window[3]"]="Siempre visible";locale["menu.help[5]"]="Buscar actualizaciones...";locale["menu.help[6]"]="Acerca de Rambox";locale["menu.osx[0]"]="Servicios";locale["menu.osx[1]"]="Ocultar Rambox";locale["menu.osx[2]"]="Ocultar otros";locale["menu.osx[3]"]="Mostrar todo";locale["menu.file[0]"]="Archivo";locale["menu.file[1]"]="Salir de Rambox";locale["tray[0]"]="Mostrar/Ocultar ventana";locale["tray[1]"]="Salir";locale["services[0]"]="WhatsApp es una aplicación de mensajería móvil multiplataforma para iPhone, BlackBerry, Android, Windows Phone y Nokia. Enviar texto, imágenes, audio gratis.";locale["services[1]"]="Slack es una aplicación que contiene todas sus comunicaciones en un solo lugar. Maneja mensajería, archivado y búsqueda para grupos modernos.";locale["services[2]"]="Noysi es una herramienta de comunicación para equipos donde la privacidad está garantizada. Con Noysi usted puede acceder a todas tus conversaciones y archivos en segundos desde cualquier lugar y sin límite.";locale["services[3]"]="Llega al instante a la vida de las persona de forma gratuita. Messenger es igual que los mensajes de texto, pero usted no tiene que pagar por cada mensaje.";locale["services[4]"]="Manténgase en contacto con amigos y familiares de forma gratuita. Reciba llamadas internacionales, llamadas gratuitas en línea y de Skype para negocio. En computadoras de escritorio y dispositivos móviles.";locale["services[5]"]="Hangouts le da vida a las conversaciones con fotos, emoji, e incluso videollamadas grupales de forma gratuita. Conéctate con amigos a través de ordenadores, dispositivos Android y Apple.";locale["services[6]"]="HipChat es un chat de grupos alojados y de vídeo chats grupales. Impulsa el potencial de colaboración en tiempo real con salas de chat persistentes y que permite compartir archivos e incluso la pantalla.";locale["services[7]"]="Telegram es una aplicación de mensajería con un enfoque en la velocidad y seguridad. Es súper rápido, simple, seguro y gratis.";locale["services[8]"]="WeChat es una aplicación gratuita de llamadas y mensajería que te permite conectarte fácilmente con la familia y amigos en todos los países. Es una aplicación todo-en-uno: comunicaciones de texto gratis (SMS/MMS), voz, videollamadas, momentos, fotos y juegos.";locale["services[9]"]="Gmail, es el servicio de correo gratuito de Google, es uno de los programas de correo electrónico más populares del mundo.";locale["services[10]"]="Inbox de Gmail, es una nueva aplicación de el equipo de Gmail. Inbox es un lugar organizado para hacer las cosas y así poder ocuparte de lo que te importa. Los correos son organizan en paquetes.";locale["services[11]"]="ChatWork es una aplicación de chat de grupo para negocios. Mensajería segura, video chat, gestión de tareas y uso compartido de archivos. Comunicación en tiempo real y aumento de la productividad para equipos.";locale["services[12]"]="GroupMe trae la mensajería de texto grupal a cada teléfono. Envía mensajes de texto grupal con las personas importantes en su vida.";locale["services[13]"]="El chat grupal más avanzado del mundo unido a búsqueda empresarial.";locale["services[14]"]="Gitter está construido en GitHub y está estrechamente integrado con organizaciones, repositorios, temas y actividades.";locale["services[15]"]="Steam es una plataforma de distribución digital desarrollada por Valve Corporation que ofrece gestión de derechos digitales (DRM), juegos multijugador y servicios de redes sociales.";locale["services[16]"]="Intensifique su juego con una moderna aplicación de chat de texto y voz. Voz limpia, varios servidores y soporte de canal, aplicaciones móviles y más.";locale["services[17]"]="Tome el control. Haga más. Outlook es el servicio de correo y de calendario gratuito que le ayuda a mantenerse al tanto de lo que importa y completar las cosas.";locale["services[18]"]="Outlook para negocios";locale["services[19]"]="Servicio de correo electrónico basado en Web ofrecido por la empresa estadounidense Yahoo!. El servicio es gratuito para uso personal, y hay disponibles planes de correo electrónico de pago para negocios.";locale["services[20]"]="Servicio de correo electrónico gratuito y web fundado en 2013 en el centro de investigación CERN. ProtonMail está diseñado como un sistema de cero-conocimiento, utilizando cifrado en el cliente, para proteger los mensajes y los datos del usuario antes de ser enviados a los servidores de ProtonMail, en contraste con otros servicios comunes de webmail como Gmail y Hotmail.";locale["services[21]"]="Tutanota es un software de correo electrónico cifrado de punta a punta de código libre y freemium.";locale["services[22]"]="del servicio. Hushmail utiliza estándares de OpenPGP y el código fuente está disponible para su descarga.";locale["services[23]"]="Colaboración en grupo mediante chat y correo electrónico para equipos productivos. Una sola aplicación para su comunicación interna y externa.";locale["services[24]"]="Desde mensajes de grupo y video llamadas, hasta ayuda remota, nuestro objetivo es convertirnos en la plataforma de chat número uno de código libre.";locale["services[25]"]="Llamadas con calidad HD, charlas privadas y grupales con fotos en línea, música y video. También disponible para su teléfono o tableta.";locale["services[26]"]="Sync es una herramienta de chat de negocios que impulsará la productividad de su equipo.";locale["services[27]"]="Sin descripción...";locale["services[28]"]="Permite mensajes instantáneos con cualquier persona en el servidor de Yahoo. Indica cuando llegó un correo y da cotizaciones.";locale["services[29]"]="Voxer es una aplicación de mensajería para smartphone con voz en directo (como un PTT walkie talkie), texto, fotos y ubicación compartida.";locale["services[30]"]="Dasher le permite decir lo que realmente quiera con fotos, GIFs, links y más. Puede realizar una encuesta para averiguar lo que sus amigos piensan de su nuevo boo.";locale["services[31]"]="Flowdock es el chat de su equipo, con un buzón compartido. Utilizando Flowdock podrá mantenerse al día, reaccionar en segundos en lugar de días y no olvidar nada.";locale["services[32]"]="Mattermost es de código abierto, alternativa a Slack autohospedado. Como alternativa a la mensajería propietaria de SaaS, Mattermost trae todas las comunicaciones de su equipo en un solo lugar, permitiendo hacer búsquedas y ser accesible en cualquier lugar.";locale["services[33]"]="DingTalk es una multiplataforma que permite a pequeñas y medianas empresas comunicarse de manera efectiva.";locale["services[34]"]="La familia de aplicaciones de mysms ayuda a enviar mensajes de texto en cualquier lugar y mejora su experiencia de mensajería en tu smartphone, tablet y ordenador.";locale["services[35]"]="ICQ es un programa de mensajería instantánea de código libre que fue el primero desarrollado y popularizado.";locale["services[36]"]="TweetDeck es un panel de redes sociales para la gestión de cuentas de Twitter.";locale["services[37]"]="Servicio personalizado";locale["services[38]"]="Añadir un servicio personalizado si no está listado arriba.";locale["services[39]"]="Zinc es una aplicación de comunicación segura para los trabajadores con movil, con texto, voz, vídeo, uso compartido de archivos y más.";locale["services[40]"]="Freenode, anteriormente conocido como Open Projects Network, es una red IRC utilizada para discutir proyectos dirigidos por pares.";locale["services[41]"]="Envía mensajes de texto desde el ordenador, sincronizado con tu teléfono Android y número.";locale["services[42]"]="Software de webmail gratuito y de código abierto para las masas, escrito en PHP.";locale["services[43]"]="Horde es una plataforma web gratuita y de código abierto.";locale["services[44]"]="SquirrelMail es un paquete de correo web basado en estándares, escrito en PHP.";locale["services[45]"]="Hosting de correo electrónico para empresas libre de publicidades con una interfaz limpia y minimalista. Integrada con calendario, contactos, notas, aplicaciones de tareas.";locale["services[46]"]="Zoho Chat es una plataforma segura y escalable en tiempo real de comunicación y colaboración para que los equipos puedan mejorar su productividad.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/fa.js b/build/dark/development/Rambox/resources/languages/fa.js
new file mode 100644
index 00000000..2b885985
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/fa.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="تنظیمات";locale["preferences[1]"]="پنهان کردن خودکار نوار منو";locale["preferences[2]"]="نمایش در نوار وظیفه";locale["preferences[3]"]="رم باکس را در نوار وظیفه نگه دارید هنگامی که آن را می بندید";locale["preferences[4]"]="شروع به حالت کوچک شده";locale["preferences[5]"]="شروع به صورت خودکار در هنگام راه اندازی سیستم";locale["preferences[6]"]="همیشه نیاز نیست که نوار منو را ببینید?";locale["preferences[7]"]="برای نمایش نوار منو به طور موقت، فقط کلید Alt را فشار دهید.";locale["app.update[0]"]="نسخه جدید در دسترس است!";locale["app.update[1]"]="بارگیری";locale["app.update[2]"]="گزارش تغییرات";locale["app.update[3]"]="شما به روز هستید!";locale["app.update[4]"]="شما آخرین نسخه رم باکس را دارید.";locale["app.about[0]"]="درباره رم باکس";locale["app.about[1]"]="نرم افزار رایگان و منبع باز پیام رسانی و ایمیل که ترکیب مشترک برنامه های کاربردی وب در یکی است.";locale["app.about[2]"]="نسخه";locale["app.about[3]"]="سکو ( سیستم عامل)";locale["app.about[4]"]="توسعه یافته توسط";locale["app.main[0]"]="افزودن سرویس جدید";locale["app.main[1]"]="پیام رسانی";locale["app.main[2]"]="ایمیل";locale["app.main[3]"]="هیچ خدماتی در بر نداشت... جستجوی دیگری را امتحان کنید.";locale["app.main[4]"]="خدمات فعال";locale["app.main[5]"]="تراز کردن";locale["app.main[6]"]="چپ";locale["app.main[7]"]="راست";locale["app.main[8]"]="آیتم";locale["app.main[9]"]="موارد";locale["app.main[10]"]="حذف همه خدمات";locale["app.main[11]"]="جلوگیری از اطلاعیه ها";locale["app.main[12]"]="بی صدا شد";locale["app.main[13]"]="پیکربندی";locale["app.main[14]"]="حذف";locale["app.main[15]"]="هیچ خدماتی اضافه نشده...";locale["app.main[16]"]="مزاحم نشوید";locale["app.main[17]"]="غیر فعال کردن اعلان ها و صداها در تمام خدمات. مناسب برای متمرکز شدن.";locale["app.main[18]"]="کلید میانبر";locale["app.main[19]"]="قفل کردن رم باکس";locale["app.main[20]"]="این برنامه قفل شود ( اگر برای مدت زمانی کنار میروید).";locale["app.main[21]"]="خروج";locale["app.main[22]"]="ورود به سیستم";locale["app.main[23]"]="ورود برای ذخیره پیکربندی شما (هیچ اطلاعات کاربری ذخیره نشده) در همگام سازی با تمامی رایانه های شما.";locale["app.main[24]"]="قدرت گرفته از";locale["app.main[25]"]="کمک مالی";locale["app.main[26]"]="با";locale["app.main[27]"]="یک پروژه متن باز از آرژانتین.";locale["app.window[0]"]="اضافه کردن";locale["app.window[1]"]="ويرايش";locale["app.window[2]"]="نام";locale["app.window[3]"]="گزینه ها";locale["app.window[4]"]="تراز به راست";locale["app.window[5]"]="نمایش اعلانها";locale["app.window[6]"]="قطع همه صداها";locale["app.window[7]"]="پیشرفته";locale["app.window[8]"]="کد سفارشی";locale["app.window[9]"]="بیشتر بخوانید...";locale["app.window[10]"]="افزودن سرویس";locale["app.window[11]"]="تیم";locale["app.window[12]"]="لطفاً تایید کنید...";locale["app.window[13]"]="آیا مطمئن هستید که می خواهید حذف کنید";locale["app.window[14]"]="آیا مطمئن هستید که میخواهید همه خدمات را حذف کنید?";locale["app.window[15]"]="افزودن خدمات سفارشی";locale["app.window[16]"]="ویرایش خدمات سفارشی";locale["app.window[17]"]="آدرس اینترنتی";locale["app.window[18]"]="آرم";locale["app.window[19]"]="به گواهی های نامعتبر اعتماد کن";locale["app.window[20]"]="روشن";locale["app.window[21]"]="خاموش";locale["app.window[22]"]="رمز عبور موقت را وارد کنید تا آن را باز کنید";locale["app.window[23]"]="رمز عبور موقت را تکرار کنید";locale["app.window[24]"]="هشدار";locale["app.window[25]"]="رموز عبور یکسان نیستند. لطفا دوباره امتحان کنید...";locale["app.window[26]"]="رم باکس قفل شده است";locale["app.window[27]"]="بازکردن";locale["app.window[28]"]="در حال اتصال...";locale["app.window[29]"]="لطفاً تا زمانیکه ما پیکربندی شما را میگیریم صبر کنید.";locale["app.window[30]"]="وارد کردن";locale["app.window[31]"]="شما هیچ سرویس ذخیره شده ای ندارید. می خواهید خدمات فعلیتان را وارد کنید?";locale["app.window[32]"]="خدمات روشن";locale["app.window[33]"]="آیا شما می خواهید همه خدمات فعلی خود را برای شروع مجدد حذف کنید?";locale["app.window[34]"]="اگر نه، شما خارج خواهید شد.";locale["app.window[35]"]="تایید";locale["app.window[36]"]="برای وارد کردن تنظیمات شما، رم باکس نیاز به حذف همه خدمات فعلی شما را دارد. آیا مایلید ادامه دهید?";locale["app.window[37]"]="بستن جلسه شما...";locale["app.window[38]"]="آیا مطمئن هستید که میخواهید خارج شوید?";locale["app.webview[0]"]="بارگزاری مجدد";locale["app.webview[1]"]="آنلاین شدن";locale["app.webview[2]"]="آفلاین شدن";locale["app.webview[3]"]="ابزارهای توسعه دهنده آمار بازدید";locale["app.webview[4]"]="در حال بارگذاری...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="باشه";locale["button[1]"]="لغو کردن";locale["button[2]"]="بله";locale["button[3]"]="خیر";locale["button[4]"]="ذخیره";locale["main.dialog[0]"]="خطای گواهینامه";locale["main.dialog[1]"]="سرویس با آدرس زیر یک گواهینامه نامعتبر دارد.";locale["main.dialog[2]"]="در گزینه ها.";locale["menu.help[0]"]="بازدید وبسایت رم باکس";locale["menu.help[1]"]="گزارش دادن یک مشکل،...";locale["menu.help[2]"]="درخواست کمک";locale["menu.help[3]"]="کمک مالی";locale["menu.help[4]"]="راهنما";locale["menu.edit[0]"]="ویرایش";locale["menu.edit[1]"]="برگشتن";locale["menu.edit[2]"]="انجام مجدد";locale["menu.edit[3]"]="بریدن و انتقال";locale["menu.edit[4]"]="رونوشت";locale["menu.edit[5]"]="چسباندن";locale["menu.edit[6]"]="انتخاب همه";locale["menu.view[0]"]="نمایش";locale["menu.view[1]"]="بارگزاری مجدد";locale["menu.view[2]"]="تغییر به حالت تمام صفحه";locale["menu.view[3]"]="ابزارهای توسعه دهنده آمار بازدید";locale["menu.window[0]"]="پنجره";locale["menu.window[1]"]="کوچک سازی";locale["menu.window[2]"]="بستن";locale["menu.window[3]"]="همیشه در بالا";locale["menu.help[5]"]="بررسی برای به روز رسانی...";locale["menu.help[6]"]="درباره رم باکس";locale["menu.osx[0]"]="خدمات";locale["menu.osx[1]"]="پنهان کردن رم باکس";locale["menu.osx[2]"]="پنهان کردن دیگران";locale["menu.osx[3]"]="نمایش همه";locale["menu.file[0]"]="پرونده";locale["menu.file[1]"]="ترک رم باکس";locale["tray[0]"]="نمایش یا پنهان نمودن پنجره";locale["tray[1]"]="خارج شدن";locale["services[0]"]="واتس اپ یک برنامه پیام رسانی تلفن همراه چند سکویی برای آی فون، بلک بری، اندروید، ویندوز فون و نوکیا است. متن، فایل تصویری، عکس، پیام صوتی را به رایگان بفرستید.";locale["services[1]"]="Slack تمامی ارتباطهای شما را با هم در یک جا می آورد. آن یک پیام رسان آنلاین است، آرشیو و جستجو برای تیم های مدرن است.";locale["services[2]"]="Noysi ابزار ارتباطی برای تیم هایی میباشد که در آن حریم خصوصی تضمین شده است. با Noysi شما می توانید به تمام مکالمات و پوشه ها در هر لحظه از هر کجا و نامحدود دسترسی داشته باشید.";locale["services[3]"]="به افراد در زندگی خود را به رایگان و فوراً برسید. مسنجر درست مانند پیام متنی است، اما شما مجبور نیستید برای هر پیام هزینه پرداخت کنید.";locale["services[4]"]="به رایگان با خانواده و دوستان در تماس باشید. تلفن بین المللی، تماس های آنلاین رایگان و اسکایپ برای کسب و کار در دسکتاپ و موبایل بگیرید.";locale["services[5]"]="هنگ آوتس مکالمات با عکس و حتی تماس های ویدئویی گروهی رایگان ارائه میکند. با دوستانتان در رایانه ها و اندروید و دستگاههای اپل متصل بمانید.";locale["services[6]"]="HipChat میزبان گروه گپ و گپ تصویری است که برای تیم ها ساخته شده است. همراه با اتاق های چت مداوم به اشتراک گذاری فایل و به اشتراک گذاری صفحه نمایش.";locale["services[7]"]="Telegram نرم افزاری کاربردی با تمرکز بر روی سرعت و امنیت است. فوق العاده سریع و ساده و امن و آزاد است.";locale["services[8]"]="WeChat یک پیام رسان رایگان است که امکان اتصال راحت با خانواده را میسر میکند. دوستانتان در تمام کشورها. یک نرم افزار همه کاره برای گپ متنی رایگان (SMS/MMS)، تماسهای صوتی و تصویری, لحظات, به اشتراک گذاری عکس و بازی.";locale["services[9]"]="Gmail خدمات رایگان پست الکترونیک گوگل یکی از محبوب ترین برنامه های ایمیل در جهان است.";locale["services[10]"]="Gmail نرم افزاری کاربردی از تیم جی میل است. مکانی سازمان یافته برای انجام کارها و بازگشت به هر موردی است. بسته نرم افزاری ایمیل ها را سازماندهی شده نگه میدارد.";locale["services[11]"]="ChatWork یک نرم افزار چت گروهی برای کسب و کار است. پیام رسانی امن، گپ تصویری، مدیریت وظیفه و اشتراک گذاری فایل. زمان واقعی ارتباط و افزایش بهره وری برای تیم ها.";locale["services[12]"]="GroupMe پیام متنی گروهی را برای هر تلفنی به ارمغان می آورد. پیام گروهی با مردمی که در زندگی شما و برای شما مهم هستند.";locale["services[13]"]="پیشرفته ترین گپ گروهی جهان جستجویی گسترده را ملاقات می کند.";locale["services[14]"]="Gitter بالای GitHub ساخته شده است و با سازمانها، مخازن مسائل و فعالیت های شما یکپارچه محکم شده است.";locale["services[15]"]="Steam پلت فرم توزیع دیجیتالی است توسعه یافته توسط شرکت ارائه مدیریت حقوق دیجیتال (DRM) بازی چند نفره و خدمات شبکه های اجتماعی است.";locale["services[16]"]="بازی خود را با گپ صوتی مدرن و متن و صدای شفاف، سرور های متعدد و کانال پشتیبانی، برنامه های موبایل، و غیره مستحکم تر کنید.";locale["services[17]"]="کنترل کنید. بیشتر انجام دهید. آوت لوک سرویس رایگان ایمیل و تقویم است که به شما کمک میکند بر روی هر موضوعی بمانید و ترتیب کارها را بدهید.";locale["services[18]"]="چشم انداز برای کسب و کار";locale["services[19]"]="سرویس پست الکترونیکی مبتنی بر وب ارائه شده توسط شرکت آمریکایی یاهو. سرویس رایگان برای استفاده شخصی است و پرداخت برای کسب و کار برنامه های ایمیل در دسترس هستند.";locale["services[20]"]="سرویس ایمیل رایگان و مبتنی بر وب رمزگذاری شده تاسیس شده در سال 2013 در مرکز تحقیقات سرن. ProtonMail به عنوان یک سیستم دانش بنیاد با استفاده از رمزگذاری سمت سرویس گیرنده برای محافظت از ایمیل ها و داده های کاربر قبل از ارسال به سرور های ProtonMail در مقایسه با سایر خدمات ایمیل تحت وب رایج مانند Gmail و Hotmail طراحی شده است.";locale["services[21]"]="Tutanota یک نرم افزار متن باز ایمیل رمزگذاری شده دوطرفه و سرتاسریست و اساس این نرم افزار بر خدمات امن رایگان ایمیل است.";locale["services[22]"]="را ارائه می دهد. Hushmail از استانداردهای OpenPGP استفاده میکند و منبع آن برای دانلود در دسترس است.";locale["services[23]"]="ایمیل مشترک و چت گروهی موضوعی برای تیم های تولیدی. یک برنامه واحد برای همه ارتباطات داخلی و خارجی شما.";locale["services[24]"]="از پیام های گروهی و تماس های ویدئویی تمامی مراحل ویژگی های از بین برنده بخش پشتیبانی. هدف ما این است که به اولین انتخاب نرم افزار متن باز چند سکویی تبدیل شویم.";locale["services[25]"]="کیفیت تماس HD، چت خصوصی و گروهی با عکس های درون خطی، موسیقی و ویدیو نیز برای تلفن و یا تبلت شما در دسترس هستند.";locale["services[26]"]="همگام سازی یک ابزار چت کسب و کار است که افزایش بهره وری برای تیم شماست.";locale["services[27]"]="بدون شرح...";locale["services[28]"]="به شما اجازه می دهد تا پیام های فوری با هر کسی در سرور یاهو داشته باشید. هنگامی که ایمیل دریافت میکنید و نقل قول ها را به شما میگوید.";locale["services[29]"]="Voxer یک برنامه پیام رسانی برای گوشی های هوشمند شما با صدای زنده (مانند دستگاه Walkie Talkie) و متن، عکس و اشتراک گذاری موقعیت مکانی است.";locale["services[30]"]="Dasher اجازه می دهد تا آنچه شما واقعا می خواهید با عکسهای Gif لینک ها و بیشتر بگویید. یک نظر سنجی برای یافتن آنچه دوستانتان درباره شما فکر می کنند.";locale["services[31]"]="Flowdock گپ گروهی شما با یک صندوق پستی مشترک است. تیم ها با استفاده از Flowdock به روز میمانند و در لحظه واکنش نشان میدهند و هرگز چیزی را فراموش نمیکنند.";locale["services[32]"]="Mattermost یک جایگزین خود میزبان منبع باز است. به عنوان یک جایگزین برای پیام اختصاصیSaaS Mattermost تمام ارتباطات تیم شما را به یک مکان آن قابل جستجو و در دسترس از هر نقطه ای را به ارمغان می آورد.";locale["services[33]"]="DingTalk یک بستر نرم افزاری چند طرفه کسب و کار کوچک و متوسط برای برقراری ارتباط موثر است.";locale["services[34]"]="Mysms خانواده ای از برنامه های کاربردی که به شما کمک می کنند تا در هرجا متن بفرستید و تجربه پیام خود را بر روی گوشی های هوشمند، تبلت و رایانه بالا ببرید.";locale["services[35]"]="ICQ یک برنامه پیام رسان فوری کامپیوتری منبع باز است که برای اولین بار توسعه داده شد و محبوب است.";locale["services[36]"]="TweetDeck یک نرم افزار داشبورد رسانه اجتماعی برای مدیریت حساب های توییتر است.";locale["services[37]"]="خدمات سفارشی";locale["services[38]"]="یک سرویس سفارشی اگر در بالا ذکر نشده است اضافه کنید.";locale["services[39]"]="Zinc برنامه ارتباطی امن برای کارگران همراه با متن، صدا، ویدئو، اشتراک گذاری فایل است.";locale["services[40]"]="Freenode که قبلا شناخته شده به عنوان پروژه های باز شبکه ای, یک شبکه IRC است که برای بحث در مورد پروژه های همکاری است.";locale["services[41]"]="متن از رایانه شما همگام سازی شده با تلفن اندرویدی و شماره شما.";locale["services[42]"]="نرم افزار آزاد و منبع باز ایمیل تحت وب که در پی اچ پی نوشته شده است.";locale["services[43]"]="Horde نرم افزاری آزاد و منبع باز مبتنی بر وب است.";locale["services[44]"]="SquirrelMail بسته بر اساس استانداردهای ایمیل تحت وب در پی اچ پی نوشته شده است.";locale["services[45]"]="آگهی رایگان کسب و کار میزبانی ایمیل با رابط حداقلی و تمیز. تقویم و تماس با ما, یادداشت ها, وظایف برنامه یکپارچه.";locale["services[46]"]="Zoho Chat یک پلت فرم واقعی ارتباط زمان همکاری ایمن و مقیاس پذیر برای بهبود بهره وری تیم هاست.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/fi.js b/build/dark/development/Rambox/resources/languages/fi.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/fi.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/fr.js b/build/dark/development/Rambox/resources/languages/fr.js
new file mode 100644
index 00000000..e0c8e212
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/fr.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Préférences";locale["preferences[1]"]="Cacher automatiquement la barre de menus";locale["preferences[2]"]="Afficher dans la barre des tâches";locale["preferences[3]"]="Minimiser Rambox dans la barre des tâches à la fermeture";locale["preferences[4]"]="Démarrer en mode réduit";locale["preferences[5]"]="Démarrer automatiquement au démarrage du système";locale["preferences[6]"]="Pas besoin d'afficher la barre de menus en permanence ?";locale["preferences[7]"]="Pour afficher temporairement la barre de menus, appuyez sur la touche Alt.";locale["app.update[0]"]="Une nouvelle version est disponible !";locale["app.update[1]"]="Télécharger";locale["app.update[2]"]="Historiques des changements";locale["app.update[3]"]="Vous êtes à jour !";locale["app.update[4]"]="Vous avez la dernière version de Rambox.";locale["app.about[0]"]="À propos de Rambox";locale["app.about[1]"]="Application de messagerie gratuite et open source, qui combine les applications web les plus courantes en une seule.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Plateforme";locale["app.about[4]"]="Développé par";locale["app.main[0]"]="Ajouter un nouveau service";locale["app.main[1]"]="Messagerie";locale["app.main[2]"]="E-mail";locale["app.main[3]"]="Aucun service trouvé... Essayez une autre recherche.";locale["app.main[4]"]="Services actifs";locale["app.main[5]"]="ALIGNER";locale["app.main[6]"]="À gauche";locale["app.main[7]"]="À droite";locale["app.main[8]"]="Élément";locale["app.main[9]"]="Éléments";locale["app.main[10]"]="Supprimer tous les services";locale["app.main[11]"]="Désactiver les notifications";locale["app.main[12]"]="Muet";locale["app.main[13]"]="Configurer";locale["app.main[14]"]="Supprimer";locale["app.main[15]"]="Aucun service ajouté...";locale["app.main[16]"]="Ne pas déranger";locale["app.main[17]"]="Désactiver les notifications et les sons de tous les services. Parfait pour rester concentré.";locale["app.main[18]"]="Raccourci clavier";locale["app.main[19]"]="Verrouiller Rambox";locale["app.main[20]"]="Verrouiller l'application si vous vous absentez un instant.";locale["app.main[21]"]="Se déconnecter";locale["app.main[22]"]="Se connecter";locale["app.main[23]"]="Connectez-vous pour enregistrer votre configuration (aucun identifiant n'est stocké) et la synchroniser sur tous vos ordinateurs.";locale["app.main[24]"]="Propulsé par";locale["app.main[25]"]="Faire un don";locale["app.main[26]"]="avec";locale["app.main[27]"]="un projet Open Source en provenance d'Argentine.";locale["app.window[0]"]="Ajouter";locale["app.window[1]"]="Éditer";locale["app.window[2]"]="Nom";locale["app.window[3]"]="Options";locale["app.window[4]"]="Aligner à droite";locale["app.window[5]"]="Afficher les notifications";locale["app.window[6]"]="Couper tous les sons";locale["app.window[7]"]="Options avancées";locale["app.window[8]"]="Code personnalisé";locale["app.window[9]"]="en savoir plus...";locale["app.window[10]"]="Ajouter un service";locale["app.window[11]"]="équipe";locale["app.window[12]"]="Veuillez confirmer...";locale["app.window[13]"]="Êtes-vous sûr de vouloir supprimer";locale["app.window[14]"]="Êtes-vous sûr de vouloir supprimer tous les services ?";locale["app.window[15]"]="Ajouter un service personnalisé";locale["app.window[16]"]="Modifier un service personnalisé";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Approuver les certificats de securités invalides";locale["app.window[20]"]="ACTIVÉ";locale["app.window[21]"]="DESACTIVÉ";locale["app.window[22]"]="Entrez un mot de passe temporaire pour le prochain déverrouillage";locale["app.window[23]"]="Répétez le mot de passe temporaire";locale["app.window[24]"]="Avertissement";locale["app.window[25]"]="Les mots de passe sont différents. Essayez à nouveau...";locale["app.window[26]"]="Rambox est verrouillé";locale["app.window[27]"]="DÉVERROUILLER";locale["app.window[28]"]="Connexion en cours...";locale["app.window[29]"]="Veuillez patienter pendant la récupération de votre configuration.";locale["app.window[30]"]="Importer";locale["app.window[31]"]="Vous n'avez aucun service sauvegardé. Voulez-vous importer vos services actuels ?";locale["app.window[32]"]="Nettoyer les services";locale["app.window[33]"]="Voulez-vous supprimer tous vos services actuels afin de recommencer ?";locale["app.window[34]"]="Si non, vous serez déconnecté.";locale["app.window[35]"]="Valider";locale["app.window[36]"]="Pour importer votre configuration, Rambox doit retirer tous vos services actuels. Voulez-vous continuer ?";locale["app.window[37]"]="Fermeture de la session...";locale["app.window[38]"]="Souhaitez-vous vraiment vous déconnecter ?";locale["app.webview[0]"]="Recharger";locale["app.webview[1]"]="Passer en ligne";locale["app.webview[2]"]="Passer hors-ligne";locale["app.webview[3]"]="Afficher/Cacher les outils de développement";locale["app.webview[4]"]="Chargement en cours...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="OK";locale["button[1]"]="Annuler";locale["button[2]"]="Oui";locale["button[3]"]="Non";locale["button[4]"]="Sauvegarder";locale["main.dialog[0]"]="Erreur de certificat";locale["main.dialog[1]"]="Le service lié à l'adresse suivante a un certificat invalide.";locale["main.dialog[2]"]=".";locale["menu.help[0]"]="Visiter le site de Rambox";locale["menu.help[1]"]="Signaler un problème...";locale["menu.help[2]"]="Demander de l’aide";locale["menu.help[3]"]="Faire un don";locale["menu.help[4]"]="Aide";locale["menu.edit[0]"]="Éditer";locale["menu.edit[1]"]="Annuler";locale["menu.edit[2]"]="Refaire";locale["menu.edit[3]"]="Couper";locale["menu.edit[4]"]="Copier";locale["menu.edit[5]"]="Coller";locale["menu.edit[6]"]="Tout sélectionner";locale["menu.view[0]"]="Affichage";locale["menu.view[1]"]="Recharger";locale["menu.view[2]"]="Activer/Désactiver le mode Plein Écran";locale["menu.view[3]"]="Afficher/Cacher les outils de développement";locale["menu.window[0]"]="Fenêtre";locale["menu.window[1]"]="Réduire";locale["menu.window[2]"]="Fermer";locale["menu.window[3]"]="Toujours au premier plan";locale["menu.help[5]"]="Rechercher des mises à jour...";locale["menu.help[6]"]="À propos de Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Masquer Rambox";locale["menu.osx[2]"]="Masquer les autres fenêtres";locale["menu.osx[3]"]="Afficher Tout";locale["menu.file[0]"]="Fichier";locale["menu.file[1]"]="Quitter Rambox";locale["tray[0]"]="Afficher/Masquer la fenêtre";locale["tray[1]"]="Quitter";locale["services[0]"]="WhatsApp est une application de messagerie mobile multi-plateforme pour iPhone, BlackBerry, Android, Windows Phone et Nokia. Envoyez du texte, des vidéos, des images, des clips audio gratuitement.";locale["services[1]"]="Slack regroupe tous vos outils de communications en un seul endroit. C’est une messagerie en temps réel, une solution d'archivage et un outil de recherche pour les équipes à la pointe.";locale["services[2]"]="Noysi est un outil de communication pour les équipes qui assure la confidentialité des données. Avec Noysi vous pouvez accéder à toutes vos conversations et fichiers en quelques secondes depuis n’importe où et en illimité.";locale["services[3]"]="Instantly vous permet de joindre les personnes qui comptent dans votre vie, et ce gratuitement. Messenger s'utilise comme les SMS hormis que cela est gratuit.";locale["services[4]"]="Restez en contact avec votre famille et vos amis gratuitement. Bénéficiez d'appels internationaux, des appels gratuits et Skype version business sur ordinateur et mobile.";locale["services[5]"]="Dans les Hangouts, les conversations prennent vie avec des photos, des emoji et même des appels vidéo de groupe gratuits. Communiquez avec vos amis sur ordinateur ou sur des appareils Android ou Apple.";locale["services[6]"]="HipChat est un groupe de chat et de chat vidéo hébergé et pensé pour des équipes . Boostez votre collaboration en temps réel grâce aux groupes de chat privés , aux partages de documents et aux partages d’écran.";locale["services[7]"]="Telegram est une application de messagerie rapide, simple d'utilisation et sécurisée. L'application gratuite est disponible sur Android, iOS, Windows Phone ainsi que sur ordinateur (Linux, Os X et Windows).";locale["services[8]"]="WeChat est une application d'appel et de messagerie gratuite qui vous permettra de rester en contact avec votre famille et vos amis, partout dans le monde. Il s'agit d'une application de communication tout-en-un munie des fonctions gratuites de messagerie texte (SMS/MMS), d'émission d'appels vocaux et vidéo, moments, de partage de photos et de jeux.";locale["services[9]"]="Gmail est le service de mail gratuit de Google, c'est l'un des services d’émail les plus populaire au monde.";locale["services[10]"]="Nouvelle application conçue par l'équipe Gmail, Inbox crée par Gmail met l'accent sur l'organisation pour vous aider à être plus efficace et à mieux gérer vos priorités. Vos e-mails sont classés par groupes. Les informations importantes dans vos messages sont mises en évidence sans que vous ayez à les ouvrir. Vous pouvez mettre certains e-mails en attente jusqu'au moment souhaité et définir des rappels pour ne rien oublier.";locale["services[11]"]="ChatWork est un groupe de chat pour le travail . Des messages sécurisés , du chat vidéo , des gestionnaires de taches , du partage de documents. Des communications en temps-réel afin d’améliorer la productivité des équipes de travail.";locale["services[12]"]="GroupMe — un moyen simple et gratuit de rester en contact avec les personnes qui comptent le plus pour vous, facilement et rapidement.";locale["services[13]"]="C'est le chat d’équipe le plus avancé pour des entreprises.";locale["services[14]"]="Gitter repose sur GitHub. Il permet de discuter avec des personnes sur GitHub, permettant ainsi de résoudre vos problèmes et/ou vos questions sur vos répertoires.";locale["services[15]"]="Steam est une plate-forme de distribution de contenu en ligne, de gestion des droits et de communication développée par Valve . Orientée autour des jeux vidéo, elle permet aux utilisateurs d'acheter des jeux, du contenu pour les jeux, de les mettre à jour automatiquement, de gérer la partie multi-joueur des jeux et offre des outils communautaires autour des jeux utilisant Steam.";locale["services[16]"]="Discord est une plateforme de chat écrit & vocal orientée pour les joueurs. Ce programme possède de multiples serveurs et supporte les différents canaux afin de permettre aux joueurs d’organiser leurs conversations dans différents canaux.";locale["services[17]"]="Prenez le contrôle. Allez plus loin. Outlook est un service de messagerie et de calendrier gratuit qui vous aide à vous tenir informé de l'essentiel et à être efficace.";locale["services[18]"]="Outlook pour entreprises";locale["services[19]"]="Yahoo! Mail est une messagerie web gratuite, offerte par l'entreprise américaine Yahoo!. Il s'agit d'une application Web permettant de communiquer par courriers électroniques.";locale["services[20]"]="ProtonMail est un service de messagerie web créé en 2013 au CERN. ProtonMail se singularise d'autres services email (Gmail";locale[""]="";locale["services[21]"]="Tutanota est un service de webmail allemand qui s'est créé suite aux révélations de Snowden et qui chiffre les emails de bout en bout (et en local dans le navigateur) aussi bien entre les utilisateurs du service que les utilisateurs externes.";locale["services[22]"]="Service de messagerie Web offrant le service un chiffrement PGP. HushMail propose des versions « libres » et « payantes » avec plus de fonctionalitées. HushMail utilise le standard OpenPGP pour le chiffrement des emails.";locale["services[23]"]="Messagerie collaboratives et de groupe de discussion pour les équipes de production. Une application pour toute votre communication interne et externe. La meilleure solution de gestion du travail, essayez-la gratuitement.";locale["services[24]"]="Rocket Chat, la plate-forme chat en ligne ultime. Des messages de groupe et de la vidéo ou juste de l'audio nous essayons de devenir la boite a outils ultime pour votre ordinateur. Notre objectif est de devenir le numéro un multi-plateforme solution de chat open source.";locale["services[25]"]="Appels audio/vidéo en HD et conversations de groupes. Pas de publicité. Toujours crypté.";locale["Toujours disponible sur mobiles"]="tablettes";locale["services[26]"]="Sync est un outil de chat pour le travail, qui va booster votre productivité et votre travail d’équipe.";locale["services[27]"]="Aucune description...";locale["services[28]"]="Yahoo! Messenger vous propose de découvrir le nouveau look de votre logiciel de messagerie instantanée. En plus des skins, des couleurs plus design et des emôticones toujours plus expressifs, vous disposerez de nouvelles fonctionnalités de communication telles que le module de téléphonie de Pc à Pc (VoIP), l'envoi de Sms, l'installation de plugins pour accéder rapidement à des services interactifs, le partage de photos par Flickr et autres documents, la vidéo conférence par webcam et bien d'autres encore. Vous pourrez toujours discuter librement avec vos amis dans des conversations privées (même avec des utilisateurs de Windows Live Messenger) ou dans des salons de discussions, gérer vos contacts et votre profil, archiver les messages, consulter l'historique, etc.";locale["services[29]"]="Accédez à vos messages vocaux instantanés n’importe où et n’importe quand. Avec Voxer, chaque message vocal est en temps réel (vos amis vous entendent au moment où vous parlez) et enregistré (vous pouvez l’écouter plus tard). Vous pouvez également envoyer des SMS, des photos, et partager votre localisation en plus des messages audio.";locale["services[30]"]="Dasher vous laisse dire ce que vous voulez vraiment avec des images, des gifs, des hyperliens et plus encore. Faite des votes pour savoir ce que vos amis pense de vous.";locale["services[31]"]="Flowdock est le chat de votre équipe avec une messagerie partagée. Les équipes qui utilisent Flowdock restent à jour, réagissent en quelques secondes au lieu de jours et n'oublient jamais rien.";locale["services[32]"]="Mattermost est un logiciel libre, auto-hébergé , c'est un logiciel alternatif a Slack. Mattermost apporte toutes les communications de votre équipe en un seul endroit, rendant consultable et accessible n’importe où.";locale["services[33]"]="DingTalk est une plateforme multi-usages permet aux petites et moyennes entreprises de communiquer efficacement.";locale["services[34]"]="L'application Mysms vous permet de synchroniser vos messages entre vos différents appareils : tablettes, ordinateurs fixes ou portables et mobiles.";locale["services[35]"]="ICQ est le premier logiciel connu et open-source de messagerie instantané.";locale["services[36]"]="TweetDeck est un panneau de visualisation et de gestion des diffèrents messages/notifications/mentions de comptes twitter.";locale["services[37]"]="Service personnalisé";locale["services[38]"]="Ajouter un service personnalisé si celui-ci n’est pas répertorié ci-dessus.";locale["services[39]"]="Zinc est l'application de communication sécurisée qui relie les employés à l'intérieur et à l'extérieur du bureau. Combinez les fonctionnalités que les employés aiment (partage de fichiers, appels vidéos, ...) avec la sécurité que votre entreprise a besoin.";locale["services[40]"]="Freenode (en français « nœud libre » ) anciennement nommé Openprojects (en français « projets ouverts ») est un réseau IRC (en français « discussion relayée par Internet ») utilisé principalement par des développeurs de projets libres ou Open Source (au littéral : « code source libre »). Les informaticiens sont majoritaires, mais on retrouve aussi la communauté du libre en général.";locale["services[41]"]="MightyText permet de rédiger, de consulter et de gérer vos Sms depuis votre poste de travail. Très pratique en cas de perte ou d'oubli de votre mobile.";locale["services[42]"]="Solution de webmail gratuite et open source pour les masses... en PHP.";locale["services[43]"]="Horde est un groupware web, gratuit et open source.";locale["services[44]"]="SquirrelMail est un logiciel de messagerie basé sur un package (en français : paquet) écrit en PHP ( langage de programmation pour des pages web).";locale["services[45]"]="Zoho Email est une messagerie sans pub hébergée avec une interface propre minimaliste , qui intègre un calendrier des contacts, des notes et un gestionnaires des taches.";locale["services[46]"]="Zoho chat est une plateforme sécurisée et évolutive de communication en temps réel et de collaboration qui aide les équipes à améliorer leur productivité.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/he.js b/build/dark/development/Rambox/resources/languages/he.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/he.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/hi.js b/build/dark/development/Rambox/resources/languages/hi.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/hi.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/hr.js b/build/dark/development/Rambox/resources/languages/hr.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/hr.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/hu.js b/build/dark/development/Rambox/resources/languages/hu.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/hu.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/id.js b/build/dark/development/Rambox/resources/languages/id.js
new file mode 100644
index 00000000..594847d3
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/id.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferensi";locale["preferences[1]"]="Auto-sembunyikan bilah Menu";locale["preferences[2]"]="Tampilkan di Bilah Tugas";locale["preferences[3]"]="Biarkan Rambox tetap di bilah tugas ketika ditutup";locale["preferences[4]"]="Mulai diminimalkan";locale["preferences[5]"]="Jalankan otomatis pada saat memulai sistem";locale["preferences[6]"]="Tidak ingin melihat bilah menu sepanjang waktu?";locale["preferences[7]"]="Untuk menampilkan sementara bilah menu, tekan tombol Alt.";locale["app.update[0]"]="Versi baru tersedia!";locale["app.update[1]"]="Unduh";locale["app.update[2]"]="Catatan Perubahan";locale["app.update[3]"]="Aplikasi mutakhir!";locale["app.update[4]"]="Anda memiliki versi terbaru dari Rambox.";locale["app.about[0]"]="Tentang Rambox";locale["app.about[1]"]="Aplikasi surat elektronik dan perpesanan yang bebas dan bersumber terbuka yang menggabungkan banyak aplikasi web umum menjadi satu.";locale["app.about[2]"]="Versi";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Dikembangkan oleh";locale["app.main[0]"]="Tambah Layanan baru";locale["app.main[1]"]="Perpesanan";locale["app.main[2]"]="Surel";locale["app.main[3]"]="Layanan tidak ditemukan... Mencoba pencarian lainnya.";locale["app.main[4]"]="Aktifkan Layanan";locale["app.main[5]"]="Ratakan";locale["app.main[6]"]="Kiri";locale["app.main[7]"]="Kanan";locale["app.main[8]"]="Item";locale["app.main[9]"]="Item";locale["app.main[10]"]="Buang semua Layanan";locale["app.main[11]"]="Cegah notifikasi";locale["app.main[12]"]="Dibisukan";locale["app.main[13]"]="Konfigurasi";locale["app.main[14]"]="Buang";locale["app.main[15]"]="Belum ada layanan yang ditambahkan...";locale["app.main[16]"]="Jangan Ganggu";locale["app.main[17]"]="Nonaktifkan notifikasi dan suara semua layanan. Cocok untuk berkonsentrasi dan fokus.";locale["app.main[18]"]="Tombol pintasan";locale["app.main[19]"]="Kunci Rambox";locale["app.main[20]"]="Kunci aplikasi ini jika Anda beranjak pergi untuk jangka waktu tertentu.";locale["app.main[21]"]="Keluar";locale["app.main[22]"]="Masuk";locale["app.main[23]"]="Masuk untuk menyimpan konfigurasi Anda (kredensial tidak disimpan) agar tersinkronisasi dengan semua komputer Anda.";locale["app.main[24]"]="Diberdayakan oleh";locale["app.main[25]"]="Donasi";locale["app.main[26]"]="dengan";locale["app.main[27]"]="dari Argentina sebagai proyek Sumber Terbuka.";locale["app.window[0]"]="Tambahkan";locale["app.window[1]"]="Sunting";locale["app.window[2]"]="Nama";locale["app.window[3]"]="Opsi";locale["app.window[4]"]="Rata Kanan";locale["app.window[5]"]="Tampilkan notifikasi";locale["app.window[6]"]="Matikan semua suara";locale["app.window[7]"]="Tingkat Lanjut";locale["app.window[8]"]="Kode Kustom";locale["app.window[9]"]="baca lebih lanjut...";locale["app.window[10]"]="Tambah layanan";locale["app.window[11]"]="tim";locale["app.window[12]"]="Silakan konfirmasi...";locale["app.window[13]"]="Apakah Anda yakin ingin membuang";locale["app.window[14]"]="Apakah Anda yakin ingin membuang semua layanan?";locale["app.window[15]"]="Tambahkan Layanan Khusus";locale["app.window[16]"]="Sunting Layanan Khusus";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Kepercayaan sertifikat otoritas tidak valid";locale["app.window[20]"]="Nyala";locale["app.window[21]"]="Mati";locale["app.window[22]"]="Masukkan sandi sementara untuk membuka kunci nanti";locale["app.window[23]"]="Ulangi sandi sementara";locale["app.window[24]"]="Peringatan";locale["app.window[25]"]="Sandi tidak sama. Silakan coba lagi...";locale["app.window[26]"]="Rambox terkunci";locale["app.window[27]"]="Buka Kunci";locale["app.window[28]"]="Menghubungkan...";locale["app.window[29]"]="Harap menunggu sampai kami selesai mengambil konfigurasi Anda.";locale["app.window[30]"]="Impor";locale["app.window[31]"]="Anda tidak memiliki layanan tersimpan. Apakah Anda ingin mengimpor layanan Anda saat ini?";locale["app.window[32]"]="Bersihkan layanan";locale["app.window[33]"]="Apakah Anda ingin membuang semua layanan Anda untuk memulai ulang?";locale["app.window[34]"]="Jika tidak, Anda akan dikeluarkan.";locale["app.window[35]"]="Konfirmasi";locale["app.window[36]"]="Untuk mengimpor konfigurasi Anda, Rambox perlu membuang semua layanan Anda saat ini. Apakah Anda ingin melanjutkan?";locale["app.window[37]"]="Mengakhiri sesi Anda...";locale["app.window[38]"]="Apakah Anda yakin ingin keluar?";locale["app.webview[0]"]="Muat Ulang";locale["app.webview[1]"]="Jadikan Daring";locale["app.webview[2]"]="Jadikan Luring";locale["app.webview[3]"]="Munculkan Alat Pengembang";locale["app.webview[4]"]="Memuat...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Oke";locale["button[1]"]="Batal";locale["button[2]"]="Ya";locale["button[3]"]="Tidak";locale["button[4]"]="Simpan";locale["main.dialog[0]"]="Galat Sertifikasi";locale["main.dialog[1]"]="Layanan dengan URL berikut memiliki sertifikasi otoritas yang tidak valid.";locale["main.dialog[2]"]="Anda harus membuang layanan dan menambahkannya lagi";locale["menu.help[0]"]="Kunjungi Situs Web Rambox";locale["menu.help[1]"]="Laporkan masalah...";locale["menu.help[2]"]="Minta Bantuan";locale["menu.help[3]"]="Donasi";locale["menu.help[4]"]="Bantuan";locale["menu.edit[0]"]="Sunting";locale["menu.edit[1]"]="Urungkan";locale["menu.edit[2]"]="Ulangi";locale["menu.edit[3]"]="Potong";locale["menu.edit[4]"]="Salin";locale["menu.edit[5]"]="Tempel";locale["menu.edit[6]"]="Pilih Semua";locale["menu.view[0]"]="Tampilan";locale["menu.view[1]"]="Muat Ulang";locale["menu.view[2]"]="Layar Penuh";locale["menu.view[3]"]="Munculkan Alat Pengembang";locale["menu.window[0]"]="Jendela";locale["menu.window[1]"]="Minimalkan";locale["menu.window[2]"]="Tutup";locale["menu.window[3]"]="Selalu di atas";locale["menu.help[5]"]="Periksa pembaruan...";locale["menu.help[6]"]="Tentang Rambox";locale["menu.osx[0]"]="Layanan";locale["menu.osx[1]"]="Sembunyikan Rambox";locale["menu.osx[2]"]="Sembunyikan Lainnya";locale["menu.osx[3]"]="Tampilkan Semua";locale["menu.file[0]"]="Berkas";locale["menu.file[1]"]="Keluar dari Rambox";locale["tray[0]"]="Tampil/Sembunyikan Jendela";locale["tray[1]"]="Keluar";locale["services[0]"]="WhatsApp adalah aplikasi perpesanan bergerak lintas platform untuk iPhone, BlackBerry, Android, Windows Phone and Nokia. Kirim teks, video, gambar, audio secara gratis.";locale["services[1]"]="Slack menyatukan semua komunikasi Anda dalam satu tempat. Ini adalah perpesanan, pengarsipan dan pencarian real-time untuk tim modern.";locale["services[2]"]="Noysi adalah perangkat komunikasi untuk tim dengan jaminan privasi. Dengan Noysi Anda bisa mengakses semua percakapan dan berkas Anda dari manapun dan tanpa batasan.";locale["services[3]"]="Seketika menjangkau semua orang dalam hidup Anda tanpa biaya apapun. Messenger sama seperti pesan sms, tetapi Anda tidak perlu membayar untuk setiap pesan yang Anda kirim.";locale["services[4]"]="Tetap berhubungan dengan keluarga dan teman tanpa biaya apapun. Dapatkan panggilan internasional, panggilan daring gratis dan Skype untuk Bisnis pada desktop dan mobile.";locale["services[5]"]="Hangouts membuat percakapan menjadi hidup dengan foto, emoji, dan bahkan panggilan video untuk grup tidak memerlukan biaya apapun. Tersambung dengan teman lewat perangkat komputer, Android, dan Apple.";locale["services[6]"]="HipChat adalah layanan chat grup dan video yang dibuat untuk tim. Efektifkan kolaborasi dengan fitur ruang chat, berbagi berkas, dan berbagi layar monitor.";locale["services[7]"]="Telegram adalah aplikasi perpesanan yang fokus pada kecepatan dan keamanan. Sangat cepat, mudah, aman dan gratis.";locale["services[8]"]="WeChat adalah aplikasi perpesanan suara gratis yang memungkinkan Anda dengan mudah tersambung dengan keluarga, teman di negara manapun mereka berada. WeChat merupakan aplikasi tunggal untuk pesan teks gratis (SMS/MMS), suara, panggilan video, momentum, berbagi foto, dan permainan.";locale["services[9]"]="Gmail, layanan surel gratis dari Google, salah satu program surel terpopuler di dunia.";locale["services[10]"]="Inbox oleh Gmail adalah aplikasi baru dari Google. Inbox membuat apapun lebih terorganisir dalam menyelesaikan pekerjaan dengan fokus pada apa yang penting. Bundle membuat surel menjadi terorganisir.";locale["services[11]"]="ChatWork adalah aplikasi grup chat untuk bisnis. Perpesanan aman, chat video, pengelolaan tugas dan berbagi berkas. Komunikasi real-time dan peningkatan produktivitas untuk tim.";locale["services[12]"]="GroupMe menghadirkan sms grup ke setiap telepon. Kirim pesan ke grup yang berisi orang-orang yang berarti dalam hidup Anda.";locale["services[13]"]="Aplikasi chat tim paling keren di dunia berjumpa dengan pencarian enterprise.";locale["services[14]"]="Gitter dibuat untuk GitHub dan terintagrasi baik dengan organisasi, repositori, masalah dan aktivitas Anda.";locale["services[15]"]="Steam adalah platform distribusi digital yang dikembangkan oleh Valve Corporation. Menawarkan pengelolaan hak digital (DRM), permainan multi-pemain dan layanan jejaring sosial.";locale["services[16]"]="Integrasikan permainan Anda dengan aplikasi chat teks dan suara yang modern, bersuara jernih, dukungan saluran dan server yang banyak, aplikasi selular, dan masih banyak lagi.";locale["services[17]"]="Ambil kendali. Lakukan lebih. Outlook adalah layanan surel dan kalendar gratis yang membantu Anda selalu up to date dan produktif.";locale["services[18]"]="Outlook untuk Bisnis";locale["services[19]"]="Layanan surel berbasis web yang ditawarkan oleh perusahaan Amerika, Yahoo!. Layanan ini gratis untuk digunakan secara personal, dan juga tersedia layanan bisnis berbayar.";locale["services[20]"]="Layanan enkripsi surel berbasis web yang didirikan tahun 2013 di fasilitas penelitian CERN. ProtonMail didesain sangat mudah digunakan, menggunakan enkripsi lokal untuk melindungi data surel dan pengguna sebelum mereka dikirimkan ke server ProtonMail, sangat berbeda dengan layanan lainnya seperti Gmail dan Hotmail.";locale["services[21]"]="Tutanota adalah perangkat lunak enkripsi surel bersumber terbuka dengan model freemium yang dihost yang dengan sangat aman.";locale["services[22]"]=". Hushmail menggunakan standar OpenPGP dan sumber kodenya juga tersedia untuk diunduh.";locale["services[23]"]="Chat grup dan surel untuk tim yang produktif. Satu aplikasi untuk semua komunikasi internal dan eksternal Anda.";locale["services[24]"]="Dari perpesanan grup dan panggilan video sampai ke fitur layanan bantuan. Tujuan kami adalah menjadi penyedia solusi chat lintas platform bersumber terbuka nomor satu didunia.";locale["services[25]"]="Kualitas panggilan HD, chat grup dan privat dengan fitur foto, musik dan video. Juga tersedia untuk telepon dan tablet Anda.";locale["services[26]"]="Sync adalah perangkat chat untuk bisnis yang akan meningkatkan produktifitas tim Anda.";locale["services[27]"]="Tidak ada deskripsi...";locale["services[28]"]="Memungkinkan Anda mengirim pesan instan ke semua orang melalui server Yahoo. Memberi tahu Anda ketika menerima surel, dan memberi informasi tentang harga saham.";locale["services[29]"]="Voxer adalah aplikasi perpesanan untuk telepon pintar Anda dengan fitur berbagi percakapan langsung (seperti walkie talkie PPT), teks, foto dan lokasi.";locale["services[30]"]="Dasher memungkinkan Anda mengatakan apapun menggunakan gambar, GIF, tautan dan lainnya. Buat jajak pendapat untuk mengetahui apa yang teman-teman Anda pikirkan tentang hal-hal baru Anda.";locale["services[31]"]="Flowdock adalah aplikasi chat tim dengan fitur berbagi kotak masuk. Tim menggunakan Flowdock untuk tetap up to date, merespon dengan cepat, dan tidak pernah melupakan apapun.";locale["services[32]"]="Mattermost adalah layanan alternatif untuk Slack dengan sumber terbuka. Sebagai alternatif untuk layanan SaaS berpaten, Mattermost menghadirkan komunikasi untuk tim ke dalam satu wadah, mudah dalam melakukan pencarian dan dapat diakses dari manapun.";locale["services[33]"]="DingTalk platform untuk memberdayakan bisnis skala kecil dan medium agar bisa berkomunikasi secara efektif.";locale["services[34]"]="Kumpulan aplikasi mysms membantu Anda mengirim pesan dari manapun dan meningkatkan pengalaman perpesanan Anda pada telepon pintar, tablet dan komputer.";locale["services[35]"]="ICQ adalah program komputer untuk pesan instan bersumber terbuka yang pertama kali dikembangkan dan menjadi populer.";locale["services[36]"]="TweetDeck adalah aplikasi dasbor jejaring sosial untuk pengelolaan banyak akun twitter.";locale["services[37]"]="Layanan Khusus";locale["services[38]"]="Tambahkan layanan khusus yang tidak terdaftar di atas.";locale["services[39]"]="Zinc adalah aplikasi komunikasi aman untuk para perkerja yang selalu bergerak, dengan teks, video, berbagi berkas dan banyak lainnya.";locale["services[40]"]="Freenode, sebelumnya dikenal sebagai Open Projects Network, adalah jaringan IRC untuk berdiskusi tentang berbagai macam proyek.";locale["services[41]"]="Kirim sms dari komputer Anda, sinkronisasikan dengan nomor & telepon Android Anda.";locale["services[42]"]="Aplikasi surel gratis dan bersumber terbuka berbasis web, yang dikembangkan menggunakan PHP.";locale["services[43]"]="Horde adalah perangkat lunak untuk grup yang gratis dan bersumber terbuka.";locale["services[44]"]="SquirrelMail aplikasi surel berbasis web yang dikembangkan menggunakan PHP.";locale["services[45]"]="Layanan bisnis surel bebas iklan dengan antarmuka yang minimal dan sederhana. Terintegrasi dengan aplikasi Kalender, Kontak, Catatan, dan Tugas.";locale["services[46]"]="Zoho chat adalah platform komunikasi dan kolaborasi tim secara real-time yang aman untuk meningkatkan produktivitas mereka.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/it.js b/build/dark/development/Rambox/resources/languages/it.js
new file mode 100644
index 00000000..22393f6e
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/it.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferenze";locale["preferences[1]"]="Nascondi barra del menù";locale["preferences[2]"]="Mostra nella barra delle applicazioni";locale["preferences[3]"]="Mantieni Rambox nella barra delle applicazione quando viene chiuso";locale["preferences[4]"]="Avvia minimizzato";locale["preferences[5]"]="Avvia automaticamente all'avvio del sistema";locale["preferences[6]"]="Non hai bisogno di vedere costantemente la barra dei menu?";locale["preferences[7]"]="Per vedere temporaneamente la barra dei menù basta premere il tasto Alt.";locale["app.update[0]"]="Una nuova versione è disponibile!";locale["app.update[1]"]="Scarica";locale["app.update[2]"]="Registro delle modifiche";locale["app.update[3]"]="Il software è aggiornato!";locale["app.update[4]"]="Hai l'ultima versione di Rambox.";locale["app.about[0]"]="Informazioni su Rambox";locale["app.about[1]"]="Servizio di messaggistica e di e-mail libero e open source che combina le più comuni applicazioni web in una sola.";locale["app.about[2]"]="Versione";locale["app.about[3]"]="Piattaforma";locale["app.about[4]"]="Sviluppato da";locale["app.main[0]"]="Aggiungi un nuovo servizio";locale["app.main[1]"]="Messaggistica";locale["app.main[2]"]="E-mail";locale["app.main[3]"]="Nessun servizio trovato. Fai un'altra ricerca.";locale["app.main[4]"]="Servizi attivati";locale["app.main[5]"]="Allineamento";locale["app.main[6]"]="Sinistra";locale["app.main[7]"]="Destra";locale["app.main[8]"]="Oggetto";locale["app.main[9]"]="Oggetti";locale["app.main[10]"]="Rimuovi tutti i servizi";locale["app.main[11]"]="Blocca notifiche";locale["app.main[12]"]="Silenziato";locale["app.main[13]"]="Configura";locale["app.main[14]"]="Rimuovi";locale["app.main[15]"]="Nessun servizio aggiunto...";locale["app.main[16]"]="Non disturbare";locale["app.main[17]"]="Disattiva le notifiche e suoni di tutti i servizi. Perfetto per rimanere concentrati e focalizzati.";locale["app.main[18]"]="Tasto di scelta rapida";locale["app.main[19]"]="Blocca Rambox";locale["app.main[20]"]="Blocca quest'app se starai via per un certo periodo di tempo.";locale["app.main[21]"]="Disconnettiti";locale["app.main[22]"]="Connettiti";locale["app.main[23]"]="Connettiti per salvare la configurazione (senza credenziali archiviate) per la sincronizzazione con tutti i tuoi computer.";locale["app.main[24]"]="Realizzato da";locale["app.main[25]"]="Dona";locale["app.main[26]"]="con";locale["app.main[27]"]="dall'Argentina come progetto Open Source.";locale["app.window[0]"]="Aggiungi";locale["app.window[1]"]="Modifica";locale["app.window[2]"]="Nome";locale["app.window[3]"]="Opzioni";locale["app.window[4]"]="Allinea a destra";locale["app.window[5]"]="Mostra notifiche";locale["app.window[6]"]="Silenzia tutti i suoni";locale["app.window[7]"]="Avanzate";locale["app.window[8]"]="Codice personalizzato";locale["app.window[9]"]="leggi di più...";locale["app.window[10]"]="Aggiungi servizio";locale["app.window[11]"]="team";locale["app.window[12]"]="Conferma...";locale["app.window[13]"]="Sei sicuro di voler rimuovere";locale["app.window[14]"]="Sei sicuro di voler rimuovere tutti i servizi?";locale["app.window[15]"]="Aggiungi servizio personalizzato";locale["app.window[16]"]="Modifica servizio personalizzato";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Fidati dei certificati di autorità non validi";locale["app.window[20]"]="On";locale["app.window[21]"]="Off";locale["app.window[22]"]="Inserisci una password temporanea per sbloccare il servizio successivamente";locale["app.window[23]"]="Reinserisci la password temporanea";locale["app.window[24]"]="Attenzione";locale["app.window[25]"]="Le password non sono uguali. Riprova...";locale["app.window[26]"]="Rambox è bloccato";locale["app.window[27]"]="SBLOCCA";locale["app.window[28]"]="Connessione in corso...";locale["app.window[29]"]="Si prega di attendere fino a quando non otteniamo la tua configurazione.";locale["app.window[30]"]="Importa";locale["app.window[31]"]="Non hai alcun servizio salvato. Vuoi importare i tuoi servizi attuali?";locale["app.window[32]"]="Pulisci servizi";locale["app.window[33]"]="Vuoi rimuovere tutti i tuoi servizi attuali per ricominciare da capo?";locale["app.window[34]"]="Se no, verrai disconnesso.";locale["app.window[35]"]="Conferma";locale["app.window[36]"]="Per importare la configurazione, Rambox deve rimuovere tutti i tuoi servizi attuali. Vuoi continuare?";locale["app.window[37]"]="Chiusura della sessione...";locale["app.window[38]"]="Sei sicuro di volerti disconnettere?";locale["app.webview[0]"]="Ricarica";locale["app.webview[1]"]="Vai online";locale["app.webview[2]"]="Vai offline";locale["app.webview[3]"]="Attiva/disattiva strumenti di sviluppo";locale["app.webview[4]"]="Caricamento in corso...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Annulla";locale["button[2]"]="Sì";locale["button[3]"]="No";locale["button[4]"]="Salva";locale["main.dialog[0]"]="Errore di certificazione";locale["main.dialog[1]"]="Il servizio con il seguente URL ha un certificato di autorità non valido.";locale["main.dialog[2]"]="È necessario rimuovere il servizio e aggiungerlo nuovamente";locale["menu.help[0]"]="Visita il sito web di Rambox";locale["menu.help[1]"]="Riporta un problema...";locale["menu.help[2]"]="Chiedi aiuto";locale["menu.help[3]"]="Dona";locale["menu.help[4]"]="Aiuto";locale["menu.edit[0]"]="Modifica";locale["menu.edit[1]"]="Annulla azione";locale["menu.edit[2]"]="Rifai";locale["menu.edit[3]"]="Taglia";locale["menu.edit[4]"]="Copia";locale["menu.edit[5]"]="Incolla";locale["menu.edit[6]"]="Seleziona tutto";locale["menu.view[0]"]="Visualizza";locale["menu.view[1]"]="Ricarica";locale["menu.view[2]"]="Attiva/disattiva schermo intero";locale["menu.view[3]"]="Attiva/disattiva strumenti di sviluppo";locale["menu.window[0]"]="Finestra";locale["menu.window[1]"]="Minimizza";locale["menu.window[2]"]="Chiudi";locale["menu.window[3]"]="Sempre in primo piano";locale["menu.help[5]"]="Controlla aggiornamenti...";locale["menu.help[6]"]="Informazioni su Rambox";locale["menu.osx[0]"]="Servizi";locale["menu.osx[1]"]="Nascondi Rambox";locale["menu.osx[2]"]="Nascondi altri";locale["menu.osx[3]"]="Mostra tutti";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Chiudi Rambox";locale["tray[0]"]="Mostra/Nascondi finestra";locale["tray[1]"]="Chiudi";locale["services[0]"]="WhatsApp è un'app di messaggistica mobile multi-piattaforma per iPhone, BlackBerry, Android, Windows Phone e Nokia. Invia gratuitamente messaggi, video, immagini, audio.";locale["services[1]"]="Slack riunisce tutte le tue comunicazioni in un unico luogo. Messaggistica in tempo reale, archiviazione e ricerca per team moderni.";locale["services[2]"]="Noysi è uno strumento di comunicazione per le squadre dove la privacy è garantita. Con Noysi è possibile accedere a tutte le conversazioni e i file in pochi secondi da qualsiasi luogo e senza limiti.";locale["services[3]"]="Raggiungere immediatamente le persone nella vostra vita gratuitamente. Messenger è proprio come gli Sms, ma non devi pagare per ogni messaggio.";locale["services[4]"]="Rimanere in contatto con la famiglia e gli amici gratuitamente. Chiamate internazionali, gratuito chiamate online e Skype per Business sul desktop e mobile.";locale["services[5]"]="Hangouts porta vita alle conversazioni con foto, emoji e videochiamate di gruppo anche gratuitamente. Connettersi con gli amici attraverso computers, Android e dispositivi Apple.";locale["services[6]"]="HipChat è un servizio di chat e video-chat di gruppo, costruito per le squadre. Collaborazione in tempo reale sovraccaricata con stanze permanenti, condivisione di file e condivisione dello schermo.";locale["services[7]"]="Telegram è un'app di messaggistica con un focus su velocità e sicurezza. È super veloce, semplice, sicura e gratuita.";locale["services[8]"]="WeChat è un'applicazione di chiamata e messaggistica che ti permette di connetterti con la tua famiglia e i tuoi amici facilmente.";locale["services[9]"]="Gmail, servizio di posta gratuito di Google, è uno dei più popolari programmi di posta elettronica del mondo.";locale["services[10]"]="Inbox by Gmail è una nuova app dal team di Gmail. Inbox è un luogo organizzato per fare le cose e tornare a ciò che conta. Conservare e-mail organizzata in gruppi.";locale["services[11]"]="ChatWork è un'app per chat di gruppo per il business. Messaggistica sicura, video chat, gestione delle attività e condivisione di file. Comunicazione in tempo reale e più produttività per i team di lavoro.";locale["services[12]"]="GroupMe porta i messaggi di testo di gruppo a tutti i telefoni. Crea il tuo gruppo e messaggia con le persone che sono importanti per te.";locale["services[13]"]="La team chat più avanzata al mondo si unisce con la ricerca aziendale.";locale["services[14]"]="Gitter è basato su GitHub ed interagisce strettamente con le tue organizzazioni, repository, problemi e attività.";locale["services[15]"]="Steam è una piattaforma di distribuzione digitale sviluppata da Valve Corporation offre la gestione dei diritti digitali (DRM), modalità multiplayer e servizi di social networking.";locale["services[16]"]="Aumenta la tua esperienza nei tuoi giochi preferiti con un'applicazione di chat vocale e testuale moderna. Crystal Clear Voice, numerosi server e canale di assistenza clienti, una applicazione per smartphone e molto di più.";locale["services[17]"]="Prendi il controllo. Ottimizza il tuo tempo. Outlook è un servizio di posta elettronica gratuito che ti aiuta a rimanere focalizzato su ciò che conta e riempire i tuoi obbiettivi.";locale["services[18]"]="Outlook per il business";locale["services[19]"]="Servizio di posta elettronica basati sul Web offerto dall'azienda americana Yahoo!. Il servizio è gratuito per uso personale e sono previsti piani a pagamento per le imprese.";locale["services[20]"]="Servizio di posta elettronica gratuito, crittografato e basato su web fondato nel 2013 presso l'impianto di ricerca CERN. ProtonMail è stato progettato come un sistema che funziona senza particolari conoscenze o impostazioni utilizzando la crittografia lato client per proteggere i messaggi di posta elettronica e dati utente prima che vengano inviati ai server di ProtonMail, a differenza di altri comuni servizi di webmail come Gmail e Hotmail.";locale["services[21]"]="Tutanota è un software open-source per l'invio di e-mail crittografate e offre un servizio freemium di posta elettronica sicura basata sul suo software software.";locale["services[22]"]="Servizio di posta elettronica web che offre email criptate con PGP ed un servizio di vanity domain. Hushmail offre un servizio gratuito ed uno commerciale. Hushmail utilizza gli standard OpenPGP ed il sorgente è scaricabile.";locale["services[23]"]="Email collaborativa e chat di gruppo organizzata per la produttività dei team. Una app singola per le comunicazioni, sia interne che esterne.";locale["services[24]"]="Dai messaggi di gruppo e video chiamate a tutte le killer features per il servizio di helpdesk, il nostro obiettivo è diventare la soluzione numero uno come chat cross-platform e open source.";locale["services[25]"]="Chiamate vocali in HD, sessioni di chat private o di gruppo con la possibilità di includere foto, musiche e video. Disponibile anche sul vostro smartphone o tablet.";locale["services[26]"]="Sync è una chat per il business che aumenterà la produttività del vostro team.";locale["services[27]"]="Nessuna descrizione...";locale["services[28]"]="Ti permette scambiare messaggi con chiunque sul server Yahoo. Ti notifica la ricezione della posta e dà quotazioni di borsa.";locale["services[29]"]="Voxer è un'app di messaggistica per il tuo smartphone con viva voce (come un walkie talkie PTT), messaggi di testo, foto e condivisione della geoposizione.";locale["services[30]"]="Dasher ti permette di dire quello che vuoi veramente con foto, gif, links e altro ancora. Fai un sondaggio per scoprire cosa veramente pensano i tuoi amici di qualcosa.";locale["services[31]"]="Flowdock è chat di gruppo con una casella di posta condivisa. I Team che utilizzano Flowdock sono sempre aggiornati, reagiscono in secondi anziché in giorni e non dimenticano nulla.";locale["services[32]"]="Mattermost è un'alternativa open source e self-hosted di Slack. Come alternativa alla messaggistica proprietaria SaaS, Mattermost porta tutte le tue comunicazioni del team in un unico luogo, rendendole ricercabili e accessibili ovunque.";locale["services[33]"]="DingTalk è una piattaforma multi-sided che consente alle piccole e medie imprese di comunicare efficacemente.";locale["services[34]"]="La famiglia di applicazioni mysms consente di inviare messaggi di testo ovunque e migliora l'esperienza di messaggistica su smartphone, tablet e computer.";locale["services[35]"]="ICQ è un software open source per la messaggistica immediata, uno dei primi ad essere sviluppati e resi popolari.";locale["services[36]"]="TweetDeck è un' applicazione dashboard di social media per la gestione di account di Twitter.";locale["services[37]"]="Servizio personalizzato";locale["services[38]"]="Aggiungi un servizio personalizzato se non è presente nell'elenco.";locale["services[39]"]="Zinc è un'applicazione di comunicazione securizata per lavoratori mobili e che include chat testuale, video chat, chiamate vocali e condivisione di file ma anche molto altro.";locale["services[40]"]="Freenode, precedentemente conosciuto come Open Projects Network, è una rete di server IRC per discutere di progetti orientati peer.";locale["services[41]"]="Invia SMS dal tuo computer, grazie alla sincronizzazione con il tuo telefono Android e numero di telefono.";locale["services[42]"]="Webmail gratuita e open source per le masse, scritta in PHP.";locale["services[43]"]="Horde è un servizio open source gratuito e collaborativo basato sul web.";locale["services[44]"]="SquirrelMail è un pacchetto software basato su webmail standard e scritto in PHP.";locale["services[45]"]="Soluzione Email per il business, senza pubblicità, con un'interfaccia pulita e minimalista. Integra al suo interno delle app di Calendario, Blocco Note, Attività.";locale["services[46]"]="Zoho chat è una piattaforma, sicura e scalabile, per la comunicazione in tempo reale e la collaborazione dei team di lavoro, pensata in modo da migliorarne la produttività.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/ja.js b/build/dark/development/Rambox/resources/languages/ja.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/ja.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/ko.js b/build/dark/development/Rambox/resources/languages/ko.js
new file mode 100644
index 00000000..5b937502
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/ko.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="환경설정";locale["preferences[1]"]="메뉴바 자동 감춤";locale["preferences[2]"]="작업 표시줄에서 보기";locale["preferences[3]"]="Rambox를 닫아도 작업 표시줄에 유지합니다.";locale["preferences[4]"]="최소화 상태로 시작";locale["preferences[5]"]="시스템 시작시 자동으로 시작";locale["preferences[6]"]="메뉴바가 항상 보여질 필요가 없습니까?";locale["preferences[7]"]="메뉴 막대를 일시적으로 표시하려면 Alt 키를 누릅니다.";locale["app.update[0]"]="새 버전이 있습니다!";locale["app.update[1]"]="다운로드";locale["app.update[2]"]="변경 이력";locale["app.update[3]"]="최신 상태 입니다.";locale["app.update[4]"]="최신 버전의 Rambox를 사용중입니다.";locale["app.about[0]"]="Rambox 정보";locale["app.about[1]"]="일반 웹 응용 프로그램을 하나로 결합한 무료 및 오픈 소스 메시징 및 전자 메일 응용 프로그램입니다.";locale["app.about[2]"]="버전";locale["app.about[3]"]="플랫폼";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="새로운 서비스 추가";locale["app.main[1]"]="메시징";locale["app.main[2]"]="이메일";locale["app.main[3]"]="서비스를 찾을수 없습니다. 다른 방식으로 시도하세요.";locale["app.main[4]"]="활성화 된 서비스";locale["app.main[5]"]="정렬";locale["app.main[6]"]="왼쪽";locale["app.main[7]"]="오른쪽";locale["app.main[8]"]="항목";locale["app.main[9]"]="항목";locale["app.main[10]"]="모든 서비스를 제거";locale["app.main[11]"]="알림 방지";locale["app.main[12]"]="알림 없음";locale["app.main[13]"]="환경설정";locale["app.main[14]"]="제거";locale["app.main[15]"]="추가된 서비스가 없습니다.";locale["app.main[16]"]="방해 금지";locale["app.main[17]"]="모든 서비스에서 알림 및 소리를 비활성화합니다. 집중하고 몰입하기에 완벽합니다.";locale["app.main[18]"]="단축키";locale["app.main[19]"]="Rambox 잠금";locale["app.main[20]"]="일정 기간 자리를 비울 경우 이 앱을 잠그세요.";locale["app.main[21]"]="로그아웃";locale["app.main[22]"]="로그인";locale["app.main[23]"]="모든 컴퓨터와 동기화하려면 구성을 저장하고 (자격 증명은 저장되지 않음) 로그인하십시오.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="후원";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="추가";locale["app.window[1]"]="편집";locale["app.window[2]"]="이름";locale["app.window[3]"]="옵션";locale["app.window[4]"]="오른쪽 정렬";locale["app.window[5]"]="알림 표시";locale["app.window[6]"]="모두 음소거";locale["app.window[7]"]="고급";locale["app.window[8]"]="사용자 지정 코드";locale["app.window[9]"]="더 보기...";locale["app.window[10]"]="서비스 추가";locale["app.window[11]"]="팀";locale["app.window[12]"]="확인이 필요...";locale["app.window[13]"]="제거 하시겠습니까?";locale["app.window[14]"]="모든 서비스를 제거 하시겠습니까?";locale["app.window[15]"]="사용자 지정 서비스 추가";locale["app.window[16]"]="사용자 지정 서비스 편집";locale["app.window[17]"]="URL";locale["app.window[18]"]="로고";locale["app.window[19]"]="잘못된 인증서";locale["app.window[20]"]="켜짐";locale["app.window[21]"]="꺼짐";locale["app.window[22]"]="나중에 잠금을 해제하려면 임시 암호를 입력하십시오.";locale["app.window[23]"]="임시 비밀번호를 다시 입력하세요.";locale["app.window[24]"]="경고";locale["app.window[25]"]="암호가 같지 않습니다. 다시 시도하십시오.";locale["app.window[26]"]="Rambox 잠김";locale["app.window[27]"]="잠금 해제";locale["app.window[28]"]="연결중...";locale["app.window[29]"]="구성이 완료 될 때까지 기다려주십시오.";locale["app.window[30]"]="가져오기";locale["app.window[31]"]="서비스를 저장하지 않았습니다. 현재 서비스를 가져 오시겠습니까?";locale["app.window[32]"]="모든 서비스 제거";locale["app.window[33]"]="다시 시작 하여 모든 서비스를 제거 하 시겠습니까?";locale["app.window[34]"]="그렇지 않으면 로그 아웃됩니다.";locale["app.window[35]"]="적용";locale["app.window[36]"]="구성을 가져 오려면 Rambox의 모든 서비스를 제거해야합니다. 계속 하시겠습니까?";locale["app.window[37]"]="세션을 닫는중...";locale["app.window[38]"]="로그아웃 하시겠습니까?";locale["app.webview[0]"]="새로 고침";locale["app.webview[1]"]="연결하기";locale["app.webview[2]"]="연결끊기";locale["app.webview[3]"]="개발자 도구";locale["app.webview[4]"]="불러오는 중...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="확인";locale["button[1]"]="취소";locale["button[2]"]="네";locale["button[3]"]="아니요";locale["button[4]"]="저장";locale["main.dialog[0]"]="인증 오류";locale["main.dialog[1]"]="다음 URL의 서비스에 잘못된 인증이 있습니다.";locale["main.dialog[2]"]="를 옵션에서 활성화 한 후, 서비스를 제거하고 다시 추가하세요.";locale["menu.help[0]"]="Rambox 웹사이트 방문하기";locale["menu.help[1]"]="문제 신고하기...";locale["menu.help[2]"]="도움 요청하기";locale["menu.help[3]"]="후원";locale["menu.help[4]"]="도움말";locale["menu.edit[0]"]="편집";locale["menu.edit[1]"]="실행 취소";locale["menu.edit[2]"]="다시 실행";locale["menu.edit[3]"]="잘라내기";locale["menu.edit[4]"]="복사";locale["menu.edit[5]"]="붙여넣기";locale["menu.edit[6]"]="전체 선택";locale["menu.view[0]"]="보기";locale["menu.view[1]"]="새로 고침";locale["menu.view[2]"]="전체화면 보기";locale["menu.view[3]"]="개발자 도구";locale["menu.window[0]"]="창";locale["menu.window[1]"]="최소화";locale["menu.window[2]"]="닫기";locale["menu.window[3]"]="항상 위에 표시";locale["menu.help[5]"]="업데이트 확인...";locale["menu.help[6]"]="Rambox 정보";locale["menu.osx[0]"]="서비스";locale["menu.osx[1]"]="Rambox 숨기기";locale["menu.osx[2]"]="다른 항목 숨기기";locale["menu.osx[3]"]="모두 보기";locale["menu.file[0]"]="파일";locale["menu.file[1]"]="Rambox 종료";locale["tray[0]"]="창 표시/숨기기";locale["tray[1]"]="나가기";locale["services[0]"]="WhatsApp 메신저는 아이폰, 블랙베리, 안드로이드, 윈도우 폰 및 노키아 같은 스마트폰 기기에서 메시지를 주고받을 수 있는 앱입니다. 일반 문자서비스 대신 WhatsApp으로 메시지, 전화, 사진, 동영상, 문서, 그리고 음성 메시지를 주고받으세요.";locale["services[1]"]="Slack은 한곳에서 모든 커뮤니케이션을 가능하게 합니다. 현대적인 팀을 위한 실시간 메시징, 파일 보관과 검색을 해보세요.";locale["services[2]"]="Noysi는 개인 정보가 보장되는 팀을위한 커뮤니케이션 도구입니다. Noysi를 사용하면 어디서든 무제한으로 몇 초 내에 모든 대화 및 파일에 액세스 할 수 있습니다.";locale["services[3]"]="평생 무료로 사람들에게 연락하십시오. 메신저는 문자 메시지와 비슷하지만 모든 메시지는 비용이 들지 않습니다.";locale["services[4]"]="가족이나 친구들과 무료로 연락하십시오. 데스크톱 및 모바일에서 국제 전화, 무료 온라인 통화 및 Skype for Business를 이용할 수 있습니다.";locale["services[5]"]="Hangouts 을 사용하면 사진, 그림 이모티콘, 그룹 화상 통화 등을 통해 대화에 활기를 불어 넣을 수 있습니다. 컴퓨터, Android 및 Apple 기기에서 친구와 연결합니다.";locale["services[6]"]="HipChat은 팀을 위해 구성된 그룹 채팅 및 화상 채팅입니다. 영구적 인 대화방, 파일 공유 및 화면 공유로 실시간 협업을 강화하십시오.";locale["services[7]"]="Telegram은 속도와 보안에 중점을 둔 메시징 앱입니다. 그것은 빠르고, 간단하고 안전하며 무료입니다.";locale["services[8]"]="WeChat은 가족과 쉽게 연결할 수있는 무료 메시징 전화 앱입니다. 각국의 친구. 무료 텍스트 (SMS / MMS), 음성을위한 올인원 통신 앱입니다. 화상 통화, 일상, 사진 공유 및 게임.";locale["services[9]"]="Google의 무료 이메일 서비스인 Gmail은 세계에서 가장 인기있는 이메일 프로그램 중 하나입니다.";locale["services[10]"]="Inbox by Gmail은 Gmail 팀의 새로운 앱입니다. Inbox는 일을 끝내고 중요한 일로 돌아 가기위한 체계적인 공간입니다. 번들로 이메일을 정리할 수 있습니다.";locale["services[11]"]="ChatWork는 비즈니스를위한 그룹 채팅 앱입니다. 보안 메시징, 비디오 채팅, 작업 관리 및 파일 공유로 실시간 의사 소통 및 팀 생산성을 향상시킵니다.";locale["services[12]"]="GroupMe는 그룹 문자 메시지를 모든 전화기에 제공합니다. 당신의 삶에서 중요한 사람들과 메시지를 그룹화하십시오.";locale["services[13]"]="세계에서 가장 발전된 팀 채팅은 엔터프라이즈 검색을 충족시킵니다.";locale["services[14]"]="Gitter는 GitHub 위에 구축되며 조직, 저장소, 문제 및 활동과 긴밀하게 통합됩니다.";locale["services[15]"]="Steam은 디지털 저작권 관리 (DRM), 멀티 플레이어 게임 및 소셜 네트워킹 서비스를 제공하는 Valve Corporation에서 개발 한 디지털 배포 플랫폼입니다.";locale["services[16]"]="현대적인 음성 및 문자 채팅 앱으로 게임을 한 단계 업그레이드하십시오. 맑은 음성, 다중 서버 및 채널 지원, 모바일 응용 프로그램 등을 지원합니다.";locale["services[17]"]="관리하세요. 더 많은 일을하십시오. Outlook은 무료 이메일 및 캘린더 서비스로 중요한 업무를 수행하고 업무를 처리하는 데 도움을줍니다.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="미국계 회사인 Yahoo! 가 제공하는 웹 기반 이메일 서비스입니다. 이 서비스는 개인적인 용도로 무료이며 유료 비즈니스 전자 메일 구성을 사용할 수 있습니다.";locale["services[20]"]="CERN 연구 시설에서 2013 년에 설립 된 무료 및 웹 기반 암호화 이메일 서비스입니다. ProtonMail은 Gmail 및 Hotmail과 같은 다른 일반적인 웹 메일 서비스와 달리 ProtonMail 서버로 보내기 전에 전자 메일 및 사용자 데이터를 보호하기 위해 클라이언트 측 암호화를 사용하는 영지식 기술 시스템으로 설계되었습니다.";locale["services[21]"]="Tutanota는 오픈 소스 엔드 투 엔드 암호화 전자 메일 소프트웨어이며이 소프트웨어를 기반으로하는 보안 전자 메일 서비스를 호스팅합니다.";locale["services[22]"]="버전의 서비스를 제공합니다. Hushmail은 OpenPGP 표준을 사용하며 소스도 받을 수 있습니다.";locale["services[23]"]="생산적인 팀을위한 공동 작업 전자 메일 및 스레드 그룹 채팅입니다. 모든 내부 및 외부 통신을위한 단일 응용 프로그램입니다.";locale["services[24]"]="그룹 메시지와 화상 통화에서 헬프 데스크 킬러 기능까지, 우리의 목표는 최고의 크로스 플랫폼 오픈 소스 채팅 솔루션이되는 것입니다.";locale["services[25]"]="HD 품질의 통화, 인라인 사진, 음악 및 비디오가 포함 된 개인 및 그룹 채팅. 휴대 전화 또는 태블릿에서도 사용할 수 있습니다.";locale["services[26]"]="Sync는 팀의 생산성을 높여주는 비즈니스 채팅 도구입니다.";locale["services[27]"]="설명이 없습니다.";locale["services[28]"]="Yahoo 서버에있는 모든 사람과 인스턴트 메시지를 보낼 수 있습니다. 메일을 받을 때 알려주고 주식 시세 정보를 줍니다.";locale["services[29]"]="Voxer는 라이브 음성(PTT 무전기와 같은), 텍스트, 사진 및 위치 공유 기능을 갖춘 스마트 폰용 메시징 앱입니다.";locale["services[30]"]="Dasher를 사용하면 사진, GIF, 링크 등을 통해 실제로 원하는 것을 말할 수 있습니다. 설문 조사에 참여하여 친구가 새로운 부업에 대해 정말로 생각하는 바를 알아보십시오.";locale["services[31]"]="Flowdock은 공유 된받은 편지함으로 팀 채팅을합니다. Flowdock을 사용하는 팀은 최신 상태를 유지하고 며칠이 아닌 몇 초 만에 반응하며 아무것도 잃지 않습니다.";locale["services[32]"]="Mattermost은 오픈 소스이며 자체 호스팅 된 Slack-alternative입니다. 독점 SaaS 메시징의 대안 인 Mattermost은 모든 팀 커뮤니케이션을 한 곳으로 가져와 검색 가능하고 어디에서나 액세스 할 수 있도록합니다.";locale["services[33]"]="DingTalk는 중소기업이 효율적으로 의사 소통 할 수있는 다각적 인 플랫폼입니다.";locale["services[34]"]="Mysms 애플리케이션 제품군은 텍스트를 어디에서나 사용할 수 있도록 지원하며 스마트 폰, 태블릿 및 컴퓨터에서 메시징 환경을 향상시킵니다.";locale["services[35]"]="ICQ는 처음 개발되고 대중화 된 오픈 소스 인스턴트 메시징 컴퓨터 프로그램입니다.";locale["services[36]"]="TweetDeck은 Twitter 계정 관리를위한 소셜 미디어 대시 보드 응용 프로그램입니다.";locale["services[37]"]="사용자 지정 서비스";locale["services[38]"]="목록에 없는 서비스를 사용자 정의 서비스로 추가";locale["services[39]"]="Zinc은 텍스트, 음성, 비디오, 파일 공유 등을 통해 모바일 작업자를위한 보안 통신 응용 프로그램입니다.";locale["services[40]"]="이전에 Open Projects Network로 알려진 Freenode는 동료 중심 프로젝트를 논의하는 데 사용되는 IRC 네트워크입니다.";locale["services[41]"]="컴퓨터의 텍스트가 Android 전화 및 번호와 동기화됩니다.";locale["services[42]"]="PHP기반, 무료 오픈 소스 웹 메일 소프트웨어.";locale["services[43]"]="Horde 는 무료 오픈 소스 웹 기반 그룹웨어입니다.";locale["services[44]"]="SquirrelMail은 PHP로 작성된 표준 기반 웹 메일 패키지입니다.";locale["services[45]"]="깨끗하고 미니멀 한 인터페이스로 광고없는 비즈니스 이메일 호스팅. 통합 일정 관리, 연락처, 메모, 작업 애플 리케이션을 제공합니다.";locale["services[46]"]="Zoho 채팅은 팀이 생산성을 향상시킬 수 있도록 안전하고 확장 가능한 실시간 커뮤니케이션 및 공동 작업 플랫폼입니다.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/nl.js b/build/dark/development/Rambox/resources/languages/nl.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/nl.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/no.js b/build/dark/development/Rambox/resources/languages/no.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/no.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/pl.js b/build/dark/development/Rambox/resources/languages/pl.js
new file mode 100644
index 00000000..e05f2ad4
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/pl.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Ustawienia";locale["preferences[1]"]="Automatyczne ukrywanie paska Menu";locale["preferences[2]"]="Pokaż na pasku zadań";locale["preferences[3]"]="Pokaż Rambox na pasku zadań po zamknięciu okna aplikacji";locale["preferences[4]"]="Uruchom zminimalizowany";locale["preferences[5]"]="Uruchom Rambox przy starcie systemu";locale["preferences[6]"]="Nie potrzebujesz widzieć cały czas paska menu?";locale["preferences[7]"]="Aby tymczasowo wyświetlić pasek menu, naciśnij klawisz Alt.";locale["app.update[0]"]="Dostępna jest nowa wersja!";locale["app.update[1]"]="Pobierz";locale["app.update[2]"]="Dziennik zmian";locale["app.update[3]"]="Masz najnowszą wersję";locale["app.update[4]"]="Masz najnowszą wersję Rambox.";locale["app.about[0]"]="O Rambox";locale["app.about[1]"]="Darmowa i Wolna aplikacja do jednoczesnej obsługi wielu komunikatorów internetowych i klientów email bazujących na aplikacjach webowych.";locale["app.about[2]"]="Wersja";locale["app.about[3]"]="Platforma";locale["app.about[4]"]="Stworzone przez";locale["app.main[0]"]="Dodaj nową usługę";locale["app.main[1]"]="Komunikatory";locale["app.main[2]"]="Serwisy email";locale["app.main[3]"]="Nie znaleziono usług... Spróbuj ponownie.";locale["app.main[4]"]="Bieżące usługi";locale["app.main[5]"]="Wyrównanie";locale["app.main[6]"]="do lewej";locale["app.main[7]"]="do prawej";locale["app.main[8]"]="usługa";locale["app.main[9]"]="usługi";locale["app.main[10]"]="Usuń wszystkie usługi";locale["app.main[11]"]="Wyłącz powiadomienia";locale["app.main[12]"]="Wyciszony";locale["app.main[13]"]="Konfiguracja";locale["app.main[14]"]="Usuń";locale["app.main[15]"]="Brak usług";locale["app.main[16]"]="Nie Przeszkadzać";locale["app.main[17]"]="Pozwala wyłączyć powiadomienia i dźwięki we wszystkich usługach jednocześnie. Idealny tryb, gdy musisz się skupić.";locale["app.main[18]"]="Skrót klawiszowy";locale["app.main[19]"]="Zablokuj Rambox";locale["app.main[20]"]="Zablokuj tę aplikację, jeśli nie będziesz dostępny przez pewien okres czasu.";locale["app.main[21]"]="Wyloguj";locale["app.main[22]"]="Zaloguj";locale["app.main[23]"]="Zaloguj się, aby zapisać konfigurację oraz dodane usługi i synchronizować wszystkie swoje komputery (hasła nie są przechowywane).";locale["app.main[24]"]="Wspierane przez";locale["app.main[25]"]="Wspomóż";locale["app.main[26]"]="z";locale["app.main[27]"]="prosto z dalekiej Argentyny jako projekt Open Source.";locale["app.window[0]"]="Dodaj";locale["app.window[1]"]="Edytuj";locale["app.window[2]"]="Nazwa";locale["app.window[3]"]="Ustawienia";locale["app.window[4]"]="Wyrównaj do prawej";locale["app.window[5]"]="Pokazuj powiadomienia";locale["app.window[6]"]="Wycisz wszystkie dźwięki";locale["app.window[7]"]="Zaawansowane";locale["app.window[8]"]="Niestandardowy kod JS";locale["app.window[9]"]="więcej...";locale["app.window[10]"]="Dodaj usługę";locale["app.window[11]"]="Team";locale["app.window[12]"]="Potwierdź";locale["app.window[13]"]="Czy na pewno chcesz usunąć";locale["app.window[14]"]="Czy na pewno chcesz usunąć wszystkie usługi?";locale["app.window[15]"]="Dodaj inną usługę";locale["app.window[16]"]="Edytuj inną usługę";locale["app.window[17]"]="Adres URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Ignoruj nieprawidłowe certyfikaty SSL";locale["app.window[20]"]="włączony";locale["app.window[21]"]="wyłączony";locale["app.window[22]"]="Wprowadź hasło do odblokowania aplikacji";locale["app.window[23]"]="Powtórz hasło tymczasowe";locale["app.window[24]"]="Uwaga";locale["app.window[25]"]="Hasła nie są takie same. Proszę spróbować ponownie...";locale["app.window[26]"]="Rambox jest zablokowany";locale["app.window[27]"]="Odblokuj";locale["app.window[28]"]="Łączenie...";locale["app.window[29]"]="Proszę czekać, pobieranie konfiguracji...";locale["app.window[30]"]="Import";locale["app.window[31]"]="Nie znaleziono zapisanych usług. Czy chcesz zaimportować swoje bieżące usługi?";locale["app.window[32]"]="Usuwanie usług";locale["app.window[33]"]="Czy chcesz usunąć wszystkie bieżące usługi?";locale["app.window[34]"]="Jeśli nie, zostaniesz wylogowany.";locale["app.window[35]"]="Potwierdzenie";locale["app.window[36]"]="Aby zaimportować konfigurację, Rambox musi usunąć wszystkie bieżące usługi. Czy chcesz kontynuować?";locale["app.window[37]"]="Wylogowywanie...";locale["app.window[38]"]="Czy na pewno chcesz się wylogować?";locale["app.webview[0]"]="Odśwież";locale["app.webview[1]"]="Przejdź w tryb online";locale["app.webview[2]"]="Przejdź w tryb offline";locale["app.webview[3]"]="Narzędzia dla deweloperów";locale["app.webview[4]"]="Trwa ładowanie...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="OK";locale["button[1]"]="Anuluj";locale["button[2]"]="Tak";locale["button[3]"]="Nie";locale["button[4]"]="Zapisz";locale["main.dialog[0]"]="Błąd certyfikatu";locale["main.dialog[1]"]="Usługa z następującym adresem URL ma nieprawidłowy certyfikat SSL.";locale["main.dialog[2]"]="Należy usunąć usługę i dodać ją ponownie";locale["menu.help[0]"]="Odwiedź stronę internetową Rambox";locale["menu.help[1]"]="Zgłoś problem...";locale["menu.help[2]"]="Poproś o pomoc";locale["menu.help[3]"]="Wspomóż";locale["menu.help[4]"]="Pomoc";locale["menu.edit[0]"]="Edycja";locale["menu.edit[1]"]="Cofnij";locale["menu.edit[2]"]="Powtórz";locale["menu.edit[3]"]="Wytnij";locale["menu.edit[4]"]="Kopiuj";locale["menu.edit[5]"]="Wklej";locale["menu.edit[6]"]="Zaznacz wszystko";locale["menu.view[0]"]="Widok";locale["menu.view[1]"]="Przeładuj";locale["menu.view[2]"]="Tryb pełnoekranowy";locale["menu.view[3]"]="Narzędzia dla deweloperów";locale["menu.window[0]"]="Okno";locale["menu.window[1]"]="Zminimalizuj";locale["menu.window[2]"]="Zamknij";locale["menu.window[3]"]="Zawsze na wierzchu";locale["menu.help[5]"]="Sprawdź dostępność aktualizacji...";locale["menu.help[6]"]="O Rambox";locale["menu.osx[0]"]="Usługi";locale["menu.osx[1]"]="Ukryj Rambox";locale["menu.osx[2]"]="Ukryj pozostałe";locale["menu.osx[3]"]="Pokaż wszystko";locale["menu.file[0]"]="Plik";locale["menu.file[1]"]="Zakończ Rambox";locale["tray[0]"]="Pokaż/Ukryj okno";locale["tray[1]"]="Zakończ";locale["services[0]"]="WhatsApp – mobilna aplikacja dla smartfonów służąca jako komunikator internetowy, dostępna dla różnych platform: iOS, Android, Windows Phone, do końca 2016 także: BlackBerry OS, Symbian i Nokia S40.";locale["services[1]"]="Slack to darmowa, lecz zaawansowana platforma do komunikacji zespołowej. Aplikacja pozwala użytkownikowi na integrację w jednym miejscu wiadomości, obrazów i filmów wideo, w tym także tych zgromadzonych na Google Drive lub na Dropboxie.";locale["services[2]"]="Noysi jest narzędziem komunikacji dla zespołów, który gwarantuje prywatność. Noysi pozwala uzyskać dostęp do wszystkich konwersacji i plików z dowolnego miejsca, bez ograniczeń.";locale["services[3]"]="Facebook Messenger to oficjalna aplikacja służąca do obsługi komunikatora oferowanego przez największą sieć społecznościową. Pozwala on na komunikację z użytkownikami którzy korzystają z czaty poprzez stronę internetową, ale również dedykowane aplikacje dla konkretnych platform tj. Android, iOS oraz Windows Phone. Aplikacja pozwala na wykonywanie bezpłatnych połączeń głosowych do użytkowników swojej sieci.";locale["services[4]"]="Skype to darmowy klient usługi komunikacji głosowej i wideo o takiej samej nazwie. Aplikacja pozwala na logowanie do konta Skype, obsługuje także konta Microsoft. Chociaż głównym jej zadaniem są rozmowy głosowe i wideo, udostępnia także funkcję czatu tekstowego.";locale["services[5]"]="Hangouts, to następca komunikatora Google Talk. Aplikacja podobnie do Skype umożliwia zarówno prowadzenie rozmów tekstowych, jak i zupełnie darmowych wideo-rozmów. Rozpoznaje ona kontakty konta Google, pozwala na rozmowy z osobami posiadającymi profil Google+, jak również z zupełnie innych serwerów XMPP.";locale["services[6]"]="HipChat to komunikator stworzony z myślą o efektywnej współpracy - synchronizacja na wielu urządzeniach, dostęp do archiwum rozmów przez wyszukiwanie fraz, wideorozmowy, udostępnianie ekranu, gwarancja bezpieczeństwa rozmów.";locale["services[7]"]="Telegram skupia się na wymianie wiadomości tekstowych. Za jego pomocą możemy przesyłać również zdjęcia i pliki oraz nagrane pliki dźwiękowe. Według zapewnień autorów nasze rozmowy mają być szyfrowane, a bezpieczeństwo jest ich priorytetem.";locale["services[8]"]="WeChat to rozbudowana aplikacja służąca do komunikacji, służąca do wysyłania wiadomości tekstowych, a także do rozmów telefonicznych oraz wideo.";locale["services[9]"]="Gmail to bezpłatny serwis webmail od Google. Cechuje go brak uciążliwych reklam, prosta obsługa, szyfrowanie połączenia, skuteczny filtr antyspamowy i wbudowany komunikator.";locale["services[10]"]="Inbox to alternatywna aplikacja do obsługi poczty zgromadzonej na koncie Gmail autorstwa Google'a. Zapewnia nam dostęp do tych samych wiadomości i kontaktów, ale proponuje nieco inne podejście do e-maili. Głównym założeniem Inboxa ma być pomoc w zarządzaniu mailami, traktowanie ich jak zadań oraz wspieranie idei Inbox Zero. Aplikacja sama analizuje treść i przydatność wiadomości.";locale["services[11]"]="ChatWork to chat grupowy dla biznesu. Bezpieczne wiadomości, czat wideo, zarządzanie zadaniami i udostępnianie plików. Komunikacja w czasie rzeczywistym i zwiększenie wydajności zespołów.";locale["services[12]"]="GroupMe to komunikator społecznościowy należący do Skype'a. Skupia się na komunikacji i wymianie treści w grupie bliskich osób, znajomych. Jest dostępny również z poziomu serwisu www.";locale["services[13]"]="Grape to inteligentne rozwiązanie komunikacyjne dla zespołów, które oferuje jedne z najbardziej zaawansowanej integracji danych.";locale["services[14]"]="Gitter jest zbudowany wokół GitHub i jest ściśle zintegrowany organizacjami, repozytoriami, zgłoszeniami i aktywnością w serwisie GitHub.";locale["services[15]"]="Steam to cyfrowa platforma dystrybucji opracowany przez Valve Corporation, oferuje zarządzanie DRM, gry multiplayer i usługi społecznościowe.";locale["services[16]"]="Discord to aplikacja, która służy do komunikacji między graczami. Oferuje możliwość prowadzenia rozmów tekstowych i głosowych, a także wysyłanie załączników w różnych formatach, m.in. zdjęć i filmów.";locale["services[17]"]="Outlook to bezpłatna usługa poczty i kalendarza, która pomaga być na bieżąco z istotnymi sprawami i wykonywać zadania.";locale["services[18]"]="Outlook w ramach Office 365 dla firm (logowanie do aplikacji Outlook w sieci Web dla firm, z własną domeną).";locale["services[19]"]="Yahoo Mail to oficjalna aplikacja do obsługi konta pocztowego w ramach darmowych usług oferowanych przez firmę Yahoo. Aplikacja posiada wszystkie najważniejsze funkcje jakich należy szukać w kliencie pocztowym: pozwala na dostęp do poszczególnych kategorii, szybkie zarządzanie wieloma wiadomościami jednocześnie, a także dodawanie wielu kont. Atutem aplikacji jest obsługa motywów.";locale["services[20]"]="ProtonMail to darmowy klient pocztowy szwajcarskiej usługi opracowanej w CERN, gwarantującej wysoki poziom ochrony bezpieczeństwa danych użytkownika.";locale["services[21]"]="Tutanota to klient poczty elektronicznej, którego twórcy postawili mocno na bezpieczeństwo prywatności użytkownika i przesyłanych danych. Aplikacja Tutanota jest projektem open source'owym, a jej kod źródłowy można znaleźć na Git Hubie.";locale["services[22]"]="Hushmail to usługa e-mail, oferująca szyfrowanie PGP.";locale["services[23]"]="Missive to email i czat grupowy dla zespołów wytwórczych. Jedna aplikacja dla całej Twojej komunikacji wewnętrznej i zewnętrznej. Najlepsze rozwiązanie do zarządzania pracą.";locale["services[24]"]="Od wiadomości grupowych i połączeń wideo, aż do obsługi helpdesku. Naszym celem jest stać się numerem jeden w kategorii wolnoźródłowych i wieloplatformowych rozwiązań czatowych.";locale["services[25]"]="Wire to kolejny multiplatfromowy komunikator, za którym stoi między innymi część ekipy odpowiedzialnej za aplikację Skype. Główną zaletą Wire oraz tym co wyróżnia go na tle innych ma być interfejs i jego wykonanie. Autorzy opisują go jako piękny i czysty, jest w tych sformułowaniach sporo prawdy.";locale["services[26]"]="Sync to japońska aplikacja do wiadomości grupowych dla zespołów. Przeznaczony do wspólnej pracy nad projektami.";locale["services[27]"]="Brak opisu";locale["services[28]"]="Pozwala na wysyłanie wiadomości błyskawicznych z każdym na serwerze Yahoo. Informuje, gdy dostaniesz maila, i daje notowania giełdowe.";locale["services[29]"]="Voxer to aplikacja do wysyłania wiadomości głosowych na żywo (jak walkie talkie), a także tekstu, zdjęć i udostępniania lokalizacji.";locale["services[30]"]="Dasher pozwala Ci powiedzieć, to co naprawdę chcesz dzięki zdjęciom, obrazkom GIF i linkom. Zrób ankietę, aby dowiedzieć się, co Twoi znajomi naprawdę myślą.";locale["services[31]"]="Flowdock jest czatem ze wspólną skrzynką mailową dla Twojego zespołu. Zespoły korzystające Flowdock są na bieżąco, reagują w ciągu kilku sekund, a nie dni i nigdy nie zapominają niczego.";locale["services[32]"]="Mattermost jest open source, self-hosted alternatywą dla Slacka. Mattermost pozwala utrzymać całą komunikację zespołu w jednym miejscu.";locale["services[33]"]="DingTalk jest platformą, pozwalającą małym i średnim biznesom na skuteczne porozumiewanie się.";locale["services[34]"]="mySMS pozwala na pisanie i czytanie SMSów z każdego miejsca (wymaga telefonu z Androidem).";locale["services[35]"]="ICQ jest otwarto źródłowym komunikatorem, który jako pierwszy na świecie zyskał dużą popularność.";locale["services[36]"]="TweetDeck jest pulpitem nawigacyjnym do zarządzania kontami Twitter.";locale["services[37]"]="Inna usługa";locale["services[38]"]="Dodaj usługę, której nie ma na powyższej liście";locale["services[39]"]="Zinc to bezpieczna aplikacja komunikacyjna dla pracowników mobilnych, z tekstem, głosem, wideo, udostępnianiem plików.";locale["services[40]"]="Freenode, dawniej znany jako Open Projects Network to sieć IRC stosowana w celu omówienia projektów.";locale["services[41]"]="Pisz SMSy z komputera i synchronizuj je z Twoim Androidem.";locale["services[42]"]="Wolne i otwarte oprogramowanie webmail dla mas, napisane w PHP.";locale["services[43]"]="Hordy jest darmowym i otwarto źródłowym oprogramowaniem do pracy grupowej.";locale["services[44]"]="SquirrelMail jest opartym na standardach pakietem webmail napisanym w PHP.";locale["services[45]"]="Biznesowy hosting email, bez reklam z czystym, minimalistycznym interfejsem. Zintegrowany z kalendarzem, kontaktami i notatkami.";locale["services[46]"]="Czat Zoho jest bezpiecznym i skalowalnym w czasie rzeczywistym narzędziem do komunikacji i współpracy dla zespołów.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/pt-BR.js b/build/dark/development/Rambox/resources/languages/pt-BR.js
new file mode 100644
index 00000000..e013474c
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/pt-BR.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferências";locale["preferences[1]"]="Ocultar automaticamente a barra de Menu";locale["preferences[2]"]="Mostrar na barra de tarefas";locale["preferences[3]"]="Manter o Rambox na barra de tarefas ao fechar";locale["preferences[4]"]="Iniciar minimizado";locale["preferences[5]"]="Iniciar automaticamente ao inicializar o sistema";locale["preferences[6]"]="Não precisa ver a barra de menu o tempo todo?";locale["preferences[7]"]="Para mostrar temporariamente a barra de menu, basta pressionar a tecla Alt.";locale["app.update[0]"]="Uma nova versão está disponível!";locale["app.update[1]"]="Baixar";locale["app.update[2]"]="Histórico de alterações";locale["app.update[3]"]="O programa está atualizado!";locale["app.update[4]"]="Você tem a versão mais recente do Rambox.";locale["app.about[0]"]="Sobre o Rambox";locale["app.about[1]"]="Aplicação de Software Livre e Open Source, que combina as aplicações web mais utilizadas de mensagens e de e-mail em um único aplicativo.";locale["app.about[2]"]="Versão";locale["app.about[3]"]="Plataforma";locale["app.about[4]"]="Desenvolvido por";locale["app.main[0]"]="Adicionar um novo serviço";locale["app.main[1]"]="Mensagens";locale["app.main[2]"]="Email";locale["app.main[3]"]="Nenhum serviço encontrado... Tente outra pesquisa.";locale["app.main[4]"]="Serviços habilitados";locale["app.main[5]"]="ALINHAR";locale["app.main[6]"]="Esquerda";locale["app.main[7]"]="Direita";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remover todos os serviços";locale["app.main[11]"]="Desativar notificações";locale["app.main[12]"]="Silencioso";locale["app.main[13]"]="Configurar";locale["app.main[14]"]="Remover";locale["app.main[15]"]="Nenhum serviço adicionado...";locale["app.main[16]"]="Não perturbe";locale["app.main[17]"]="Desative as notificações e sons de todos os serviços. Perfeito para ser manter concentrado e focado.";locale["app.main[18]"]="Teclas de atalho";locale["app.main[19]"]="Bloquear Rambox";locale["app.main[20]"]="Bloquear este aplicativo se você ficar inativo por um período de tempo.";locale["app.main[21]"]="Sair";locale["app.main[22]"]="Iniciar Sessão";locale["app.main[23]"]="Conectar para salvar suas configurações (nenhumas credenciais são armazenadas) para sincronização com todos os seus computadores.";locale["app.main[24]"]="Desenvolvido por";locale["app.main[25]"]="Faça uma doação";locale["app.main[26]"]="com";locale["app.main[27]"]="da Argentina como um projeto Open Source.";locale["app.window[0]"]="Adicionar";locale["app.window[1]"]="Editar";locale["app.window[2]"]="Nome";locale["app.window[3]"]="Opções";locale["app.window[4]"]="Alinhar à direita";locale["app.window[5]"]="Mostrar notificações";locale["app.window[6]"]="Silenciar todos os sons";locale["app.window[7]"]="Avançado";locale["app.window[8]"]="Código customizado";locale["app.window[9]"]="ler mais...";locale["app.window[10]"]="Adicionar serviço";locale["app.window[11]"]="equipe";locale["app.window[12]"]="Confirme por favor...";locale["app.window[13]"]="Tem certeza que deseja remover";locale["app.window[14]"]="Tem certeza que deseja remover todos os serviços?";locale["app.window[15]"]="Adicionar serviço personalizado";locale["app.window[16]"]="Editar serviço personalizado";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Confiar em certificados de autoridade inválida";locale["app.window[20]"]="LIGADO";locale["app.window[21]"]="DESLIGADO";locale["app.window[22]"]="Digite uma senha temporária para desbloquear mais tarde";locale["app.window[23]"]="Repetir a senha temporária";locale["app.window[24]"]="Atenção";locale["app.window[25]"]="As senhas não são iguais. Por favor, tente novamente...";locale["app.window[26]"]="RamBox está bloqueado";locale["app.window[27]"]="DESBLOQUEAR";locale["app.window[28]"]="Conectando...";locale["app.window[29]"]="Por favor espere até obtermos a sua configuração.";locale["app.window[30]"]="Importar";locale["app.window[31]"]="Você não tem qualquer serviço salvo. Você quer importar os seus serviços atuais?";locale["app.window[32]"]="Limpar serviços";locale["app.window[33]"]="Deseja remover todos os seus serviços actuais para começar de novo?";locale["app.window[34]"]="Se não, você será desconectado.";locale["app.window[35]"]="Confirmar";locale["app.window[36]"]="Para importar a sua configuração, Rambox precisa de remover todos os seus serviços atuais. Deseja continuar?";locale["app.window[37]"]="Desconectando...";locale["app.window[38]"]="Tem certeza de que deseja sair?";locale["app.webview[0]"]="Atualizar";locale["app.webview[1]"]="Ficar Online";locale["app.webview[2]"]="Ficar inativo";locale["app.webview[3]"]="Alternar Ferramentas de programador";locale["app.webview[4]"]="Carregando...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancelar";locale["button[2]"]="Sim";locale["button[3]"]="Não";locale["button[4]"]="Salvar";locale["main.dialog[0]"]="Erro de certificação";locale["main.dialog[1]"]="O serviço com o seguinte URL contem um certificador inválido.";locale["main.dialog[2]"]="Você tem que remover o serviço e adicioná-lo novamente";locale["menu.help[0]"]="Visite o site do Rambox";locale["menu.help[1]"]="Reportar um problema...";locale["menu.help[2]"]="Pedir ajuda";locale["menu.help[3]"]="Faça uma doação";locale["menu.help[4]"]="Ajuda";locale["menu.edit[0]"]="Editar";locale["menu.edit[1]"]="Desfazer";locale["menu.edit[2]"]="Refazer";locale["menu.edit[3]"]="Cortar";locale["menu.edit[4]"]="Copiar";locale["menu.edit[5]"]="Colar";locale["menu.edit[6]"]="Selecionar tudo";locale["menu.view[0]"]="Exibir";locale["menu.view[1]"]="Atualizar";locale["menu.view[2]"]="Alternar Tela Cheia";locale["menu.view[3]"]="Alternar ferramentas de programador";locale["menu.window[0]"]="Janela";locale["menu.window[1]"]="Minimizar";locale["menu.window[2]"]="Fechar";locale["menu.window[3]"]="Sempre visível";locale["menu.help[5]"]="Verificar atualizações...";locale["menu.help[6]"]="Sobre o Rambox";locale["menu.osx[0]"]="Serviços";locale["menu.osx[1]"]="Ocultar Rambox";locale["menu.osx[2]"]="Ocultar outros";locale["menu.osx[3]"]="Mostrar todos";locale["menu.file[0]"]="Arquivo";locale["menu.file[1]"]="Sair do Rambox";locale["tray[0]"]="Mostrar/Ocultar janela";locale["tray[1]"]="Sair";locale["services[0]"]="WhatsApp é uma aplicação móvel de mensagens multiplataforma para iPhone, BlackBerry, Android, Windows Phone e Nokia. Envie texto, vídeo, imagens, áudio gratuitamente.";locale["services[1]"]="Slack reúne toda a sua comunicação em um só lugar. É um serviço em tempo real de mensagens, arquivos e busca para equipes modernas.";locale["services[2]"]="Noysi é uma ferramenta de comunicação para as equipes onde a privacidade é garantida. Com Noysi você pode acessar todas as suas conversas e arquivos em segundos, de qualquer lugar e ilimitado.";locale["services[3]"]="Alcance instantaneamente pessoas em sua vida de graça. Messenger é como um Sms mas sem ter que pagar por cada mensagem.";locale["services[4]"]="Esteja em contato com a família e amigos gratuitamente. Faça chamadas internacionais, chamadas on-line gratuitas e Skype para negócios no desktop e mobile.";locale["services[5]"]="Hangouts dá vida as conversas, disponibilizando fotos, emojis, videochamadas e até mesmo conversas em grupo de forma gratuita. Conecte-se com seus amigos através de computadores e dispositivos Apple e Android.";locale["services[6]"]="HipChat é um serviço de mensagens e vídeo, construído para equipes. Aumente a colaboração em tempo real, com salas de chat persistentes, compartilhamento de arquivos e compartilhamento de tela.";locale["services[7]"]="Telegram é um serviço de mensagens com foco em velocidade e segurança. É super rápido, simples, seguro e gratuito.";locale["services[8]"]="WeChat é um aplicativo gratuito de chamadas e de mensagens que permite que você conecte-se facilmente com familiares e amigos em todos os países. É um aplicativo tudo em um que integra serviço de messages (SMS/MMS), voz, chamadas de vídeo, momentos, compartilhamento de fotos e jogos.";locale["services[9]"]="Gmail, serviço de e-mail gratuito do Google, é um dos programas de e-mail mais populares do mundo.";locale["services[10]"]="Inbox do Gmail é um novo aplicativo da equipe do Gmail. Inbox é um lugar organizado para agilizar suas tarefas e fazer o que realmente importa. Pacotes mantém os e-mails organizados.";locale["services[11]"]="ChatWork é um aplicativo de bate-papo voltado para negócios. Envio seguro de mensagens, vídeo chat, gerenciamento de tarefas e compartilhamento de arquivos. Comunicação em tempo real e aumento de produtividade para as equipes.";locale["services[12]"]="GroupMe traz mensagens de texto em grupo para telefones. Converse em grupo com as pessoas importantes da sua vida.";locale["services[13]"]="A mais avançada equipe de chat se juntada à pesquisa empresarial.";locale["services[14]"]="Gitter é construído com base no GitHub e se integra firmemente com suas organizações, repositórios, problemas e atividades.";locale["services[15]"]="Steam é uma plataforma de distribuição digital desenvolvida pela Valve Corporation oferecendo gerenciamento de direitos digitais (DRM), jogos multiplayer e serviços de redes sociais.";locale["services[16]"]="Reforce o seu jogo com um aplicativo de chat e voz moderno. Voz limpa, múltiplos servidores e suporte a canais, apps móveis e muito mais.";locale["services[17]"]="Assuma o controle. Faça mais. Outlook é o e-mail gratuito e serviço de calendário que ajuda você a ficar atento do que realmente importa e precisa ser feito.";locale["services[18]"]="Outlook para Negócios";locale["services[19]"]="Serviço de e-mail oferecido pela companhia americana Yahoo! O serviço é gratuito para uso pessoal, porém possui planos pagos para empresas.";locale["services[20]"]="Serviço de email criptografado, livre e baseado na web, fundado em 2013 no centro de pesquisas CERN. ProtonMail foi projetado usando a criptografia front-end para proteger emails e dados do usuário antes de serem enviados aos servidores do ProtonMail, diferenciado-se de outros serviços comuns de webmail, como Gmail e Hotmail.";locale["services[21]"]="Tutanota é um software de e-mail criptografado de codigo livre com a comunicação fim-a-fim e com o serviço de hospedagem gratuita segura baseada neste software.";locale["services[22]"]="Serviço de email que oferece mensagens criptografadas em PGP e serviços de domínio. Hushmail oferece versões gratuitas e pagas de seus serviços. Hushmail usa padrões OpenPGP e o código fonte está disponível para download.";locale["services[23]"]="Email colaborativo e chat em grupo para equipes produtivas. Um aplicativo único para todas as suas comunicações internas e externas.";locale["services[24]"]="Desde mensagens de grupo e chamadas de vídeo, até recursos de assistência técnica. O nosso objetivo é de se tornar a solução de chat multiplataforma e open source número um.";locale["services[25]"]="Chamadas em alta definição, chats privados com foto, áudio e vídeo. Também está disponível para seu celular ou tablet.";locale["services[26]"]="Sync é uma ferramenta de chat para empresas que irá impulsionar a produtividade de sua equipe.";locale["services[27]"]="Nenhuma descrição...";locale["services[28]"]="Possibilita mensagens instantâneas com qualquer pessoa no servidor Yahoo. Avisa quando você recebe emails e dá cotações de ações da bolsa de valores.";locale["services[29]"]="Voxer é um aplicativo de mensagens para o seu smartphone com chamada de voz (como um walkie talkie PTT), texto, imagem e compartilhamento de localização.";locale["services[30]"]="Dasher permite que você diga o que realmente que com pics, GIFs, links e muito mais. Faça uma pesquisa para descobrir o que seus amigos realmente pensam do seu novo boo.";locale["services[31]"]="Flowdock é um chat para a sua equipe com uma inbox compartilhada. As equipes que usam Flowdock ficam sempre atualizadas, respondem em segundos, em vez de dias, e nunca esquecem de nada.";locale["services[32]"]="Mattermost é uma alternativa open source para mensagens SaaS proprietárias. Mattermost oferece toda a comunicação da sua equipe em um único lugar, tornando-se pesquisável e acessível em qualquer lugar.";locale["services[33]"]="DingTalk é uma plataforma multiface que capacita pequenas e médias empresas para se comunicarem de forma eficaz.";locale["services[34]"]="A família de aplicações mysms ajuda você com os seus textos em qualquer lugar e melhora a experiência de suas mensagens em seu smartphone, tablet e computador.";locale["services[35]"]="ICQ é um programa de código aberto de mensagem instantânea para computador que foi desenvolvido e o primeiro a ser tornar popular";locale["services[36]"]="TweetDeck é um aplicativo de dashboard de mídia social para gerenciar contas do Twitter.";locale["services[37]"]="Serviço personalizado";locale["services[38]"]="Adicione um serviço personalizado se o mesmo não estiver listado acima.";locale["services[39]"]="Zinc é um aplicativo de comunicação segura para trabalhar em movimento, com texto, voz, vídeo, compartilhamento de arquivos e muito mais.";locale["services[40]"]="Freenode, anteriormente conhecida como Open Projects Network, é uma rede IRC usada para discutir projetos.";locale["services[41]"]="Sincronize mensagens e telefones do celular com o computador e do computador com o celular.";locale["services[42]"]="Software gratuito de código aberto para envio de e-mail em massa, feito com PHP.";locale["services[43]"]="Horde é uma ferramenta gratuita e open source de trabalho em grupo.";locale["services[44]"]="SquirrelMail é uma ferramenta padrão de webmail feita com PHP.";locale["services[45]"]="Email gratuito e livre de anúncios para o seu negócio com uma interface limpa e minimalista. Integra aplicativos de Calendário, Contatos, Notas e Tarefas.";locale["services[46]"]="Zoho chat é uma ferramenta segura e escalável para comunicação e colaboração entre equipes buscando melhorar sua produtividade.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/pt-PT.js b/build/dark/development/Rambox/resources/languages/pt-PT.js
new file mode 100644
index 00000000..e600c5e3
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/pt-PT.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferências";locale["preferences[1]"]="Ocultar automaticamente a barra de Menu";locale["preferences[2]"]="Mostrar na barra de tarefas";locale["preferences[3]"]="Manter o Rambox na barra de tarefas ao fechar";locale["preferences[4]"]="Iniciar minimizado";locale["preferences[5]"]="Iniciar automaticamente no arranque do sistema";locale["preferences[6]"]="Não precisa de ver a barra de menu o tempo todo?";locale["preferences[7]"]="Para mostrar temporariamente a barra de menu, basta pressionar a tecla Alt.";locale["app.update[0]"]="Está disponível uma nova versão!";locale["app.update[1]"]="Transferir";locale["app.update[2]"]="Histórico de alterações";locale["app.update[3]"]="O Programa está actualizado!";locale["app.update[4]"]="Você tem a versão mais recente do Rambox.";locale["app.about[0]"]="Sobre o Rambox";locale["app.about[1]"]="Aplicação Livre e Open Source, que combina as aplicações web mais comuns de mensagens e de e-mail numa só.";locale["app.about[2]"]="Versão";locale["app.about[3]"]="Plataforma";locale["app.about[4]"]="Desenvolvido por";locale["app.main[0]"]="Adicionar um novo serviço";locale["app.main[1]"]="Mensagens";locale["app.main[2]"]="Email";locale["app.main[3]"]="Nenhum serviço encontrado... Tente outra pesquisa.";locale["app.main[4]"]="Serviços activos";locale["app.main[5]"]="ALINHAR";locale["app.main[6]"]="Esquerda";locale["app.main[7]"]="Direita";locale["app.main[8]"]="Item";locale["app.main[9]"]="Itens";locale["app.main[10]"]="Remover todos os serviços";locale["app.main[11]"]="Evitar notificações";locale["app.main[12]"]="Silêncio";locale["app.main[13]"]="Configurar";locale["app.main[14]"]="Remover";locale["app.main[15]"]="Nenhum serviço adicionado...";locale["app.main[16]"]="Não perturbar";locale["app.main[17]"]="Desactive notificações e sons de todos os serviços. Perfeito para ser manter concentrado e focado.";locale["app.main[18]"]="Tecla de atalho";locale["app.main[19]"]="Bloquear Rambox";locale["app.main[20]"]="Bloquear esta aplicação se ficar fora por um período de tempo.";locale["app.main[21]"]="Terminar Sessão";locale["app.main[22]"]="Iniciar Sessão";locale["app.main[23]"]="Iniciar sessão para salvar a sua configuração (nenhumas credenciais são armazenadas) para sincronização com todos os seus computadores.";locale["app.main[24]"]="Desenvolvido por";locale["app.main[25]"]="Fazer um donativo";locale["app.main[26]"]="com";locale["app.main[27]"]="da Argentina como um projecto Open Source.";locale["app.window[0]"]="Adicionar";locale["app.window[1]"]="Editar";locale["app.window[2]"]="Nome";locale["app.window[3]"]="Opções";locale["app.window[4]"]="Alinhar à direita";locale["app.window[5]"]="Mostrar notificações";locale["app.window[6]"]="Silenciar todos os sons";locale["app.window[7]"]="Avançado";locale["app.window[8]"]="Código personalizado";locale["app.window[9]"]="ler mais...";locale["app.window[10]"]="Adicionar serviço";locale["app.window[11]"]="equipa";locale["app.window[12]"]="Confirme por favor...";locale["app.window[13]"]="Tem certeza que deseja remover";locale["app.window[14]"]="Tem a certeza que deseja remover todos os serviços?";locale["app.window[15]"]="Adicionar serviço personalizado";locale["app.window[16]"]="Editar serviço personalizado";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logótipo";locale["app.window[19]"]="Confiar em certificados de autoridade inválidos";locale["app.window[20]"]="LIGADO";locale["app.window[21]"]="DESLIGADO";locale["app.window[22]"]="Digite uma senha temporária para desbloquear mais tarde";locale["app.window[23]"]="Repetir a senha temporária";locale["app.window[24]"]="Atenção";locale["app.window[25]"]="As senhas não são iguais. Por favor, tente novamente...";locale["app.window[26]"]="RamBox está bloqueado";locale["app.window[27]"]="DESBLOQUEAR";locale["app.window[28]"]="A ligar...";locale["app.window[29]"]="Por favor espere até obtermos a sua configuração.";locale["app.window[30]"]="Importar";locale["app.window[31]"]="Você não tem qualquer serviço guardado. Você quer importar os seus serviços actuais?";locale["app.window[32]"]="Limpar serviços";locale["app.window[33]"]="Deseja remover todos os seus serviços actuais para começar de novo?";locale["app.window[34]"]="Se não, terminará a sua sessão.";locale["app.window[35]"]="Confirmar";locale["app.window[36]"]="Para importar a sua configuração, Rambox precisa de remover todos os seus serviços actuais. Deseja continuar?";locale["app.window[37]"]="A terminar a sua sessão...";locale["app.window[38]"]="Tem certeza que deseja terminar sessão?";locale["app.webview[0]"]="Actualizar";locale["app.webview[1]"]="Ligar-se";locale["app.webview[2]"]="Ficar off-line";locale["app.webview[3]"]="Activar/desactivar Ferramentas de programador";locale["app.webview[4]"]="A Carregar...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancelar";locale["button[2]"]="Sim";locale["button[3]"]="Não";locale["button[4]"]="Guardar";locale["main.dialog[0]"]="Erro de certificação";locale["main.dialog[1]"]="O serviço com o seguinte URL tem um certificado de autoridade inválido.";locale["main.dialog[2]"]="Você tem que remover o serviço e adicioná-lo novamente";locale["menu.help[0]"]="Visite o site do Rambox";locale["menu.help[1]"]="Reportar um problema...";locale["menu.help[2]"]="Pedir ajuda";locale["menu.help[3]"]="Fazer um donativo";locale["menu.help[4]"]="Ajuda";locale["menu.edit[0]"]="Editar";locale["menu.edit[1]"]="Anular alteração";locale["menu.edit[2]"]="Refazer";locale["menu.edit[3]"]="Cortar";locale["menu.edit[4]"]="Copiar";locale["menu.edit[5]"]="Colar";locale["menu.edit[6]"]="Seleccionar Tudo";locale["menu.view[0]"]="Ver";locale["menu.view[1]"]="Recarregar";locale["menu.view[2]"]="Ativar/desactivar janela maximizada";locale["menu.view[3]"]="Activar/desactivar Ferramentas de programador";locale["menu.window[0]"]="Janela";locale["menu.window[1]"]="Minimizar";locale["menu.window[2]"]="Fechar";locale["menu.window[3]"]="Sempre visível";locale["menu.help[5]"]="Procurar actualizações...";locale["menu.help[6]"]="Sobre o Rambox";locale["menu.osx[0]"]="Serviços";locale["menu.osx[1]"]="Esconder Rambox";locale["menu.osx[2]"]="Ocultar outros";locale["menu.osx[3]"]="Mostrar Tudo";locale["menu.file[0]"]="Ficheiro";locale["menu.file[1]"]="Sair do Rambox";locale["tray[0]"]="Mostrar/Ocultar janela";locale["tray[1]"]="Sair";locale["services[0]"]="WhatsApp é uma aplicação de mensagens móveis multi-plataforma para iPhone, BlackBerry, Android, Windows Phone e Nokia. Envie mensagens de texto, vídeo, imagens, áudio gratuitamente.";locale["services[1]"]="Slack reúne a sua comunicação num só lugar. É um serviço em tempo real de mensagens, arquivo e pesquisa para equipas modernas.";locale["services[2]"]="Noisy é uma ferramenta de comunicação para as equipas, onde a privacidade é garantida. Com Noisy você pode aceder a todas as suas conversas e arquivos em segundos de qualquer lugar e de forma ilimitada.";locale["services[3]"]="Alcance instantaneamente as pessoas na sua vida de graça. Messenger é como mandar mensagens de texto, mas você não tem que pagar por cada mensagem.";locale["services[4]"]="Permaneça em contacto com sua a família e os amigos de graça. Obtenha chamadas internacionais, chamadas online grátis e Skype for Business no portátil e telemóvel.";locale["services[5]"]="Hangouts dá vida às conversas com fotos, emoticons, e até mesmo vídeo chamadas em grupo, gratuitamente. Conecte-se com amigos em todos os computadores, dispositivos Android e Apple.";locale["services[6]"]="HipChat é um recurso de conversas em grupo e conversas de vídeo construído para as equipas. Sobrecarregue a colaboração em tempo real com quartos persistentes de conversas, compartilhamento de arquivos e compartilhamento de tela.";locale["services[7]"]="Telegram é uma aplicação de mensagens com foco na velocidade e segurança. É super-rápido, simples, seguro e gratuito.";locale["services[8]"]="WeChat é um serviço de envio de mensagens livre que permite que você facilmente se conecte com a família; amigos entre países. É uma aplicação tudo-em-um de comunicações de texto grátis (SMS / MMS), voz; chamadas de vídeo, momentos, compartilhamento de fotos e jogos.";locale["services[9]"]="Gmail, serviço de e-mail gratuito do Google, é um dos programas de email mais populares do mundo.";locale["services[10]"]="Inbox by Gmail é um novo aplicativo da equipa do Gmail. Inbox é um lugar organizado para fazer as coisas e voltar para o que importa. Pacotes mantêm os e-mails organizados.";locale["services[11]"]="ChatWork é uma aplicação de conversas em grupo para os negócios. Mensagens seguras, conversa de vídeo, gerência de tarefas e compartilhamento de arquivos. Comunicação em tempo real e aumento de produtividade para as equipas.";locale["services[12]"]="GroupMe traz mensagens de texto de grupo para cada telefone. Realize mensagens de grupo com as pessoas na sua vida que são importantes para você.";locale["services[13]"]="O serviço de conversas mais avançado do mundo encontra busca corporativa.";locale["services[14]"]="Gitter está construído em cima do GitHub e é totalmente integrado com as suas organizações, repositórios, entregas e actividade.";locale["services[15]"]="Steam é uma plataforma de distribuição digital desenvolvida pela Valve Corporation, oferecendo administração de direitos digitais (DRM), jogos multi-jogador e serviços de redes sociais.";locale["services[16]"]="Intensifique o seu jogo com uma aplicação de mensagens de voz e de texto moderna. Voz nítida, múltiplos servidores e suporte de canal, aplicações móveis e muito mais.";locale["services[17]"]="Assuma o controlo. Faça mais. Outlook é um serviço grátis de email e de calendário que o ajuda a estar em cima de tudo o que importa e ter as coisas feitas.";locale["services[18]"]="Outlook para Empresas";locale["services[19]"]="Serviço de email oferecido pela empresa americana Yahoo!. O serviço é gratuito para uso pessoal, e tem disponíveis planos de e-mail de negócios pagos.";locale["services[20]"]="Serviço de email grátis e baseado na web fundado em 2013 no centro de investigação do CERN. ProtonMail é projetado como um sistema de zero conhecimento, utilizando encriptação do lado do cliente para proteger emails e os dados do utilizador antes de serem enviados para os servidores do ProtonMail, ao contrário de outros serviços mais comuns de webmail como o Gmail e Hotmail.";locale["services[21]"]="Tutanota é um software de email open-source de encriptação end-to-end e um serviço de email seguro e freemium baseado neste software.";locale["services[22]"]=". Hushmail usa standards OpenPGP e a fonte está disponível para download.";locale["services[23]"]="Email colaborativo e chat de group em linha para equipas produtivas. Uma unica app para todas as comunicações internas e externas.";locale["services[24]"]="The mensagens de grupo e video-chamadas para um helpdesk com features matadoras, o nosso objectivo é tornarmo-nos na principal multi-plataforma open source de chat.";locale["services[25]"]="Chamadas alta-definição, chats de grupo e privados com fotos alinhadas, música e video. Também disponível no teu telefone ou tablet.";locale["services[26]"]="Sync é uma ferramenta de chat para negócios que irá aumentar a produtividade de sua equipa.";locale["services[27]"]="Sem descrição...";locale["services[28]"]="Permite mensagens instântaneas a qualquer pessoa no servidor Yahoo. Notifica-te quando recebes email, e dá as quotas da bolsa.";locale["services[29]"]="Voxer é uma aplicação para o teu smartphone com voz ao vivo (estilo PTT walkie talkie), texto, foto e partilha de localização.";locale["services[30]"]="Dashes premite-te dizer o que realmente queres fazer com fotos, gifs, links e muito mais. Faz um questionário para descobrires o que os teus amigos realmente pensam sobre o teu novo amor.";locale["services[31]"]="Flowdock é o chat da tua equipa com uma caixa de correio partilhada. As equipas que usam Flowdock estão sempre atualizadas, reagem em seguindos em vez de dias, e nunca esquecem nada.";locale["services[32]"]="Mattermost é uma aplicação open-source, com servidor, alternativa ao Slack. Como uma alternativa a propriedade de mensagens SaaS, a Mattermost traz a comunicação toda da equipa num sitio só, tornando tudo pesquisável e acessível em qualquer lado.";locale["services[33]"]="DingTalk é que uma plataforma multi-sided para pequenas e médias empresas com comunicação eficaz.";locale["services[34]"]="A família mysms de aplicativos ajuda você a texto em qualquer lugar e melhora a sua experiência de mensagens no seu smartphone, tablet e computador.";locale["services[35]"]="ICQ é um programa de computador de código aberto de mensagens instantâneas que foi desenvolvido e popularizado em primeiro lugar.";locale["services[36]"]="TweetDeck é uma aplicação de meios de comunicação social, de painel, para a gestão de contas do Twitter.";locale["services[37]"]="Serviço personalizado";locale["services[38]"]="Adicione um serviço personalizado se este não se encontrar listado acima.";locale["services[39]"]="Zinc é uma aplicação de comunicação segura para os trabalhadores móveis, com texto, voz, vídeo, compartilhamento de arquivos e muito mais.";locale["services[40]"]="Freenode, anteriormente conhecido como Open Projects Network, é uma rede IRC usada para discutir projectos em pares.";locale["services[41]"]="Mande mensagens do seu computador, sincronize com o número de telemóvel e do Android.";locale["services[42]"]="gratuito e aberto para as massas, escrito em PHP.";locale["services[43]"]="Horde é um groupware grátis e de código aberto.";locale["services[44]"]="SquirrelMail é um pacote de webmail baseado em padrões, escrito em PHP.";locale["services[45]"]="Hospedeiro de email de negócio, sem anúncios com uma interface limpa e minimalista. Com calendário, contactos, notas e aplicações para tarefas integrados.";locale["services[46]"]="Zoho Chat é uma plataforma de comunicação e colaboração em tempo real segura e escalável para melhorar a produtividade das equipas.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/ro.js b/build/dark/development/Rambox/resources/languages/ro.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/ro.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/ru.js b/build/dark/development/Rambox/resources/languages/ru.js
new file mode 100644
index 00000000..b72bea0d
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/ru.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Настройки";locale["preferences[1]"]="Авто-скрытие меню";locale["preferences[2]"]="Показывать в панели задач";locale["preferences[3]"]="Оставить Rambox в панели задач при закрытии";locale["preferences[4]"]="Запускать свернутым";locale["preferences[5]"]="Автоматический запуск при загрузке системы";locale["preferences[6]"]="Не показывать меню постоянно?";locale["preferences[7]"]="Чтобы временно отобразить строку меню, нажмите клавишу Alt.";locale["app.update[0]"]="Доступна новая версия!";locale["app.update[1]"]="Скачать";locale["app.update[2]"]="Список изменений";locale["app.update[3]"]="Обновление не требуется!";locale["app.update[4]"]="У вас последняя версия Rambox.";locale["app.about[0]"]="О Rambox";locale["app.about[1]"]="Бесплатное приложение с открытым исходным кодом для обмена сообщениями, объединяющее множество web-приложений в одно.";locale["app.about[2]"]="Версия";locale["app.about[3]"]="Платформа";locale["app.about[4]"]="Разработано";locale["app.main[0]"]="Добавить новый сервис";locale["app.main[1]"]="Сообщения";locale["app.main[2]"]="Эл. почта";locale["app.main[3]"]="Сервисы не найдены... Попробуйте поискать по-другому.";locale["app.main[4]"]="Включенные сервисы";locale["app.main[5]"]="ВЫРАВНИВАНИЕ";locale["app.main[6]"]="Слева";locale["app.main[7]"]="Справа";locale["app.main[8]"]="Элемент";locale["app.main[9]"]="Элементы";locale["app.main[10]"]="Удалить все сервисы";locale["app.main[11]"]="Не показывать уведомления";locale["app.main[12]"]="Без звука";locale["app.main[13]"]="Настроить";locale["app.main[14]"]="Удалить";locale["app.main[15]"]="Сервисы не добавлены...";locale["app.main[16]"]="Не беспокоить";locale["app.main[17]"]="Отключить уведомления и звуки во всех сервисах. Отлично подходит чтобы не отвлекаться.";locale["app.main[18]"]="Горячие клавиши";locale["app.main[19]"]="Заблокировать Rambox";locale["app.main[20]"]="Блокировка приложения, если вас временно не будет.";locale["app.main[21]"]="Выйти";locale["app.main[22]"]="Войти";locale["app.main[23]"]="Войдите, чтобы сохранить настройки (учетные записи не сохраняются) для синхронизации на всех ваших компьютерах.";locale["app.main[24]"]="Работает на";locale["app.main[25]"]="Помочь проекту";locale["app.main[26]"]="с";locale["app.main[27]"]="из Аргентины как проект с открытым исходным кодом.";locale["app.window[0]"]="Добавить";locale["app.window[1]"]="Правка";locale["app.window[2]"]="Имя";locale["app.window[3]"]="Опции";locale["app.window[4]"]="По правому краю";locale["app.window[5]"]="Показать уведомления";locale["app.window[6]"]="Отключить все звуки";locale["app.window[7]"]="Дополнительно";locale["app.window[8]"]="Пользовательский код";locale["app.window[9]"]="подробнее...";locale["app.window[10]"]="Добавить сервис";locale["app.window[11]"]="команда";locale["app.window[12]"]="Пожалуйста, подтвердите...";locale["app.window[13]"]="Вы уверены, что хотите удалить";locale["app.window[14]"]="Вы уверены, что хотите удалить все сервисы?";locale["app.window[15]"]="Добавить пользовательский сервис";locale["app.window[16]"]="Изменить пользовательский сервис";locale["app.window[17]"]="URL-адрес";locale["app.window[18]"]="Логотип";locale["app.window[19]"]="Доверять недействительным сертификатам";locale["app.window[20]"]="ВКЛ";locale["app.window[21]"]="ВЫКЛ";locale["app.window[22]"]="Введите временный пароль, для разблокировки";locale["app.window[23]"]="Повторите временный пароль";locale["app.window[24]"]="Внимание";locale["app.window[25]"]="Пароли не совпадают. Пожалуйста, попробуйте еще раз...";locale["app.window[26]"]="Rambox заблокирован";locale["app.window[27]"]="РАЗБЛОКИРОВАТЬ";locale["app.window[28]"]="Соединение...";locale["app.window[29]"]="Пожалуйста, подождите, пока мы не получим вашу конфигурацию.";locale["app.window[30]"]="Импортировать";locale["app.window[31]"]="У Вас нет сохраненных сервисов. Хотите импортировать ваши текущие сервисы?";locale["app.window[32]"]="Очистить сервисы";locale["app.window[33]"]="Вы хотите удалить все ваши текущие сервисы, чтобы начать заново?";locale["app.window[34]"]="Если нет, то вы выйдете из системы.";locale["app.window[35]"]="Подтвердить";locale["app.window[36]"]="Чтобы импортировать конфигурацию, Rambox необходимо удалить все ваши текущие сервисы. Вы хотите продолжить?";locale["app.window[37]"]="Закрытие сессии...";locale["app.window[38]"]="Вы точно хотите выйти?";locale["app.webview[0]"]="Перезагрузка";locale["app.webview[1]"]="Перейти в онлайн";locale["app.webview[2]"]="Перейти в автономный режим";locale["app.webview[3]"]="Переключиться в режим разработчика";locale["app.webview[4]"]="Загрузка...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ок";locale["button[1]"]="Отмена";locale["button[2]"]="Да";locale["button[3]"]="Нет";locale["button[4]"]="Сохранить";locale["main.dialog[0]"]="Ошибка сертификата";locale["main.dialog[1]"]="Сервис со следующим URL-адресом имеет недействительный SSL сертификат.";locale["main.dialog[2]"]="Вы должны удалить сервис и добавить его снова, отметив «Доверять недействительным сертификатам» в параметрах.";locale["menu.help[0]"]="Посетить веб-сайт Rambox";locale["menu.help[1]"]="Сообщить о проблеме...";locale["menu.help[2]"]="Попросить о помощи";locale["menu.help[3]"]="Помочь проекту";locale["menu.help[4]"]="Помощь";locale["menu.edit[0]"]="Правка";locale["menu.edit[1]"]="Отменить";locale["menu.edit[2]"]="Повторить";locale["menu.edit[3]"]="Вырезать";locale["menu.edit[4]"]="Копировать";locale["menu.edit[5]"]="Вставить";locale["menu.edit[6]"]="Выбрать всё";locale["menu.view[0]"]="Вид";locale["menu.view[1]"]="Обновить";locale["menu.view[2]"]="Переключить в полноэкранный режим";locale["menu.view[3]"]="Переключиться в режим разработчика";locale["menu.window[0]"]="Окно";locale["menu.window[1]"]="Свернуть";locale["menu.window[2]"]="Закрыть";locale["menu.window[3]"]="Всегда сверху";locale["menu.help[5]"]="Проверить обновления...";locale["menu.help[6]"]="О Rambox";locale["menu.osx[0]"]="Сервисы";locale["menu.osx[1]"]="Скрыть Rambox";locale["menu.osx[2]"]="Скрыть остальное";locale["menu.osx[3]"]="Показать всё";locale["menu.file[0]"]="Файл";locale["menu.file[1]"]="Выйти из Rambox";locale["tray[0]"]="Показать/Скрыть окно";locale["tray[1]"]="Выход";locale["services[0]"]="WhatsApp является кросс-платформенным мобильным приложением для обмена мгновенными сообщениями для iPhone, BlackBerry, Android, Windows Phone и Nokia. Бесплатно отправляйте текст, видео, изображения, аудио.";locale["services[1]"]="Slack объединяет все коммуникации в одном месте. Это в реальном времени обмен сообщениями, архивирование и поиск для современных команд.";locale["services[2]"]="Noysi является инструментом общения для команд, где гарантируется конфиденциальность. С Noysi можно получить доступ ко всем вашим разговорам и файлам в тот час, везде и неограниченно.";locale["services[3]"]="Мгновенно и бесплатно привлечь людей в вашу жизнь. Messenger для обмена текстовых сообщений, но вам не придется платить за каждое сообщение.";locale["services[4]"]="Бесплатно оставайтесь на связи с семьей и друзьями. Принимайте международные звонки, бесплатные онлайн звонки. Skype для бизнеса для настольных и мобильных устройств.";locale["services[5]"]="Hangouts принесет разговоры в жизни с фотографиями, эмодзи и даже с групповыми видеозвонками бесплатно. Общайтесь с друзьями через компьютеры, Android и Apple устройства.";locale["services[6]"]="HipChat является размещенным групповым чатом и видео чатом, построенным для команд. В реальном времени сотрудничайте с чат-комнатами, обменивайтесь файлами и совместно используйте экран.";locale["services[7]"]="Telegram - приложение для обмена сообщениями с упором на скорость и безопасность. Он супер-быстрый, простой, безопасный и бесплатный.";locale["services[8]"]="WeChat — бесплатное приложение для обмена сообщениями, что позволяет легко соединиться с семьей; с друзьями из разных стран. Это все-в-одном связное приложение для бесплатного текста (SMS/MMS), голоса; видео звонков, моментов, обмена фотографиями и играми.";locale["services[9]"]="Gmail, бесплатная служба электронной почты Google, является одной из самых популярных программ электронной почты в мире.";locale["services[10]"]="Inbox это новое приложение от команды Gmail. Часто бесконечный поток писем вызывает лишь стресс. Вот почему команда Gmail разработала новую почту, которая помогает вам держать все дела под контролем и не терять из виду то, что важно.";locale["services[11]"]="ChatWork — бизнес приложение для группового чата. Безопасный обмен сообщениями, видео чат, задачи управления и совместного использования файлов. Коммуникации в реальном времени и повышение производительности для команд.";locale["services[12]"]="GroupMe приносит групповые текстовые сообщения для каждого телефона. Групповое общение с людьми в вашей жизни, которые важны для вас.";locale["services[13]"]="Самые передовые в мире командные чаты отвечающие корпоративным запросам.";locale["services[14]"]="Gitter построен поверх GitHub и тесно интегрирован с вашими организациями, хранилищами, вопросами и деятельностью.";locale["services[15]"]="Steam — цифровая дистрибутивная платформа, разработанная корпорацией Valve, предлагает возможность управления цифровыми правами (DRM), многопользовательских игр и социальных сетей.";locale["services[16]"]="Расширит вашу игру с современным голосовым & текстовым чатом. Кристально чистый голос, множество серверов и каналов поддержки, мобильные приложения и многое другое.";locale["services[17]"]="Взять под контроль. Сделать больше. Outlook является бесплатной электронной почтой и службой календаря, которая помогает вам оставаться на вершине, чтобы решить вопросы и получить ответы.";locale["services[18]"]="Outlook для бизнеса";locale["services[19]"]="Электронная почта, веб-сервис, предоставляемый американской компанией Yahoo!. Услуга бесплатна для личного использования, а также доступны платные для бизнеса планы использования.";locale["services[20]"]="Бесплатный и веб-зашифрованный сервис электронной почты, основанный в 2013 году в исследовательском центре ЦЕРН. ProtonMail предназначен как системы с нулевым разглашением знания, используя клиентское шифрование для защиты электронной почты и пользовательских данных до отправки на сервер ProtonMail, в отличие от других общих служб электронной почты, таких как Gmail и Hotmail.";locale["services[21]"]="Tutanota - открытые программное обеспечение для обеспечения сквозного шифрование электронной почты и безопасного размещения электронной почты на основе этого программного обеспечения.";locale["services[22]"]="Служба веб-почты, которая предлагает PGP-шифрование электронной почты и службы домена. Hushmail предлагает «бесплатные» и «платные» версии службы. Hushmail использует стандарты OpenPGP и исходник доступен для скачивания.";locale["services[23]"]="Совместная работа с электронной почтой и потоковый групповой чат для продуктивных команд. Одно приложение для всех ваших внутренних и внешних коммуникаций.";locale["services[24]"]="Приложение для обмена сообщениями. Оно поддерживает видеоконференции, обмен файлами, голосовые сообщения, имеет полнофункциональный API. Rocket.Chat отлично подходит для тех, кто предпочитает полностью контролировать свои контакты.";locale["services[25]"]="HD качества звонки, частные и групповые чаты со встроенными фотографиями, музыкой и видео. Также доступны для вашего телефона или планшета.";locale["services[26]"]="Sync это бизнес чат инструмент, который повысит производительность для вашей команды.";locale["services[27]"]="Нет описания...";locale["services[28]"]="Позволяет осуществлять мгновенное сообщение с кем-либо на сервере Yahoo. Говорит вам, когда вы получаете почту и показывает котировки акций.";locale["services[29]"]="Voxer - приложение для обмена сообщениями для вашего смартфона с живым голосом (как работает двусторонняя радиосвязь), текст, фото и местоположение.";locale["services[30]"]="Dasher позволяет сказать, что вы действительно хотите с фото, картинками, ссылками и многое другое. Проведите опрос, чтобы узнать, что ваши друзья действительно думают о вашей новой подружке.";locale["services[31]"]=". Команды, с помощью Flowdock, всегда курсе, реагируют за секунды вместо дней и никогда не забывают ничего.";locale["services[32]"]="Mattermost является приложением с открытым исходным кодом, в качестве альтернативы Slack. Как свободный SaaS Mattermost переносит все ваши командные коммуникации в одно место, что делает его удобным для поиска и доступным везде.";locale["services[33]"]="DingTalk - многосторонняя платформа дает малому и среднему бизнесу эффективно общаться.";locale["services[34]"]="Mysms - семейство приложений, которое помогает в обмене сообщениями и повышает Ваш опыт обмена сообщениями на вашем смартфоне, планшете и ПК.";locale["services[35]"]="ICQ является популярной программой с открытым исходным кодом для обмена мгновенными сообщениями на компьютере, которая была разработана одной из первых.";locale["services[36]"]="Tweetdeck это социальные медиа приложение панели управления учетных записей Twitter.";locale["services[37]"]="Пользовательский Сервис";locale["services[38]"]="Добавьте пользовательскую службу, если она не указана выше.";locale["services[39]"]="Zinc является приложением для безопасной связи между мобильными работниками, с текстом, голосом, видео, обменом файлами и многое другое.";locale["services[40]"]="Freenode, ранее известный как Открытые Проекты Сети, своего рода IRC-сеть, используемая для обсуждения коллегиальных проектов.";locale["services[41]"]="Текст из вашего компьютера, синхронизируйте с вашим Android телефоном и номером.";locale["services[42]"]="Свободное и открытое программное обеспечение электронной почты для всех, написанное на PHP.";locale["services[43]"]="Horde - свободное и открытое веб-ориентированное приложение для групповой работы.";locale["services[44]"]="SquirrelMail - клиент электронной почты (MUA) с веб-интерфейсом, написанный на PHP.";locale["services[45]"]="Без рекламный бизнес хостинг электронной почты с чистым, минималистическим интерфейсом. Интегрирован календарь, контакты, заметки, задачи приложений.";locale["services[46]"]="Zoho chat — безопасное и масштабируемое общение в режиме реального времени, а также платформа для команд для повышения производительности их труда.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/sk.js b/build/dark/development/Rambox/resources/languages/sk.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/sk.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/sr.js b/build/dark/development/Rambox/resources/languages/sr.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/sr.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/sv-SE.js b/build/dark/development/Rambox/resources/languages/sv-SE.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/sv-SE.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/tr.js b/build/dark/development/Rambox/resources/languages/tr.js
new file mode 100644
index 00000000..52584769
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/tr.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Ayarlar";locale["preferences[1]"]="Menü çubuğunu otomatik olarak gizle";locale["preferences[2]"]="Görev çubuğunda göster";locale["preferences[3]"]="Rambox kapatıldığında bildirim alanında göster";locale["preferences[4]"]="Simge durumunda Başlat";locale["preferences[5]"]="Sistem başladığında otomatik olarak çalıştır";locale["preferences[6]"]="Menü çubuğunu her zaman görmeye ihtiyacınız yok mu?";locale["preferences[7]"]="Menü çubuğunu geçici olarak göstermek için Alt tuşuna basın.";locale["app.update[0]"]="Yeni sürüm mevcut!";locale["app.update[1]"]="İndir";locale["app.update[2]"]="Değişiklikler";locale["app.update[3]"]="En son sürümü kullanıyorsunuz!";locale["app.update[4]"]="Rambox'un en son sürümüne sahipsiniz.";locale["app.about[0]"]="Rambox hakkında";locale["app.about[1]"]="Özgür ve Açık kaynaklı yaygın web uygulamalarını tek çatı altında toplayan mesajlaşma ve e-posta uygulaması.";locale["app.about[2]"]="Sürüm";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Geliştiren";locale["app.main[0]"]="Yeni bir servis ekle";locale["app.main[1]"]="Mesajlaşma";locale["app.main[2]"]="E-posta";locale["app.main[3]"]="Hiçbir servis bulunamadı... Başka bir arama deneyin.";locale["app.main[4]"]="Etkinleştirilmiş servisler";locale["app.main[5]"]="HİZALA";locale["app.main[6]"]="Sol";locale["app.main[7]"]="Sağ";locale["app.main[8]"]="Öğe";locale["app.main[9]"]="Ögeler";locale["app.main[10]"]="Tüm hizmetleri kaldır";locale["app.main[11]"]="Bildirimleri engelle";locale["app.main[12]"]="Susturuldu";locale["app.main[13]"]="Düzenle";locale["app.main[14]"]="Kaldır";locale["app.main[15]"]="Hiçbir hizmet eklenmedi...";locale["app.main[16]"]="Rahatsız etme";locale["app.main[17]"]="En iyi şekilde odaklanmak için tüm hizmetlerin bildirimlerini ve seslerini kapatın.";locale["app.main[18]"]="Kısayol Tuşu";locale["app.main[19]"]="Rambox'u Kilitle";locale["app.main[20]"]="Eğer uygulamayı uzun süreliğine kullanmayacaksanız kilitleyin.";locale["app.main[21]"]="Oturum kapat";locale["app.main[22]"]="Giriş Yap";locale["app.main[23]"]="Ayarlarınızı (kimlik bilgileri hariç) diğer cihazlarınızda da etkinleştirmek için giriş yapın.";locale["app.main[24]"]="Destekleyen";locale["app.main[25]"]="Bağış yap";locale["app.main[26]"]="birlikte";locale["app.main[27]"]="arjantin'den bir açık kaynak projesi.";locale["app.window[0]"]="Ekle";locale["app.window[1]"]="Düzenle";locale["app.window[2]"]="Ad";locale["app.window[3]"]="Ayarlar";locale["app.window[4]"]="Sağa Hizala";locale["app.window[5]"]="Bildirimleri göster";locale["app.window[6]"]="Tüm sesleri kapat";locale["app.window[7]"]="Gelişmiş";locale["app.window[8]"]="Kendi kodun";locale["app.window[9]"]="devamını oku...";locale["app.window[10]"]="Hizmet ekle";locale["app.window[11]"]="takım";locale["app.window[12]"]="Lütfen onaylayın...";locale["app.window[13]"]="Kaldırmak istediğinizden emin misiniz";locale["app.window[14]"]="Tüm hizmetleri kaldırmak istediğinizden emin misiniz?";locale["app.window[15]"]="Özel hizmet ekle";locale["app.window[16]"]="Özel hizmet Düzenle";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Geçersiz sertifikalara güven";locale["app.window[20]"]="AÇ";locale["app.window[21]"]="KAPAT";locale["app.window[22]"]="Daha sonra kilidini açmak için geçici bir parola girin";locale["app.window[23]"]="Geçici şifreyi tekrarla";locale["app.window[24]"]="Uyarı";locale["app.window[25]"]="Parolalar eşleşmiyor. Lütfen yeniden deneyin...";locale["app.window[26]"]="Rambox kilitli";locale["app.window[27]"]="Kilidi aç";locale["app.window[28]"]="Bağlanıyor...";locale["app.window[29]"]="Lütfen ayarlarınız uygulanıncaya kadar bekleyin.";locale["app.window[30]"]="İçeriye aktar";locale["app.window[31]"]="Kayıtlı hiçbir hizmetiniz yok. Güncel hizmetinizi içeri aktarmak ister misiniz?";locale["app.window[32]"]="Hizmetleri sil";locale["app.window[33]"]="Yeniden başlamak için mevcut tüm hizmetleri kaldırmak istiyor musunuz?";locale["app.window[34]"]="Hayır derseniz, oturumunuz kapatılacak.";locale["app.window[35]"]="Onayla";locale["app.window[36]"]="Rambox, ayarlarınızı içe aktarmak için tüm mevcut hizmetlerinizi kaldırmak istiyor. Devam etmek istiyor musunuz?";locale["app.window[37]"]="Oturumunuz kapatılıyor...";locale["app.window[38]"]="Oturumu kapatmak istediğinize emin misiniz?";locale["app.webview[0]"]="Yenile";locale["app.webview[1]"]="Çevrimiçi olun";locale["app.webview[2]"]="Çevrimdışı ol";locale["app.webview[3]"]="Geliştirici Araçları";locale["app.webview[4]"]="Yükleniyor…...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Tamam";locale["button[1]"]="İptal";locale["button[2]"]="Evet";locale["button[3]"]="Hayır";locale["button[4]"]="Kaydet";locale["main.dialog[0]"]="Sertifika hatası";locale["main.dialog[1]"]="Aşağıdaki adres geçersiz bir yetki belgesine sahiptir.";locale["main.dialog[2]"]="Hizmeti kaldırıp ve yeniden ekleyip";locale["menu.help[0]"]="Rambox Web sitesini Ziyaret et";locale["menu.help[1]"]="Sorun bildir...";locale["menu.help[2]"]="Yardım iste";locale["menu.help[3]"]="Bağış yap";locale["menu.help[4]"]="Yardım";locale["menu.edit[0]"]="Düzenle";locale["menu.edit[1]"]="Geri Al";locale["menu.edit[2]"]="Tekrarla";locale["menu.edit[3]"]="Kes";locale["menu.edit[4]"]="Kopyala";locale["menu.edit[5]"]="Yapıştır";locale["menu.edit[6]"]="Tümünü Seç";locale["menu.view[0]"]="Görünüm";locale["menu.view[1]"]="Yenile";locale["menu.view[2]"]="Tam ekran aç/kapat";locale["menu.view[3]"]="Geliştirici Araçları";locale["menu.window[0]"]="Pencere";locale["menu.window[1]"]="Küçült";locale["menu.window[2]"]="Kapat";locale["menu.window[3]"]="Her zaman üstte";locale["menu.help[5]"]="Güncellemeleri kontrol et...";locale["menu.help[6]"]="Rambox hakkında";locale["menu.osx[0]"]="Hizmetler";locale["menu.osx[1]"]="Rambox'u gizle";locale["menu.osx[2]"]="Diğerlerini gizle";locale["menu.osx[3]"]="Tümünü göster";locale["menu.file[0]"]="Dosya";locale["menu.file[1]"]="Rambox'u kapat";locale["tray[0]"]="Pencere'yi göster/gizle";locale["tray[1]"]="Çıkış";locale["services[0]"]="WhatsApp, iPhone, BlackBerry, Android, Windows Phone ve Nokia için bir çapraz platform mobil mesajlaşma uygulamasıdır. Ücretsiz metin, video, resim, ses gönderebilir.";locale["services[1]"]="Slack, tek bir yerden tüm iletişimi sağlar. Takımlar için gerçek zamanlı mesajlaşma, arşivleme ve arama imkanı sunar.";locale["services[2]"]="Noysi, gizlilik odaklı takım için iletişim aracıdır. Noysi ile saniyeler içinde her yerden ve sınırsızca konuşmalarınıza ve dosyalarınıza erişebilirsiniz.";locale["services[3]"]="Hayatınızdaki insanlara anında ulaşın. Messenger yazışma içindir ama her bir ileti için ödeme yapmak zorunda değilsiniz.";locale["services[4]"]="Aileniz ve arkadaşlarınızla iletişimde kalın. Ücretsiz uluslararası aramalar, çevrim içi aramalar Skype for Bussiness kişisel bilgisayarınızda ve akıllı telefonunuzda.";locale["services[5]"]="İletişim kurmak için Hangouts'u kullanın. Arkadaşlarınıza ileti gönderin, ücretsiz video görüşmeleri veya sesli görüşmeler başlatın ve tek bir kullanıcı ya da bir grup ile görüşme başlatın.";locale["services[6]"]="HipChat, takımlar için gerçek zamanlı sohbet odaları, dosya paylaşımı ve ekran paylaşımı ile gerçek zamanlı işbirliğinizi güçlendirir.";locale["services[7]"]="Telegram, tümüyle açık kaynaklı bir platformlar arası anlık iletişim yazılımıdır. Güvenli, hızlı, kolay ve ücretsiz olarak mesajlaşın.";locale["services[8]"]="WeChat herhangi bir ülkede bulunan aile ve arkadaşlarınızla kolayca iletişim kurabilmenize olanak tanıyan bir mesajlaşma ve arama uygulamasıdır. Kısa mesaj (SMS/MMS), sesli ve görüntülü arama, Anlar, fotoğraf paylaşımı ve oyunlar için hepsi bir arada iletişim uygulamasıdır.";locale["services[9]"]="Gmail, size zaman kazandıran ve iletilerinizin güvenliğini sağlayan kullanılması kolay bir e-posta uygulamasıdır.";locale["services[10]"]="E-posta gelen kutunuz, iş ve kişisel hayatınızı kolaylaştırmalıdır. Ancak, önemli iletilerin önemsiz olanların arasında gözden kaçırılması bu rahatlığın strese dönüşmesine neden olabilir. Gmail ekibi tarafından geliştirilen Inbox, her şeyi düzene sokar ve önemli konulara yoğunlaşmanıza yardımcı olur.";locale["services[11]"]="ChatWork, iş için grup sohbet uygulamasıdır. Güvenli mesajlaşma, görüntülü sohbet, görev yönetimi ve dosya paylaşımı. Ekipler için gerçek zamanlı iletişim ve verimlilik artışı.";locale["services[12]"]="GroupMe her telefona grup metin mesajlaşma getiriyor. Sizin için önemli insanlarla gruplar halinde mesajlaşın.";locale["services[13]"]="Dünyanın en gelişmiş ekipler için sohbet uygulaması.";locale["services[14]"]="Gitter, GitHub üzerindeki depolara ve sorunları çözmeye yenilik yeni yönetim aracıdır.";locale["services[15]"]="Kullanımı kolay ve katılması bedava. Steam hesabınızı oluşturmak için devam edin ardından PC, Mac ve Linux oyun ve yazılımları için lider dijital çözüm olan Steam'i edinin.";locale["services[16]"]="Modern bir ses ve metin sohbet uygulaması. Kristal netliğinde ses, birden çok sunucu ve kanal desteği, mobil uygulamalar ve daha fazlası.";locale["services[17]"]="daha üretken olmanıza yardımcı olması için tasarlanmış Posta, Takvim, Kişiler ve Görevler.";locale["services[18]"]="İş için Outlook";locale["services[19]"]="Amerikan şirketi Yahoo tarafından sunulan Web tabanlı e-posta hizmeti! Hizmet kişisel kullanım için ücretsizdir ve ücretli için iş e-posta planları vardır.";locale["services[20]"]="ProtonMail, ücretsiz ve web tabanlı şifreli e-posta hizmetidir. CERN araştırma merkezinde 2013 yılında kuruldu. ProtonMail, Gmail ve Hotmail gibi diğer ortak web posta hizmetlerinin aksine, sunuculara gönderilmeden önce e-posta ve kullanıcı verilerini korumak için istemci tarafı şifreleme yapılarak tasarlanmıştır.";locale["services[21]"]="Tutanota otomatik olarak cihazınızdaki tüm verileri şifreler. Epostalarınız ve kişileriniz tamamen özel kalır. Tüm arkadaşlarınızla şifrelenmiş biçimde iletişim kurarsınız. Konu başlığı ve eposta ekleri dahi şifrelenir. Açık kaynaklı web tabanlı bir eposta servisidir.";locale["services[22]"]="Web tabanlı e-posta hizmeti sunan PGP şifreli e-posta yollamanıza yardımcı olur. Ücretsiz ve paralı sürümleri bulunmaktadır. Hushmail OpenPGP standartlarını kullanır.";locale["services[23]"]="Takımlar için iş birliği ve sohbet yazılımı. Tüm iç ve dış iletişim için tek bir uygulamada.";locale["services[24]"]="Yardım masası destekleri, grup mesajları ve video çağrıları. Açık kaynaklı, çapraz platformları destekleyen sohbet yazılımıdır.";locale["services[25]"]="HD kalitesinde çağrılar, güvenli, özel, her zaman basit uçtan uca şifreleme yapar. Telefon ya da tabletinizde de kullanabilir.";locale["services[26]"]="Sync, takım içi verimliliği artıran sohbet uygulaması.";locale["services[27]"]="Açıklama yok...";locale["services[28]"]="Yahoo sunucuları üzerinden anlık iletiler göndermenizi sağlar. Posta hizmetleri ve borsa hakkında bilgiler içerir.";locale["services[29]"]="Voxer metin, video ve fotoğraf paylaşımı ile orijinal telsiz mesajlaşma uygulamasıdır.";locale["services[30]"]="Dasher, resimler, Gif, bağlantılar ve daha fazlası ile istediğiniz mesajı iletmenizi ya da söylemenizi sağlar.";locale["services[31]"]="Flowdock paylaşılan gelen kutusu ile takımlara sohbet imkanı sağlar.";locale["services[32]"]="Mattermost, açık kaynaklı Slack alternatifidir. Mattermost ile takımlar her yerde ve her zaman kolaylıkla iletişim kurabilir.";locale["services[33]"]="DingTalk çok taraflı platformlar arası en etkin iletişim aracıdır. Küçük ve orta ölçekli şirketlerin işini kolaylaştırır.";locale["services[34]"]="Akıllı telefon, tablet ya da bilgisayar üzerinde SMS göndermenizi sağlar.";locale["services[35]"]="ICQ, açık kaynaklı ve popüler bir bilgisayar yazılımıdır.";locale["services[36]"]="TweetDeck, Twitter hesapları yönetim aracıdır.";locale["services[37]"]="Özel hizmet.";locale["services[38]"]="Yukarıda bulunmayan bir servis ekleyin.";locale["services[39]"]="Zinc, mobil çalışanlar için güvenli bir iletişim, metin ve daha fazla, ses, video, dosya paylaşımı uygulamasıdır.";locale["services[40]"]="Eskiden Açık Projeler Ağı olarak bilinen Freenode, akran-yönelimli projelerini görüşmek için kullanılan bir IRC servisidir.";locale["services[41]"]="Android cihazlar ile bilgisayar arasında senkronize olur. Metin mesajlarınızı daha kolay gönderip almanızı sağlar.";locale["services[42]"]="PHP ile yazılmış, ücretsiz ve açık kaynaklı webmail yazılımı.";locale["services[43]"]="Horde ücretsiz ve açık kaynaklı grup yazılımıdır.";locale["services[44]"]="SquirrelMail PHP ile yazılmış bir standart tabanlı web posta paketidir.";locale["services[45]"]="Reklamsız email hostingi. Minimalist ve temiz arayüzü ile iş e-Postaları. Entegre Takvim, Kişiler, Notlar, Görevler, uygulamalar.";locale["services[46]"]="Zoho sohbet ekiplerinin verimliliği artırmak için güvenli ve ölçeklenebilir gerçek zamanlı iletişim ve işbirliği platformudur.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/uk.js b/build/dark/development/Rambox/resources/languages/uk.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/uk.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/vi.js b/build/dark/development/Rambox/resources/languages/vi.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/vi.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/zh-CN.js b/build/dark/development/Rambox/resources/languages/zh-CN.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/zh-CN.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/languages/zh-TW.js b/build/dark/development/Rambox/resources/languages/zh-TW.js
new file mode 100644
index 00000000..df8d0d07
--- /dev/null
+++ b/build/dark/development/Rambox/resources/languages/zh-TW.js
@@ -0,0 +1 @@
+var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale;
\ No newline at end of file
diff --git a/build/dark/development/Rambox/resources/logo/1024x1024.png b/build/dark/development/Rambox/resources/logo/1024x1024.png
new file mode 100644
index 00000000..b2964673
Binary files /dev/null and b/build/dark/development/Rambox/resources/logo/1024x1024.png differ
diff --git a/build/dark/development/Rambox/resources/logo/128x128.png b/build/dark/development/Rambox/resources/logo/128x128.png
new file mode 100644
index 00000000..c6c1a976
Binary files /dev/null and b/build/dark/development/Rambox/resources/logo/128x128.png differ
diff --git a/build/dark/development/Rambox/resources/logo/16x16.png b/build/dark/development/Rambox/resources/logo/16x16.png
new file mode 100644
index 00000000..3ec0776d
Binary files /dev/null and b/build/dark/development/Rambox/resources/logo/16x16.png differ
diff --git a/build/dark/development/Rambox/resources/logo/24x24.png b/build/dark/development/Rambox/resources/logo/24x24.png
new file mode 100644
index 00000000..0a9deb8c
Binary files /dev/null and b/build/dark/development/Rambox/resources/logo/24x24.png differ
diff --git a/build/dark/development/Rambox/resources/logo/256x256.png b/build/dark/development/Rambox/resources/logo/256x256.png
new file mode 100644
index 00000000..a6fb01bf
Binary files /dev/null and b/build/dark/development/Rambox/resources/logo/256x256.png differ
diff --git a/build/dark/development/Rambox/resources/logo/32x32.png b/build/dark/development/Rambox/resources/logo/32x32.png
new file mode 100644
index 00000000..8c74aa35
Binary files /dev/null and b/build/dark/development/Rambox/resources/logo/32x32.png differ
diff --git a/build/dark/development/Rambox/resources/logo/48x48.png b/build/dark/development/Rambox/resources/logo/48x48.png
new file mode 100644
index 00000000..82f34a98
Binary files /dev/null and b/build/dark/development/Rambox/resources/logo/48x48.png differ
diff --git a/build/dark/development/Rambox/resources/logo/512x512.png b/build/dark/development/Rambox/resources/logo/512x512.png
new file mode 100644
index 00000000..89dfe479
Binary files /dev/null and b/build/dark/development/Rambox/resources/logo/512x512.png differ
diff --git a/build/dark/development/Rambox/resources/logo/64x64.png b/build/dark/development/Rambox/resources/logo/64x64.png
new file mode 100644
index 00000000..c7942a0e
Binary files /dev/null and b/build/dark/development/Rambox/resources/logo/64x64.png differ
diff --git a/build/dark/development/Rambox/resources/logo/96x96.png b/build/dark/development/Rambox/resources/logo/96x96.png
new file mode 100644
index 00000000..94cd4215
Binary files /dev/null and b/build/dark/development/Rambox/resources/logo/96x96.png differ
diff --git a/build/dark/development/Rambox/resources/logo/Logo.ai b/build/dark/development/Rambox/resources/logo/Logo.ai
new file mode 100644
index 00000000..cac88834
--- /dev/null
+++ b/build/dark/development/Rambox/resources/logo/Logo.ai
@@ -0,0 +1,1886 @@
+%PDF-1.5
%
+1 0 obj
<>/OCGs[5 0 R]>>/Pages 3 0 R/Type/Catalog>>
endobj
2 0 obj
<>stream
+
+
+
+
+ application/pdf
+
+
+ Logo
+
+
+ Adobe Illustrator CC 2015 (Windows)
+ 2016-05-18T09:46:43+03:00
+ 2016-05-18T09:46:43+03:00
+ 2016-05-18T09:46:43+03:00
+
+
+
+ 256
+ 80
+ JPEG
+ /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAUAEAAwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q0zKqlmICgVJOwAGK
vDvzK/5yl8teX5JdO8rxLruqJVXuixWyiYf5S/FN8kIH+Vir598z/np+aPmJ3+ta7PaW71paWBNr
EAf2f3VHYf67HFWDXFzc3MpluJXmlb7UkjF2PfcmpxVUstR1Cwl9WxuprWXY+pBI0bbdN1IOKvQv
Kf8AzkP+afl2SMfpZtWs1pytdS/0gEf8ZSRMPofFX0f+WH/ORfk/zpLDpt4P0Lr0lFS0nYNDM57Q
TfCCT/KwB7Dlir1jFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYqwHzf+bmjaNLLY6ao1HUoy
Ucg0gian7Tj7ZU0qq+4LAjMzBo5T3Owdbq+0oYth6pPN9S/MPzVqrkz37wxEtSC2JhjAfYqeFGcf
65bNlj0uOPT5vP6jtDPk/ioeWyWwzite565kh1M4k80WkisMLQRScad5p8wadxFrfSrGg4rE7epG
B4BH5KPoGUz08Jcw5mDtHPi+mR9x3H2s88vfmhZXbrb6tGtpMxoLhKmEkk/aBqydu5HyzW5tARvH
d6LRdvQmeHKOE9/T9n2s4VldQykMrCqsNwQe4zXvQA23ilpmVVLMQFAqSdgAMVfIn5+/n7deY7q4
8seWLhofLsLGO7u4zRr1hsQCNxCD0H7XU7UGKvCsVdiqdeUfJvmPzdrMekaDZtd3bjk9PhjjQGhk
lc/CiivU/Ib4qhtR0aW21u40m0kXUpbeVoBLaK7pK6bMYtgzLyB4mm43xVrUPL2v6agfUdMu7JGp
RriCSIGvTd1XFUvBINR1xV9P/wDOPH5/XF5cW/k3zbc+pcScYtG1SU/E7dBbzuTux2EbdSdjvTFX
0lirsVdirsVdirsVdirsVdirsVdirsVdirsVeG/m5+bEk1zceWtClMdtETFqV6ho0rDZoYyOiDo5
6sdvs15bLS6b+KXwdXrdUfoj8XlkNxmxdFKCOhuPfJNEoJjYie5njt7eNpZ5WCxxICzMx6AAYmQA
stQxGRoCyitRefTb6awm4m5tzwmCsHVXoOSVXYlD8LU7jBCYkLCMukMJcJ5tCW6Kq8oYI32SQQp+
WESDXLAYi6RUMuScaUWceR/O8ukyrY3zGTS5DRWO5gY/tL/kfzL9I7g4Wr0gmOKP1fe7fsrtU4Tw
T/u/9z+z8e/rSsrqGUhlYVVhuCD3GaV7MG3h3/OUv5lSeX/LUXlfTpeGqa6rG6dTRorJTxb/AJHN
VB7BsUvkDFXYq9Z/5xx/LWDzl5ye61KL1dE0VBPdIfsyTSVEEZ9qqzn/AFad8VfQ35JflW3k/wAj
XljdL9X1/U5blL28UfGqo7wwcDX7IQeovu2KpT521vyf+Q3kq0t/LmlQyazqHKC0eUfvJmiAMtxc
yijuql1+EEbkAcR0VfMfmj82PzE8zyytq2u3TwS1DWcMhgtuJ/Z9GLgh8NwTirEsVbVmRg6EqykF
WBoQR0IOKvuj8hPzHfzx5FhnvJOetaYws9TJ6uyiscx/4yJ1/wAoNir0jFXYq7FXYq7FXYq7FXYq
7FXYq7FXYq87/O/z5J5W8qiCylMWr6uzW9o6kq8cagGaZSO6hlUbggsCOmZOlxcct+Qac8+GO3N8
vw3HTNw6WUEbDcYWiUGUeRdDk8yeZrPSELLHK3O6kXYpAm8jV4uASPhWopyIyvNl4IkpwaXxJgdH
t35eeRW0jzH5h1O6txDS7kt9IjoeKWrUlDxnoQyuqV6jiw8c1moz8UYjy3dxpdIMc5Srrt7m9Qsf
L/5d6Pc67JF+kdaup2Ed5OKyPPNzagb4vTXjyLUPxdzWmGJlmkI8osckcemiZ1ciftLyzVPPXmbW
XkN7fyejJsbWJjHDxrUL6a0DU8WqffNnj08Icg87qNZlyc5bdw5IKCXL3WSij4Zck48ovWfyw8wt
d2UmkztymtBztyakmEmhH+wYjv0I8M0+vw8J4h1+963sHW8cDilzjy937HyH+enmd/MX5o67dc+d
vaTmwtBWoEVqfS+H2Zwz/TmvegYFirsVfb//ADjb5SXy/wDldp88icbzWydSuCRuUlAEAr4eiqt9
JxV6lirzz83fya0v8yYtNF3qEunT6Z6/oSxIsgb6wEqHVitaGIUofHFXyF+Zv5X+Yfy/1v8AR+pg
T2kw52OoxgiKdPprxdf2lPT3FDirDsVdir2j/nFLzO+l/mSdIZ6W2u20kJQmg9a3Uzxt8+Kuo/1s
VfZOKuxV2KuxV2KuxV2KuxV2KuxV2KuxV8lf85C+Zn1L8y7qzV1a20iKKzi9N+SlivrSk7kBw8pR
qfy0PTNrpI1C+9xc4svPobj3zKcOUESL3jsD8X6sNtXhW+g/+cadACaVqfmKZazXUos7ZmWhEUQD
yFW7q7sAfdM1uunZEXYaTHQt7VmC5bHfPfk5PNmjx6c12bMxTrcLKEEm6qyUK8k7P45dgzeHK3H1
OnGWPCTTw/zn5E1bylcxCdxdWE9Rb3qKVBYdUdSTwbvSpBHQ7Gm3wagZB5vOazRSxHvHekkM48Rm
Q6yUUwgnXbcZJx5QZN5N1b6h5hsLjkAnqiOUtWgST4GJp4Bq5TqYcWMhu7Py+FnjLzr4HZ8k3NxL
c3MtxKeUsztJI3izmpO/uc559AU8VTfyl5du/MvmfTNBtK+tqNxHAGArwVj8ch9kSrH2GKv0Vs7S
CztILS3QR29vGsUKDoqIoVR9AGKquKuxVgH55+Z/LegflzqL6/am9t9RVrC0tOAcPdSxu0VSfsBf
TL8+optvTFXwbirsVZd+UV49p+aPlSVOrapaQn5TSrE3X2fFX6B4q7FXYq7FXYq7FXYq7FXYq7FX
Yq7FXwb+Ys5H5jeaQT01i/H3XMmbnF9A9zXONpMt1xGx3PTLbaDjREErMwAqzE7Abkk4sJRfcnkH
y7/hzybpGjMvGa1t1+sry5j15CZJ6N4eq7U9s0uWfFIlzIxoUn+VsnYqlHm3WdK0Xy7falq0Rn0+
FAJ4Agk5iRhGE4t8J5M4G+2TxxMpADm15ZiMSTyfJ8V0rSMyLwQklUrWgJ2FT4Z0AeWyR3TO2uOm
+ScKcE1tbkggg0I6HC4so0+ddRspbDULqxl/vbWaSCSop8UbFTt8xnMvoiHAJNB1xV9W/wDOMX5O
32iK3nPzBbtb6hdRGLSbOUUkihf7czqd1aQbKOy1/mxV9CYq7FXYql+ueXtD16yFjrVhBqNmHWUW
9yiyJzT7LUbuK4q+Ov8AnJD8uLryz53uNVsdMjsvK+p+l+jzaoqQRyJAiyxFEAWNi6s4FNwduhoq
8jxVmX5NWD3/AOavlWBBUpqMFwR7WzeuT9AjxV9/4q7FXYq7FXYq7FXYq7FXYq7FXYq7FX5//mcZ
IPzM81pICrfpe+YA/wAr3Dsp+lSDm4xH0j3NnDskEU5Jqcsa5Re7/wDOOn5WahrGs2vm7U4DFoen
SerYepVTc3UZ+BowKH04XHIt0LDjv8VMXVZgBwjmwEN7fVGa1m7FXYqhtS02w1OxlsNQgS5s5xxl
gkFVYAgj7iKjDGRBsIlEEUXg/wCd3kf9EXtpq2j6bHbaGtukFy1soVUnDsA0ijpzVlHLueu/XZ6P
NYond1Ou09bgbPOba46b5nunnBN7KRpJEjTd3IVQO5JoMN04ssdmmda//wA4paJrnnDVddutbmt7
PUrl7oWFtAiujSnnJ++dnG7kkfu9s5t7lm/kz8ivy18pTR3Wn6WLrUYt0v75vrEqnsUBAjRvdEBx
Vn+KuxV2KuxV2KsT/NePy5J+XWvjzHQaSLRzK/Hkyv0hZB/OJSvH3xV+fWKvdv8AnEjym+oed7zz
FKn+jaJblIX/AOXm6BjFPlEJK/MYq+u8VdirsVdirsVdirsVdirsVdirsVdirw38yf8AnGYedvPt
95m/T/6OgvY7f1LcW3ruZIYxC1D6kQVeEaEddyfAVysep4Y1TbHJQpOvKf8AzjL+WOgypcXME+t3
KcGB1B1aEOvWkEaxoysf2ZOeRnqZnyYGVvVooo4o0iiQRxRgKiKAFVQKAADoBmOxXYq7FXYq7FUJ
rB00aTenUwp00QSG9DglfRCEycgN6ca9MlG7Fc0Sqt+T409e3FzKLdi1uHYQs2zFK/CSPGmb8F5z
JDfZnf5T6VJrHnTT4wCYbRvrlw1KgLAQy19mk4r9OU6nJw4z5o0mDiyjy3+T6bzSPSuxV2KuxV2K
sN/MH81/KvkGTT18wC5RNSEpt5YIvVSsHDmGowIP7wU2xV5vrf8Azl/5ItiF0jSb7UWr8Ty+nbR0
8VNZXP0qMVeO/m5/zkBr/wCYFqulRWq6ToKuJHtEcyyTOp+EyyUQUXqFC9etaCirzGwsbzUL2Cxs
oWuLu5kWK3gjFWd3NFUDxJxV97/lF+X8PkTyRZaL8LX7VudUmXcPcyAc6HuqABF9hirM8VdirsVd
irsVdirsVdirsVdirsVdirsVdirsVdirsVY3588/6D5H0iHVtbE/1Ka4S0DW8fqlXdHcFhUUWkZF
fGmTx4zI0EgW841X/nK7yDBF/uLsr7UZz0DIlvH9LszN9yZkR0cjzQdmBefP+citX806VLo+mWA0
mwuV4Xchl9aaRD1QMFjCKejbGo79sycOlETZ3cbLkJFPOrSVth1zMddki+q/yZ8izeWvL7XeoJx1
bU+MkyEfFFEBWOI16NuWb327ZqdVm45UOQc/SYOAWeZehZiuW7FXYq7FXYq8E/5zDso38i6NfGnq
QaoIFPfjNbys3/JkYq+ScVV7GwvdQvIbKxgkubu4YRwW8Sl3dj0CqNycVfXv5CfkInk9E8x+Y0SX
zNKlLe3FHSyRxuAehmI2ZhsBsO5Kr23FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq8
w/5yVsFuvyc1t6VktGtbiPpsVuY1Y7/5Dtl+mNTDOHN8V2r9M2oRMJvZlmZVUFmYgKo3JJ7DJOHM
PpX8lfyTuLSSDzJ5pg4TrSTT9LlHxI2xWaYV2YfsoRt1O+2YGo1N+mK48G9l7vmA5TsVdirsVdir
sVeL/wDOTvlvzb5o8v6JoXl3S59Rka9a8uGiChIxDEY05u5VV5euab9jiryzyp/ziP53v3STzFeW
2i22xeJCLq5+VIyIh8/UPyOKvoj8v/yi8keRIf8AcLZcr9l4zapckSXLg9RzoAin+VABirM8Vdir
sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVebf85C6dr+rfljfaLoWnzajf6nPbQiKBSx
VI5RcM7GoCr+541PjTvl2AgSss8dXu8D8pf84r/mTqLo+sfVtDtjQuZpFnmof5Y4Cy19mdczJaqI
5bpnIF9Cfl7+SHkvyWUuoYjqOrrQ/pG6AZkP/FKD4Y/nu3vmJk1Ep+5qp6DlCXYq/wD/2Q==
+
+
+
+ proof:pdf
+ uuid:65E6390686CF11DBA6E2D887CEACB407
+ xmp.did:75c3383b-44fd-7e43-8ce0-a2b2ed1d172e
+ uuid:2d2cc868-dee5-436b-b98e-f989ec36e6d7
+
+ uuid:50f9164d-58b5-4fa3-a2ac-51ff76d5edab
+ xmp.did:5657a3f2-b5bc-bb44-9303-38e00d48b536
+ uuid:65E6390686CF11DBA6E2D887CEACB407
+ proof:pdf
+
+
+
+
+ saved
+ xmp.iid:75c3383b-44fd-7e43-8ce0-a2b2ed1d172e
+ 2016-05-18T09:46:41+03:00
+ Adobe Illustrator CC 2015 (Windows)
+ /
+
+
+
+ Web
+ Document
+ 1
+ False
+ False
+
+ 1000.000000
+ 1000.000000
+ Pixels
+
+
+
+ Cyan
+ Magenta
+ Yellow
+ Black
+
+
+
+
+
+ Default Swatch Group
+ 0
+
+
+
+ White
+ RGB
+ PROCESS
+ 255
+ 255
+ 255
+
+
+ Black
+ RGB
+ PROCESS
+ 0
+ 0
+ 0
+
+
+ RGB Red
+ RGB
+ PROCESS
+ 255
+ 0
+ 0
+
+
+ RGB Yellow
+ RGB
+ PROCESS
+ 255
+ 255
+ 0
+
+
+ RGB Green
+ RGB
+ PROCESS
+ 0
+ 255
+ 0
+
+
+ RGB Cyan
+ RGB
+ PROCESS
+ 0
+ 255
+ 255
+
+
+ RGB Blue
+ RGB
+ PROCESS
+ 0
+ 0
+ 255
+
+
+ RGB Magenta
+ RGB
+ PROCESS
+ 255
+ 0
+ 255
+
+
+ R=193 G=39 B=45
+ RGB
+ PROCESS
+ 193
+ 39
+ 45
+
+
+ R=237 G=28 B=36
+ RGB
+ PROCESS
+ 237
+ 28
+ 36
+
+
+ R=241 G=90 B=36
+ RGB
+ PROCESS
+ 241
+ 90
+ 36
+
+
+ R=247 G=147 B=30
+ RGB
+ PROCESS
+ 247
+ 147
+ 30
+
+
+ R=251 G=176 B=59
+ RGB
+ PROCESS
+ 251
+ 176
+ 59
+
+
+ R=252 G=238 B=33
+ RGB
+ PROCESS
+ 252
+ 238
+ 33
+
+
+ R=217 G=224 B=33
+ RGB
+ PROCESS
+ 217
+ 224
+ 33
+
+
+ R=140 G=198 B=63
+ RGB
+ PROCESS
+ 140
+ 198
+ 63
+
+
+ R=57 G=181 B=74
+ RGB
+ PROCESS
+ 57
+ 181
+ 74
+
+
+ R=0 G=146 B=69
+ RGB
+ PROCESS
+ 0
+ 146
+ 69
+
+
+ R=0 G=104 B=55
+ RGB
+ PROCESS
+ 0
+ 104
+ 55
+
+
+ R=34 G=181 B=115
+ RGB
+ PROCESS
+ 34
+ 181
+ 115
+
+
+ R=0 G=169 B=157
+ RGB
+ PROCESS
+ 0
+ 169
+ 157
+
+
+ R=41 G=171 B=226
+ RGB
+ PROCESS
+ 41
+ 171
+ 226
+
+
+ R=0 G=113 B=188
+ RGB
+ PROCESS
+ 0
+ 113
+ 188
+
+
+ R=46 G=49 B=146
+ RGB
+ PROCESS
+ 46
+ 49
+ 146
+
+
+ R=27 G=20 B=100
+ RGB
+ PROCESS
+ 27
+ 20
+ 100
+
+
+ R=102 G=45 B=145
+ RGB
+ PROCESS
+ 102
+ 45
+ 145
+
+
+ R=147 G=39 B=143
+ RGB
+ PROCESS
+ 147
+ 39
+ 143
+
+
+ R=158 G=0 B=93
+ RGB
+ PROCESS
+ 158
+ 0
+ 93
+
+
+ R=212 G=20 B=90
+ RGB
+ PROCESS
+ 212
+ 20
+ 90
+
+
+ R=237 G=30 B=121
+ RGB
+ PROCESS
+ 237
+ 30
+ 121
+
+
+ R=199 G=178 B=153
+ RGB
+ PROCESS
+ 199
+ 178
+ 153
+
+
+ R=153 G=134 B=117
+ RGB
+ PROCESS
+ 153
+ 134
+ 117
+
+
+ R=115 G=99 B=87
+ RGB
+ PROCESS
+ 115
+ 99
+ 87
+
+
+ R=83 G=71 B=65
+ RGB
+ PROCESS
+ 83
+ 71
+ 65
+
+
+ R=198 G=156 B=109
+ RGB
+ PROCESS
+ 198
+ 156
+ 109
+
+
+ R=166 G=124 B=82
+ RGB
+ PROCESS
+ 166
+ 124
+ 82
+
+
+ R=140 G=98 B=57
+ RGB
+ PROCESS
+ 140
+ 98
+ 57
+
+
+ R=117 G=76 B=36
+ RGB
+ PROCESS
+ 117
+ 76
+ 36
+
+
+ R=96 G=56 B=19
+ RGB
+ PROCESS
+ 96
+ 56
+ 19
+
+
+ R=66 G=33 B=11
+ RGB
+ PROCESS
+ 66
+ 33
+ 11
+
+
+
+
+
+ Grays
+ 1
+
+
+
+ R=0 G=0 B=0
+ RGB
+ PROCESS
+ 0
+ 0
+ 0
+
+
+ R=26 G=26 B=26
+ RGB
+ PROCESS
+ 26
+ 26
+ 26
+
+
+ R=51 G=51 B=51
+ RGB
+ PROCESS
+ 51
+ 51
+ 51
+
+
+ R=77 G=77 B=77
+ RGB
+ PROCESS
+ 77
+ 77
+ 77
+
+
+ R=102 G=102 B=102
+ RGB
+ PROCESS
+ 102
+ 102
+ 102
+
+
+ R=128 G=128 B=128
+ RGB
+ PROCESS
+ 128
+ 128
+ 128
+
+
+ R=153 G=153 B=153
+ RGB
+ PROCESS
+ 153
+ 153
+ 153
+
+
+ R=179 G=179 B=179
+ RGB
+ PROCESS
+ 179
+ 179
+ 179
+
+
+ R=204 G=204 B=204
+ RGB
+ PROCESS
+ 204
+ 204
+ 204
+
+
+ R=230 G=230 B=230
+ RGB
+ PROCESS
+ 230
+ 230
+ 230
+
+
+ R=242 G=242 B=242
+ RGB
+ PROCESS
+ 242
+ 242
+ 242
+
+
+
+
+
+ Web Color Group
+ 1
+
+
+
+ R=63 G=169 B=245
+ RGB
+ PROCESS
+ 63
+ 169
+ 245
+
+
+ R=122 G=201 B=67
+ RGB
+ PROCESS
+ 122
+ 201
+ 67
+
+
+ R=255 G=147 B=30
+ RGB
+ PROCESS
+ 255
+ 147
+ 30
+
+
+ R=255 G=29 B=37
+ RGB
+ PROCESS
+ 255
+ 29
+ 37
+
+
+ R=255 G=123 B=172
+ RGB
+ PROCESS
+ 255
+ 123
+ 172
+
+
+ R=189 G=204 B=212
+ RGB
+ PROCESS
+ 189
+ 204
+ 212
+
+
+
+
+
+
+ Adobe PDF library 15.00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+endstream
endobj
3 0 obj
<>
endobj
7 0 obj
<>/Resources<>/ExtGState<>/Properties<>/Shading<>>>/Thumb 13 0 R/TrimBox[0.0 0.0 1000.0 1000.0]/Type/Page>>
endobj
8 0 obj
<>stream
+H엻GE#Zp$;}.kvv@X-43dWY$%G17?<[NGvck+%Қ}v\ւ/=Zh>ja'
f1tW`Ow=4_tEWϔ1FcD/}K)S`E3kxz`#T[5ZUsXȑ_bq3X͋T8{#3CQn$e+zd,ՆxG',;i~QVx
+ƹ
+jhwY5hgٸ!RLΑ)~j0 hpJj*b2l57[G&Yq%9dYL;5lEDs
'
6 L
(=ZE1yU4G
&>b ܑ\pl'ui蚴,6RM^yT\M!
0@ u:8]9e!byE⨹"/pH)
+MԊUJ3ɹ5WQ4(6Z]d r{ˋ/Iq+Du%+FׂJZ7Q,uPUFwSxwj#g'i#6w([o(坍s'>o_{kzUU%-EU$f5GּJUEgy`7شPf +,nDS5 'Da3;wx2,.6KbօƠُW%"c$~BHn,aB!ĉ[.3#%,x12bѢ)*1rnq`F5*G,4c=iVv1)+ߑ$
hUE4=y7^6^j-&W&iJ܀\A@8iDLaE-
boguX)!$ajc&(dGNKZ6P{RiMFP9F\^#ÏĜ8j0Ab
Hz(Xj*^f]
+WVJd~a7N~]x8gjӓ&%cϿ5qOݿ\tWnTM>nJ 8+h7fDuy~ [p!]-Zi;M%4gQ mϴ@ 9G_vLk{
Ye
:]c6§IG ;NX:;ldSsF!o)^ #?)I&GC
+T^]'KEMyY~/m5=˅/3NQdɹhQ!O9pLő"F?ɸM_W*/6_ssQkȰ+gz. *,ڤhemڒd{M"Cwi@
+ĬZ\>GCΚbZ8jDQ52c+L^ex (y
+Ցob5
J~Rjŭ2b\<`77$%CѬ];aΫ-%Z&պZ>!#,wwe
z M
+endstream
endobj
13 0 obj
<>stream
+8;Z\u0p]^"$jG[+>pZDAZ7;o,MVS43^J:m"71q*K,1%0-A.z!!!#/
+\1N+H^Q;?ZouoFEl&fO:s%"l`SD#`6QJ:CTEVDS:?!hnW'/N.=i[XUop.Qip@Tl3"
+1Ss5sRrWeU*PjP8r/aTVjR0=05+ZXI0la<9Zh.S3A@X)"B5miM4/,k_GHTBHqa)).
+)(^W#Q=rK,cTROOM@QmjQ2IbSMXY5nV'z!!!#o
+TDT0!I3GU)~>
+endstream
endobj
14 0 obj
[/Indexed/DeviceRGB 255 15 0 R]
endobj
15 0 obj
<>stream
+8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0
+b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup`
+E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn
+6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O(
+l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~>
+endstream
endobj
12 0 obj
<>
endobj
10 0 obj
[/ICCBased 17 0 R]
endobj
16 0 obj
<>
endobj
18 0 obj
<>
endobj
17 0 obj
<>stream
+HyTSwoɞc
[5laQIBHADED2mtFOE.c}088GNg9w߽ '0 ֠Jb
+ 2y.-;!KZ ^i"L0-
@8(r;q7Ly&Qq4j|9
+V)gB0iW8#8wթ8_٥ʨQQj@&A)/g>'K t;\
ӥ$պFZUn(4T%)뫔0C&Zi8bxEB;Pӓ̹Aom?W=
+x- [ 0}y)7ta>jT7@tܛ`q2ʀ&6ZLĄ?_yxg)˔zçLU*uSkSeO4?c. R
߁-25 S>ӣVd`rn~Y&+`;A4 A9 =-tl`;~p Gp| [`L`< "AYA+Cb(R, *T2B-
+ꇆnQt}MA0alSx k&^>0|>_',G!"F$H:R!zFQd?r9\A&GrQhE]a4zBgE#H *B=0HIpp0MxJ$D1D, VĭKĻYdE"EI2EBGt4MzNr!YK ?%_(0J:EAiQ(()ӔWT6U@P+!~mDeԴ!hӦh/']B/ҏӿ?a0nhF!X8܌kc&5S6lIa2cKMA!E#ƒdV(kel
}}Cq9
+N')].uJr
+wG xR^[oƜchg`>b$*~ :Eb~,m,-ݖ,Y¬*6X[ݱF=3뭷Y~dó tizf6~`{v.Ng#{}}jc1X6fm;'_9 r:8q:˜O:ϸ8uJqnv=MmR 4
+n3ܣkGݯz=[==<=GTB(/S,]6*-W:#7*e^YDY}UjAyT`#D="b{ų+ʯ:!kJ4Gmt}uC%K7YVfFY.=b?SƕƩȺy
چk5%4m7lqlioZlG+Zzmzy]?uuw|"űNwW&e֥ﺱ*|j5kyݭǯg^ykEklD_p߶7Dmo꿻1ml{Mś
nLl<9O [$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD- u`ֲK³8%yhYѹJº;.!
+zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs
2F[p(@Xr4Pm8Ww)Km
+endstream
endobj
5 0 obj
<>
endobj
19 0 obj
[/View/Design]
endobj
20 0 obj
<>>>
endobj
11 0 obj
<>
endobj
9 0 obj
<>
endobj
21 0 obj
<>
endobj
22 0 obj
<>stream
+%!PS-Adobe-3.0
+%%Creator: Adobe Illustrator(R) 17.0
+%%AI8_CreatorVersion: 19.0.0
+%%For: (Andriy Yurchenko) ()
+%%Title: (Logo)
+%%CreationDate: 5/18/2016 9:46 AM
+%%Canvassize: 16383
+%%BoundingBox: 163 -602 829 -397
+%%HiResBoundingBox: 163.184943243751 -601.99091339111 828.631354376561 -397.66960525513
+%%DocumentProcessColors: Cyan Magenta Yellow Black
+%AI5_FileFormat 13.0
+%AI12_BuildNumber: 44
+%AI3_ColorUsage: Color
+%AI7_ImageSettings: 0
+%%RGBProcessColor: 0 0 0 ([Registration])
+%AI3_Cropmarks: 0 -1000 1000 0
+%AI3_TemplateBox: 500.5 -500.5 500.5 -500.5
+%AI3_TileBox: 202.399993896484 -920.869995117188 797.419952392578 -79.010009765625
+%AI3_DocumentPreview: None
+%AI5_ArtSize: 14400 14400
+%AI5_RulerUnits: 6
+%AI9_ColorModel: 1
+%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0
+%AI5_TargetResolution: 800
+%AI5_NumLayers: 1
+%AI17_Begin_Content_if_version_gt:17 1
+%AI9_OpenToView: -256 17 1 1554 907 18 0 0 78 118 0 0 0 1 1 0 1 1 0 0
+%AI17_Alternate_Content
+%AI9_OpenToView: -256 17 1 1554 907 18 0 0 78 118 0 0 0 1 1 0 1 1 0 0
+%AI17_End_Versioned_Content
+%AI5_OpenViewLayers: 7
+%%PageOrigin:100 -800
+%AI7_GridSettings: 72 8 72 8 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142
+%AI9_Flatten: 1
+%AI12_CMSettings: 00.MS
+%%EndComments
+
+endstream
endobj
23 0 obj
<>stream
+%%BoundingBox: 163 -602 829 -397
+%%HiResBoundingBox: 163.184943243751 -601.99091339111 828.631354376561 -397.66960525513
+%AI7_Thumbnail: 128 40 8
+%%BeginData: 5535 Hex Bytes
+%0000330000660000990000CC0033000033330033660033990033CC0033FF
+%0066000066330066660066990066CC0066FF009900009933009966009999
+%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66
+%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333
+%3333663333993333CC3333FF3366003366333366663366993366CC3366FF
+%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99
+%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033
+%6600666600996600CC6600FF6633006633336633666633996633CC6633FF
+%6666006666336666666666996666CC6666FF669900669933669966669999
+%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33
+%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF
+%9933009933339933669933999933CC9933FF996600996633996666996699
+%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33
+%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF
+%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399
+%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933
+%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF
+%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC
+%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699
+%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33
+%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100
+%000011111111220000002200000022222222440000004400000044444444
+%550000005500000055555555770000007700000077777777880000008800
+%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB
+%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF
+%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF
+%524C45FD0DFFA8A852522727F827F827527DA8FD4CFFAF6060363C3C3D3C
+%3D366185AFFD18FFA82727F8F8F827F827F827F8F8F827277DA8FD46FFAF
+%5A361336363C363C363C363C143C366084FD14FFA852F8F8F827F827F827
+%F827F827F827F827F8277DFD43FFA9843536353C363C363C363C363D3C3C
+%363D3C3C3CAFFD11FF52F8F827F827F827F827F827F827F827F827F827F8
+%F827A8FD40FF84350D36353635363536353C363C363C363C363C363C1460
+%A9FD0EFF27F8F827F827F827F827F827F827F827F827F827F827F827F8A8
+%FD3EFF5A352F36353635FD04363C363C363D3C3C363C363C363D3C61AFFD
+%0BFFA8F8F8F827F827F827F827F827F827F827F827F827F827F827F827F8
+%7DFD3CFF592F2F352F362F352F36353635363536363C3536353C363C363C
+%363CA8FD0AFF27F8F827F827F827F827F827F8F8277DF827F827F827F827
+%F827F827F87DFD3AFF592F2F352F352F363536353635361360363635FD04
+%363C363C363D3C3CA9FD08FF27F8F827F827F827F827FD04F852FF52F8F8
+%52527D2727F827F827F827F8A8FD38FF7D2F2F2F0D2F2F2F0D352F350D36
+%0D8484350D3635605A36133C363C363C143CA8FD06FF5227F827F827F827
+%F827F8FD0427FFA8277DFFFFFFA87D2727F827F827F82727FD37FFA8FD04
+%2F352F352F362F362F5A0D84FF842FA9FFFFA885363C363C363D3C3D3661
+%FD05FFA8F8F827F827F827F827F82727A8F8A8FFA87DFFFFA827FD04F827
+%F827F827F8F852FD36FF53062F2E2F2EFD042F350D5A7E2FFFFF59AFFFFF
+%5936133635FD04363C363C14AFFD04FF52F827F827F827F827F827F87DFF
+%52A8FD04FFA8F827F827F827F827F827F827F827A8FD34FFA8062F28FD06
+%2F352F35AFA859FD05FF353635FD04363C363C36FD043CFFFFFFA8F827F8
+%27F827F827F827F827A8FFA8FD05FFF8F8F827F827F827F827F827F827F8
+%52FD34FF282E282F062F282F0C2F2F2F53FFA8A9FD04FF7E2F2F350D3635
+%3635FD04363C363C84FFFF5227F827F827F827F827F8F852FD07FFA827F8
+%27F827F827F827F827F827F827F8FD33FF8428282F282F2E2F2E2F2F2F06
+%A9FD07FF840D3635363536353C363C363C363C3661FFA827F827F827F827
+%F827F827F8A8FD08FF5252F8F8F827F827F827F827F827F8F852FD32FF53
+%062E282E062F282F062F062FFD08FF84352F352F36353635FD04363C363C
+%36AFA8F827F827F827F827F827F852FD0BFFA827F8F827F827F827F827F8
+%27F852FD32FF2828282F282F282F2E2F282F7DFD0BFF5A3535363536353C
+%363C363C363C8452F8F827F827F827F827F8F852FD0CFFA8F8F8F827F827
+%F827F827F827F8FD31FFA828062806280628062E062806A8FD0CFF59350D
+%36353635363536353C146052F827F827F827F827F827F8A8FD0EFF5227F8
+%27F827F827F827F827A8FD30FF7E0028282F282F282F282F2853FD0EFFA8
+%362F3635363536363C363C36F827F827F827F827F827F827A8FD0EFFA8F8
+%27F827F827F827F827F87DFD30FF53282828062828280628282853FD0FFF
+%2F2F2F352F3635363536363C27F827F827F827F827F8F852FD0FFF5227F8
+%27F827F827F827F8F87DFD30FF7E00FD08282E06A8FD0EFF842F2F352F36
+%2F363536353C36F827F827F827F827F8F8F8A8FD0EFF52F8F827F827F827
+%F827F827F87DFD30FF77000028002800280628002EFD0EFFA82F062F0D35
+%2F350D363536353627F827F827F827F827F852FD0FFFA8527DF827F827F8
+%27F827F8277DFD30FF7E00FD09287EFD0FFF597E59352F352F363536353C
+%36F827F827F827F827F8F8A8FD12FF27F827F827F827F827F87DFD30FF77
+%000028002800FD0428FD12FF84062F2F352F362F36353627F827F827F827
+%F8F87DFD13FF52F8F827F827F827F8277DFD30FF7E002821282128212828
+%A8FD12FFA82F2F352F352F3635363527F8F827F827F8F852FD15FF27F8F8
+%27F827F827F8A8FD30FF7D2100210028000000A8FD14FF842F0C2F2F2F0D
+%350D5A7DF827F8272752A8FD17FF2727F827F827F827FD32FF2121002200
+%2853FD17FF842F2F352F36353684A82727527DFD1AFFA8F827F827F8F852
+%FD32FF4C0028527EA8FD19FFFD052F350DA9FFA8FD1DFFA827F827F827F8
+%A8FD32FFA8FD1EFF59062F2F352F5AFD20FF52F827F827F827A8FD50FFA8
+%062F062F2F2F59FD1FFFA8F827F827F8F87DFD51FF532F2EFD042FFD1FFF
+%7DF827F827F8F827FD51FF5328282E062F067EFD18FFA8A8A87D522727F8
+%27F827F827F8A8FD49FFA97DA87E7D28532828282F282F0659FD19FFFD07
+%F827F827F827F852FD4AFF77000022002800280628062F062FA8FD19FF52
+%F827F827F827F827F827F852FD4BFFA8002821FD06282F282F7EFD1AFF52
+%F8F827F827F827F827F827A8FD4BFFA821002821280028282806287DFD1B
+%FF7DF827F827F827F827F852A8FD4DFF212221FD07287EFD1CFF52F8F827
+%F827F8F8F852FD4EFFA84C00210028002800287EFD1DFF7DF827F827F8F8
+%27A8FD50FF282221282228007DFD1FFF52FD04F8277DFD51FFA821002100
+%2852A8FD20FF27F82752A8FD53FFA200284C7DA8FD22FF7DA8A8FD55FFA8
+%A2A8FD0EFFFF
+%%EndData
+
+endstream
endobj
24 0 obj
<>stream
+%AI12_CompressedDataxk\%]y?t=18YYva{2|((ʾ88IVQLʹJ qpϵ|ۣ:aӯɳ~7/?4&o}_!]"[flv-g>.ZO`>h7kyo_ݿ~۷o͛o~_>Wyv/_?;_w/^cr^={wVKm}տcޜSAo_G_ܿ{w3e~(Tw_ko|?ۇϵR ?T_b1dƼRG^8צN_|/>pRo_/ł|Y/_kw/I~uoN)X_==;w35F9_7_߿!&ErTTq߾
+G~o_/7>bKL/lŧŗf85H~:`| {Ώi[{OBNOs+Gm3_Gm/|ͫ{oqr^<y_yw(:sm|g_Ֆ_]z{ϟ|o}"z+\X_ơݏq՛'˓Pݝ*EbKq(KIR\|M
R WY
1*Z S6頓^q_k &9cJגּZmXvxSLS8缣$pr_0QkOXBB K{+.3xF`zO!Ŵ``vKX"ؾ3ӣONO-r{Vg}ƻcuqi_;j=#{.I7V֜|jށ3j\ݹٌ\?u50gl[5w eޭu
+3`-bHv`}Nǩ?/w'WSoO_)sNvo3N߲O'ޑo1-Ŕ+؞O>` $)K((ZzS[+JqP eyR$oKCWZ7ZS {ILɉ68dcFd9yʮVŝ="3<7b1'9g9{zF9'gFHNR,;~\cM9I{E3)rsR(B.+eR^AIVx+ů.hJbp2~MA-O
+4z Cv~
+O%IawFpvLľ=/
+/OθUî3{
+-v
IϾ>B5[AgOXTfNv&Mj3@zمWJvE$e.7mq
+/8<(Ϫǹ88`n'S5$Ǡ%n)/|/[017p%nVO_o<
+FUyO?y̓*?][gI{"/ĢR2CwيZNBjϛMZ
+ӡoP5شߨ+%%җ*)_ܮl^t2k7uĨW/˴p7Wtc+czơ63jh߶eUu\TZ45_\+:_¹"ЭyUuݵL.lY\ʣ`M;}/ɪ\UeȪ_w`6W`WֿPV>>y+uFxlַ2vy=[ȗ֔$3Ι+ze3K~Xq';ߗ"_acx'"Q6aۗ".aН-7#n#L; ~"FpO1w҉JqTaID[ɵ守4ɜ@\2ޯ`#"u9!QeUQVQd]ŐAnDT?|N=UsSۢA#kdY~ەKWnrʬY8++aS|W\WlWEޔf\6&]]V.,]I+Sە~cYtK=ܮvꪥZ2+ҭv^f{aW8e&7sl
ZKS)rBE+ʒu_+F.wB
o:sMrYR?H,Yj"bK45u<˺%Y'{j(Imt2{ZVf,ldk|JWlU%>\F~2%dC,#_B5dawo &[tHScr8>OK',n1ENNX%RTʪ\3%`иr|˷y3;ş(:f9D슲
dd >EO]g,A"S2PuxiSKZ9Z])GAAw*6JTtYŋw Q'O
+T2 22٣]&DDNt q/p,ʣHҤ+ٵt &uK"}TM^ٌ+ GNda$Oy<ơQ2ird5m/7oŗ-=r* AM`8tec31v}z.}QVvϵth%Oş¿e6g*#
+xٞNs85^).d{'axFnfs4bХx^$SP,Xb٢{ ~c [tǍb\OzCʞHA-GRI*1-uU(>n{skqhEe5f6nbf)(yJyk/z%O-. qpŝj
VJk-հ5piHG5wUqMTm8!87CW\jckFS1[kιΨ6J
+LR_
;}mW
& [ߟFmr+a犯rW9U?1WeX#T[- k?CCc}`S[52ΦE6\mW^J,Y8$'`@ո{Y.r#bWcpُ}Y*r7vEa
Jq{^.X!ա;f2F='*d)+XS=m#!GCttg*FCٻ(7.;9ȵg[|mg\{LMy^rbAtEGH3DWgvV涾kcr
aMQRRs&r
+p"{HM3GT@EU&ΑUU
+vOҹٮg?OݩڋDH V!
+To.QhZE zJEz]adb"m"߯D(~lbѢY7zWe8Kݛ)h HJ`/pHċ8Y2L]+ڳ1G7BTԋ#t^"cv/;"xCOG@ 5\NШbF4\g< M,N)zPd+bp*!NņOuMκj1rzLC2Ņ Rp5CV>qT=5.|{|_f7Y&V?ʩZMWVՄLn顐d
+-J۾Ie7J9kA+mQ~2A!"fK` BV$,vxAZ
+(åkBם]~y}_. rL/Nنyy?]'LSVB$j|bݶ^1MV{ϘpaY֢;WW%SdDWrS&B.\VU_ +*:|ff^azl;UѧmJ{46FLfgG5y5F>}qW^_D!-黔T[䄊P*JPQ+%aE2߄&ì2K'dFVWޛ3k+k&y}Ջ^uVb[=5_ϕ,mIMhk8럥zEtcNn-veEWvqSi/*ˢs¥j
ri({\-'Ef~3ޏ!`8ې?cxQ4e;l}:>aNα^8Eu-ZO=}XXֹ!8>